summaryrefslogtreecommitdiffstats
path: root/perl-install/ChangeLog
blob: dabd47c5cdc02f19d5eabff38ee93643c03ba021 (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
2000-10-06  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm (afterInstallPackages): put the Charset in
	kdeglobals, otherwise kde uses charset iso8859-1 :(

	* lang.pm (charset): created

	* common.pm (update_userkderc): fix it, change the argument
	passing	

2000-10-05  Pixel  <pixel@mandrakesoft.com>

	* share/compssList: raise kde-i18n-*, should be installed whenever
	kdebase is installed

	* pci_probing/pcitable: integrate patch from viet (concerns
	sym53c8xx cards)

	* share/compssUsers: use "documentation" as the database icon

	* install_steps_interactive.pm (chooseGroups): fix to accept icons
	not in the format "*_section.xpm"

	* install2.pm (miscellaneous): put yes/no in sysconfig/usb entries	

2000-10-05  dam's  <damien@mandrakesoft.com>

	* netconnect.pm (adsl_conf): updated pppoe conf.
	(main): added $netc->{minus_one} to avoid to count dhcp configured
	eth when asking to share the connection.
	(adsl-pppoe): improvement. Should work now.

	* netconnect.pm (main): network is stopped then started, instead
	of restarted.

2000-10-05  François Pons  <fpons@mandrakesoft.com>

	* live_install: added icons (this fixes the yellow on white
	tooltips problem).

	* install_any.pm: added ghostscript-utils in the list of packages
	to copy when changing CD.

	* printerdrake.pm: install ghostscript-utils if a lexmark printer
	is selected on cups.

2000-10-05  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-10-05  Pixel  <pixel@mandrakesoft.com>

	* install_any.pm (loadO): look for auto_inst.cfg in /, not in
	/Mandrake/base	

2000-10-05  François Pons  <fpons@mandrakesoft.com>

	* netconnect.pm: fixed syntax error.

	* share/po/i18n_compssUsers: simplified version and fixed
	dependancies to pkgs.pm (for building drakxtools).

2000-10-04  François Pons  <fpons@mandrakesoft.com>

	* install_gtk.pm: removed 80 pixel on height for live upgrade.

	* install_steps.pm: do not set keyboard when live upgrade after
	setting the language.

	* install_steps_gtk.pm: fixed the trying to start a X server on
	live.

2000-10-04  Pixel  <pixel@mandrakesoft.com>

	* share/po/i18n_compssUsers: fake module ``c'' so that no need to
	build DrakX to use i18n_compssUsers

	* install_steps_interactive.pm (selectLanguage): update license

	* install_steps_gtk.pm (installPackages): add second license for
	shitty soft (commercial one)

2000-10-04  dam's  <damien@mandrakesoft.com>

	* draknet (netconnect.pm and network.pm): various translations
	corrected, network is restarted, buttons connect/disconnect
	debugged. 

2000-10-04  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-10-04  Pixel  <pixel@mandrakesoft.com>

	* Xconfigurator.pm (main): kill prefdm instead of autologin

	* install_any.pm (find_root_parts): don't use
	suggest_mount_points, it couldn't do what we wanted	
	(guess_mount_point): created, contains the common stuff between
	suggest_mount_points and find_root_parts

2000-10-04  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* standalone/drakgw: fix some failing/untranslated i18n messages

	* share/po/fr.po: write translations according to drakgw
	
2000-10-04  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: removed bad card for 3D Rage Pro.

	* install_any.pm: removed Aurora for SiS card, add more case for
	detecting right cdrom for live upgrade, fixed wrong list of
	packages for laptops.

	* c/stuff.xs.pm: added time interval of 200ms between update of
	progression bar of install, make sure the last step is seen.

2000-10-04  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-10-04  Pixel  <pixel@mandrakesoft.com>

	* modules.pm (when_load): stricter regexp for $type is scsi or not
	(so that scsi_mod with is scsi_raw doesn't get an alias
	scsi_hostadapter)	

	* detect_devices.pm (isLS120Drive): extend the regexp to include
	"Caleb Technology - 144MB FDD UHD Floppy"

	* detect_devices.pm (burners, IDEburners): reworked, renamed, now
	works!	
	* c/stuff.xs.pm (isBurner): created

	* modules.pm (load_ide): make sure ide-cd is loaded!

	* install_steps_interactive.pm (chooseGroups): the label and help
	are now translated (at least will be), so use the translations

2000-10-03  Pixel  <pixel@mandrakesoft.com>

	* share/po/Makefile (DrakX.pot): added the to-be-translated from
	compssUsers
	* share/po/i18n_compssUsers: read the compssUsers's and output the
	to-be-translated in po format

	* log.pm (l): log to STDERR instead of STDOUT

	* install_any.pm (loadO): use first floppy drive available (won't
	help much though, as stage1 doesn't follow this...)

2000-10-03  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-10-03  Pixel  <pixel@mandrakesoft.com>

	* Xconfigurator.pm (autologin): don't propose autologin in
	security > 3

	* common.pm (availableRamMB): HACK HACK if i810 and memsize,
	returns 127

	* bootloader.pm (suggest): don't use grub if more than 800MB

2000-10-04  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/po/validate.pl: create this tool
	
	* share/po/fr.po: fix many typos

	* share/po/fr.po: make compssUsers translation

2000-10-03  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator_consts.pm: changed resolution allocation.

	* fs.pm: removed no more used log.

	* install2.pm: add exit button if live upgrade.

	* install_any.pm: increased minimal available size to 65Mb.

	* install_steps.pm, standalone/printerdrake: fixed cups to CUPS
	for mode.

	* printerdrake.pm: fixed not_edit for lpr mode of printerdrake.

	* share/Cards+: fixed Savage2000 entry.

2000-10-03  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-10-03  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: updated bad card with Rage Mobility card.

	* live_install: added test of root user, abort if not root.

2000-10-03  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/po/fr.po: fixed bug #518 and fixed other misc errors

2000-10-03  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-10-02  François Pons  <fpons@mandrakesoft.com>

	* diskdrake.pm (Resize): fix to make ext2resizing work a little
	better	

	* install_steps.pm: fixed installation of urpmi configuration.

	* detect_devices.pm: updated comment about UltraDMA66/100
	management.

	* modules.pm: updated comment about UltraDMA66/100 management.

	* diskdrake.pm: adding a cylinder for the minimum of the resize
	and if there is nothing to do for resize, simply return.

	* install_any.pm: added missing require pkgs.

2000-10-02  Pixel  <pixel@mandrakesoft.com>

	* many files: remove many lnx4win special cases which are not
	needed anymore        
	
	* any.pm (addUsers): grpuser output goes to Mr Dave

	* bootloader.pm (install_lilo): change the default color of menu

	* install_steps_interactive.pm (choosePackages): add 300MB choice
	in desktop

	* mouse.pm (fullnames): fix i18n fix

	* install_steps.pm (miscellaneous): don't add ide2=0x... for
	ultra66 (otherwise chmouel is not happy, so is hdc being hde)
	
	* Xconfigurator.pm (main): add handling of icewm logout

	* c/stuff.xs.pm: changed the stepping of "Progressing installing package"

2000-10-02  dam's  <damien@mandrakesoft.com>

	* netconnect.pm (main): infos are written only when needed.
	* netconnect.pm (intro): connection checking now works.
	
2000-10-02  Chmouel Boudjnah  <chmouel@mandrakesoft.com>

	* pci_probing/pcitable: s|snd-card-via686a|via82cxxx_audio|; like
	jeff request.

2000-09-30  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-30  dam's  <damien@mandrakesoft.com>

	* netconnect.pm: a LOT of bugs fixed. draknet is now completely
	brok^H^H^H^Hfrozen.

2000-09-29  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-29  dam's  <damien@mandrakesoft.com>

	* netconnect.pm (adsl_conf): dhcp should better work.

	* network.pm (configureNetwork): remove connection script if a
	gateway is given.

	* common.pm (setVarsInShMode): created. chmod the file with
	permissions passed in argument.

2000-09-29  François Pons  <fpons@mandrakesoft.com>

	* modules.pm (load): fixed when standalone, use modprobe.

	* pkgs.pm: added preference for wu-ftpd.

	* detect_devices.pm: added code to proble USB printer.

	* printer.pm: fixed missing PRINTER=yes on CUPS configuration for
	USB printer.

	* install_steps.pm: removed possibilty to add an user in urpmi
	group (jloup).

	* install_steps_interactive.pm: log if CD not ejectable.

2000-09-29  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/compssList: sync with latest packages

	* install_steps_interactive.pm (selectLanguage($)): s/42/43/ in
	  MandrakeSoft physical address 

2000-09-29  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-29  dam's  <damien@mandrakesoft.com>

	* netconnect.pm (intro): detection of internet
	configuration/connexion state.
	
	* network.pm (write_resolv_conf): better "ppp temp nameserver" in resolv.conf

2000-09-28  Pixel  <pixel@mandrakesoft.com>

	* modules.pm (load_thiskind): add read_already_loaded cuz of
	pcmcia	

2000-09-28  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/compssList: add nasty DrakSync and DrakProfile with 50 0 50

2000-09-28  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-28  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm (choosePackages): the minimum is 25
	in beginner, not 10

	* pkgs.pm (readCompssUsers): fix reading description

	* install_steps.pm (afterInstallPackages): remove the code to
	handle RPM-GPG-KEYS

2000-09-28  dam's  <damien@mandrakesoft.com>

	* interactive_gtk.pm (ask_from_list_with_helpW): no more theme
	parsing, no more draknet.rc

	* netconnect.pm (read_net_conf): no adsl tree anymore.

	* netconnect.pm: drakgw called if enough card are installed.

	* netconnect.pm: minor bugs correction.

2000-09-28  François Pons  <fpons@mandrakesoft.com>

	* Makefile.config: added livedrake for drakxtools.
	* diskdrake.pm: use corrected partition size when resizing a dos
	partition (like the others).
	* install_any.pm: no more pnm2ppa packages and others in package
	to copy when changing CD.
	* live_install: exec live_install2 instead.
	* live_install2: contains post live upgrade stuff now.
	* printerdrake.pm: protect set_help() usage by if $::isInstall,
	removed reference to package pnm2ppa and others.
	* standalone/livedrake: initial release for drakxtools.

2000-09-28  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-28  Pixel  <pixel@mandrakesoft.com>

	* install_interactive.pm (partitionWizardSolutions): fix the limit
	cases for lnx4win	

	* share/po/Makefile ($(PMSCFILES)): fix the DrakX.pot generation	

2000-09-27  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm (choosePackages): set $size2install
	to $availableC in desktop install, as it should be

	* install2.pm (choosePackages): remove the code for removing kdesu
	in high security...

	* install_steps_interactive.pm (createBootdisk): format more
	nicely the text

	* install_steps_gtk.pm (installPackages): add 10 seconds to have a
	better estimation

	* install_steps_interactive.pm (chooseGroups): now returns a boolean
	(choosePackages): use chooseGroups return value to redo
	choosePackages	

	* install_steps_gtk.pm (selectMouse): if mouse type is none, then
	don't test!

	* Xconfigurator.pm (monitorConfiguration): rename Unlisted to Custom

	* various: replace all Rescue by Update

	* pkgs.pm (readCompssUsers): read description for groups
	
	* install_steps_interactive.pm (chooseGroups): add description for
	groups	

2000-09-27  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/compssUsers.desktop: added description

	* share/compssUsers: added description

	* share/compssUsers.desktop: added icon support, reordered,
	  renamed

	* share/compssUsers: reordered, renamed

2000-09-27  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-27  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm (selectLanguage): intregrate
	license again

	* pkgs.pm (readCompssUsers): reads compssUsers.meta_class

	* diskdrake.pm (Create): replace ``ne "i386"'' by ``!~ /i.86/''
	(as should be)

	* install_steps_gtk.pm (selectInstallClass1): if @$l (list of
	install classes) contains only one element, call
	install_steps_interactive::selectInstallClass1	

	* install_steps_interactive.pm (choosePartitionsToFormat): fix for
	"no partitions selected to format"

	* my_gtk.pm (_create_window): alt-e now *toggles* expert/newbie	

2000-09-27  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/compssList: more for gnupg, -11 for sucking things,
          changed compss-groups to be less than 70.

	* share/compssUsers: modified compssUsers with Warly, added
          compssUsers.desktop, simplified for KD (now uses Graphical
	  Desktop/KDE instead of listing all relevant packages)

2000-09-27  dam's  <damien@mandrakesoft.com>

	* netconnect.pm (get_info_adsl_providers, read_adsl_providers):
	Created. adsl provider tree. 
	(set_net_conf): better informations storing.

	* my_gtk.pm (new): windows are always centered if standalone.

2000-09-27  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: added option "sw_cursor" for S3 Trio3D. fixed
	3D hw acceleration for i815 (VideoRam). prefer XF3 for all
	NeoMagic cards.
	* install_gtk.pm: re-enabled themes on live upgrade but without
	modifying background image.
	* install_steps_gtk.pm: fixed missing help.
	* live_install: lot of fixes to enable DrakX font, keep upgraded
	system clean (libperl.so which allows graphical login).
	* pkgs.pm: added function allowedToUpgrade to filter kernel
	package.

2000-09-27  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-27  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm (configureX): if `clicked' don't go
	to auto mode

	* Xconfigurator.pm (monitorConfiguration): fix the translated
	'Generic' which is not so (and must not be so) anymore

2000-09-26  Pixel  <pixel@mandrakesoft.com>

	* pkgs.pm: remove all Unskip code

	* my_gtk.pm (_create_window): add shortcut alt-e to switch to
	expert

	* Xconfigurator.pm (resolutionsConfiguration): fix for setting
	legal resolution

	* install_steps_interactive.pm (selectLanguage): use formatAlaTeX
	on the license

2000-09-26  François Pons  <fpons@mandrakesoft.com>

	* fs.pm: added mounting of swap partition when mounting them
	all (this can help :-) 
	* pkgs.pm: fixed correction size code to make (really) a true
	bijection between corrected and rpm size.

2000-09-26  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-26  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm (selectLanguage): integrate the
	license (temporary one)

	* modules.pm (write_conf): fix the /etc/modules generation

	* interactive_gtk.pm (ask_many_from_listW): if more than 5 entries
	in icon format, use scrollbar. In non-icon format, use scrollbar
	for more than 11 entries.

	* commands.pm (bug): add ddcxinfos

	* pci_probing/pcitable: replace tulip by de4x5 for 2104x cards	

2000-09-26  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: added more 3D Rage Pro card for 3D
	acceleration with Utah-GLX (Rage Mobility, Rage XC/XL),
	modified identification for checking acceleration.
	* install_any.pm: added automatic installation (up 60) for
	OpenGL games if a graphic card MAY BE accelerated.
	* live_install: fixed perl idioms in pure shell script and added
	packdrake symlink if not already installed.
	* share/compssList: changed level to -1 for all needing 3D hw
	acceleration packages.

2000-09-26  dam's  <damien@mandrakesoft.com>

	* network.pm (write_resolv_conf): write temp dns line to be used
	with new initscripts package. Use to set dns live.

2000-09-26  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-26  Pixel  <pixel@mandrakesoft.com>

	* mouse.pm (read): catch exception if fullname2mouse fails (eg:
	old FULLNAME format)

2000-09-25  Pixel  <pixel@mandrakesoft.com>

	* share/MonitorsDB: merge with latest redhat MonitorsDB

	* pci_probing/pcitable: major merge with latest redhat pcitable

	* share/Cards+: added "Intel 815", renamed "Rage 128 (generic)" to
	"Rage 128", added "Rage 128 Mobility"

	* install_any.pm (getAvailableSpace): keep 10% of free space on
	big partitions

	* Xconfigurator.pm (readMonitorsDB): don't translate Generic
	(otherwise, only a part is translated, see MonitorsDB for the
	non-translated part)

	* interactive.pm (ask_many_from_list): fix sorting

	* install_gtk.pm (test_mouse): smaller box to fit in 640x480

	* install_steps.pm (afterInstallPackages, beforeInstallPackages):
	RPM-GPG-KEYS is copied before installing packages

	* pkgs.pm (readCompssUsers): handle icons in compssUsers

	* common.pm (truncate_list): ensure the list is not too big

	* install_steps_gtk.pm (choosePackagesTree): restrict the list to
	20 elements if it is too big (use truncate_list)

2000-09-25  François Pons  <fpons@mandrakesoft.com>

	* bootloader.pm: add Video mode for entry.
	* fs.pm: updated for live upgrade.
	* install2.pm: dropped unuseful steps filtering.
	* install_any.pm: fixed wrong Device3Dfx package name and clean
	postinstall rpms directory on upgrade before filling it.
	* install_gtk.pm: removed window restrictions of live upgrade.
	* install_steps.pm: fixed initrd symlink following in case of
	upgrade.
	* install_steps_gtk.pm, install_steps_interactive.pm: keep always
	upgrade on live upgrade.
	* modules.pm: may fixed pcmcia lost driver (typically on network).
	* pkgs.pm: fixed (uggly?) usage of floating perl data on perl
	script :-)
	* printer.pm: back to "Generic PostScript" for default printer (jloup).
	* printerdrake.pm: make sure an expert can choose among available
	devices.

2000-09-25  dam's  <damien@mandrakesoft.com>

	* network.pm (write_resolv_conf): write '# ppp temp entry adsl' in
	/etc/resolv.conf if needed.

	* netconnect.pm : adsl connection does'nt need any dns anymore.

	* netconnect.pm (read_net_conf): created. draknet now stores and
	reload the config.
	
	* netconnect.pm (main): if the user is french and uses french
	keyboard, don't ask his country.

2000-09-25  Pixel  <pixel@mandrakesoft.com>

	* modules.pm: added 8139too

	* share/Cards+: GeForce2 DDR is handled by driver "nv"

	* Xconfigurator.pm (main): in killall X for Xdrakres, also killall
	kdm/xdm/gdm/autologin :)

2000-09-25  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-25  dam's  <damien@mandrakesoft.com>

	* network.pm (configureNetwork): Warn user if he already
	configured the interface.

2000-09-24  Pixel  <pixel@mandrakesoft.com>

	* modules.pm (mergein_conf): created. call read_conf, fills
	%modules::conf and set $modules::scsi

2000-09-24  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* standalone/drakgw (fatal_quit($)): add log of reason of fatal_quit

2000-09-24  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-24  Pixel  <pixel@mandrakesoft.com>

	* commands.pm (bug): use first floppy drive instead of fd0 hard
	coded (nice for LS120's)

	* install_steps_gtk.pm (selectMouse): if device changed, do the
	test	
	* standalone/mousedrake: fix for serial mice
	* install_steps_interactive.pm (selectMouse): fix for serial mice

2000-09-23  dam's  <damien@mandrakesoft.com>

	* netconnect.pm (conf_network_card): now displays the modules of
	detected ethernet cards.

2000-09-22  dam's  <damien@mandrakesoft.com>

	* netconnect.pm (main): calls drakegw.
	* netconnect.pm (get_net_device): fixed

2000-09-22  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* standalone/drakgw:
	  - added logs
	  - added verbose mode
          - fixed wrong stopping of named in other languages than english

	* netconnect.pm (get_net_device): try to fix it..

2000-09-22  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm (selectKeyboard,
	choosePartitionsToFormat, chooseCD, installCrypto): use new ask_many_from_list
	(): 

	* interactive.pm (ask_many_from_list): now only ask_many_from_list
	exists, obsoleting ask_many_from_list_ref and
	ask_many_from_list_with_help. More flexible and nicer
	* interactive_newt.pm (ask_many_from_listW): adapted to new
	calling type
	* interactive_gtk.pm (ask_many_from_listW): adapted to new calling
	type, handle 'shadow' and 'icon2f'

2000-09-22  Pixel  <pixel@mandrakesoft.com>

	* install2.pm (main): if /lnx4win/i in VERSION, set $o->{lnx4win}

	* Xconfigurator.pm (cardConfiguration): fix setting 4MB of meg for
	i810	
	(testFinalConfig): i810 is a verybad_card, aka can't test anything
	on it :-(
	(main): fork to background and stay there while waiting for the WM
	to exit
	(testFinalConfig): update the backgroung image path

	* interactive_gtk.pm (exit): flush X before leaving (otherwise the
	mousecursor is not restored)

	* run_program.pm (rooted): don't redirect the stdout and stderr to
	ddebug.log if not $::isInstall

	* log.pm (l): log on stdout/stderr if !isInstall and !isStandalone

	* modules.pm (load_raw): redirect stderr to tty5

	* install2.pm (main): set variable $::isInstall

2000-09-22  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-22  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* standalone/drakgw: now includes information from netconnect to
	ignore the interface used for Internet connection

2000-09-22  dam's  <damien@mandrakesoft.com>

	* install_steps_gtk.pm (selectInstallClass1): pixel's typo.

	* netconnect.pm (get_net_device): added get_net_device to know
	which interface has been used to configure the internet connection.
	(conf_network_card): ask to restart network if dhcp too.
	(main): enable dialing when modem.

	* network.pm (configureNetworkIntf): changed label to warn people
	about already configured eth cards.

2000-09-22  François Pons  <fpons@mandrakesoft.com>

	* install_gtk.pm: added Desktop themes.
	* share/themes-mdk-Desktop.rc, share/themes/mdk-Desktop-bg.png:
	initial release.
	* install2.pm: moved back to all steps for live upgrade.
	* install_gtk.pm: select right logo if desktop.
	* install_steps_interactive, install_steps_gtk.pm: avoid asking if
	upgrade for a live upgrade.

2000-09-22  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm: add some call to log_sizes to log the
	installed size

	* install_steps_gtk.pm (installPackages): beep before changeMedium		

2000-09-21  Pixel  <pixel@mandrakesoft.com>

	* interactive.pm (ask_from_listf): try to call the f translation
	function on the default value with the index

	* install_steps.pm (afterInstallPackages): make the gpg code work,
	changed the call to 
	"gpg --fast-import --homedir /etc/rpm /root/tmp/RPM-GPG-KEYS"

	* detect_devices.pm: cleanup and removed unused code

2000-09-21  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* detect_devices.pm (getNet()): really remove plip in standalone

2000-09-21  François Pons  <fpons@mandrakesoft.com>

	* install_steps.pm, netconnect.pm: changed NETWORKING reference
	from false to no.
	* printer.pm: changed timeout from 30 to 60.
	* printerdrake.pm: added wait message when waiting for cups to
	start.
	* pci_probing/pcitable: added erwan VIA Rhine board.
	* network.pm: added DHCP_HOSTNAME reference.

2000-09-21  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-21  Pixel  <pixel@mandrakesoft.com>

	* standalone/keyboarddrake: fix for XF4

	* Xconfigurator.pm (write_XF86Config): comment the omit
	xfree86-dga	

	* install_steps.pm (afterInstallPackages): configure GPG public
	keyring with mandrake key	

	* standalone/mousedrake: updated/fixed for new mouse handling	

	* install2.pm (main): update for handling oem installs

	* many files: relGetFile cleanup, updated calls to getFile and
	getAndSaveFile accordingly

	* Xconfigurator.pm (testFinalConfig): new XFdrake-image-test.jpg

	* detect_devices.pm (@netdevices): plip removed in standalone,
	otherwise plip is always there (because of kmod)

	* install_steps_interactive.pm (choosePartitionsToFormat): replace
	the die "cancel" by die "already displayed", so that no error is
	displayed.

	* pci_probing/pcitable: replace some rtl8139 by 8139too, added
	cards DELTA8139 and ADDTRON8139 (for jeff)

	* Xconfigurator.pm (show_info): also show the colordepth and
	resolution. don't show server if none, show XF4 driver if there's
	one.	
	(main): change the "Forget the changes" to "Keep the changes?"
	with displaying the current configuration.

2000-09-21  François Pons  <fpons@mandrakesoft.com>

	* printer.pm: changed "PostScript" ppd default description to "Raw
	queue (no filtering)", asked by Till.
	* Xconfigurator.pm: add log of what user select for 3D hw
	acceleration.
	* share/compssList: changed XFree86-glide-module to -2 because the
	level is the same for XFree86-Glide* which may have multiple
	different version installed due to dependancies of the first one.

2000-09-21  dam's  <damien@mandrakesoft.com>

	* netconnect.pm (conf_network_card): added check when dhcp. Cable connection
	should now work.

2000-09-21  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-21  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm (exitInstall): call $o->exit if
	"Some steps are not completed"

2000-09-20  Pixel  <pixel@mandrakesoft.com>

	* bootloader.pm (install_loadlin_config_sys,
	install_loadlin_desktop): extracted from install_loadlin, do not
	call them anymore (remove it?)
	(suggest): put grub in lnx4win install

	* common.pm (availableRamMB): fixed (round to a multiple of 4)	

2000-09-20  dam's  <damien@mandrakesoft.com>

	* netconnect.pm (get_info_isdn_providers & read_isdn_providers):
	read file in /usr/share and $prefix/usr/share 
	(isdn_write_config): corrected file to be sh compliant.
	(isdn_write_config): added default route settings for isdn.

2000-09-20  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-20  Pixel  <pixel@mandrakesoft.com>

	* pci_probing/pcitable: replace es1371 by snd-card-ens1371

2000-09-20  dam's  <damien@mandrakesoft.com>

	* Xconfigurator.pm (autologin): for urpmi, added `--best-output' and suspend/resume 

2000-09-20  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* standalone/printerdrake: for urpmi, added `--best-output' and suspend/resume 

	* standalone/XFdrake: for urpmi, added `--best-output' and suspend/resume 

2000-09-20  dam's  <damien@mandrakesoft.com>

	* standalone/draknet: used new package install function.

2000-09-20  Pixel  <pixel@mandrakesoft.com>

	* detect_devices.pm (isFloppyOrHD): detects wether a device is a
	floppy or not based on its size (for scsi floppy)

	* Xconfigurator.pm (testFinalConfig): check if "server" OR
	"driver" field is set (otherwise XF4 only card won't pass)

	* bootloader.pm (suggest): fix for ``installing the last cooker
	from kenobi:/I on an smp machine i don't get anymore an entry for
	linux-up'' (c chmouel)

2000-09-20  dam's  <damien@mandrakesoft.com>

	* netconnect.pm (read_isdn_providers): corrected typo ($_ -> $_[0])

2000-09-20  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-19  Pixel  <pixel@mandrakesoft.com>

	* modules.pm (get_pcmcia_devices): fix (especially, now ethernet
	should be detected)

	* lang.pm (get_langs): created, gives rpm install langs
	* install_any.pm (setPackages): give langs::get_langs() to
	readCompssList	
	* pkgs.pm (readCompssList): don't use RPM_INSTALL_LANG, use given
	$langs instead. This fixes the RPM_INSTALL_LANG=all install.

2000-09-19  Pablo Saratxaga <pablo@mandrakesoft.com>

	* netconnect.pm: make dhcp-client, pump and such not translatable.
	Those are program names and should therefore not be translated,
	that only confuses translators

2000-09-19  dam's  <damien@mandrakesoft.com>

	* Xconfigurator.pm (autologin): corrected @users definition and
	passwd cat.

2000-09-19  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-19  Pixel  <pixel@mandrakesoft.com>

	* many files: changed some access to get_root to get_root_	
	
	* install_steps_interactive.pm (choosePackages): added code for
	desktop meta_class install type

	* install_steps_gtk.pm (selectMouse): cleanup, give parameter
	emulate3buttons to setMouseLive
	* c/stuff.xs.pm (setMouseLive): add argument emulate3buttons

2000-09-19  Guillaume Cottenceau <gc@mandrakesoft.com>

	* interactive*.pm: changed `suspend' and `resume' to behave as expected,
	added `enter_console' and `leave_console'

2000-09-19  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-19  Pixel  <pixel@mandrakesoft.com>

	* install2.pm (miscellaneous): replaced LITTLE_FRIED_OIGNONS by
	META_CLASS

	* Xconfigurator.pm (cardConfiguration): when ddcxinfos gives false
	result (not enough VideoRam), also remove the found resolutions
	* Xconfigurator.pm (main): remove the automatic searching of
	resolutions	
	* Xconfigurator.pm (resolutionsConfiguration): cleanup, remove the
	automatic searching of resolutions.

	* mouse.pm (fullnames): changed the `_' in `[' before Other
	(nicer, uh?)

	* install2.pm (selectMouse): changed clicked to !first_time

2000-09-19  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-19  Pixel  <pixel@mandrakesoft.com>

	* Xconfigurator.pm (testFinalConfig): remove the bloody prototype

2000-09-19  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-18  Dam's  <damien@mandrakesoft.com>

	* Xconfigurator (autologin): do it eve, if newbie. Autologin is
	now in separated function.
	
2000-09-18  Pixel  <pixel@mandrakesoft.com>

	* Xconfigurator.pm (testFinalConfig): don't skip the test in auto
	if called via "Test again"
	* Xconfigurator.pm (resolutionsConfiguration): ensure all depth
	are bounded

	* bootloader.pm (suggest): don't put "linux-nonfb" if "linux" is
	classic and no-fb

	* fsedit.pm (check_mntpoint): add a check for /etc /lib... which
	must not be mount points. Also check that /home, /tmp and /usr are
	on trueFS

	* interactive.pm (ask_from_entries_ref): add bounding of "val" in
	case of type "range". die if min > max.

2000-09-18  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-18  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm (choosePartitionsToFormat): nicer
	partition/device display

	* partition_table_raw.pm (zero_MBR): add on the fly require of the
	good partition_table_$type

	* detect_devices.pm (cdroms): fix (yet again) the scd$nb device
	assignment to ide burners

	* install_steps.pm (afterInstallPackages): comment out a part of
	the icons mess messing

	* Xconfigurator.pm (cardConfiguration): move Unlisted to
	Other/Unlisted
	* share/CardsNames: updated (for Voodoo5)

	* install_steps_gtk.pm (selectMouse): fix the test to know wether
	the guy has changed the mouse type (to know wether to test the
	mouse or not)

	* install_steps_interactive.pm (selectLanguage): add the license
	
	* install_steps_interactive.pm (choosePackages): have the
	"Recommended" size be the default 
	(in the choice Minimum/Recommanded/Complete)
	
	* diskdrake.pm (Type): fix a typo

	* install_steps.pm (doPartitionDisksAfter): mark partition as
	mounted	

2000-09-17  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-17  Pixel  <pixel@mandrakesoft.com>

	* install/pcmcia_config.patch: cleaned
	
	* diskdrake.pm (Create, Type): have type field not_editable

	* tools/make_mdkinst_stage2: use TMPDIR if available

2000-09-16  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm (choosePartitionsToFormat): move
	the setting of toFormat before asking for bad blocks, seems to fix
	things?? weird :-/

	* network.pm (miscellaneousNetwork): fix the setting of focus on
	error (tx2Thomas Poindessous :)	

	* install_steps_interactive.pm (configurePrinter): changed
	"Cancel" to "None" (for Thomas Poindessous :)

	* printer.pm (poll_ppd_base): max polling time raised from 10s to
	30s (for Till)	

	* install_steps.pm (ask_mntpoint_s): don't force partition type to
	be ext2 (at least if it's a known fs) (for Warly)

2000-09-15  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-15  Pixel  <pixel@mandrakesoft.com>

	* install_steps_gtk.pm (set_help): save the help message displayed
	in $o->{current_help}
	* install_gtk.pm (create_big_help): display $o->{current_help}

	* mouse.pm: reworked quite a lot. Now sorts/categorize nicely the mice.	
	* install_steps_interactive.pm (selectMouse): adapted for reworked mouse.pm
	* install2.pm (selectMouse): adapted for mouse::read now returning
	an hash ref

	* detect_devices.pm (hasMousePS2): remove hasMouseMacUSB, do it in
	one function (now takes the device in the parameter)

	* interactive.pm (ask_from_treelistf): added (just like
	ask_from_listf, but with a tree)

	* Xconfigurator.pm: the reference is now nbuttons to
	know wether to put Emulate3Buttons or ZAxisMapping.
	* Xconfigurator.pm (cardConfiguration): install Glide_V3-DRI on
	Banshee too.

	* Xconfig.pm: guess nbuttons based on Emulate3Buttons and
	ZAxisMapping.

	* common.pm (availableRamMB): replace availableRam, now use the
	size of /proc/kcore (what else to find the real ramsize?)

	* common.pm (cat__): created

	* install2.pm (main): add field meta_class in $o. Can be
	'desktop', in case option desktop is given, or if /desktop/i is
	found in /VERSION

	* install_steps.pm (miscellaneous): for lnx4win, always have
	'mem=' (so that the initrd is visible by both windows

	* install2.pm (main): add option "desktop"

	* install_any.pm (generate_ks_cfg): fix for new(?) $o->{intf} format

	* install_interactive.pm (partitionWizardSolutions): 
	use only TrueFS for existing_part
	(partitionWizard): have only "loopback" for lnx4win

	* pci_probing/pcitable: associate Voodoo5 with Voodoo5

	* share/Cards+: add Voodoo5

	* bootloader.pm (suggest): add entry linux-nonfb (called linux-up
	for smp)

2000-09-14  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-12  François Pons  <fpons@mandrakesoft.com>

	* detect_devices.pm, mouse.pm: moved probing serial port before to
	detect a wacom tablet (even if a PS/2 or USB mouse is found).
	* help.pm: corrected reference to previous version of LM (jloup).
	* install2.pm: removed duplicate code for getting network
	configuration, using network module.
	* netconnect.pm: intf is now a hash and no more an array.
	* network.pm: changed nature of intf to hash from array, reworked
	write_resolv_conf function to keep old code in comment but only
	when not used anymore (to make it easier by hand modification).
	* printer.pm: SOCKET accessible to expert only (jloup).
	* printerdrake.pm: local port only available for expert if a
	printer has been detected (jloup).

2000-09-11  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: reorganized choices of 3D optimizations, added
	experimental support for expert users.
	* install_steps_interactive.pm: removed question to keep XF3.

2000-09-05  François Pons  <fpons@mandrakesoft.com>

	* printerdrake.pm: removed all previous URI specific mode and
	added socket and expert URI general mode.
	* printer.pm: fixed bugs, start lo interface before cups.

2000-09-04  François Pons  <fpons@mandrakesoft.com>

	* printerdrake.pm: added pnm2ppa and lm110 support in cups
	configuration. probe for printer device (parallel) and try to
	install usb for printer.
	* printer.pm: removed local printer configuration for cups (keep
	only local configuration using URI).

2000-09-01  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: fixes to configure XF86Config-4 when XFree-3.3
	is installed, make 16bits by default on 3D hardware acceleration,
	fixed selection of hardware for hardware acceleration.
	* install_steps.pm: add cups for printer configuration, used for
	auto_install. added new function to add packages only if requires
	are already satisfied.
	* standalone/printerdrake: updated.

2000-08-31  dam's  <damien@mandrakesoft.com>

	* moved many things to network.pm and any.pm
	* everything should be broken now.

2000-08-31  François Pons  <fpons@mandrakesoft.com>

	* install2.pm: removed printer default config (now obsoleted).
	* install_steps_interactive.pm: add cups support.
	* printerdrake.pm: add cups support.
	* printer.pm: add cups support.

2000-08-31  Frederic Lepied  <flepied@mandrakesoft.com>

	* install_any.pm (setPackages): install the right glide module
	according to the Voodoo card detected.

	* Xconfigurator.pm (write_XF86Config): ZAxisMapping for XF 4.
	(autoDefaultDepth): default depth to 16 for Voodoo cards except
	for Voodo5 ones.

2000-08-29  dam's  <damien@mandrakesoft.com>

	* moved pppConfig in netconnect.pm and any.pm
	* moved miscellaneousNetwork in any
	* modem configuration is now useable in standalone mode.

2000-08-29 David BAUDENS <baudens@mandrakesoft.com>

	* install_steps_interactive.pm: change Small/Normal/Full ->
	  Minimum/Recommanded/Complete (aka make FredB happy)

2000-08-28  dam's  <damien@mandrakesoft.com>

	* draknet (netconnect): renamed drakfuck -> draknet. standard ADSL
	and french alcatel ADSL implemented.
	* Xconfigurator.pm (autologin) : use of the new autologin system.

2000-08-24  François Pons  <fpons@mandrakesoft.com>

	* ../update_kernel*: changed reference from extract_archive to
	packadrake.
	* Makefile*: added live_install and live_install2.
	* Xconfigurator.pm: updated Mach64 acceleration to only 3D Rage
	Pro AGP card type, commented SiS and S3ViRGE support by GLX.
	* commands.pm, keyboard.pm, lang.pm, pkgs.pm, list, tools/*:
	updated to use packdrake now.
	* install2.pm, install_steps.pm, install_steps_gtk, Makefile*:
	manage live upgrade.
	* modules.pm: use standard modprobe command for load in live
	upgrade.
	* netconnect.pm: added minimal modification for being compilable.
	* rescue/list: added packdrake and sfdisk.
	* live_install, live_install2: live upgrade of package.

2000-08-22  dam's  <damien@mandrakesoft.com>

	* drakfuck (netconnect):finished isdn PCI/ISA card implemetation
	* added isdndb.net: providers database

2000-08-20  dam's  <damien@mandrakesoft.com>

	* moved Netconnect.pm to netconnect.pm
	* moved DrakFuck to drakfuck

2000-08-18  Pixel  <pixel@mandrakesoft.com>

	* share/Cards+: for i810, force VideoRam

2000-08-18  dam's  <damien@mandrakesoft.com>

	* modules.pm: added isdn type in @drivers_by_category. corrected
	load_thiskind (thx pixel) : it's not unsafe anymore
	* Netconnect.pm: just display PCI isdn card recognized.
	
2000-08-17  Pixel  <pixel@mandrakesoft.com>

	* install_any.pm: many cleanup. moved some functions to common,
	any or install_interactive (newly created)

2000-08-16  dam's  <damien@mandrakesoft.com>

	* install_steps_interactive.pm(configureNetwork): added call to
	isdn configuration
	* added standalone/DrakFuck: standalone entry point to configure
	internet connexion.
	* added Netconnect.pm: internet connexion functions.

2000-08-11  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm (selectInstallClass): yet a bigger
	warning so that people don't choose expert installs. Also set the
	focus on "Custom" by default.
	
	* install_steps_interactive.pm (doPartitionDisks): created, calls
	the wizard.
	* install_steps.pm (doPartitionDisksBefore,
	doPartitionDisksAfter): created (was mainly in
	install2::doPartitionDisks)
	* install2.pm (doPartitionDisks): much cleanup
	* install_any.pm (partitionWizard): working state (still rough)

2000-08-08  Pixel  <pixel@mandrakesoft.com>

	* standalone/rpmdrake (AddMedia): fix the ftp addmedia, fix the
	cdrom addmedia

2000-08-07  Pixel  <pixel@mandrakesoft.com>

	* diskdrake.pm (Resize): 
	* install_steps_gtk.pm (doPartitionDisks): remove the
	before_leaving ensuring the filehandle is closed
	* resize_fat/main.pm (DESTROY): use a better solution for ensuring
	the filehandle is closed

2000-08-07  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: added SiS6326 in the list of chipset that
	needVideoRam, reported on ml.
	* install_steps.pm: fixed auto install of printer.

2000-08-06  Pixel  <pixel@mandrakesoft.com>

	* interactive.pm (ask_from_listf): created this GREAT function
	that should have been created a long time ago.
	* any.pm, install_any.pm, install_steps_gtk.pm,
	install_steps_interactive.pm: a lot of rewrite to use the new
	ask_from_listf, a lot of nice cleanup!

	* fs.pm (df): created, returns the free space of the part. Save it
	in $part->{free}

	* install_steps_gtk.pm (doPartitionDisks): ensure the closing of
	the device in case of error
	* resize_fat/main.pm (new): ensure the closing of the device in
	case of error

	* install_any.pm (partitionWizard): the great partitioning wizard
	is created. Not finished yet (nor called from anywhere)

	* install_steps.pm (doPartitionDisksLnx4win): created function out
	of doPartitionDisks

	* install_steps_gtk.pm (installPackages): removed the displaying
	of size to install (people are bothered cuz not the same size)

2000-08-06  dam's  <damien@mandrakesoft.com>

	* install_steps_gtk.pm (create_steps_window): use drawing area
	instead of button. Implemented all steps events. 

2000-08-05  Pixel  <pixel@mandrakesoft.com>

	* mouse.pm (detect): test a hack for usb mouse via hub
	(sparhawk@enteract.com)	

	* fsedit.pm (undo): force isDirty and needKernelReread only if hd
	hasBeenDirty, otherwise believe the flag saved
	* partition_table.pm (write): flag hd as hasBeenDirty

	* install2.pm: a few renaming of methods so that the step names
	correspond to install2 function and install_steps* methods (eg:
	configureX & setupXfree unified to configureX)

2000-08-04  dam's  <damien@mandrakesoft.com>

	* any.pm (setAutoLogin): added this method to write xdm-config
	* Xconfigurator.pm: clenead autologin code and use of above method

2000-08-04  Pixel  <pixel@mandrakesoft.com>

	* pkgs.pm (setSelectedFromCompssList): save $nb to able to restore
	it in case of max_size reached. only purpose is the log!

	* install_steps_interactive.pm (choosePackages): in newbie, ask
	between Small/Medium/Full install
	* install_steps_interactive.pm (choosePackages): in expert, have
	the min_mark be 0 instead of 1

	* common.pm (find_index): added this nice function

	* install_any.pm (getAvailableSpace_mounted): use common::df
	* loopback.pm (getFree): use common::df
	* commands.pm (df): use common::df
	* common.pm (df): added

	* diskdrake.pm (Resize)): add resizing of reiserfs
	* share/list.i386: add resize_reiserfs


2000-08-02  dam's  <damien@mandrakesoft.com>

	* Xconfigurator.pm : autologin is functionall. When wmsession.d is
	more up to date, I'll add the list of wm to launch at boot. It
	writes in /etc/X11/xdm/xdm-config.
	
2000-08-01  Pixel  <pixel@mandrakesoft.com>

	* install2.pm (miscellaneous): modify as chmouel want (aka, ""
	instead of "no" for MOUSE and KEYBOARD in sysconfig/usb)

	* services.pm: separation between interaction and action.
	* install_steps.pm (servicesConfig): the job is now done here	
	* install_steps_interactive.pm (servicesConfig): only the asking
	part	

2000-08-01  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: fixed the below fixe, now ok.
	* Xconfigurator.pm: fixed a bug for using default card flags
	setting, add support for GeForce DDR for both 3.3 and 4.0.
	* pci_probing/pcitable: fixed NV15 (GeForce2) card entry, now use
	XFree 3.3 as unsupported in XFree 4.0.
	* share/Cards+: added "NVIDIA GeForce2 DDR (generic)".

2000-07-31  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: fixed provided package with choice in deps used with a
	base package, complicated but kernel-fb or similar can be
	unselected now.

2000-07-27  François Pons  <fpons@mandrakesoft.com>

	* install_steps_interactive.pm: changed expert message to ask
	using XFree 3.3 instead of XFree 4.0 used by default (server).
	* Xconfigurator.pm: make sure only one server is installed,
	default to XFree 4.0 if supported unless XFree 3.3 accept
	3D acceleration and not XFree 4.0, ask user in such case.
	* pci_probing/pcitable: added Intel 815 pci ids.

2000-07-26  dam's  <damien@mandrakesoft.com>

	* install_steps_gtk.pm: applied new LN stars, logo title and help
	logo. improved steps appearences.
	* modified share/step-*.xpm
	* added share/help.xpm
	* updated ../HACKING to ling help logo.

2000-07-21  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: enable 3D acceleration configuration with
	XFree86, use /usr/X11R6/lib/modules/glx-3.so for X version 3
	Utah-GLX accelerated module.

2000-07-20  dam's  <damien@mandrakesoft.com>

	* Xconfigurator.pm: use {miscellaneous}{autologuser} instead of
	{miscellaneous}{autologuser} + {miscellaneous}{autologing}.
	* move some README content to ../HACKING

2000-07-19  dam's  <damien@mandrakesoft.com>

	* Xconfigurator.pm: added autologin boxes.
	result is in {miscellaneous}{autologin} and in
	{miscellaneous}{autologuser}
	
2000-07-19  François Pons  <fpons@mandrakesoft.com>

	* any.pm: added default root to existing root device when adding
	an entry in bootloader.
	* bootloader.pm: avoid duplicating entry (floppy and old-floppy)
	when they are identical.
	manage hackkernel by suggest an entry by default if installed.
	* install_steps.pm: reworked symlink closure for bootloader
	to keep previous configuration.

2000-07-11  François Pons  <fpons@mandrakesoft.com>

	* bootloader.pm: merged lilo.pm and silo.pm inside bootloader.pm,
	this include a configure_entry from silo.pm to build a initrd if
	used.
	* share/compssList: added kde2 packages.
	* share/compssUsers: added kde2 group, renamed kde to kde1 group
	specific.

2000-07-07  François Pons  <fpons@mandrakesoft.com>

	* install2.pm (choosePackages): always execute setPackage to copy
	hdlist* and depslist files (support mixed partitionDisks and
	choosePackages).
	* install_any.pm (setPackages): avoid clearing upgrade flag.
	* install_steps.pm (choosePackages): use $first_time to avoid
	reselection of packages according to compssList.
	* install_steps_interactive (choosePackages): use $first_time and
	$individual to avoid reselection of packages according if user go
	back to step choosePackages.
	* pkgs.pm: added psUpdateHdlistsDeps to restore hdlist* and
	depslist files in /var/lib/urpmi.
	* diskdrake.pm: fixed uneditable combo for Mount point action.

2000-06-23  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: better approach for Sun* server in newbie.
	* fs.pm: added romfs support for mount.
	* fsedit.pm: changed auto allocation for partitions for sparc*.
	* install2.pm: restored bootdisk creation and auto install boot
	disk creation for sparc*.
	* install_any.pm: changed vfat to romfs when mounting kickstart
	floppy on sparc*.
	* install_steps.pm: avoid proposing formating sunos partition.
	* install_steps_interactive.pm: boot disk for sparc* and support for
	installation of SILO on /boot partition (sparc*).
	* install_steps_newt.pm: removed cylinder 0 bug warning.
	* interactive.pm: fixed typo for not_edit set to 1 by default.
	* partition_table.pm: fixed get_holes on sparc* where a whole disk
	partition caused problems.
	* partition_table_sun.pm: removed cylinder 0 bug as found in mke2fs.
	* silo.pm: handle /boot partition, install silo.conf in /boot and
	make a symlink from /etc.
	* share/list.sparc: added losetup and genromfs for boot disk creation.

2000-06-21  Pablo Saratxaga <pablo@mandrakesoft.com>

	* lang.pm: changed the way console font data is written; not all
	of the [0], [1], [2] values must defined, so three cases must be used.
	Also added a variable $CHARSET for /etc/sysconfig/i18n; it can then
	be used by console-tools to load the proper compose table

2000-06-20  François Pons  <fpons@mandrakesoft.com>

	* c/sbus.c: added some functions for silo.c integration.
	* c/silo.c: initial release including write in prom, and translation
	of disk name from openprom to linux, rh version modified.
	* silo.pm: added write in prom, support of sunos boot from silo.
	* partition_table.pm: added support for ufs partition like windows one.
	* install_steps_interactive.pm: added other entries in silo.
	* install_steps.pm: support sunos partition.
	* install_any.pm: automatically mount sunos partition with diskdrake.
	* fsedit.pm: added /mnt/sunos suggested mount point.
	* fs.pm: added ufs support for mount.

2000-06-19  François Pons  <fpons@mandrakesoft.com>

	* crypto.pm: modified for getting sparc crypto file for sparc*.
	* modules.pm: make sure to load sd_mod when needed.
	* pci_probing/main.pm: always use loaw_endian in pci structs.
	* pci_probing/translate-pcitable.pl: added arch specific module name
	translation.

2000-06-16  Pixel  <pixel@mandrakesoft.com>

	* modules.pm (write_conf): rename conf.modules to modules.conf if
	needed. Outputs to modules.conf

	* detect_devices.pm (cdroms): fix using scd0 for ide-burners when
	already a scsi cdrom drive

2000-06-13  Pablo Saratxaga <pablo@mandrakesoft.com>

	* pkgs.pm: added 'acon' requirement for all right-to-left languages

2000-06-07  François Pons  <fpons@mandrakesoft.com>

	* diskdrake.pm: added SunOS partition as blue for diskdrake.
	* install_steps_interactive.pm: make sure of no division by zero may
	happen.
	* install_steps_newt.pm: added WARNING for fdisk on sparc*.
	* modules.pm: make sure of loading sd_mod module after any scsi module.
	* sbus_probing/main.pm: insmod openprom before trying sbus probing.
	* pkgs.pm: corrected by use of parabolic solution for size approximation.
	* silo.pm: try with "silo -p 2 -t" if "silo -t" has failed due to bad probe.

2000-06-05  Pablo Saratxaga <pablo@mandrakesoft.com>

	* install_steps.pm,lang.pm: added load_console_font, to load the 
	proper console fonts (text mode install is not very useful otherwise)

2000-06-03  Pixel  <pixel@mandrakesoft.com>

	* diskdrake.pm (Create): don't accept less than 32MB part for reiserfs
	* diskdrake.pm (Type): don't accept less than 32MB part for reiserfs

2000-06-01  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/fonts.tar.bz2: replaced the Korean 16pt fonts by a 12pt font;
	it fits better with the other fonts. Added a 'README' file with
	some comments and the required copyright notice

2000-05-29  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: added support for SBUS card autodetection.
	* commands.pm: added lssbus to list SBUS devices detected.
	* detect_devices.pm: removed alpha restriction on USB.
	* install_steps_interactive.pm: added SBUS support.
	* c/sbus.c: initial revision, core SBUS support (inspired from kudzu).
	* c/stuff.xs.pm: added wrapper for sbus.c interface.
	* sbus_probing/main.pm: initial revision (inspired from kudzu).

2000-05-27 Adam Lebsack <adam@mandrakesoft.com>

	* share/list.ppc: various PPC modifications, for HFS
	* partition_table_mac.pm: bug fixes
	* partition_table.pm: various HFS fixes, isHiddenMacPart()
	* diskdrake.pm: added HFS to top buttons when run on PPC
	* keyboard.pm: fixed name of mac-fr2-ext keymap
	* install_steps_gtk.pm: added Xpmac server support for PPC.
	* install_steps_interactive.pm: disallow hardware configuration on PPC for
	now.  All drivers should be in the kernel. setup_this_kind().
	* fsedit.pm: fixed verify_hds for PPC, /proc/partitions will never match
	our partition table read.  Added PPC grep condition for PPC in get_visible_fstab.
	* fs.pm: fix argument for HFS formatting.	
	* Makefile: special installation of PPC files.

2000-05-25  Chmouel Boudjnah  <chmouel@mandrakesoft.com>

	* standalone/drakboot: Don't display Configure-/LILO/GRUB/ on
	alpha|sparc.

2000-05-25  François Pons  <fpons@mandrakesoft.com>

	* silo.pm: added configure_entry to try creating an initrd for an image
	entry in bootloader. fixed wrong usage of run_programm::rooted with 2>.
	* commands.pm: fixed insmod command to take modules64.cz* on sparc*
	* install2.pm: removed create boot disk and create auto install disk on
	sparc*. force writing of /etc/conf.modules for step setupBootloader.
	* install_steps.pm: fixed upgrade for sparc* and disable supermount for sparc*.
	* install_steps_interactive.pm: added missing $prefix for glob_. call
	configure_entry in setupSILO. fixed cancel or None entry on setupBootloader.
	* modules.pm: updated alias for sparc*.
	* any.pm: fixed proprable wrong test for setupBootloader in beginner at
	the very beginning.
	* printer.pm: fixed typo.
	* Xconfigurator.pm: avoid testing if using a Sun* server, added depth and
	resolution for these server too.

2000-05-24  François Pons  <fpons@mandrakesoft.com>

	* partition_tabel.pm: fixed wrong detection of DOS partition on sparc*.
	* partition_table_sun.pm: fixed a bug when reading partition table
	with unused partition in the middle of the table.

2000-05-23  François Pons  <fpons@mandrakesoft.com>

	* common.pm: update arch to take into account sparc and sparc64. added
	better_arch and compat_arch function.
	* silo.pm: fixed adding new kernel automatically.
	* install2.pm: removed create boot disk stuff for sparc*.
	* install_steps.pm: added initrd generation for alpha. added ldconfig
	at end of installation. removed /usr/bin/dumpkeys existence test on
	sparc*, should be added in the future.
	* install_steps_interactive.pm: removed supermount for sparc*.
	* install_steps_gtk.pm: added /dev/kbd device creation and permedia2
	support for sparc*. removed screen limit of 1024x768.
	* detect_devices.pm: fixed problem on machine with really no IDE interface.
	* modules.pm: added support for 32 and 64 bit architectures on sparc*.
	* install_any.pm: fixed getAvailableSpace_mounted if /usr is not a separate
	partition.
	* pkgs.pm: added support for multi-arch rpm file (need for sparc*),
	fixed correctSize and invCorrectSize to take back a linear approximation
	above 9Gb approximatively. removed ftp rewind as broken currently.
	* keyboard.pm: fixed bad list of available keyboard (broke sparc*), fixed
	globing (removed) against existing '*'.
	* partition_table.pm: removed support for non SUN partition table, as it
	may freeze the kernel or may be blanked?
	* Xconfigurator.pm: take Sun24 server by default on sparc*, add support
	for permedia2 card (3DLabs server).
	* share/list.sparc: added perl-5.6.0 for sparc*, fixed for sparc*.
	* Makefile: added support for modules and modules64 for sparc*.
	* c/stuff.xs.pm: added kernel_arch function for getting the current true
	architecture provided by the kernel (uname -m).

2000-05-09  Pixel  <pixel@mandrakesoft.com>

	* install_any.pm (kdeicons_postinstall): the URL link to doc must
	be $lang/index.html, not only $lang.

	* standalone/mousedrake: add handling of XF86Config-4

	* any.pm (setupBootloader): fix bug (was adding 2 glob_'s)

2000-05-08  Pixel  <pixel@mandrakesoft.com>

	* install2.pm (main): move the touch of some files here to please linuxconf
	
	* install2.pm (miscellaneous): s/KBD/KEYBOARD/

	* lilo.pm (install_grub): don't keep symlinks for reiserfs
	* lilo.pm (suggest): allow grub everytime now (not only if !reiserfs)

	* install_any.pm (getHds): default mount point for windobe in
	lowercased for StartOffice(!)

2000-05-08  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/keyboards.tar.bz2: Fixed Brazilian keyboard (.br); added
	  Iranian (.ir), Arabic (.ar) and new Lithuanian (.lt_new) keyboards
	* keyboard.pm: Added new Lithuanian keyboard and changed the
	  string for brazilian ABNT-2 to state more clearly its ABNT nature
	  (it is not a standard PC keyboard; it uses some different keycodes)

2000-05-07  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm (choosePackages): return availableCorrected
	instead of available

	* pkgs.pm (correctSize): add 18MB for full multi-cd (many hdlist's)

	* modules.pm (text2driver): same as text2lang below
	* keyboard.pm (text2keyboard): same as text2lang below
	* lang.pm (text2lang): replace the while (... each) by a foreach
	(keys) (because each is dangerous if loop is exited)

	* install_steps_interactive.pm (selectKeyboard): better handling
	of multiple langs question.

	* ftp.pm (new): Timeout set to 60 (seconds), was default (120)

	* install_steps_interactive.pm (setup_thiskind): remove ide-*
	from modules displayed as loaded.

2000-05-06  Pixel  <pixel@mandrakesoft.com>

	* fsedit.pm (check_mntpoint): verify that standard mntpoints (/
	/usr) are not on not trueFS

	* any.pm (setupBootloader): add $prefix for the 2 glob_'s

2000-05-07  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/keyboards.tar.bz2: added Ukrainian keyboard xmodmap.ua

2000-05-06  Pablo Saratxaga <pablo@mandrakesoft.com>

	* printerdrake.pm: fixed English error

2000-05-05  Pixel  <pixel@mandrakesoft.com>

	* Xconfigurator.pm (monitorConfiguration): remove the special case
	for fbdev.

	* install_steps_interactive.pm (setup_thiskind): replace return by
	next in case load_module fails.

	* install_steps_gtk.pm (selectInstallClass1): translate Install/Upgrade

	* Xconfigurator.pm (cardConfiguration): force xf4 for rage 128's
	* Xconfigurator.pm (testFinalConfig): force $bad_card for xf4

	* pkgs.pm (correctSize): updated for 7.1

	* install_any.pm (getAvailableSpace): move the removing of
	$minAvailableSize here.

2000-05-04  Pixel  <pixel@mandrakesoft.com>

	* install2.pm (configurePrinter): give clicked to printerConfig

	* interactive.pm (ask_from_entries_ref): set default val if not_edit

	* interactive_newt.pm (ask_from_entries_refW): remove setting of
	default val. Now done in interactive::ask_from_entries_ref

	* interactive_gtk.pm (ask_from_entries_refW): handle empty value

	* modules.pm (read_already_loaded): ensure that already loaded
	modules are put in %loaded.
	* modules.pm (load_ide): add loading if ide-probe-mod (for new kernel)

	* lilo.pm (install_lilo): truncate label's to 15 chars

	* install_any.pm (generate_ks_cfg): fix missing space
	* install_any.pm (generate_ks_cfg): fix bug for nfs comand

	* install2.pm: get rid of autoformat
	* install_steps.pm (choosePartitionsToFormat): get rid of autoformat

2000-05-03  Pixel  <pixel@mandrakesoft.com>

	* any.pm (setupBootloader): replace ask_many_from_list by
	ask_from_list for bootloader choice

	* services.pm (drakxservices): stop immediately service if removed

	* install_steps.pm (configureNetwork): replaced dhcpxd by dhcpcd
	* install_steps.pm (afterInstallPackages): touch some files to
	please linuxconf

2000-05-03  François Pons  <fpons@mandrakesoft.com>

	* install_steps.pm: updated min size, fixed kppprc generation.
	* install_any.pm: make sure postinstall-rpm is here before
	erasing (avoid error on reboot only).

2000-05-02  Pixel  <pixel@mandrakesoft.com>

	* raid.pm (format_part): don't call raid::make if part is already
	formatted (as raidstop fails)

	* Xconfigurator_consts.pm: Rage128 and 3dfx are not available any
	more	

	* install_steps_interactive.pm (setup_thiskind): make insmod'ing
	fail a simple warning.

	* Xconfigurator.pm (readMonitorsDB): adapt to new MonitorsDB
	* share/MonitorsDB: take new one from RedHat

	* standalone/drakboot: added kfloppy

	* g_auto_install: add $dir/lib to LD_LIBRARY_PATH (it was silly
	not to have it)

2000-05-01  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm (setRootPassword): remove
	NIS_server, use NIS instead
	* install_any.pm (setAuthentication): remove NIS_server, use NIS instead

	* standalone/rpmdrake (AddMedia): hdlist.cz2 instead of hdlist

2000-04-28  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm (afterInstallPackages): fix yet another bug for
	ttf from windobe handling

	* install_steps_interactive.pm (selectInstallClass): hide beginner
	mode in corporate. Display special help.

2000-04-29  Pablo Saratxaga <pablo@mandrakesoft.com>

	* my_gtk.pm: added call to Gtk->init; that makes 16 bit locales
	text to be properly aligned (reported by Craig Chang
	<craig_chang@taipei.siscomm.com.tw>)
	* common.pm: now that po handling is correct, I changed the order
	of reading variables so that it follows the standards ($LANGUAGE first)
	* share/fonts.tar.bz2, lang.pm: added an 8pt font for cp1251

2000-04-28  François Pons  <fpons@mandrakesoft.com>

	* install_steps*.pm: added support for selection of package during
	upgrade the same way it is done for installation. added check of
	minimal size, abort else (at least let the user know about :-)
	fixed crypto if no network interface available.
	* install2.pm: fixed problem during upgrade that lost network
	configuration.

2000-04-28  Pixel  <pixel@mandrakesoft.com>

	* modules.pm (load_raw): don't call commands::insmod, do it in
	place. Merge with load_multi

	* install_steps.pm (afterInstallPackages): fix windobe ttfonts
	symlinking	

	* Xconfigurator.pm (cardConfiguration): load module agpgart for
	i810
	
	* install_any.pm (getHds): changed the mount point setting for
	windows partitions as device_windobe is not unique

2000-04-27  Pixel  <pixel@mandrakesoft.com>

	* install_steps_gtk.pm (create_steps_window): changed to adapt to
	new hidden format

	* install2.pm (@installSteps): changed the way hidden is handled.
	Now it is a true perl expression (great power now)

	* install_steps_gtk.pm (selectInstallClass1): update steps window
	before asking normal/devel/server. Nicer!

	* install_steps_interactive.pm (configureNetwork): when "Cancel"
	pressed at network interface configuration do not skip all
	configuration.	

2000-04-26  François Pons  <fpons@mandrakesoft.com>

	* install_steps.pm (pppConfig): modified a lot, removed template
	file for ifcfg and chat file.

2000-04-26  Pixel  <pixel@mandrakesoft.com>

	* install_steps_gtk.pm (choosePackagesTree): use a fix width for
	the tree column (so that the checkbox are always visible without
	scrolling)	

	* standalone/drakboot: drakfloppy and gfloppy are X only, no need
	to propose them in console
	
	* install_any.pm (relGetFile): added auto_inst to files to get
	from Mandrake/base

	* install2.pm (main): changed auto_inst behaviour

	* standalone/adduserdrake: fix a bug (s/$o/$in/g)

	* interactive_newt.pm (ask_from_entries_refW): now handling
	complete/changed/focus_out callbacks (at least more than before)	

	* Newt/Newt.xs: added rough callback handling

2000-04-25  François Pons  <fpons@mandrakesoft.com>

	* printerdrake.pm: added support for PPA more easily, allow
	printers entry using ppa driver event if pnm2ppa not installed,
	install it if neccessary after.
	* network.pm, install_steps.pm, install_steps_interactive.pm:
	added support for stoping a network interface, usefull for ppp0 to
	avoid using it too long.
	* install_steps.pm: fixed missing local on pap_secrets file.

2000-04-25  Pixel  <pixel@mandrakesoft.com>

	* lilo.pm (install): moved the generation of the keytable here. It
	is used by both lilo & grub (lilo is not always installed as was
	assumed)	

	* common.pm (formatAlaTeX): remove bounding spaces

	* pkgs.pm (setSelectedFromCompssList): remove the hack for min
	mark 25 in beginner
	* install_steps_interactive.pm (choosePackages): set $min_mark to
	25 in beginner

2000-04-24  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm (setupXfree): add a yesorno
	question for choosing between XF4 and XF3 in expert

	* install_steps_gtk.pm (choosePackagesTree): enlarge the tree window

	* install_any.pm (update_userkderc): make sure uid and gid are kept

	* diskdrake.pm (Create): add Extended_0x85 as a choice for expert

	* partition_table.pm (add_extended): handle a 3rd arg,
	$extended_type to tell which kind of extended partition is wanted
	* partition_table.pm (adjust_main_extended): in non-expert,
	automatically set extended to linux-extended if there's only
	linux-type partitions.	

2000-04-22 Pablo Saratxaga <pablo@madrakesoft.com>

	* install_steps_interactive.pm: s/Mb/MB/ as 'b' is symbol for bit
	  and not for byte. RAM is expressed in megabytes -> MB

2000-04-19  François Pons  <fpons@mandrakesoft.com>

	* install_steps_interactive.pm: fixed crazy mutli CD manipulation.
	* printer.pm: fixed wrong prototype of print_pages.
	* install2.pm: set version to 7.1 for crypto stuff.
	* crypto.pm: commented ackbar crypto site.

2000-04-17  Pixel  <pixel@mandrakesoft.com>

	* lilo.pm (suggest): in failsafe, runlevel ASKRUNLEVEL (handled by
	linuxconf)	

2000-04-14  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm (choosePartitionsToFormat): don't
	ask about checking bad blocks for reiserfs, cuz not handled

	* fs.pm (mount): reiserfs handling
	* fs.pm (format_reiserfs): added
	* fs.pm (write_fstab): add option "notail" for reiserfs if
	the partition holds the kernel (/boot or /)

	* partition_table.pm (isTrueFS): added, replaces most occurences
	of isExt2

2000-04-12  François Pons  <fpons@mandrakesoft.com>

	* install2.pm: force installation step if package have been
	selected on step choose packages.
	* install_any.pm: protected against die in perl (setstep or
	theme_changed).

2000-04-11  François Pons  <fpons@mandrakesoft.com>

	* resize_fat: added some limits verification.
	* interactive_gtk.pm: corrected swap of arg with help adding.

2000-04-10  François Pons  <fpons@mandrakesoft.com>

	* interactive_gtk.pm, my_gtk.pm: added tooltips for ask_from_list,
	which is used by printerdrake only. drops key bindings.

2000-04-07  François Pons  <fpons@mandrakesoft.com>

	* tools/serial_probe: obsoleting pnp_serial which is now replaced
	by this one, taken from kudzu, really faster and probe all serial
	devices at one time. modified to probe correctly modem :-)
	* mouse.pm: updated to use serial_probe interface of
	detect_devices.pm.
	* detect_devices.pm: modified to use serial_probe, cache probed
	devices to avoid reprobing.

2000-04-06  François Pons  <fpons@mandrakesoft.com>

	* install_steps_interactive.pm, install_steps.pm: added support
	for peerdns options of ppp, so removed dns address unless expert.

2000-04-05  François Pons  <fpons@mandrakesoft.com>

	* crypto.pm, install_steps_interactive.pm, install2.pm,
	install_steps.pm: added crypto stuff to support hdlist-crypto.cz2
	and depslist-crypto. dependancies are not supported but with a
	simpler format of depslist file where closure are not done and
	only package name are used for dependancies.
	* pkgs.pm: added better support for multi CD manipulation,
	including selection and refus.

2000-04-04  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: modified selection packages from compssList by
	incremental selection, much more quickly.
	added selected medium for selecting a package.
	* install_any.pm: refused media hash transfered to selected value
	of media table.
	@needToCopy list should only have package of default medium.

2000-04-03  Pixel  <pixel@mandrakesoft.com>

	* fs.pm (format_ext2): add options "-b 1024 -O none" for alpha

2000-03-31  François Pons  <fpons@mandrakesoft.com>

	* install_steps_gtk.pm: made changeMedium sub modification
	permanent.
	* pkgs.pm: modified upgrade to avoid use of header.

2000-03-31  Pablo Saratxaga <pablo@mandrakesoft.com>

	* keyboard.pm: some more choices for PPC keyboards

2000-03-30  François Pons  <fpons@mandrakesoft.com>

	* install2pm: added eval around loading af_packet and postinstall
	copy of RPMS.
	* devices.pm: added /dev/kdb for SPARC.
	* install_any.pm: modified multi CD management, postinstall copy
	of RPMS.
	* install_steps_gtk.pm: added support for Xsun server for SPARC.
	* install_steps_interactive.pm: added multi CD dialog box for
	selecting CD available. Serialized ethernet configuration and ppp
	configuration.
	* pkgs.pm: added check for infinite recursion for bad depslist.
	* printer.pm: better test for reparse of printerdb.
	* Xconfigurator.pm: added support for Xsun server for SPARC.

2000-03-30  Pixel  <pixel@mandrakesoft.com>

	* install_steps_gtk.pm (choosePackagesTree): enhance tree selection

2000-03-29  Pixel  <pixel@mandrakesoft.com>

	* interactive_gtk.pm (wait_messageW): add some padding (nicer)

	* install_steps_interactive.pm (generateAutoInstFloppy): created,
	creates a floppy for auto installs.

	* install_any.pm (generate_ks_cfg): created, generates stage1
	ks.cfg file

	* share/po/DrakX.pot: added special comment for grub entry

2000-03-28  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm (selectKeyboard): sort langs for
	many-lang install

	* mouse.pm (write): add WHEEL telling if a wheel mouse is there

2000-03-28  Pablo Saratxaga <pablo@mandrakesoft.com>

	* keyboard.pm: added entries for all three Armenian keyboards

2000-03-26  Pixel  <pixel@mandrakesoft.com>

	* install_any.pm (install_urpmi): full support for multi-hdlist's	

	* pkgs.pm (extractHeaders): look for hdlist in /tmp instead of
	$prefix/var/lib/urpmi
	* pkgs.pm (psUsingHdlists): put hdlist's in /var/lib/urpmi with a
	fake name. Access via /tmp/$hdlist is given for non-fake name

	* detect_devices.pm (hasHPT): return undef if no htp (silly me :-/)

2000-03-25  Pixel  <pixel@mandrakesoft.com>

	* lilo.pm: updated to the new format of entries. It was an hash.
	Now the key is field kernel_or_dev, and entries is an array.
	
	(get): added, it returns the entry using a kernel
	   (needed because entries is no more a hash)

	* install_steps_interactive.pm (setupLILO): adapted to the new format

	* Xconfigurator.pm (write_XF86Config): basic XF86Config-4 handling	

	* fsedit.pm (suggest_part): if suggested part contains a field
	"hd", ensure the partition is created on this hard drive

	* install2.pm (main): before leaving installation, remove
	/var/lib/urpmi if urpmi not installed	

	* diskdrake.pm (Resize): ext2resize to size $part->{size} instead
	of $size

2000-03-24  Pixel  <pixel@mandrakesoft.com>

	* detect_devices.pm (hasHPT): added. Now nice handling of hpt366
	(ultra66) without rebooting and making special floppy :)

	* lilo.pm (install_grub): much better grub configuration (better
	than lilo's :pp)

	* install_steps.pm (setupBootloaderBefore): remove entry floppy
	for security > 3

2000-03-23  Pixel  <pixel@mandrakesoft.com>

	* install_steps_gtk.pm (selectMouse): added, takes care of telling
	the X server if the user changed the mouse type. Only done if
	a serial mouse is chosen.

	* install_steps_newt.pm (doPartitionDisks): add a call to

	* mouse.pm (write): added "device=" in etc/sysconfig/mouse for
	devfs (it looses the symlink /dev/mouse)

2000-03-22  Pixel  <pixel@mandrakesoft.com>

	* pci_probing/pcitable: replace Server:Rage128 by proper XFree entry

2000-03-20  François Pons  <fpons@mandrakesoft.com>

	* detect_devices.pm, fs.pm, install_any.pm: added supports for
	LS-120 floppy drive and icons on desktop of KDE (untested).
	* printer.pm, printerdrake.pm: added supports for PPA interface in
	new rhs-printfilters, always enable "Print text as postscript"
	option for such printers.

2000-03-20  Pablo Saratxaga <pablo@mandrakesoft.com>

	* keyboard.pm: changed XKB name for Swedish keyboard
	  changed XKB names for Russian and German keyboards
	  added a choice for "Croatian" keyboard
	* share/compss{,List}: added various new locales-*, ispell-* 
	  and netscape-* files. changed ppa to pnm2ppa.

2000-03-17  François Pons  <fpons@mandrakesoft.com>

	* install_steps.pm: added setup for all configured queue.
	* install_steps_interactive.pm: modified for retrieving packages
	or current configuration.
	* printer.pm: correction, tested retrieve of printer
	configuration without printtool comments in printcap file: added
	update of entry according to gsdriver used (untested again).
	* printerdrake.pm: better handling of cancel, manage of multiple
	queue definition together (as lp|My printer).

2000-03-16  François Pons  <fpons@mandrakesoft.com>

	* install_steps_interactive.pm: moved in printerdrake.pm the test
	of printer usage.
	* printerdrake.pm: heavy modification to handle multiple queue,
	corrected some bugs too, added much more features as printtool.
	* printer.pm: added more features for filter, allow printer to be
	retrieved without help of printtool id in printcap file (untested).

2000-03-14  Pixel  <pixel@mandrakesoft.com>

	* diskdrake.pm (Loopback): handling of the file loopback: test
	existence of the file and take its size.

2000-03-14  François Pons  <fpons@mandrakesoft.com>

	* install_any.pm: corrected for duplicate file on other CD.

2000-03-13  Pixel  <pixel@mandrakesoft.com>

	* detect_devices.pm (floppies): don't return hash but the device name

2000-03-13  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm, install_any.pm: small correction for multiple media
	installation.
	* tools/syncrpms: added for handling synchronisation of multiple source
	rpm directories (and multiple target), include cleaning.
	* tools/closurepkgs: tools to get rpm that may be installed by DrakX
	after normal packages installation (printer, network, X11...), may
	be used to duplicate on other CD some important stuff of the first
	one.

2000-03-12  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm (choosePackages): compute the
	max_size very simply (sum of all package sizes), otherwise too costly

	* pkgs.pm (install): call cleanHeaders at the end
	* pkgs.pm (cleanHeaders): created

	* install2.pm (miscellaneous): /etc/msec/init.sh is now
	/usr/sbin/msec (yoann thanks for not telling :pp)

	* pkgs.pm (install): remove the $prefix of mountpoints for not
	enough room to install error message

2000-03-11  Pixel  <pixel@mandrakesoft.com>

	* my_gtk.pm (_create_window): add callback on focus to
	ensure_focus. The result is no more 3 focus states with 2 buttons.

	* interactive_gtk.pm (ask_from_treelistW): better keyboard handling

	* raid.pm (make): check the result of mkraid. Suggest raidtools
	are missing in standalone diskdrake

	* devices.pm (set_loop): created, searches for an available
	loopback and sets the file to it

	* lilo.pm (dev2grub): fixed a missing slash

	* interactive_gtk.pm (wait_message_nextW): do not update if same
	message, otherwise silly gtk won't do anything and we'll wait
	forever :(

2000-03-10  François Pons  <fpons@mandrakesoft.com>

	* *.pm: heavy modification to take into account multiple media
	installation.

2000-03-10  Pixel  <pixel@mandrakesoft.com>

	* install2.pm (@install_classes): cleanup, no more i18n (is now in
	install_steps_interactive), remove old entries

2000-03-09  Pixel  <pixel@mandrakesoft.com>

	* modules.pm (write_conf): don't add alias block-major-11 in every case
	* modules.pm (add_alias): special case oss (post-installs modprobe snd-pcm-oss)

	* fs.pm (format_*): move the @options before the device

	* loopback.pm: created, added a lot of stuff for loopback in
	diskdrake.pm, fs.pm...

2000-03-08  Pixel  <pixel@mandrakesoft.com>

	* partition_table.pm: %type2fs replaced ox402 by 0x402

	* detect_devices.pm (cdroms): fix "scd" (should be "scd0")

	* install_any.pm (install_urpmi): update for new hdlist.cz2

2000-03-07  Pixel  <pixel@mandrakesoft.com>

	* interactive_gtk.pm (ask_from_treelistW): s/focus_row/set_focus_row/

	* install_steps_interactive.pm (addUser): force add a normal user
	for security 4

2000-03-05  Pixel  <pixel@mandrakesoft.com>

	* my_gtk.pm (_ask_from_list): replace focus_row with set_focus_row
	(tis the Gtk-Perl 0.7002 was of doing)

2000-03-04  Pixel  <pixel@mandrakesoft.com>

	* modules.pm (write_conf): add ide-floppy to the modprobes of
	post-install supermount

2000-03-03  Pixel  <pixel@mandrakesoft.com>

	* commands.pm (ps): add RSS to ps command

2000-03-02 Adam Lebsack <adam@mandrakesoft.com>

	* mouse.pm: added mac mouse detection to mouse::detect.
	* detect_devices.pm: added a routine to probe /dev/usbmouse on macs.

2000-03-01  François Pons  <fpons@mandrakesoft.com>

	* *.pm: heavy modification to take into account smaller
	transaction during installation.
	still a lot of test to perform, no provides updated currently and
	building of hdlist.cz2 and depslist.ordered need old files...
	nothing done for hdlist.gz during post installation, but
	hdlist.cz2 is already copied in /var/lib/urpmi [and is used during
	installation of packages as extract_archive need a true file].

2000-03-01  Pixel  <pixel@mandrakesoft.com>

	* lilo.pm (install_grub): creation

	* network.pm (write_interface_conf): ONBOOT = !pcmcia

	* install_steps_gtk.pm (new): more intelligent SIGCHLD handler

2000-02-29  Pixel  <pixel@mandrakesoft.com>

	* modules.pm: moved common network stuff from "net" to "network"
	(modules like nfs lockd...)

	* fs.pm (write_fstab): moved the sort to the right place

	* services.pm (drakxservices): chkconfig --list is i18n'ed :(
	set LANGUAGE=C before

	* partition_table_raw.pm (get_geometry): geom{cylinders} must not
	be a decimal value :)

	* install_steps_gtk.pm (create_logo_window): set_name logo for
	logo window
	* share/install.rc: force disabling of background image theme

	* install_steps_gtk.pm (enteringStep): add step information for
	console 1

	* any.pm (addKdmIcon): new function
	* install_steps.pm (addUser): handle field icon
	* install_steps_interactive.pm (addUser): add choice of kdm icon
	* standalone/adduserdrake: add choice of kdm icon

	* diskdrake.pm (ask_all_data...): change for easier i18n

	* install_steps.pm (miscellaneous): add CLEAN_TMP handling
	(need cleaning?)
	* install_steps_interactive.pm (miscellaneous): add CLEAN_TMP
	option in expert
	* install2.pm (miscellaneous): add CLEAN_TMP option for
	/etc/sysconfig/system	

	* install_steps_interactive.pm (miscellaneous): forbidden
	useSupermount if high security.	

	* mouse.pm (detect): fix bug (ttyS instead of ttyS0)

2000-02-28  Pixel  <pixel@mandrakesoft.com>

	* install_steps_gtk.pm (createXconf): do not use "Generic VGA" for
	svga and accel. SVGA also wants 16 bpp. added ugly modeline for
	800x600.	

	* partition_table_raw.pm (get_geometry): when the
	HDIO_GET_IDENTITY fails, defaults to what GETGEO gave

	* install2.pm (main): use modules::load_multi to increase boot
	start time

	* modules.pm (load_multi): added this function for loading many
	modules at once.

	* install_steps_gtk.pm (new): increase time before timeout

	* detect_devices.pm (cdroms): change the device associated with
	ide-burners (hdX -> scdX). Problem is how to know the X in scdX :(	

	* modules.pm (write_conf): sort scsi_hostadapter's

2000-02-27  Pixel  <pixel@mandrakesoft.com>

	* install2.pm (main): load ide-probe and the like in 'prereq' type
	so no aliases are added to conf.modules

2000-02-25  Pixel  <pixel@mandrakesoft.com>

	* devices.pm (make): small code cleanup

	* partition_table_raw.pm (adjustEnd): more explicit error message

	* fsedit.pm (allocatePartitions): fix a bug (size was getting too
	big after each allocation) making adjustEnd cry

2000-02-24  Pixel  <pixel@mandrakesoft.com>

	* interactive_gtk.pm (new): added the "new" method to initialize
	windowheight for isStandalone

	* install_steps_gtk.pm (new): returns undef in case no X server
	works	

	* install2.pm (main): moved the ejectCdrom from install_steps::END
	to here
	* install2.pm (main): fix the $SIG{SEGV} handler
	* install2.pm (main): added a "try again" in text install if the
	"new" fails

	* install_steps_interactive.pm (createBootdisk): fix an error for
	non fdX choice of floppy drive
	
	* install_steps_interactive.pm (setup_thiskind): remove the
	"defined @l"

2000-02-23  Pixel  <pixel@mandrakesoft.com>

	* install2.pm (%suggestedPartitions): remove any /boot entries
	* install2.pm (selectInstallClass): removed the special code to
	/boot entries from suggestedPartitions for on non-intel (and it
	was buggy :)
	* fsedit.pm (@suggestions): remove the /boot entry
	* fsedit.pm (check_mntpoint): remove the 1024 cylinder check	
	* fsedit.pm (suggest_part): remove the 1024 cylinder special case

	* install_steps_interactive.pm (setupLILO): replace linear option
	by lba32

	* lilo.pm (suggest): add lba32 by default

	* install_steps_interactive.pm (load_thiskind): moved the HPT
	stuff to install_any::ultra66 and call it.
	Add sound card configuration (3 lines :)

	* my_gtk.pm and interactive_gtk: resize the list and tree based on
	root window size

	* install_steps_gtk: $width and $height goes $::rootwidth and
	$::rootheight, also other dimensions goes global (main::)

	* commands.pm (strings): replace the typo \{$n,} by {$n,}

2000-02-23  François Pons  <fpons@mandrakesoft.com>

	* build_archive, extract_archive: changed format of TOC to speed
	up extraction of archive, now 5 to 6 times faster to read TOC :-)
	
2000-02-22  Pixel  <pixel@mandrakesoft.com>

	* Xconfigurator.pm: load "Cards" database only to translate NAME
	to fields. Added file CardsNames created from Cards using
	share/Cards2CardsNames. Kind of list of normalized NAMEs	

	* MonitorsDB: replace the ` ' separator for vendor by `|'

	* install_steps_interactive.pm (timeConfig): use ask_from_treelist	

	* interactive_gtk.pm (ask_from_treelist): creation of
	ask_from_treelist. Usage is just the same as ask_from_list with
	one more argument (the separator eg: |, /)

2000-02-21  François Pons  <fpons@mandrakesoft.com>

	* diskdrake.pm: fixed deadlock while trying to create partition
	when available space is equal or less than 2 cylinders. fixed
	Create action on corrupted partition by removing stalling window.
	Blocked partition table writing if there are error by forcing user
	to correct partition table.
	* partition_table.pm: fixed typo in verifyParts with cdie, added
	verifyParts on Resize action.
	
2000-02-21  Pixel  <pixel@mandrakesoft.com>

	* install_steps_gtk.pm (create_big_help): display the help in full
	screen	

	* my_gtk.pm (_create_window): add big help on F1

	* common.pm (add2hash): now returns the first parameter

	* mouse.pm (detect): really defaults to serial mouse

	* interactive.pm: add ask_many_from_list_with_help and
	ask_many_from_list_with_help_ref

	* services.pm: creation, it handles what was in
	standalone/drakxservices

2000-02-18  Pixel  <pixel@mandrakesoft.com>

	* install_steps_gtk.pm (createXconf): added /dev/ (X wants
	"/dev/psaux" and not "psaux")

	* diskdrake.pm (Create): show start sector even for non-expert on
	non-i386

2000-02-16  Pixel  <pixel@mandrakesoft.com>

	* mouse.pm (detect): add defaults to serial mouse

	* install_steps_gtk.pm (createXconf): remove the defaults to
	serial mouse

2000-02-15  Pixel  <pixel@mandrakesoft.com>

	* diskdrake.pm: "After %s partition %s," inlined otherwise does
	not please pablo and translators...

2000-02-14  Pixel  <pixel@mandrakesoft.com>

	* diskdrake.pm (Create): hide start sector choice for non-expert

2000-02-11  Pixel  <pixel@mandrakesoft.com>

	* partition_table_raw.pm (get_geometry): do not use the cylinder
	number given by HDIO_GETGEO cuz limited to 16bits. Compute using
	the total_sectors using HDIO_GET_IDENTITY

	* c/stuff.xs.pm: added total_sectors (gives the number of sector
	of a drive)

	* modules.pm (load): ignore error in loading prereq's
	
	* modules.pm (@drivers_by_category): rcpci instead of rcpci45,
	z85230 added

	* commands.pm (mount): add modules::load_deps otherwise the
	fs::mount won't succeed insmoding vfat if needed

2000-02-11  François Pons  <fpons@mandrakesoft.com>

	* fixed diskdrake to handle limit case when creating and resizing
	partition table, address size limit and start sector limit.

2000-02-11  Pixel  <pixel@mandrakesoft.com>

	* install2.pm (main): add a callback on SEGV
	-> message printed
	-> that way, ENDs are called (otherwise skipped)

	* install_steps_interactive.pm (setup_thiskind): handles the undef
	value returned by load_thiskind
	
	* install_steps_interactive.pm (exitInstall): do not call
	install_steps::exitInstall

	* install_steps (exitInstall): removed
	* install_steps (END): added (it does ejectCdrom)

	* install_steps_interactive.pm (load_thiskind): returns undef if
	error loading a module

	* fs.pm (format_part): changed the prototype from $;$@ to $;@
	otherwise, @options always have a value (mostly undef) and mkdosfs
	fails (with "mkdosfs", "/dev/hdXX", undef, "-F", 32)

	* install_steps_interactive.pm (setup_thiskind):
	add a $auto_probe_pci that overrules $o->{auto_probe_pci}
	(that way no pci probe the second time)

2000-02-10  François Pons  <fpons@mandrakesoft.com>

	* heavy modification of build_archive and extract_archive to manage
	a TOC directly in archive file, handle bzip2 or gzip compression,
	extract_archive can extract multiple files a time, with minimal
	invocation of uncompress program and follow symlink and expand
	directory contents.
	* use build_archive/extract_archive for locales.
	* fixed a min/max in install_steps_gtk for Resize/Create partition.
	* fixed adjustEnd with dos partition table, take care of magic 63
	sectors at beginning of partitions, a more solid method should be
	used for that.

2000-02-10  Pixel  <pixel@mandrakesoft.com>

	* modules.pm (load_thiskind): skip modules "unknown" and "ignore"

2000-02-09  Pixel  <pixel@mandrakesoft.com>

	* partition_table.pm (add): cdie if maximum number of partitions
	handled by linux is reached

	* Xconfigurator.pm (chooseResolutionsGtk): display the graphic
	card or server found

	* install_any.pm (relGetFile): for mdkinst files, take care not to
	have a double '/' (see debbugs #591)

	* install_steps_interactive.pm (configureNetwork):
	purpose: add ability to configure both modem and lan
	         clean up the behaviour

	* fs.pm (write_fstab): 
	purpose: sort the fstab per mount point (cuz /usr must be before /usr/local)
	also: rewrite of the part writing the fstab. 
../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -7739,11 +7758,11 @@ msgstr ""
msgid "Installing packages..."
msgstr ""
-#: ../../standalone/XFdrake_.c:129
+#: ../../standalone/XFdrake_.c:131
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr ""
-#: ../../standalone/XFdrake_.c:133
+#: ../../standalone/XFdrake_.c:135
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr ""
@@ -7942,26 +7961,26 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:548
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr ""
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr ""
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr ""
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr ""
@@ -8012,10 +8031,11 @@ msgstr ""
msgid "Backup Other files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:871
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#, c-format
msgid ""
"\n"
-"Drakbackup activities via $daemon_media:\n"
+"Drakbackup activities via %s:\n"
"\n"
msgstr ""
@@ -8033,13 +8053,6 @@ msgid ""
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:895
-msgid ""
-"\n"
-"Drakbackup activities via $net_proto:\n"
-"\n"
-msgstr ""
-
#: ../../standalone/drakbackup_.c:900
msgid ""
"\n"
@@ -8370,10 +8383,6 @@ msgstr ""
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1981
-msgid "\n"
-msgstr ""
-
#: ../../standalone/drakbackup_.c:1983
#, c-format
msgid ""
@@ -9036,7 +9045,7 @@ msgid "connecting to Bugzilla wizard ..."
msgstr ""
#: ../../standalone/drakbug_.c:129
-msgid "No browser available please! Please install one"
+msgid "No browser available! Please install one"
msgstr ""
#: ../../standalone/drakconnect_.c:80
@@ -9530,19 +9539,19 @@ msgstr ""
msgid "Post Uninstall"
msgstr ""
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr ""
-#: ../../standalone/drakgw_.c:122
+#: ../../standalone/drakgw_.c:123
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr ""
-#: ../../standalone/drakgw_.c:135
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -9550,31 +9559,31 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr ""
-#: ../../standalone/drakgw_.c:139 ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr ""
-#: ../../standalone/drakgw_.c:139 ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr ""
-#: ../../standalone/drakgw_.c:142
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:150
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr ""
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr ""
-#: ../../standalone/drakgw_.c:160
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -9582,19 +9591,19 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr ""
-#: ../../standalone/drakgw_.c:171
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:176
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr ""
-#: ../../standalone/drakgw_.c:197
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -9604,31 +9613,31 @@ msgid ""
"(LAN)."
msgstr ""
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr ""
-#: ../../standalone/drakgw_.c:224
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr ""
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr ""
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr ""
-#: ../../standalone/drakgw_.c:240
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -9638,17 +9647,17 @@ msgid ""
"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../standalone/drakgw_.c:249
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr ""
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -9658,15 +9667,15 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr ""
-#: ../../standalone/drakgw_.c:274
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr ""
-#: ../../standalone/drakgw_.c:276
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -9677,7 +9686,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:288
+#: ../../standalone/drakgw_.c:289
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 C-Class Network that "
@@ -9689,74 +9698,74 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr ""
-#: ../../standalone/drakgw_.c:295
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:302
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:313
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
-#: ../../standalone/drakgw_.c:321
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr ""
-#: ../../standalone/drakgw_.c:322
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
msgstr ""
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr ""
-#: ../../standalone/drakgw_.c:330
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:366
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr ""
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr ""
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr ""
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -9886,11 +9895,11 @@ msgstr ""
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
-#: ../../standalone/drakxtv_.c:151
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:152
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10121,15 +10130,15 @@ msgstr ""
msgid "Save as.."
msgstr ""
-#: ../../standalone/mousedrake_.c:69
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr ""
-#: ../../standalone/mousedrake_.c:79
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr ""
-#: ../../standalone/mousedrake_.c:83
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr ""
diff --git a/perl-install/share/po/af.po b/perl-install/share/po/af.po
index 60896970c..1046b1a74 100644
--- a/perl-install/share/po/af.po
+++ b/perl-install/share/po/af.po
@@ -1,36 +1,69 @@
# KTranslator Generated File
-# Copyright (c) 1999-2000 MandrakeSoft
-# Schalk. W. Cronjé <schalkc@ntaba.co.za>, 2000
+# KTranslator Generated File
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) 2000 Free Software Foundation, Inc.
+# Schalk W. Cronjé <schalkc@ntaba.co.za>, 2000
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2001-09-09 22:06-0000\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2001-08-20 21:28-0000\n"
"Last-Translator: Schalk W. Cronjé <schalkc@uk.ntaba.com>\n"
"Language-Team: Afrikaans <mandrake@af.org.za>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Konfigureer skyfkoppe afsonderlik"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Gebruik Xinerama-ekstensies"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Konfigureer net die \"%s\" kaart (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64MB of meer"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Kies 'n X-bediener"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X-bediener"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Multikopkonfigurasie"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -38,43 +71,44 @@ msgstr ""
"U stelsel onderstuen multikopkonfigurasie.\n"
"Wat wil u doen?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Videokaart"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Kies die geheue grootte van u videokaart"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Selekteer 'n videokaart"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "XFree-konfigurasie"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Kies 'n X-bediener"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Watter tipe XFree-konfigurasie verlang u?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X-bediener"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Konfigureer skyfkoppe afsonderlik"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Kies 'n X-bediener"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Gebruik Xinerama-ekstensies"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X-bediener"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Konfigureer net die \"%s\" kaart (%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Watter tipe XFree-konfigurasie verlang u?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s met 3D-hardwareversnelling"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -83,34 +117,18 @@ msgstr ""
"U videokaart kan slegs 3D-versnelling onder XFree %s ondersteun.\n"
"DIt word wel onder XFree %s ondersteun wat dalk beter 2D-ondersteuning het."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"U videokaart kan vir 3D-hardewareversnelling ondestuen word in XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s met 3D-hardwareversnelling"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Hierdie kaart kan ondersteuning vir 3D-hardewareversnelling onder XFree86 %s "
-"bied,\n"
-"MAAR LET DAAROP DAT DIT EKSPERIMENTEEL IS EN DIE REKENAAR MAG VRIES."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s met EKSPERIMENTELE 3D-hardewareversnelling"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -122,31 +140,60 @@ msgstr ""
"MAAR LET DAAROP DAT DIT EKSPERIMENTEEL IS EN DIE REKENAAR MAG VRIES.\n"
"U kaart word deur XFree %s ondersteun, wat beter 2D-ondersteuning bied."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Hierdie kaart kan ondersteuning vir 3D-hardewareversnelling onder XFree86 %s "
+"bied,\n"
+"MAAR LET DAAROP DAT DIT EKSPERIMENTEEL IS EN DIE REKENAAR MAG VRIES."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installasievertoondrywer)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree-konfigurasie"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Kies die geheue grootte van u videokaart"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Selekteer opsies vir bediener"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Behou die veranderinge?\n"
+"Huidige konfigurasie is:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Kies 'n monitor"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Aangepaste"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Generies"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Herroep"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -168,512 +215,326 @@ msgstr ""
"monitor spesifiseer nie, dit kan die monitor beskadig. Indien u twyfel,\n"
"kies konservatief."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Horisontale verfristempo"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Vertikale verfristempo"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor is nie opgestel nie"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Grafikakaart is nog nie konfigureer nie"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Resolusie is nog nie gekies nie"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Wil u die konfigurasie toets?"
-
-#
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Waarskuwing: Toetsing is gevaarlik met hierdie videokaart"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Toets konfigurasie"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 kleure (8 bis)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"probeer van die parameters verander"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32-duisend kleure (15 bis)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Daar was 'n fout:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65-duisend kleure (16 bis)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "uitgang binne %ds"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16-miljoen kleure (24 bis)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Is dit korrek?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 biljoen kleure (32 bis)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Hier is fout, probeer van die parameters verander"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Resolusies"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Resolusie"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Kies die resolusie en kleurdiepte"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Videokaart: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 bediener: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Nog"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Kanselleer"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "OK"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Kundige modus"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Vertoon almal"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Wil u die konfigurasie toets?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Resolusies"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Toets konfigurasie"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Sleutelbord uitleg: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Muistipe: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Muistoestel: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Monitor HoriSink: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Monitor VertVerfris: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Videokaart: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Videokaart: %s\n"
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Video geheue: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Kleurdiepte: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Resolusie: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 bediener: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86-drywer: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "X-Window konfigurasie word opgestel"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Wat wil u doen?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Verander monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Verander videokaart"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Verander bedienerinstellings"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Verander resolusie"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Vertoon inligting"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Toets weer"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Verlaat"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Behou die veranderinge?\n"
-"Huidige konfigurasie is:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X met herlaai"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Ek kan u rekenaar so opstel om X outomaties te laai.\n"
"Wil u X begin met 'n herlaai?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Teken asb. weer in %s om veranderinge te aktiveer"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Teken uit en gebruik dan Ctrl-Alt-Backspace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 kleure (8 bis)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32-duisend kleure (15 bis)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65-duisend kleure (16 bis)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16-miljoen kleure (24 bis)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 biljoen kleure (32 bis)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64MB of meer"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standaard VGA, 640x480 teen 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 teen 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514-aanpasbaar, 1024x768 teen 87Hz interverweef (nie 800x600 nie)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 102x768 teen 87 Hz interverweef, 800x600 teen 56 Hz "
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Verlengde Super VGA, 800x600 teen 60 Hz, 640x480 teen 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Nie-interverweefde SVGA, 1024x768 teen 60 Hz, 800x600 teen 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Hod frekwensie SVGA, 1024x768 teen 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frekwensie wat 1280x1024 kan doen teen 60Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frekwensie wat 1280x1024 kan doen teen 74Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frekwensie wat 1280x1024 kan doen teen 76Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor wat 1600x1220 kan doen teen 70Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor wat 1600x1220 kan doen teen 76Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Eerste sektor van herlaaipartisie"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Eerste sektor van skyf (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "SILO installasie"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Waar wil u die herlaaistelsel installeer"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "LILO/grub installasie"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO met tekskieskaart"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO met grafiese kieskaart"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Laai vauit DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Herlaaistelsel hoofopsies"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Herlaaistelsel om te gebruik"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Herlaaiprogram installasie"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Herlaaitoestel"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (werk nie op 'n ou BIOS'e nie)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Kompak"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "kompak"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Videomodus"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Wagperiode voro verstekstelsel gelaai word"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Wagwoord"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Wagwoord (weer)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Beperk instruksielynopsies"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "beperk"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Maak /tmp skoon met elke herlaai"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Presiese RAM grootte indien nodig (%d MB bespeur)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Gebruik multiprofiele"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Gee die geheuegrootte in MB"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Opsie ``Beperk instruksielynopsies'' kan nie sonder wagwoord gebruikword nie"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Probeer asb. weer"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Die wagwoorde stem nie ooreen nie."
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Beginboodskap"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr ""
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Tydsbeperking vir stelselkernlaai"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Laat CD-herlaai toe?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Laat OF-herlaai toe?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Verstek bedryfstelsel?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -682,83 +543,83 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Hier is die huidige inskrywings\n"
"U kan byvoeg or verwyder soos nodig."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Voeg by"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Klaar"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Verander"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Watter tipe inskrywing wil u byvoeg?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Ander bedryfstelsel (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Ander bedryfstelsel (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Ander bedryfstelsel (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Beeld"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Basis"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Aanlas"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Lees-skryf"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabel"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Onveilig"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Etiket"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Verstek"
@@ -791,53 +652,75 @@ msgstr "U moet oor 'n ruilpartisie beskik"
msgid "This label is already used"
msgstr "Hierdie etiket is alreeds in gebruik"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Het %s %s koppelvlakke gevind"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Beskik u oor nog?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Het u enige %s koppelvlakke?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Nee"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Ja"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Sien hardeware inligting"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Drywer vir %s kaart %s in installasieproses"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(module %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"U kan noue die opsies voorsien vir module %s.\n"
+"Opsies is in die formaat ``naam=waarde naam2=waarde2 ...''.\n"
+"Bv. ``io=0x300 irq-7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Module opsies:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Watter %s drywer meot ek probeer?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -853,37 +736,15 @@ msgstr ""
"rekenaar self daarvoor aftas. In uitsonderlike gevalle mag die rekenaar\n"
"ophang, maar dit sal nie skade veroorsaak nie."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Aftas"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Spesifieer opsies"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"U kan noue die opsies voorsien vir module %s.\n"
-"Opsies is in die formaat ``naam=waarde naam2=waarde2 ...''.\n"
-"Bv. ``io=0x300 irq-7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Module opsies:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -892,50 +753,55 @@ msgstr ""
"Laai van module %s het gefaal.\n"
"Wil u ander parameters probeer?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(%s alreeds bygevoeg)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Die wagwoorde is te eenvoudig"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Gee asb. 'n gebruikerskode"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Die gebruikerskode maag alleenlikui kleinletter, nommers, '-' en '_' bestaan"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Hierdie genruikerskode bestaan alreeds"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Hierdie genruikerskode bestaan alreeds"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Voeg gebruiker by"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -944,32 +810,32 @@ msgstr ""
"Tik 'n gebruiker in\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Aanvaar gebruiker"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Regte naam"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Gebruikerskode"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Dop"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Ikoon"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Outointeken"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -977,125 +843,104 @@ msgstr ""
"Ek kan u rekenaar so opstel om X outomaties een gebruiker in te teken.\n"
"Verlang u hierdie funksionaliteit?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Kies die verstek gebruiker:"
#
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Kies die vensterbestuurder om te loop:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Alles"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr "Voeg 'n gebruiker by"
-#
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Aangepaste"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr "CUPS word gelaai"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Hierdie pakket moet opgradeer word\n"
"Is u seker u wil dit deselekteer?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Kanselleer"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Krakers welkom"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Swak"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Standaard"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Hoog"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Hoog"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoďes"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1107,7 +952,7 @@ msgstr ""
"wagwoord\n"
"toegang nie."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1115,7 +960,7 @@ msgstr ""
"Wagwoorde is nou ontsper, maar gebruik as 'n netwerkrekenaar word nie "
"aanbeveel nie."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1125,60 +970,61 @@ msgstr ""
"wat aan die internet as 'n kliënt konnekteer. Daar is heelwat "
"sekuriteitstoetse."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Met hierdie sekuriteitsvlak, kan die stelsel as 'n bediener gebruik word.\n"
"Die sekuriteit is goed genoeg sodat 'n stelsel konneksies wat baie kliënte\n"
"af kan aanvaar."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Hierdie is Vlak-4 sekuriteit, maar die stelsel is afgeslote.\n"
"Sekuriteitseienskappe is maksimaal."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Gebruik sekuriteitsvlak"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
#, fuzzy
msgid "Security level"
msgstr "Sekuriteitsvlak word gestel."
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Selekteer opsies vir bediener"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1201,13 +1047,13 @@ msgstr ""
# and only one line per string for the GRUB messages
#. -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_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welkom by GRUB, die bedryfstelselkieskaart!"
#. -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_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr ""
@@ -1216,39 +1062,39 @@ 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_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Druk ENTER om die gekose bedryfstelsel te laai, 'e' om te redigeer."
#. -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_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "instruksies voor herlaai, of 'c' vir 'n instruksielyn."
#. -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_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Die uitgeligte inskrywing sal outomaties in %ds gelaai word."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "nie genoeg spasie in /boot nie"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Werkskerm"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Beginkieskaart"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Waar wil u die herlaaistelsel installeer"
@@ -1261,17 +1107,21 @@ msgstr "Gee hulp beskikbaar nie (nog nie).\n"
msgid "Boot Style Configuration"
msgstr "Herlaaistylkonfigurasie"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Lęer"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Lęer/_Verlaat"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
-msgstr "<ctrl>Q"
+msgstr "<control>Q"
#: ../../bootlook.pm_.c:91
msgid "NewStyle Categorizing Monitor"
@@ -1304,14 +1154,14 @@ msgstr "Yaboot metode"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"U gebruik huidig %s as herlaaibestuurder.\n"
"Kliek op Konfigureer om opstelassistent te laai."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Konfigureer"
@@ -1321,7 +1171,7 @@ msgid "System mode"
msgstr "Stelselmode"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Laai X-Windowstelsel met herlaai"
#: ../../bootlook.pm_.c:148
@@ -1332,14 +1182,16 @@ msgstr "Nee, ek verlang outo-aanteken"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ja, ek verlang outoaanteken met hierdie (gebruiker,werkskerm)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "OK"
@@ -1388,7 +1240,7 @@ msgstr "Ek kan nie meer partisies byvoeg nie"
msgid "Screenshots will be available after install in %s"
msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Frankryk"
@@ -1396,7 +1248,7 @@ msgstr "Frankryk"
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Belgies"
@@ -1424,11 +1276,12 @@ msgstr "Norweegs"
msgid "Sweden"
msgstr "Sien"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr "Italiaans"
@@ -1438,7 +1291,7 @@ msgstr "Italiaans"
msgid "Austria"
msgstr "seriaal"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1446,8 +1299,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr "Rugsteun u data eers asb."
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Lees noukeurig!"
@@ -1460,11 +1313,12 @@ msgstr ""
"Indien u beplan om 'aboot' te gebruik, los spasie aan die begin\n"
"van die skyf. (2048 sektors is genoeg)."
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Fout"
@@ -1472,11 +1326,11 @@ msgstr "Fout"
msgid "Wizard"
msgstr "Assistent"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Kies aksie"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1488,78 +1342,78 @@ msgstr ""
"Ek stel voor u verstel eers die grootte van dié partisie\n"
"(kliek daarop en kliek dan op \"Verstel Grootte\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Kliek asb. op 'n partisie"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Detail"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
#, fuzzy
msgid "Journalised FS"
msgstr "Gejoernaliseer"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Ruilarea"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Leeg"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Ander"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "LOersteltipes:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Skep"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tipe"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Gebruik ``%s'' instede."
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Uitwis"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Gebruik ``Ontheg'' eerste"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1567,67 +1421,72 @@ msgstr ""
"Alle data om hierdie partisie %s sal uitgewis word na verandering van die "
"partisietipe"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Kies 'n partisie"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Kies 'n ander partisie"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Verlaat"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Skakel oor na kundige gebruiksvlak"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Skakel oor na normale gebruiksvlak"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Herroep"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Wil u in elk geval voortgaan?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Verlaat, maar moenie iets stoor nie"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Wil u verlaat, sonder om die partisietabel op te dateer?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "Wil u die /etc/fstab veranderinge stoor?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Outo-allokeer"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Verwydeer almal"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Nog"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "Hardeskyfinligting"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Alle primęre partisies is gebruik"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Ek kan nie meer partisies byvoeg nie"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1635,35 +1494,35 @@ msgstr ""
"Om meer partisies te verkry, verwyder asb. een om 'n ektensiepartisiete kan "
"skep"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr "Skryf partisietabel"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr "Reddingspartisietabel"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Reddingspartisietabel"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr "Reddingspartisietabel"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Removable media automounting"
msgstr "Verwyderbare media"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Selekteer lOer"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1671,11 +1530,11 @@ msgstr ""
"Die rugsteunpartisietabel het nie dieselfde grootte nie\n"
"Wil u voortgaan?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Waarskuwing"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1683,124 +1542,131 @@ msgstr ""
"Sit 'n floppie in die aandrywer.\n"
"Alle data op hierdie floppie sal verloor word."
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Partisietabel Reddingspoging"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Gedetaileerde inligting"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Hegpunt"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opsies"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Verstel Grootte"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Skuif"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formatteer"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Heg"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Voeg by RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Voeg by LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Ontheg"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Verwyder uit RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Verwyder uit LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Verander RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Gebruik vir teruglus"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Kies 'n nuwe grootte"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Kies sektor: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Grootte in MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "LOerstelseltipe: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Hegpunt:"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Voorkeure: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+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/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Terugluslęer %s word geformateer"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Verander partisietipe"
#
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Watter lęerstelsel verlang u?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Oorskakeling van ext2 na ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Waar wil u terugluslęer %s heg?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Waar wil u toestel %s heg?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1808,126 +1674,133 @@ msgstr ""
"Kan nie hegpunt ontset nie, omdat hierdie partisie vir teruglus\n"
"gebruik word. Verwyder eers die teruglus."
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "FAT lęerstelselgrense word bereken"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Grootteverandering"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Hierdie partisie se greootte kan nie verstel word nie"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Alle data om hierdie partisie moet gerugsteun word."
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Alle data om partisie %s sal uitgewis word met die grootteverandering"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Kies die nuwe grootte"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Nuwe grootte in MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Na watter skyf wil u skuif?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Na watter sektor wil u skuif?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Verskuiwing"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Partisie word verskuif..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Kies 'n bestaande RAID om by toe te voeg"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "nuut"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Kies 'n bestaande LVM om by toe te voeg"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "LVM naam?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Hierdie partisie kan nie vir teruglus gebruik word nie."
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Teruglus"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Teruglus lęernaam:"
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr "Regte naam"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Lęer word alreeds deur 'n ander teruglus gebruik,kies 'n ander een"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Lęer bestaan alreeds. Moet dit gebruik word?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Hegopsies:"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Verskeie"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "toestel"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "vlak"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "blokgrootte"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Wees versigtig: hierdie is 'n gevaarlike operasie"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Watter tipe van partisionering?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr ""
+"Hierdie pakket moet opgradeer word\n"
+"Is u seker u wil dit deselekteer?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1940,7 +1813,7 @@ msgstr ""
"gebruik\n"
"nie, dan het u nie /boot nodig nie."
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1953,7 +1826,7 @@ msgstr ""
"gebruik,moet u\n"
"asb. 'n /boot partisie skep,"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1963,137 +1836,137 @@ msgstr ""
"Geen herlaaistelsel sal dit kan hanteer sonder 'n /boot partisie nie.\n"
"Onthou om 'n /boot by te voeg."
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Partisietabel van skyf %s gaan opdateer word!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "U sal moet herlaai voor die veranderinge geaktiveer kan word"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Alle data om partisie %s sal uitgewis word met formatering."
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Formatering"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Terugluslęer %s word geformateer"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Partisie %s word formateer"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Hide files"
msgstr "mkraid het gefaal"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr "LPD word verwyder..."
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Toestel:"
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS-skyfletter: %s ('n raaiskoot)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Tipe:"
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Naam: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Begin: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Grootte: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sektore"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Silinder %d na silinder %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Geformateer\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Nie geformatter\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Geheg\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Teruglus lęer(s): %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2101,27 +1974,27 @@ msgstr ""
"Verstekpartisie vir herlaai\n"
" (vir MS_DOS doeleindes, nie LILO s'n nie)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Vlak %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Blokgrootte %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-skywe %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Teruglus lęernaam: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2133,7 +2006,7 @@ msgstr ""
"drywerpartisie is en verkieslik alleen gelos\n"
"moet word.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2144,65 +2017,65 @@ msgstr ""
"Hierdie spesiale herlaaipartisie\n"
"is om u stelsel te duolaai.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Grootte: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrie: %s silinders, %s koppe, %s sektore\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Info:"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-skywe %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partisietabeltipe: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "op bus %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Opsies: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "LOerstelseltipe: "
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Hierdie wagwoord is te eenvoudig. Dit moet ten minste %d karakters bevat."
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Die wagwoorde stem nie ooreen nie."
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2212,36 +2085,66 @@ msgstr "Verander tipe"
#: ../../diskdrake/removable_gtk.pm_.c:28
#, fuzzy
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Kliek asb. op 'n partisie"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Magtiging"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Internet"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Gebruikerskode"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Gebruikerskode"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS-domein"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "DNS bediener"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatering ban %s het gefaal"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ek weet nie om %s as tipe %s te formateer nie"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck het gefaal met kode %d of sein %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "fout met onthegting van %s: %s"
@@ -2258,67 +2161,321 @@ msgstr ""
msgid "server"
msgstr "bediener"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "U kan nie JFS vir partisies kleiner as 16MB gebruik nie"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "U kan nie ReiserFS vir partisies kleiner as 32MB gebruik nie"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Hegpunte moet met 'n / begin"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Daar is alreeds 'n partisie met hegpunt %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "U kan nie LVM logiese volume vir hegpunt %s gebruik nie."
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Hierdie lęergids moet altyd in die wortellęerstelsel bly"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr "U benodig 'n ware lęerstelsel (ext2, reiserfs) vir hierdie hegpunt\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "U kan nie LVM logiese volume vir hegpunt %s gebruik nie."
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Four om %s in skryfmode te open: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"'n Fout het voorgekom - geen geldige toestelle om die nuwe lęerstelsels op "
"te skep, is gevind nie. Deursoek asb. die hardeware vir die oorsaak."
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "U get geen partisies nie!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Gebruik outobespeuring"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Generies"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Kaartgeheue (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Formatering"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Verander tipe"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Verlaat"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Help"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Help"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Help/_Aangaande..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Muis"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Kaartgeheue (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Kanselleer"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Muis"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Beskrywing"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Magtiging"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Selekteer lOer"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Netwerkportaaltoestel"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 knoppies"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Hardeskyfdeteksie."
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Sien hardeware inligting"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Vertoon inligting"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Stel muistoestel op"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "Op poort %s bespeur"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Wag asb."
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d sekondes"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Drukkerdata word gelees..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Aftas"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
#, fuzzy
msgid ""
@@ -2333,7 +2490,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2444,9 +2601,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2635,7 +2791,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2647,9 +2803,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2695,21 +2850,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2725,9 +2879,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
#: ../../help.pm_.c:347
@@ -2748,9 +2902,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -2867,38 +3020,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -2973,11 +3120,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3001,7 +3148,7 @@ msgid ""
"choose this unless you know what you are doing."
msgstr "Kies asb. "
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3016,7 +3163,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3031,7 +3178,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3047,7 +3194,7 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3055,23 +3202,23 @@ msgstr ""
"Kies asb. die korrekte poort. Onthou dat COM1 onder MS Windows \n"
"ttyS0 onder GNU/Linux is."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3093,7 +3240,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3115,7 +3262,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3123,7 +3270,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3144,7 +3291,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3168,7 +3315,7 @@ msgstr ""
"inskrywings kan uitvee. Maar dan het u die nodige herlaaiskywe nodig om die\n"
"betrokke bedryfstelsels te laai."
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3182,29 +3329,28 @@ msgstr ""
"Behalwe as u werklik weet wat u doen moet u \"Eerste sektor van skyf (MBR)\" "
"kies."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3213,7 +3359,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
#, fuzzy
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
@@ -3239,7 +3385,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"DrakX sal probeer om vir PCI SCSI-kaarte te soek.\n"
@@ -3261,7 +3407,7 @@ msgstr ""
"Windows-bedryfstelsel te bekom.\n"
"U kan dit ook vanaf die internet onttrek indien u sulke toegang het."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3271,9 +3417,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3285,7 +3430,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" 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"
@@ -3311,7 +3456,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3338,18 +3483,17 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3357,12 +3501,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3378,14 +3521,14 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3396,7 +3539,7 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3404,12 +3547,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3424,20 +3567,20 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "Kan nie uitsaau sonder 'n NIS-domein nie"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Sit 'n FAT-geformatteerde skyf in aandrywer %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Hierdie floppie is nie in FAT-formaat nie"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3445,7 +3588,7 @@ msgstr ""
"Om hierdie gestoorde pakketkeuse te gebruik, herlaai die installasie met "
"\"linux defcfg=floppy\""
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Fout met die les van lęer %s"
@@ -3475,7 +3618,7 @@ msgstr "U moet oor 'n ruilpartisie beskik"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -3483,59 +3626,59 @@ msgstr ""
"\n"
"Wil u steeds voortgaan?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "U moet oor 'n FAT partisie wat as /boot/efi geheg is, beskik"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Gebruik beskikbare spasie"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Gebruik bestaande partisies"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Daar is geen bestaande partisies om te gebruik nie"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Gebruik vir die Windows-partisie vir teruglus"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Watter partisie wil u vir Linux4Win gebruik?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Kies die groottes"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Basispartisiegrootte in MB:"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Ruilpartisiegrootte in MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Gebruik die beskikbare spasie op die Windowspartisie"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Watter partisie se grootte wil u verander?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Windowslęerstelselgrense word bereken"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -3544,11 +3687,14 @@ msgstr ""
"Die FAT-verstellingsprogram kan nie u partisie hanteer nie.\n"
"Fout: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr "U Windows-partisie is te gefragmenteer. Loop eers 'defrag' asb."
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -3570,54 +3716,54 @@ msgstr ""
"hierdie installasie. Rugstuen ook u data. Insien u skeer is van u saak, kies "
"OK."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Watter grootte wil u vir Windows behou?"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "partisie %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT-grootteverandering het gefaal: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Daar is geen FAT partisies om te verander of om as teruglus (nie genoeg "
"spasie nie) te gebruik nie"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Wis hele skyf"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Verwyder Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "U het meer as een hardeskyf, waar wil u Linux installeer?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Alle bestaande partisies en data sal uitgewis word op skyf %s"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Gespesialiseerde skyfpartisionering"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Gebruik fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -3626,11 +3772,11 @@ msgstr ""
"U het nou partisie %s partisioneer.\n"
"Wanneer u klaar is, stoor u veranderinge met 'w'."
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Die Windowspartisie beskik nie oor die nodige spasie nie."
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Ek kon geen plek vir installasie vind nie."
@@ -3638,16 +3784,16 @@ msgstr "Ek kon geen plek vir installasie vind nie."
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Die DrakX partisioneringsassistent het die volgende oplossings:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Partisionering het misluk: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Netwerk op pad op"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Netwerk op pad af"
@@ -3659,12 +3805,12 @@ msgstr ""
"'n Fout het plaasgevind en ek weet nie hoe om dit veilig te hanteer\n"
"nie. Gaan op u eie risiko voort."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Duplikaat hegpunt %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3676,12 +3822,12 @@ msgstr ""
"Toets die CD op 'n werkende Linux installasie met \"rpm -qpl Mandrake/RPMS/*."
"rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Welkom by %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Geen sagteskyaandrywer beskikbaar nie"
@@ -3691,9 +3837,9 @@ msgstr "Geen sagteskyaandrywer beskikbaar nie"
msgid "Entering step `%s'\n"
msgstr "Gaan stap '%s' binne\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -3705,98 +3851,53 @@ msgstr ""
"'F1' druk wanneer u vanaf die CDROM herlaai en dan 'text' op die "
"instruksielyn intik."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Installasieklas"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Kies asb. een van die volgende installasieklasse:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Die totale grootte vir die gekose groepe is naastenby %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Indien u verkies om minder as hierdie grootte te installeer, kies dan 'n\n"
-"persentasie van pakkette wat u wil installeer.\n"
-"\n"
-"'n Lae persentasie sal net die belangrikste pakkette installeer;\n"
-"'n persentasie van 100%% sal alles gekose pakkette installeer."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"U het net spasie op u hardeskyf vir %d%% van hierdie pakkette.\n"
-"\n"
-"Indien u minder wil installeer, kies die persentasie wat u verlang.\n"
-"'n Lae persentasie sal net die belangrikste pakkette installeer;\n"
-"'n Persentasie van %d%% sal soveel moontlik probeer installeer."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "U sal met meer akkuraatheid in die volgende stap kan kies."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Persentasie pakkette om te installeer"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Kies pakketgroepe"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Individuele pakketseleksie"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Totale grootte: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Foutiewe pakket"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Naam: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Weergawe: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Groote: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Belangrikheid: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
@@ -3804,104 +3905,105 @@ msgstr ""
"beskikbaar is nie"
#
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Die volgende pakkette gaan installeer word"
#
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Dei volgende pakkette gaan verwyder word"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "U kan nie hierdie pakket selekteer/deselekteer nie"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Hierdie is 'n verpligte pakket. Dit kan nie uitgehaal word nie."
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "U kan nie heirdie pakket verwyder nie. Dis alreeds geďnstalleer"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Hierdie pakket moet opgradeer word\n"
"Is u seker u wil dit deselekteer?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "U kan nie hierdie pakket deselekteer nie. Dit moet opgradeer word."
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Wys outogeselekteerde pakkette."
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Installasie"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Laai/Stoor op floppie"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "Pakketseleksie word opgedateer"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "Minimale installasie"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Besig met installasie"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Skatting"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Tyd oor "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Wag asb. installasie word voorberei"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d pakkette"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Installeer pakket %s"
#
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Aanvaar "
#
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Weier"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -3916,17 +4018,17 @@ msgstr ""
"nie\n"
"hieroor beskik nie, druk Kanselleer om installasies vanaf dié CDROM te vermy."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Gaan steeds voort?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Daar was 'n fout met pakkette:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Daar was 'n fout met die installasie van die pakkette:"
@@ -3971,11 +4073,11 @@ msgstr "'n Fout het voorgekom"
msgid "Do you really want to leave the installation?"
msgstr "Wil u die werklik die drukker verwyder?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Lisensieooreenkoms"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -3990,7 +4092,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -4096,113 +4198,117 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Sleutelbord"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Wat is u sleutelborduitleg?"
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Hierdie is die volledige lys van beskikbare sleutelborde"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Watter installasieklas verlang u?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Installeer/Opgradeer"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Is hierdie 'n installasie of opgradering?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Aanbevole"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Kundige"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade"
msgstr "Opgradeer"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr "Pakketseleksie word opgedateer"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Wat is u muistoestel?"
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Muispoort"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Aan watter seriaalpoort is u muis gekoppel?"
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Knoppie-emulasie"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Knop-2 Emulasie"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Knop-3 emulasie"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Stel PCMCIA op..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "IDE word opgestel"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "geen beskikbare partisies"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Hegpunte vir partisies word nou gesoek"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Kies die hegpunte"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4214,7 +4320,7 @@ msgstr ""
"\n"
"Will u al die partisies verwyder?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4222,7 +4328,7 @@ msgstr ""
"DrakX kon nie die partisietabel korrek interpreteer nie.\n"
"Gaan aan op u eie risiko!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -4231,74 +4337,77 @@ msgstr ""
"sal herlaaipartisie met DiskDrake moet skep indien u die stelsel wil "
"herlaai."
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr "Geen wortellęerstelsel gevind nie"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Basispartisie"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Wat is die basispartisie (/) van u stelsel?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr "U moet herlaai om die partisietabelveranderinge te aktiveer"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Kies die partisies om te formatteer"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Toets vir foutiewe areas?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Partisies word formateer"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Lęer %s word geskep en formatteer"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Nie genoeg ruilarea om die installasie te voltooi. Voeg asb. by."
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Soek vir beskikbare pakkette"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
+msgstr "Soek vir beskikbare pakkette"
+
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Soek vir pakkette om op te gradeer."
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "U kan nie heirdie pakket verwyder nie. Dis alreeds geďnstalleer"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"U stelsel het nie genoeg plek vir 'n installasie of opgradering nie (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Klaar (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimum (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Aanbevole (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -4306,55 +4415,55 @@ msgstr ""
"Kies asb. die laai of stoor pakketkeuse op die floppie.\n"
"Die formaat is dieselfde as outoinstallasie-genereerde floppies."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Laai vanaf floppie"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Oplaai vanaf floppie"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Pakketkeuse"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "Sit 'n floppie met die pakketkeuse in aandrywer "
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Stoor op floppie"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Geselekteerde grootte is groter as beskikbare spasie."
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
#, fuzzy
msgid "Type of install"
msgstr "Kies pakket om te installeer"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
#, fuzzy
msgid "With X"
msgstr "Wag"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4364,16 +4473,16 @@ msgstr ""
"Indien u oor geen van die gelyste CD's beskik nie, kliek Kanselleer.\n"
"Indien u net oor sekere CDs beskik, deselekteer die ander en kliek OK."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CDROM getiteld \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Berei installasie voor"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4382,23 +4491,23 @@ msgstr ""
"Installeer nou pakket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Postinstallasiekonfigurasie"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Sit 'n herlaaiskyf wat gebruik is, in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Sit asb. die module-opdateringsfloppie in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -4466,161 +4575,192 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Spieël word gekontak vir die lys van pakkette"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Kies 'n spieël waar die pakkette verkry kan word"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Spieël word gekontak vir die lys van pakkette"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Wat is u tydsone?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Hardewareklok gestel vir GMT"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Outotydsinkronisasie met NTP"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "NTP-bediener"
#
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Verwyder CUPS-bediener"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Geen drukker"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Beskik u oor nog?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Opsomming"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Muis"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Tydsone"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Drukker"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "ISDN-kaart"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Klankkaart"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV-kaaer"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "KDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Verwyder Windows(TM)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Plaaslike lęers"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Kies 'root' se wagwoord"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Geen wagwoord"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Hierdie wagwoord is te eenvoudig. Dit moet ten minste %d karakters bevat."
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Magtiging"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "LDAP-magtiging"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "LDAP Basis-dn"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "LDAP-bediener"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "NIS-magtiging"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS-domein"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS-bediener"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "LDAP-magtiging"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "NIS-domein"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NTP-bediener"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -4647,19 +4787,19 @@ msgstr ""
"Indien u 'n herlaaiskyf wil maak,\n"
"plaas 'n skyf in die aandrywer en druk \"OK\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Eerste sagteskyfaandrywer"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Tweede sagteskyfaandrywer"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Mis hierdie stap"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4683,7 +4823,7 @@ msgstr ""
"ernstige stelselfalings te herstel. Wil u 'n herlaaiskyf maak?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -4692,28 +4832,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Jammer, geen sagteskyfaandrywer beskikbaar nie"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Kies die sagteskyfaandrywer wat u wil gebruik"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Sit 'n skyf in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Herlaaiskyf word geskryf"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Herlaaistelsel word voorberei"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4721,11 +4861,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Wil u aboot gebruik?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -4733,15 +4873,15 @@ msgstr ""
"Die 'aboot' installasie het gefaal. Wil u 'n installasie afwurg al\n"
"word die eerste partisie vernietig?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Herlaaistelselinstallasie"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Installasie van herlaaiprogram het gefaal a.g.v. hierdie fout: "
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4752,18 +4892,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Sit 'n leë floppie in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Outoinstallasieskyf word geskep."
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -4773,7 +4912,8 @@ msgstr ""
"\n"
"Wil u werklik nou aborteer?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -4784,7 +4924,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -4798,17 +4938,21 @@ msgstr ""
"bekyk die errata beskikbaar op\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Inligting oor stelskonfigurasie is beskikbaar in die postinstallasie-\n"
"hoofstuk in die Offisiële Liux-Mandrake Gebruikersgids."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Skep outoinstallasieskyf"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4817,15 +4961,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Outomaties"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Herspeel"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Stoor pakketseleksie"
@@ -4852,414 +4996,398 @@ msgstr ""
msgid "Choose a file"
msgstr "Kies 'n lęer"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Gevorderd"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Wag asb."
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Maak boom oop"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Maak boom toe"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Skakel tussen plat- en groepsortering"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Swak keuse, probeer weer\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "U keuse? (verstek %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "U keuse? (verstek %s) "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Opsies: %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr "Wil u aboot gebruik?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "U keuse? (verstek %s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Tseggies (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Duits"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Spaans"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finnies"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Frans"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norweegs"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Pools"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Russies"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Sweeds"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "VK sleutelbord"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "VSA sleutelbord"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Albanies"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armenies (oud)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armenies (tikmasjien)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armenies (Foneties)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidjani (latyns)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgies"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armenies (Foneties)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Bulgaars"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brasiliaans (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Belarussies"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Switsers (Duitse uitleg)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Switsers (Franse uitleg)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Tseggies (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Duits (geen dooie sleutels)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Deens"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (VSA)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norweegs)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (VSA)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estoniaans"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgies (Russiese uitleg)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgies (Latynse uitleg)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Grieks"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Hongaars"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Kroaties"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Israelies"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Israelies (Foneties)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iranies"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Yslandies"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Italiaans"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Japanees 106 sleutels"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Koreaanse sleutelbord"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latyns-Amerikaans"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Lituanies AZERTY (oud)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Lituanies AZERTY (nuut)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituanies \"nommerry\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituanies \"foneties\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "Latvies"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Masedonies"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Nederlands"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Pools (QWERTY uitleg)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Pools (QWERTZ uitleg)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugees"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Kanadees (Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Romanies (QWERTZ)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Romanies (QWERTY)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Russue (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Sloveens"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovaaks (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovaaks (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "Serwies (Kirillies)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Tabel"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thai sleutelbord"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Tajik sleutelbord"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turks (tradisionele \"F\" model)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turks (moderne \"Q\" modem)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukranies"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "VSA internasionale sleutelbord"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Viëtnamees \"nommerry\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Jugoslaavs (latynse uitleg)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5272,7 +5400,31 @@ msgstr "Sirkulęre heg %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Verwyder eers die logiese volumes\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Telefoonnommer"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Formateer partisies"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5313,10 +5465,6 @@ msgstr "1 knop"
msgid "Generic 2 Button Mouse"
msgstr "Generiese 2-knop muis"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Generies"
-
#
#: ../../mouse.pm_.c:46
msgid "Wheel"
@@ -5383,39 +5531,55 @@ msgid "No mouse"
msgstr "Geen muis"
#
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Toets asb. die muis"
#
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Om die muis te aktiveer"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "BEWEEG DIE WIEL!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Finnies"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Volgende ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Vorige"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Is dit korrek?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Info"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Maak boom oop"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Maak boom toe"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Skakel tussen plat- en groepsortering"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Konnekteer aan die internet"
@@ -5463,7 +5627,7 @@ msgstr ""
"Geen ethernetkaart is op die stelsel gevind nie.\n"
"Ek kan nie hierdie konneksietipe opstel nie."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Kies die netwerkkoppelvlak"
@@ -5476,7 +5640,7 @@ msgstr "Kies asb. die netwerkkoppelvlak wat u wil gebruik vir die internet."
msgid "no network card found"
msgstr "geen netwerkkaart gevind nie"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Stel netwerk op"
@@ -5493,15 +5657,15 @@ msgstr ""
"bv. ``myne.mywerk.co.za''."
#
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Rekenaarnaam"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Netwerkkonfigurasie-assistent"
@@ -5547,7 +5711,7 @@ msgstr "ISDN Konfigurasie"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Kies u internetdiensvoorsiener.\n"
"Indien nie in die lys nie kies Ongelys"
@@ -5567,14 +5731,14 @@ msgstr "Protokol vir die res van die węreld"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Protokol vir die res vd węreld \n"
" geen D-Kanaal nie (bruikhuurlyne)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Watter protokol verlang u?"
#: ../../network/isdn.pm_.c:199
@@ -5598,7 +5762,8 @@ 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"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Indien u 'n ISA-kaart het, behoort die waardes op die volgende skerm reg te "
@@ -5615,13 +5780,13 @@ msgid "Continue"
msgstr "Gaan voort"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Wat is u ISDN-kaart?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Ek het 'n ISDB PCI-kaart gevind, maar ek ken nie die tipe nie. Kies asb.'n "
"PCI-kaart op die volgende skerm."
@@ -5638,47 +5803,47 @@ msgstr "Op watter seriaalpoort is u modem gekoppel?"
msgid "Dialup options"
msgstr "Opbelopsies"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Konneksienaam"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Telefoonnommer"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Aantekenkode"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Skriptipe"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Terminaaltipe"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Domeinnaam"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Eerste DNS-bediener (opsioneel)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Tweede DNS-bediener (opsioneel)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -5686,7 +5851,7 @@ msgstr ""
"\n"
"U kan diskonnekteer or herkonfigureer."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -5694,11 +5859,11 @@ msgstr ""
"\n"
"U kan u konneksie herkonfigureer."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "U is tans aan die internet gekonnekteer."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -5706,33 +5871,33 @@ msgstr ""
"\n"
"U kan aan die internet konnekter of u konneksie herkonfigureer."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "U is nie tans aan die internet gekonnekteer nie."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Konnekteer"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Diskonnekteer"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "Stel netwerk op"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Internetkonneksie en konfigurasie"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Ons gaan nou die %s konneksie herkonfigureer."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -5751,12 +5916,12 @@ msgstr ""
"\n"
"Drk OK om voort te gaan."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Netwerkkonfigurasie"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -5767,9 +5932,9 @@ msgstr ""
"Kliek op OK om hierdee konfigurasie te behou, of op Kanselleer om u Internet "
"& Netwerkkonneksie te herkonfigureer.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"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"
@@ -5779,66 +5944,72 @@ msgstr ""
"Ons gaan nou u internet/netwerkkonneksie konfigureer.\n"
"Iniden u nie outobespeuring verlang nie, deselekteer die opsie.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Kies die profiel om te konfigureer"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Gebruik outobespeuring"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Kundige bedryfsvlak"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Toestel word afgetas..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Normale modemkonneksie"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "Op poort %s bespeur"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN konneksie"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "%s bespeur"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "ADSL konneksie"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "op koppelvlak %s bespeur"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Kabelkonneksie"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "Kabelkonneksie bespeur"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "LAN konneksie"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "ethernet kaart(e) bespeur"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Kies die konneksie wat u wil konfigureer"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -5848,23 +6019,23 @@ msgstr ""
"Kies die een wat u verlang.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Internetkonneksie"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Wil u die konneksie met herlaaityd aanskakel?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Netwerkkonfigurasie"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -5875,7 +6046,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -5885,7 +6056,7 @@ msgstr ""
"\n"
"Die kongiurasie gaan op u stelsel toegepas word.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -5893,16 +6064,16 @@ msgstr ""
"Nadat dit klaar is, sal dit beter wes om u X-omgewing te herlaai\n"
"om die rekenaarnaamveranderingprobleem te voorkom."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"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."
@@ -5912,7 +6083,7 @@ msgstr ""
"U kan die toestel net so aanvaar.\n"
"Veranderinge aan onderstaande velde sal hierdie konfigurasie oorskryf."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -5922,40 +6093,45 @@ msgstr ""
"Elke item moet as 'n IP-adres in dotdesimalenotasie\n"
"(1.2.3.4) gegee word."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Konfigureer netwerktoestel %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr "(drywer %s)"
#
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP adres"
#
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Netmasker"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Outomatiese IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Gelaai tydens herlaaityd"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP-adres moet in 1.2.3.4. formaat wees"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -5967,64 +6143,64 @@ msgstr ""
"bv. ``myne.mywerk.co.za''.\n"
"U mag ook die netwerkhek byvoeg indien daar een is"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS bediener"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Netwerkportaaltoestel"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Instaanbedienerkonfigurasie"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP instaanbediener"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP instaanbediener"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Volg netwerkkart ID. (nuttig vir skootrekenaars)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Instaanbediener moet begin met http://"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Instaanbediener moet begin met ftp://"
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Internetkonfigurasie"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Wil u nou aan die internet konnekteer?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Konneksie word getoets..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Die stelsel is nou aan die internet gekonnekteer."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Vir sekuriteitsredes, word u nou gediskonnekteer."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6033,111 +6209,116 @@ msgstr ""
"Probeer om u stelsel te herkonfigureer."
#
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Konneksiekonfigurasie"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Vul asb. die velde hieronder in"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "Kaart IRQ"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Kaartgeheue (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "Kaart I/O"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "Kaart IO_0"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "Kaart IO_1"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "U persoonlike telefoonnommer"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Voorsienernaam (bv voorsiener.co.za)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Voorsiener se telefoonnommer"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Voorsiener DNS 1 (opsioneel)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Voorsiener DNS 2 (opsioneel)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Kies u land"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Belmetode"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Konneksiespoed"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "Konneksie tydlimiet (in sekondes)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Gebruikerskode"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Wagwoord"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "heg het gefaal"
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Ekstensiepartisie word nie op hierdie platform ondersteun nie"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"U het 'n gat die partisietabel maar ek kan dit nie gebruik nie.\n"
"Die enigste oplossing is om die primęre partisie te skuif sodat die gat\n"
"langs die ekstensie partisies is"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Herstel van léer %s het gefaal: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Korrupte rugsteunlęer"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Fout in die skryf van %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6148,194 +6329,194 @@ msgstr ""
"Dit beteken dat enigiets wat na u hardeskyf geskryf word as gemors sal "
"eindig."
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "benodig"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "belangrik"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "baie oulik"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "oulik"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "moontlik"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Generiese Unixdrukstelsel (Common Unix Printing System) "
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - Nuwe generasie LPR"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Lyndrukkerdiensprogram"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Druk sonder drukkertou"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Plaaslike drukker"
#
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Eksterne drukker"
#
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Eksterne CUPS-drukker"
#
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Eksterne LPD-drukker"
#
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
#, fuzzy
msgid "Network printer (TCP/Socket)"
msgstr "Netwerkdrukker (sok)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Eksterne SMB/Windows 95/98/NT-drukker"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Eksterne Netware-drukker"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Tik drukkertoestel URI in"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "Pyk drukstuk na program"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Onbekende model"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr "Plaaslike drukker"
#
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr "Eksterne drukker"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Fout in die skryf van %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(op %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(op hierdie rekenaar)"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "CUPS-bediener IP:"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Verstek)"
@@ -6359,13 +6540,13 @@ msgstr ""
"op te stel nie; drukkers wod outomaties bespeur.\n"
"Indien u twyfel, kies \"Eksterne CUPS-drukker\"."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "Konfigurasie"
#
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "Verwyder CUPS-bediener"
@@ -6395,7 +6576,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP-adres moet iets soos 192.168.1.20. lyk"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "Die poortnommer moet heeltal wees."
@@ -6403,7 +6584,7 @@ msgstr "Die poortnommer moet heeltal wees."
msgid "CUPS server IP"
msgstr "CUPS-bediener IP:"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Poort"
@@ -6411,22 +6592,13 @@ msgstr "Poort"
msgid "Automatic CUPS configuration"
msgstr "Outomatiese CUPS konfigurasie"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "Toestel word afgetas..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Toets poorte"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "Voeg drukker by"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6439,14 +6611,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr "Plaaslike drukker"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6465,12 +6637,12 @@ msgid ""
msgstr ""
#
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "Eksterne drukker"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6484,11 +6656,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6498,36 +6670,40 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "Gebruik outobespeuring"
#
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "Eksterne drukkernaam"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Toets poorte"
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "%s bespeur"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
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, ..., "
@@ -6535,43 +6711,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Tik drukkertoestel URI in"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr "Plaaslike drukker"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6579,7 +6755,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6587,73 +6763,83 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Op watter seriaalpoort is u modem gekoppel?"
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Tik drukkertoestel URI in"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "Kleurkonfigurasie"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "Installeer pakket %s"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
+msgstr "Installeer pakket %s"
+
+#: ../../printerdrake.pm_.c:524
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing mtools packages..."
msgstr "Installeer pakket %s"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
#, fuzzy
-msgid "Making printer port available for CUPS ..."
+msgid "Making printer port available for CUPS..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
#, fuzzy
-msgid "Reading printer database ..."
+msgid "Reading printer database..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Eksterne lpd drukkeropsies"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -6663,28 +6849,28 @@ msgstr ""
"van die drukkkerbediener en die naam van die drukkertou\n"
"voorsien word."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Eksterne bedienernaam"
#
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Eksterne drukkernaam"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "Eksterne bedienernaam ontbreek!"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "Eksterne drukkernam ontbreek!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) drukkeropsies"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -6697,35 +6883,35 @@ msgstr ""
"nie); moontlik die IP adres van die drukkerbediener; die drukkernaam; \n"
"toepaslike gebruikerskode en wagwoord; werkgroepnaam."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "SMB-bedienernaam"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "SMB-bediener IP:"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Drukkernaam:"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Werkgroep:"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "Óf die bedienernaam óf die bediener-IP moet verskaf word!"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "SAMBA-deelnaam ontbreek!"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -6749,7 +6935,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -6758,7 +6944,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -6766,11 +6952,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "NetWare drukkeropsies"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -6783,28 +6969,28 @@ msgstr ""
"rekenaarnaam nie); moontlik die IP adres van die drukkerbediener;\n"
"die drukkernaam; toepaslike gebruikerskode en wagwoord."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Drukkerbediener"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Drukkertounaam"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "NCP-bedienernaam ontbreek!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "NCP-tounaam ontbreek!"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Sokdrukkeropsies"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
@@ -6818,19 +7004,19 @@ msgstr ""
"maar dit mag anders wees met ander bedieners. Raadpleeg die handleiding\n"
"wat saam met die hardeware gekom het."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Drukkerbedienernaam"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "Drukkerbedienernaam ontbreek!"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Drukkertoestel URI"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
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 "
@@ -6840,11 +7026,11 @@ msgstr ""
"CUPS- of Foomatic-formaat wees. Nie alle UTI-tipes moet deur al die "
"spoelprogramme ondersteun nie."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "'n Geldige URI moet verskaf word!"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
#, fuzzy
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
@@ -6854,30 +7040,26 @@ msgstr ""
"Die Beskrywing- en Liggingvelde is opsioneel.\n"
"Hulle dien as inligting vir gebruikers."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Drukkernaam"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Beskrywing"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Ligging"
-#: ../../printerdrake.pm_.c:1021
+#: ../../printerdrake.pm_.c:1045
#, fuzzy
-msgid "Preparing printer database ..."
+msgid "Preparing printer database..."
msgstr "Drukkerdata word gelees..."
#
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "Eksterne drukkernaam"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -6892,27 +7074,27 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "Is dit korrek?"
#
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "Eksterne drukkernaam"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Drukkermodelkeuse"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Oor watter tipe drukker beskik u?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -6921,18 +7103,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Verander drukkerkonfigurasie"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -6942,12 +7124,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Internetkonfigurasie"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -6955,7 +7137,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -6968,7 +7150,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -6978,22 +7160,22 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Opsie %s moet 'n heeltal wees!"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "Opsie %s moet 'n nommer wees"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "Opsie %s is buite bereik!"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7002,11 +7184,11 @@ msgstr ""
"Wil u hierdie drukker (\"%s\")\n"
"die verstek drukker maak?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "Toetsbladsye"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7014,40 +7196,40 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "Geen toetsbladsye"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Druk"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "Standaard toetsbladsy"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr "Alternatiewe toetsbladsy (Lettergrootte)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "Alternatiewe toetsbladsy (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "Fototoetsbladsy"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "Druk toetsbladsy(e)"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Toetsbladsy(e) word gedruk..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7062,7 +7244,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -7070,16 +7252,16 @@ msgstr ""
"Toetsbladsy(e) is na die drukker gestuur.\n"
"Dit mag 'n tydjie neem voordat drukwerk begin.\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr "Het dit reg gewerk?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "Geen drukker"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7088,15 +7270,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
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 ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7105,49 +7287,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, 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\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7157,7 +7339,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7166,30 +7348,41 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Sluit af"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Netwerk op pad af"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Netwerk op pad af"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Netwerk op pad af"
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Netwerk op pad af"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Sluit af"
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "Drukkeropsies"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7197,36 +7390,36 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "Dra drukkerkonfigurasie oor"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7236,51 +7429,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD en LPRng ondersteun nie IPP-drukkers nie.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr "Moet nie drukkers oordra nie"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr "Oordrag"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7288,61 +7481,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Nuwe drukkernaam"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr "%s word oorgedra..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, 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 ""
-#: ../../printerdrake.pm_.c:1887
+#: ../../printerdrake.pm_.c:1935
#, fuzzy
-msgid "Refreshing printer data ..."
+msgid "Refreshing printer data..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Konfigureer drukker"
-#: ../../printerdrake.pm_.c:1896
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
-msgid "Starting network ..."
+msgid "Starting network..."
msgstr "Konneksie word begin..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr "Stel netwerk op"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "Monitor is nie opgestel nie"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7350,12 +7543,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Stel netwerk op"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7365,7 +7558,7 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
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 "
@@ -7373,27 +7566,27 @@ msgid ""
msgstr ""
#
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
-msgid "Restarting printing system ..."
+msgid "Restarting printing system..."
msgstr "Watter drukkerstelsel verlang u?"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "Hoog"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "Paranoďes"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7409,12 +7602,12 @@ msgid ""
msgstr ""
#
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Watter drukkerstelsel verlang u?"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7428,68 +7621,68 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr "Installeerde sagteware word deursoek..."
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr "LPRng word verwyder..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr "LPD word verwyder..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "Kies drukkerspoelprogram"
#
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "Watter drukkerstelsel (spoelprogram) verlang u?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Konfigureer drukker"
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr "Installeer pakket %s"
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Drukkeropsies"
-#: ../../printerdrake.pm_.c:2318
+#: ../../printerdrake.pm_.c:2389
#, fuzzy
-msgid "Preparing PrinterDrake ..."
+msgid "Preparing PrinterDrake..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Konfigureer drukker"
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "Wil u 'n drukwerk nou konfigureer?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr "Drukkerstelsel:"
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "Printerdrake"
msgstr "Drukker"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7500,7 +7693,7 @@ msgstr ""
"Hier is die bestaande drukkertoue.\n"
"U kan byvoeg or verwyder soos nodig."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7510,30 +7703,34 @@ msgstr ""
"Hier is die bestaande drukkertoue.\n"
"U kan byvoeg or verwyder soos nodig."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Stel netwerk op"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Normale modus"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Verlaat"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Wil u die konfigurasie toets?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "Verander drukkerkonfigurasie"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
@@ -7542,104 +7739,104 @@ msgstr ""
"Drukker %s: %s %s\n"
"Wil u hierdie drukker verander?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr "Gaan voort!"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "Drukkerkonneksietipe"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "Drukkernaam,. beskrywing, ligging"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr "Drukkervervaardiger, model, drywer"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr "Drukkervervaardiger, model"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr "Maak hierdie die verstekdrukker"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr "Druk toetsbladsy(e)"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "Wil u die konfigurasie toets?"
#
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "Verwyder drukker"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Verstek drukker"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Drukker \"%s\" is nou die verstekdrukker"
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Wil u die werklik die drukker verwyder?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr "Drukkerdata word gelees..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -7720,24 +7917,62 @@ msgstr "Die wagwoorde stem nie ooreen nie. Probeer weer!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Kan nie 'n partisie by geformatteerde RAID md%d byvoeg nie"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Kan nie lęer %s skryf nie"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid het gefaal"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid het gefaal. Dalk is 'raidtools' nie beskikbaar nie."
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nie genoeg partisies vir RAID vlak %d nie\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Hierdie vlak moet met sorg gebruik word. Dit maak 'n stelsel baie maklik\n"
+"om te gebruik, maar is baie sensitief. Dit moet nie gebruik vir 'n rekenaar\n"
+"wat aan ander rekenaars of die internet gekoppel is nie. Daar is geen "
+"wagwoord\n"
+"toegang nie."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+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 ""
+"Met hierdie sekuriteitsvlak, kan die stelsel as 'n bediener gebruik word.\n"
+"Die sekuriteit is goed genoeg sodat 'n stelsel konneksies wat baie kliënte\n"
+"af kan aanvaar."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Sluit konfigurasie af"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Opsies"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Loop die ALSA (Gevorderde Linux Klankargitektuur) klankstelsel"
@@ -7794,7 +8029,7 @@ msgid ""
"new/changed hardware."
msgstr ""
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -7865,7 +8100,7 @@ msgid ""
"available server."
msgstr ""
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -7941,7 +8176,7 @@ msgstr ""
"gebruik word. Portmap moet loop op rekenaars wat as bedieners vir hierdie\n"
"protokolle, en ander protokolle wat die RPC meganisme gebruik, dien."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -8036,7 +8271,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "Stelselmode"
@@ -8157,6 +8392,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Beheersentrum"
@@ -8261,6 +8497,15 @@ msgstr ""
msgid "Installing packages..."
msgstr "Installeer pakket %s"
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Teken uit en gebruik dan Ctrl-Alt-Backspace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Teken asb. weer in %s om veranderinge te aktiveer"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8269,6 +8514,160 @@ msgstr ""
"Ek kan nie u partisietabel lees nie, dit is te korrup.\n"
"Ek sal die nodige partisies skoonmak."
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Dra drukkerkonfigurasie oor"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Datbasis"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Datbasis"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS-bediener"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS-bediener"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Voeg gebruiker by"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP-Kliënt"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Nie gekonnekteer nieKabelkonneksie"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Uitwis"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Selekteer lOer"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Voeg gebruiker by"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "DHCP-Kliënt"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Konfigurasie in aabou..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "herkonfigureer"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Sit 'n herlaaiskyf wat gebruik is, in aandrywer %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Geen sagteskyaandrywer beskikbaar nie"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "Fout!"
@@ -8307,6 +8706,11 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Outoinstallasieskyf word geskep."
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -8315,12 +8719,12 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Geluk!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -8328,36 +8732,29 @@ msgstr ""
"Die floppie is sukselvol geskep.\n"
"U kan nou weer 'n installasie uitspeel."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "Installasie"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "Voeg 'n gebruiker by"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "Terugluslęer %s word geformateer"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8365,15 +8762,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8381,715 +8770,781 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Korrupte rugsteunlęer"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "Korrupte rugsteunlęer"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "Korrupte rugsteunlęer"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#, c-format
+msgid ""
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "Fout met die les van lęer %s"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "Pakketkeuse"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "Verwyder tou"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Verwyder Windows(TM)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr "Gebruikerskode"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Korrupte rugsteunlęer"
#
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Toets asb. die muis"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "Probeer asb. weer"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "Probeer asb. weer"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "Geen wagwoord"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "LAN konneksie"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Kies drukkerkonneksie"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Wat is u sleutelborduitleg?"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "Korrupte rugsteunlęer"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Kies die pakkette wat u wil installeer"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "Toets asb. die muis"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "Korrupte rugsteunlęer"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "Netwerkkoppelvlak"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Tipe"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "Gebruikerskode"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "gebruik hardeksyfoptimisasie?"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "gebruik hardeksyfoptimisasie?"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
#, fuzzy
msgid "What"
msgstr "Wag"
#
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr "Wiel"
#
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr "Wiel"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "Module opsies:"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "Stel lęerstelsels op"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Muistoestel: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Opsies"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Op watter seriaalpoort is u modem gekoppel?"
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "Korrupte rugsteunlęer"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "Wat is u muistoestel?"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Korrupte rugsteunlęer"
-#: ../../standalone/drakbackup_.c:2083
+#
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Toets asb. die muis"
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "LAN konneksie"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Kies drukkerkonneksie"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Herstel vanaf floppie"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "Wat is u muistoestel?"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "Ander"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "Installeer stelsel"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "Herstel vanaf lęer"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "Herstel vanaf lęer"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "Aangepaste"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
#, fuzzy
msgid "Previous"
msgstr "<- Vorige"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr "Toestand"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "Korrupte rugsteunlęer"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr "Herstel vanaf lęer"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr "Teks"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
+#
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "Kies pakkette om te installeer"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Die volgende pakkette gaan installeer word"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "Korrupte rugsteunlęer"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "Korrupte rugsteunlęer"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "Korrupte rugsteunlęer"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "Stoor in lęer"
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
#
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "Toets asb. die muis"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "Konfigurasie"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "Sluit konfigurasie af"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "Stel lęerstelsels op"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9121,7 +9576,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9130,7 +9585,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9171,7 +9626,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9199,12 +9654,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -9221,7 +9681,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9261,7 +9721,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9272,7 +9732,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9285,7 +9745,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9329,105 +9789,527 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "%s installasie het gefaal a.g.v. hierdie fout: "
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Konsole hulpprogramme"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "Beheersentrum"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "verpligtend"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Muis"
+
+#
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Eksterne drukker"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Drukkernaam:"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Drukker"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Netwerkkonfigurasie-assistent"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Magtiging"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Pakketkeuse"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Wag asb."
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Verlaay installasie"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "Poort"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Netwerkkonfigurasie (%d toestelle)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profiel:"
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Vee profiel uit..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Profiel om uit te vee..."
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Nuwe profiel..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Bedienernaam:"
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Internettoegang"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Tipe:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Portaal:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Koppelvlak:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Status:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Konfigureer internettoegang..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "LAN-konfigurasie"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Drywer"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Koppelvlak"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protokol"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Toestand"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Stel plaaslike netwerk op..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Assistent..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Pas toe"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Wag asb... Konfigurasie word toegpas"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Gekonnekteer"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Nie gekonnekteer nieKabelkonneksie"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Konnekteer..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Diskonnekteer..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "LAN konfigurasie"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Toestel %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Herlaaiprotokol"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Gelaai tydens herlaaityd"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP-kliënt"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "Aktiveer nou dadelik"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "deaktiveer nou dadelik"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Internetkonneksiekonfigurasie"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Internetkonneksiekonfigurasie"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Konneksietipe:"
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parameters"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Portaal"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Ethernetkaart"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP-Kliënt"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "gebruik: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Modulenaam"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Grootte"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "herlaaiskyfskepping"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "verstek"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "DrakFloppy Fout: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "bedryfstelselkernweergawe"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Algemeen"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Kundige area"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrd opsionele parameters"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Voeg module by"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "forseer"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "indien nodig"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "laat SCSI-modules weg"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "laat RAID-modules weg"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Verwyder module"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Uitset"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Bou die skyf"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "versker asb dat die regte mediatipe vir toestel %s beskikbaar is"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"Daar is geen medium for toestel %s nie.\n"
+"Sit asb. een in."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Kon nie vurk nie: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Kon nie mkbootdisk ordentelik afsluit nie:\n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "%s is nie gevind nie"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr "Klaar"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
#, fuzzy
msgid "Fonts copy"
msgstr "Formatteer floppie"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "Berei installasie voor"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
#, fuzzy
msgid "Restart XFS"
msgstr "Laai dit"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "beperk"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -9436,124 +10318,123 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "Formateer partisies"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
#, fuzzy
msgid "Uninstall Fonts"
msgstr "Deďnstallasie van RPMs"
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Sluit konfigurasie af"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr "Hegpunt"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Kies die partisies om te formatteer"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "Kantoor"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr "Aborteer"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr "Drukker"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "Installeer stelsel"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "Selekteer lOer"
#
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "Verwyder drukker"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
#, fuzzy
msgid "Initials tests"
msgstr "Beginboodskap"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "Installasie"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "Verlaay installasie"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Internetkonneksiedeling"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Internetkonneksiedeling is ontsper"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -9565,31 +10446,31 @@ msgstr ""
"\n"
"Wat wil u doen?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "deaktiveer"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "ignoreer/sien oor"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "herkonfigureer"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Bedieners word gedeaktiveer..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Internetkonneksiedeling is gedeaktiveer"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Internetkonneksiedeling is gesper"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -9601,19 +10482,19 @@ msgstr ""
"\n"
"Wat wil u doen?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "Aktiveer"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Bedieneers word aktiveer..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Internetkonneksiedeling is geaktiveer"
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
#, fuzzy
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -9630,21 +10511,21 @@ msgstr ""
"\n"
"Wil u internetdeling opstel?\n"
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Koppelvlak %s (met module %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Koppelvlak %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -9652,12 +10533,12 @@ msgstr ""
"Geen ethernetkaart is op die stelsel gevind nie. Gebruik asb. die "
"hardewarekonfigurasieprogram."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Netwerkkoppelvlak"
#
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -9672,19 +10553,19 @@ msgstr ""
"\n"
"Ek gaan nou u LAN met daardie kaart opstel."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Kies asb. die netwerkkaart wat aan die loakel area netwerk gekoppel is."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "Monitor is nie opgestel nie"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -9694,17 +10575,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Outomatiese CUPS konfigurasie"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "Verander drukkerkonfigurasie"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -9715,7 +10596,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
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 C-Class Network that "
@@ -9727,33 +10608,33 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "CUPS-bediener IP:"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Moontlike LAN-adresbotsing gevind in konfigurasie %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Vuurmuurkonfigurasie gevind!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -9761,44 +10642,44 @@ msgstr ""
"Waarskuwing! 'n Bestaande vuurmuurkonfigurasie is bespeur. U sal dalk na "
"dietyd self regstellings moet aanbring."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Konfigurasie in aabou..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Skrips word konfigureer, sagterware installeer en bedieners afgeskop..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Probleme met Installasue van pakket %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "Die opstelling van is alreeds gedoen, maar is tans gedeaktiveer."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Die opstelling is alreeds gedoen en is alreeds ook geaktiveer."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Geen internetkonneksiedeling is al gekonfigureer nie."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Internetkonneksiedelingkonfigurasie"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, fuzzy, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -9808,206 +10689,6 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Internetkonneksiedeling"
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Netwerkkonfigurasie (%d toestelle)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profiel:"
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Vee profiel uit..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Profiel om uit te vee..."
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Nuwe profiel..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Bedienernaam:"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Internettoegang"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tipe:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Portaal:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Koppelvlak:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Konfigureer internettoegang..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "LAN-konfigurasie"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Drywer"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Koppelvlak"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokol"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Toestand"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Stel plaaslike netwerk op..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Assistent..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Pas toe"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Wag asb... Konfigurasie word toegpas"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Gekonnekteer"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Nie gekonnekteer nieKabelkonneksie"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Konnekteer..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Diskonnekteer..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "LAN konfigurasie"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Toestel %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Herlaaiprotokol"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Gelaai tydens herlaaityd"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP-kliënt"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "Aktiveer nou dadelik"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "deaktiveer nou dadelik"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Internetkonneksiekonfigurasie"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Internetkonneksiekonfigurasie"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Konneksietipe:"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parameters"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Portaal"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernetkaart"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP-Kliënt"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Sekuriteitsvlak word gestel."
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Beheersentrum"
@@ -10016,94 +10697,130 @@ msgstr "Beheersentrum"
msgid "Choose the tool you want to use"
msgstr "Kies die instrument wat u wil gebruik"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\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 ""
+
+#: ../../standalone/drakxtv_.c:72
#, fuzzy
msgid "Canada (cable)"
msgstr "Kanadees (Quebec)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "East Europe"
msgstr "Europa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Frankryk"
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr "Yslandies"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "West Europe"
msgstr "Europa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr "seriaal"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Daar was 'n fout met die installasie van die pakkette:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10149,7 +10866,7 @@ msgstr "Kon nie die intydse opgradering begin nie !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr ""
@@ -10159,51 +10876,47 @@ msgstr ""
#: ../../standalone/logdrake_.c:102
msgid "/File/_New"
-msgstr ""
+msgstr "/Lęer/_Nuut"
#: ../../standalone/logdrake_.c:102
msgid "<control>N"
-msgstr ""
+msgstr "<control>N"
#: ../../standalone/logdrake_.c:103
msgid "/File/_Open"
-msgstr ""
+msgstr "/Lęer/_Oopmaak"
#: ../../standalone/logdrake_.c:103
msgid "<control>O"
-msgstr ""
+msgstr "<control>O"
#: ../../standalone/logdrake_.c:104
msgid "/File/_Save"
-msgstr ""
+msgstr "/Lęer/_Stoor"
#: ../../standalone/logdrake_.c:104
msgid "<control>S"
-msgstr ""
+msgstr "<control>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
-msgstr ""
+msgstr "/Lęer/Stoor _as"
#: ../../standalone/logdrake_.c:106
msgid "/File/-"
-msgstr ""
+msgstr "/Lęer/-"
#: ../../standalone/logdrake_.c:108
msgid "/_Options"
-msgstr ""
+msgstr "/_Opsies"
#: ../../standalone/logdrake_.c:109
msgid "/Options/Test"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr ""
+msgstr "/Opsies/Toets"
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
-msgstr ""
+msgstr "/Help/_Aangaande..."
#: ../../standalone/logdrake_.c:118
msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
@@ -10263,7 +10976,7 @@ msgstr ""
msgid "Content of the file"
msgstr ""
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -10272,12 +10985,12 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr ""
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "Konfigurasie"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
#, fuzzy
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
@@ -10289,69 +11002,99 @@ msgstr ""
"Hier kan u die HTTP en FTP-instaanbedieners\n"
"opstel met of sonder aantekenkodes en wagwoorde\n"
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache, Pro-ftpd"
-
#: ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid "sshd"
-msgstr "skadu's"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Domeinnaam"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "Verlaat"
+msgid "Ftp Server"
+msgstr "NIS-bediener"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Postfix e-posbediener, Inn netnuusbediener"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS-bediener"
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "NIS-bediener"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Dienste"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Drukkerbediener"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "interessant"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "Formatering"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "Kleurkonfigurasie"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr ""
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Wat is u muistoestel?"
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "Geen 'serial_usb' gevind nie\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Emuleer derde knop?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Drukkerdata word gelees..."
+
+#: ../../standalone/scannerdrake_.c:42
+#, fuzzy
+msgid "Detecting devices ..."
+msgstr "Toestel word afgetas..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -10395,6 +11138,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "Vuurmuurkonfigurasie"
@@ -10746,10 +11501,6 @@ msgid "Multimedia - Sound"
msgstr "Multimedia - Klank"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Nutsprogramme"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "dokumentasie"
@@ -10855,10 +11606,6 @@ msgstr ""
"en om ook die web deur te blaai."
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Aaaargivering, emulators, monitorprogramme"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Persoonlike finansies"
@@ -10908,2016 +11655,154 @@ msgstr "Multimedia - CD Sny"
msgid "Scientific Workstation"
msgstr "Wetenskaplike werkstasie"
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Aborteer"
-
-#, fuzzy
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#~ msgid "None"
-#~ msgstr "Geen"
-
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Kies die verstek gebruiker:"
-
-#
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Pas toe/herlees drukkers"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "U kan die opsies vir module %s hier intik."
-
-#~ msgid "mount failed"
-#~ msgstr "heg het gefaal"
-
-#~ msgid "Low"
-#~ msgstr "Laag"
-
-#~ msgid "Medium"
-#~ msgstr "Medium"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "'n Aantal verbetering op heirdie sekuriteitsvlak, die hoof een is meer\n"
-#~ "sekuriteitswaarskuwings en -toetse."
-
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr "Multimedia"
-
-#~ msgid "Boot mode"
-#~ msgstr "Herlaaimodus"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Kundige"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "GNU/Linux beheer tyd in GMT (Greenwichmeridiaantyd) en vertaal dit dan\n"
-#~ "in u lokale tyd volgends die gekose tydsone."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "Konnekteer aan die internet"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Diskonnekteer van die internet"
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "fsck het gefaal met kode %d of sein %d"
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Konfigureer netwerkkonneksie (LAN or internet)"
+#~ msgid "Choose options for server"
+#~ msgstr "Selekteer opsies vir bediener"
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Na watter skyf wil u skuif?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Kies die pakkette wat u wil installeer"
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Info"
+#~ msgid "Monitor not configured"
+#~ msgstr "Monitor is nie opgestel nie"
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Gnome werkstasie"
-
-#, fuzzy
-#~ msgid ""
-#~ "Apache is a World Wide Web server. It is used to serve HTML files and "
-#~ "CGI."
-#~ msgstr ""
-#~ "Apache is 'n WWW-bediener.\n"
-#~ "Dit kan HTML-lęers uitstuur en CGI's hanteer"
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Grafikakaart is nog nie konfigureer nie"
-#~ msgid ""
-#~ "named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
-#~ "host names to IP addresses."
-#~ msgstr ""
-#~ "named (BIND) is die domeinnaamdiens (DNS) wat gebruik word om\n"
-#~ "rekenaarname na IP-adresse toe om te skakel."
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Resolusie is nog nie gekies nie"
-#, fuzzy
#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
#~ "\n"
-#~ msgstr "Wat is u muistoestel?"
-
-#~ msgid "Scanning available nfs shared resource"
-#~ msgstr "Beskikbare NFS-gedeëlde hulpbronne word gesoek"
-
-#~ msgid "Scanning available nfs shared resource of server %s"
-#~ msgstr "Beskikbare NFS-gedeëlde hulpbronne van bediner %s word gesoek."
-
-#~ msgid "Scanning available samba shared resource"
-#~ msgstr "Beskikbare SAMBA-gedeëlde hulpbronne word gesoek"
-
-#~ msgid "Scanning available samba shared resource of server %s"
-#~ msgstr "Beskikbare SAMBA-gedeëlde hulpbronnevan bediener %s word gesoek"
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "Verlaat"
-
-#~ msgid "Removable media"
-#~ msgstr "Verwyderbare media"
-
-#~ msgid "Active"
-#~ msgstr "Aktief"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "Nee"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "'n Drukker, model \"%s\", is opgespoor op "
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Plaaslikte drukkertoestel"
-
-#~ msgid "Printer Device"
-#~ msgstr "Drukkertoestel:"
-
-#~ msgid "Device/file name missing!"
-#~ msgstr "Toestel/Lęernaam ontbreek"
-
-#
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Drukkers op eksterne CUPS-bediener(s)"
-
-#
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "Drukkers op eksterne CUPS-bediener(s)"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Stelselmode"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "Ander"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Wat is u sleutelborduitleg?"
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Kliek asb. op 'n partisie"
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Tipe:"
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Korrupte rugsteunlęer"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "Stel X op"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Drukkertoestel:"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Kanselleer"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "OK"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Sluit af"
-
-#~ msgid "Starting your connection..."
-#~ msgstr "Konneksie word begin..."
-
-#~ msgid "Closing your connection..."
-#~ msgstr "Konneksie word afgesluit..."
-
-#~ msgid "The system is now disconnected."
-#~ msgstr "Die stelsel is nou ontkoppel."
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Kies die grootte van die installasie"
-
-#~ msgid "Total size: "
-#~ msgstr "Totale grootte: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Wag asb.,"
-
-#~ msgid "Total time "
-#~ msgstr "Totale tyd "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "Gebruik bestaande konfigurasie vir X11?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
-#~ msgstr ""
-#~ "Watter toestel is die drukker aan gekoppel?\n"
-#~ "(let op dat /dev/lp0 ekwiwalent is aan LPT1:)\n"
-
-#~ msgid "%s"
-#~ msgstr "%s"
-
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
+#~ "try to change some parameters"
#~ msgstr ""
-#~ "Waarskuwing! Die netwerkkaart is alreeds opgestel. Ek gaan dit "
-#~ "herkonfigureer?"
-
-#~ msgid "New"
-#~ msgstr "Nuut"
-
-#~ msgid "Remote"
-#~ msgstr "Ekstern"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Kliek asb. op 'n partisie"
-
-#~ msgid "If the list above doesn't contain the wanted entry, enter it here:"
-#~ msgstr ""
-#~ "Indien bo-gelyste inskrywings nie die nodige inskrywing bevat nie, voeg "
-#~ "dit hier by:"
-
-#~ msgid "Shared resource"
-#~ msgstr "Gedeëlde hulpbron"
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Vaagheid (%s). Wees meer presies\n"
-
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (verstek %s) "
-
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "U keuse? (Verstek %s tik 'none' vir geen)"
-
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "kan nie /etc/sysconfig/autologin oopmaak vir lees nie: %s"
-
-#~ msgid "Do you want to restart the network"
-#~ msgstr "Wil u die netwerk herlaai?"
-
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "Stem u saam?"
-
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Ek gaan nou die netwerktoestel herlaai: \n"
-
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "Ek gaan nou die netwerktoestel %s herlaai. Stem u saam?"
-
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Indien u spesifiek anders weet, is die gewone keuse \"/dev/hda\"\n"
-#~ "(primęre meester IDE-skyf) of \"/dev/sda\" (eerste SCSI-skyf)."
-
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr ""
-#~ "Konneksie tydlimiet (in sekondes) [ beta, nog nie geďmplementeer nie ]"
-
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Kon nie \"%s\" die verstek drukker maak nie!"
-
-#
-#~ msgid "Test the mouse here."
-#~ msgstr "Toets die muis hier."
-
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr "Kies voorkeurtaal vir installasie en stelselgebruik."
-
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr "Kies die sleutelborduitleg uit die bostaande lys"
-
-#~ msgid ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!"
-#~ msgstr ""
-#~ "Selekteer:\n"
-#~ "\n"
-#~ " - Afgemeet: Indien u vertroud genoeg is met GNU/Linux, kan u die "
-#~ "primęre\n"
-#~ " gebruik van u rekenaar kies. Sien onder vir details.\n"
-#~ "\n"
-#~ " - Kundige: Indien u vlot is in GNU/Linux en 'n hoogs aangepaste "
-#~ "installasie wil\n"
-#~ " doen, kan u die deur die gebruik van u rekenaar te kies.\n"
-#~ " MOET ASB. NIE HIERDIE OPSIE KIES INDIEN U NIE WEET WAT U DOEN NIE."
-
-#, fuzzy
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "Die verskillende opsies vir u rekenaar se gebruik (indien u \"Afgemeet"
-#~ "\" \n"
-#~ "of \"Kundige\" sou kies) is die volgende:\n"
-#~ "\n"
-#~ " - Normaal: Indien die rekenaar primęr vir daaglikse kantoorgebruik is.\n"
-#~ " Moenie programmeringspakette verwag nie.\n"
-#~ "\n"
-#~ " - Ontwikkeling: Indien die rekenaar vir programontwikkel;ing gebruik "
-#~ "sal\n"
-#~ " word. 'n Volledige stel kompileerders, saamstellers en ontfouters "
-#~ "sal \n"
-#~ " opgesit word.\n"
-#~ "\n"
-#~ " - Bediener: Indien die rekenaar primęr 'n bediener sal wees, hetsy met "
-#~ "NFS,\n"
-#~ " SMB, drukkerbediening, NIS magtiging ens.\n"
-#~ " Moenie vensterstelsels soos KDE en GNOME verwag nie.\n"
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "U kan nou die pakketgroepe kies wat u wil installeer of opgradeer.\n"
-#~ "\n"
-#~ "DrakX sal dan kyk of daar genoegsame spasie is vir die volledige "
-#~ "installasie.\n"
-#~ "Indien nie sal u verwittig word. Indien u voortgaan, sal van die minder "
-#~ "belangrike\n"
-#~ "pakkette nie installeer word nie.Heel onder kan u die opsie \"Individuele "
-#~ "pakketkeuses\"\n"
-#~ "kies waarna u deur meer as 'n 1000 pakkette sal moet blaai....."
-
-#, fuzzy
-#~ msgid ""
-#~ "If you have all the CDs in the list above, click Ok. If you have\n"
-#~ "none of those CDs, click Cancel. If only some CDs are missing, unselect "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "Indienu al die CDs in die bogenoemde lys het, kliek OK.\n"
-#~ "Indien u geen het nie, kliek Kanselleer.\n"
-#~ "Indien sekere CDs weg is, onselekteer hulle en kliek dan OK."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, the correct informations can "
-#~ "be\n"
-#~ "obtained from your Internet Service Provider."
-#~ msgstr ""
-#~ "U kan nou die opbelopsie invul. Indien u\n"
-#~ "twyfel kry die korrekte inligting van u ISP."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Sleutel in:\n"
-#~ "\n"
-#~ " - IP-adres: Indien u dit nie weet nie vra u netwerkadministrateur of "
-#~ "ISP.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Netmasker: \"255.255.255.0\" is gewoonlik 'n goeie keuse. Indien u "
-#~ "twyfel,\n"
-#~ " vra die netwerkadministrateur of ISP.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Outomatiese IP: Indien u netwerk bootp of dhcp protokolle ondersteun, "
-#~ "kies\n"
-#~ " hierdie opsie. In so 'n geval is 'n IP-adresinskrywing nie nodig "
-#~ "nie. Indien u\n"
-#~ " twyfel, vra die netwerkadministrateur of ISP.\n"
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, ask your network administrator."
-#~ msgstr ""
-#~ "Indien u netwerk NIS gebruik, kies \"Gebruik NIS\". Indien u twyfel vra\n"
-#~ "die netwerkadministrateur."
-
-#~ msgid ""
-#~ "You may now enter dialup options. If you're not sure what to enter, the\n"
-#~ "correct information can be obtained from your ISP."
-#~ msgstr ""
-#~ "U kan nou die opbelopsie invul. Indien u\n"
-#~ "twyfel kry die korrekte inligting van u ISP."
-
-#~ msgid ""
-#~ "If you will use proxies, please configure them now. If you don't know if\n"
-#~ "you should use proxies, ask your network administrator or your ISP."
-#~ msgstr ""
-#~ "Indien u instaanbedieners wil gebruik, stel hulle hier op.. Indien u "
-#~ "twyfel vra\n"
-#~ "die netwerkadministrateur of ISP."
-
-#, fuzzy
-#~ msgid ""
-#~ "You can install cryptographic package if your internet connection has "
-#~ "been\n"
-#~ "set up correctly. First choose a mirror where you wish to download "
-#~ "packages and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "U kan 'n kriptografiese pakket installeer indien u internetkonneksie reg "
-#~ "opgestel is.\n"
-#~ "Kies eers die spieël waar u die pakket vanaf wil aflaai en kies dan die "
-#~ "pakkette\n"
-#~ "om te installeer.\n"
-#~ "\n"
-#~ "Let wel: U moet 'n spieël en pakkette selekteer n.a.l plaaslike wetgewing."
-
-#, fuzzy
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "U kan nou die 'root' wagwoord voorsien vir u Mandrake Linux stelsel.\n"
-#~ "Die wagworod moet twee keer ingevoer word en te verfiëer dat dit\n"
-#~ "korrek is.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is die administrateur van die stelsel en is die enigste gebruiker\n"
-#~ "wat toegelaat wiord om die stelselkonfigurasie te verander. In dié lig,\n"
-#~ "kies asb. die wagwoord sorgvuldig. Ongemagtigde gebruik van die root\n"
-#~ "rekening kan uitermatiglik nadelig wees vir die integriteit van die\n"
-#~ "stelsel. Die wagwoord moet alfanumeries wees en ten minste 8 karakters\n"
-#~ "lank. MOENIE die wagwoord ęrens neerskryf nie. Moet dit nie te lank of "
-#~ "te\n"
-#~ "ingwikkeld maak nie, u moet dit met min moeite onthou."
-
-#~ msgid ""
-#~ "You may now create one or more \"regular\" user account(s), as\n"
-#~ "opposed to the \"privileged\" user account, root. You can create\n"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "U mag nou een of meer gewone gebruikersrekeninge skep. Dit is in\n"
-#~ "teenstelling met die bevoorregte 'root' rekening. Elke "
-#~ "gebruikersrekening\n"
-#~ "sal oor sy eie voorkeure (grafiese omgewing, programstelling, ens.) en\n"
-#~ "tuisgids (waar hierdie instellings gestoor word) beskik.\n"
-#~ "\n"
-#~ "\n"
-#~ "Derhalwe moet u in die stelsel intkeen met u eie gebruikerskode en slegs\n"
-#~ "'root' gebruik vir administratiewe doeleindes.\n"
-#~ "\n"
-#~ "Skep eerstens 'n rekening vir uself. Selfs indien u die enigste "
-#~ "gebruiker\n"
-#~ "op die stelsel sal wees, moet u NIE as 'root' vir u daaglikse gebruik\n"
-#~ "inteken NIE. 'n Onbruikbare stelsel kan net een tikfout ver weg wees.\n"
-#~ "\n"
-#~ "\n"
-#~ "Derhalwe moet u aanteken met die gebruikerskode wat u hier skep en "
-#~ "'root'\n"
-#~ "net vir admintratiewe doeleindes gebruik."
-
-#, fuzzy
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <number>: use the corresponding text mode.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories\n"
-#~ "stored in \"/tmp\" when you boot your system, select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the\n"
-#~ "BIOS about the amount of RAM present in your computer. As consequence, "
-#~ "Linux may\n"
-#~ "fail to detect your amount of RAM correctly. If this is the case, you "
-#~ "can\n"
-#~ "specify the correct amount or RAM here. Please note that a difference of "
-#~ "2 or 4\n"
-#~ "MB between detected memory and memory present in your system is normal."
-#~ msgstr ""
-#~ "LILO en Grub hoof opsies is:\n"
-#~ " - Herlaaitoestel: Stel die naam van die toestel (bv. hardeskyfpartisie\n"
-#~ " wat die herlaaisektor bevat. Indien u spesifiek anders weet\n"
-#~ " kies \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Wagperiode voor verstekbedryfstelsel gelaai word. Kies die syfer in\n"
-#~ " tiendes van 'n sekonde at die herlaaistelsel moet wag.\n"
-#~ " Hierdie is handig op stelsels wat onmiddelik die hardeskyf skop na "
-#~ "die\n"
-#~ " sleutelbord geaktiveer is. Die herlaaistelsel sal nie wag nie indien "
-#~ "die\n"
-#~ " wagperiode nul is.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Videomode: Kies die spesifieke VGA teksmode wat gebruik moet word "
-#~ "met\n"
-#~ " herlaai. Die volgende waardes is beskikbaar:\n"
-#~ " * normaal: selekteer normale 80x25 mode.\n"
-#~ " * syfer: die ooreenstemmende teksmode."
-
-#~ msgid ""
-#~ "SILO is a bootloader for SPARC: it is able to boot\n"
-#~ "either GNU/Linux or any other operating system present on your computer.\n"
-#~ "Normally, these other operating systems are correctly detected and\n"
-#~ "installed. If this is not the case, you can add an entry by hand in this\n"
-#~ "screen. Be careful as to choose the correct parameters.\n"
-#~ "\n"
-#~ "\n"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "anyone, in which case you can delete the corresponding entries. But\n"
-#~ "in this case, you will need a boot disk in order to boot them!"
-#~ msgstr ""
-#~ "SILO 'n herlaaiprogram vir SPARC. Dir kan GNU/Linux of enige ander\n"
-#~ "bedryfstelsel wat op u rekenar teenwoordig is, laai. Gewoonlik word "
-#~ "hierdie\n"
-#~ "bedryfstelsels reg bespeur en bygevoeg. Indien nie, kan u 'n inskrywing "
-#~ "maak\n"
-#~ "op hierdie skerm. Maak seker u kies die korrekte paramters.\n"
-#~ "\n"
-#~ "\n"
-#~ "U mag dalk toegang tot ander bedryfstelsels beperk, in welke geval u die "
-#~ "nodige\n"
-#~ "inskrywings kan uitvee. Maar dan het u die nodige herlaaiskywe nodig om "
-#~ "die\n"
-#~ "betrokke bedryfstelsels te laai."
-
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ "SILO hoofkeuses is:\n"
-#~ " - Herlaaitoestel: Waar wil u die inligting om GNU/Linux te laai plaas? "
-#~ "Die beste is\n"
-#~ "gewoonlik om \"Eerste hardeskyfsektor (MBR)\" te kies.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Wagperiode voor verstekbedryfstelsel gelaai word. Kies die syfer in\n"
-#~ " tiendes van 'n sekonde at die herlaaistelsel moet wag.\n"
-#~ " Hierdie is handig op stelsels wat onmiddelik die hardeskyf skop na "
-#~ "die\n"
-#~ " sleutelbord geaktiveer is. Die herlaaistelsel sal nie wag nie indien "
-#~ "die\n"
-#~ " wagperiode nul is."
-
-#~ msgid ""
-#~ "Now it's time to configure the X Window System, which is the\n"
-#~ "core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "Dit is tyd om die X-vensterstelsel op te stel. Hierdie is die kern van\n"
-#~ "die GNU/Linux grafiese omgewing. Vir hierdie doeleindes, moet u 'n "
-#~ "videokaart\n"
-#~ "en monitor kies. Meeste van hierdie stappe is outomaties en u moet net\n"
-#~ "verifiëer of dit korrek is.\n"
-#~ "\n"
-#~ "\n"
-#~ "Na konfigurasie sal X outmaties gelaai word, behalwe as u DrakX "
-#~ "andersins\n"
-#~ "aansę. Indien die stelling u nie pas nie, kom terug en verander so veel\n"
-#~ "keer soos nodig."
-
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ "Indien iets verkeerd is in die X-konfigurasie, gebruik hierdie opsies om\n"
-#~ "die X-vensterstelsel reg op te stel."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "Indien u verkies om 'n grafiese intekenarea te kry, kies \"Ja\", "
-#~ "andersins \"Nee\"."
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
-#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
-#~ msgstr ""
-#~ "U stelsel gaan nou herlaai.\n"
-#~ "\n"
-#~ "U nuwe Mandrake Linux stelsel sal outomaties laai. Indien u 'n ander\n"
-#~ " bedryfstelsel wil laai, lees die ekstra instruksies noukeurig deur."
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "Skryf /etc/fstab"
-
-#~ msgid "Format all"
-#~ msgstr "Formatteer almal"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "Na formatering van alle partisies"
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "alle data om hierdie partisies sal verloor word"
-
-#~ msgid "Reload"
-#~ msgstr "Herlaai"
-
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr "Wil u 'n outoinstallasieskyf maak vir Linux replikasie?"
-
-#~ msgid "ADSL configuration"
-#~ msgstr "ADSL konfigurasie"
-
-#, fuzzy
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ "Met 'n eksterne CUPS-bediener, hoef u glad nie 'n drukker hier\n"
-#~ "op te stel nie; drukkers wod outomaties bespeur.\n"
-#~ "Indien u twyfel, kies \"Eksterne CUPS-bediener\"."
-
-#~ msgid "Remote queue"
-#~ msgstr "Eksterne drukkertou"
-
-#~ msgid "Remote queue name missing!"
-#~ msgstr "Eksterne tounaam ontbreek!"
-
-#~ msgid "Command line"
-#~ msgstr "Instruksielyn"
-
-#~ msgid "Modify printer"
-#~ msgstr "Verander drukker"
-
-#~ msgid "Network Monitoring"
-#~ msgstr "Netwerkmonitor"
-
-#~ msgid "Profile "
-#~ msgstr "Profiel"
-
-#~ msgid "Connection Time: "
-#~ msgstr "Konneksietyd"
-
-#~ msgid "Connecting to Internet "
-#~ msgstr "Internetkonneksie"
-
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "Internetdiskonneksie"
-
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "Diskonnekteer van die internet het misluk."
-
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "Diskonneksie van die internet sukssevol"
-
-#~ msgid "Connection complete."
-#~ msgstr "Konneksie suksesvol"
-
-#~ msgid "Default Runlevel"
-#~ msgstr "Verstek loopvlak"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "Konfigurasielęerinhoud is onverstaanbaar"
-
-#~ msgid "Adapter"
-#~ msgstr "Toestel"
-
-#~ msgid "Disable network"
-#~ msgstr "Sper netwerkstelsel"
-
-#~ msgid "Enable network"
-#~ msgstr "Aktiveer netwerk"
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "DSL (of ADSL) konneksie"
-
-#~ msgid "Choose"
-#~ msgstr "kies"
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr ""
-#~ "U kan die URI, om die drukker via CUPS te gebruik, direk spesifiseer"
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "Ja, druk ASCII toetsbladsy"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "Ja, druk die PostScript toetsbladsy"
-
-#~ msgid "Paper Size"
-#~ msgstr "Papiergrootte"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "Stoot papier uit na voltooiing?"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "Uniprint-dryweropsies"
-
-#~ msgid "Color depth options"
-#~ msgstr "Kleurdiepte opsies"
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "Druk teks as PostScript?"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "Korrigeer trapsgewyse teks?"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Aantal bladsye per uitsetblad?"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "Regs/Links kantlyne in punte (1/72 van 'n duim)"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "Bo/Onder kantlyne in punte (1/72 van 'n duim)"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "Ekstra GhostScriptopsies"
-
-#~ msgid "Extra Text options"
-#~ msgstr "Ekstra teksopsies"
-
-#~ msgid "Reverse page order"
-#~ msgstr "Omgekeerde bladsyorde"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Kies eksterne drukkerkonneksie"
-
-#~ msgid ""
-#~ "Every printer need a name (for example lp).\n"
-#~ "Other parameters such as the description of the printer or its location\n"
-#~ "can be defined. What name should be used for this printer and\n"
-#~ "how is the printer connected?"
-#~ msgstr ""
-#~ "Elke drukker benodig 'n naam (bv. lp)\n"
-#~ "Ander parameters soos 'n beskrywing en 'n ligging kan ook gegee word.\n"
-#~ "Wat is die drukker se naam en wat is die konneksietipe?"
-
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a\n"
-#~ "name (often lp) and a spool directory associated with it. What\n"
-#~ "name and directory should be used for this queue and how is the printer "
-#~ "connected?"
-#~ msgstr ""
-#~ "Elke drukkertou (waar drukstukke heengaan) het 'n naam nodig \n"
-#~ "(baie keer 'lp') and 'n gekoppelde spoelgids. Watter naam en\n"
-#~ "spoelgids moet gebruik word?"
-
-#~ msgid "Name of queue"
-#~ msgstr "Tounaam"
-
-#~ msgid "Spool directory"
-#~ msgstr "Spoelgids"
-
-#~ msgid "Disable"
-#~ msgstr "Deaktiveer"
-
-#~ msgid "Enable"
-#~ msgstr "Aktiveer"
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ msgstr ""
-#~ "Om 'n veiliger stelsel te bou, moet u \"Gebruik skadulęer\" \n"
-#~ "en \"Gebruik MD5 wagwoorde\" kies."
-
-#~ msgid ""
-#~ "If your network uses NIS, select \"Use NIS\". If you don't know, ask "
-#~ "your\n"
-#~ "network administrator."
-#~ msgstr ""
-#~ "Indien u netwerk NIS wil gebruik, kies \"Gebruik NIS\" hier. Indien u "
-#~ "twyfel vra\n"
-#~ "die sysadmin.."
-
-#~ msgid "yellow pages"
-#~ msgstr "geelbladsye"
-
-#~ msgid "Light configuration"
-#~ msgstr "Ligte konfigurasie"
-
-#~ msgid "Provider dns 1"
-#~ msgstr "Voorsiener DNS 1"
-
-#~ msgid "Provider dns 2"
-#~ msgstr "Voorsiener DNS 2"
-
-#, fuzzy
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr "Wil u nou aan die internet konnekteer?"
-
-#, fuzzy
-#~ msgid "Selected size %d%s"
-#~ msgstr "Selekteer lOer"
-
-#, fuzzy
-#~ msgid "Opening your connection..."
-#~ msgstr "Konfigureer internetkonneksie"
-
-#, fuzzy
-#~ msgid "Configure..."
-#~ msgstr "Stel X op"
-
-#, fuzzy
-#~ msgid "Configuration de Lilo/Grub"
-#~ msgstr "Stel netwerk op"
-
-#~ msgid "This startup script try to load your modules for your usb mouse."
-#~ msgstr "Hierdie skrip laai de nodige modules vir 'n USB-muis."
-
-#, fuzzy
-#~ msgid ""
-#~ "Now that your Internet connection is configured,\n"
-#~ "your computer can be configured to share its Internet connection.\n"
-#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
-#~ "(LAN).\n"
-#~ "\n"
-#~ "Would you like to setup the Internet Connection Sharing?\n"
-#~ msgstr ""
-#~ "Nou dat u internetkonfigurasie opgestel is,\n"
-#~ "moet u die rekenaar opstel om dit te deel.\n"
-#~ "LW: U benodig 'n ware netwerkkaart om 'n lokalearea netwerk (LAN) op te "
-#~ "stel.\n"
-#~ "\n"
-#~ "Wil u internetdeling opstel?\n"
-
-#~ msgid "Automatic dependencies"
-#~ msgstr "Outomatiese afhanklikhede"
-
-#, fuzzy
-#~ msgid "Configure LILO/GRUB"
-#~ msgstr "Stel X op"
-
-#~ msgid "Create a boot floppy"
-#~ msgstr "Maar 'n herlaaiskyf"
-
-#~ msgid "Choice"
-#~ msgstr "Keuse"
-
-#, fuzzy
-#~ msgid ""
-#~ "You can now select some miscellaneous options for your system.\n"
-#~ "\n"
-#~ "* Use hard drive optimizations: this option can improve hard disk "
-#~ "performance but is only for advanced users. Some buggy\n"
-#~ " chipsets can ruin your data, so beware. Note that the kernel has a "
-#~ "builtin blacklist of drives and chipsets, but if\n"
-#~ " you want to avoid bad surprises, leave this option unset.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Choose security level: you can choose a security level for your system. "
-#~ "Please refer to the manual for complete\n"
-#~ " information. Basically, if you don't know what to choose, keep the "
-#~ "default option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the BIOS about the amount of RAM present in\n"
-#~ " your computer. As consequence, Linux may fail to detect your amount of "
-#~ "RAM correctly. If this is the case, you can\n"
-#~ " specify the correct amount or RAM here. Please note that a difference "
-#~ "of 2 or 4 MB between detected memory and memory\n"
-#~ " present in your system is normal.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Removable media automounting: if you would prefer not to manually mount "
-#~ "removable media (CD-Rom, floppy, Zip, etc.) by\n"
-#~ " typing \"mount\" and \"umount\", select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories stored in \"/tmp\" when you boot your system,\n"
-#~ " select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Enable num lock at startup: if you want NumLock key enabled after "
-#~ "booting, select this option. Please note that you\n"
-#~ " should not enable this option on laptops and that NumLock may or may "
-#~ "not work under X."
-#~ msgstr ""
-#~ "U kan nou 'n paar diverse opsies vir u stelsel kies.\n"
-#~ "\n"
-#~ " - Optimeer hardeskyf. Hierdie kan hardeskyfwerksverrigting verbeter, "
-#~ "maar is net\n"
-#~ " vir kundige gebruikers bedoel. Sekere gebroke koppelvlakke kan data "
-#~ "ruďneer.\n"
-#~ " Die bedryfstelsel kern het 'n swartlys van hardeskywe, maar indien u "
-#~ "onaangename\n"
-#~ " verrassings wil voorkom los hierdie opsie uit.\n"
-#~ "\n"
-#~ " - Sekuriteitsvlak: Lees die handleiding vir volledigheid, maar in "
-#~ "kort:\n"
-#~ " Kies \"Medium\" indien u twyfel. Vir 'n hoogs veilige stelsel kies "
-#~ "\"Paranoďes\",\n"
-#~ " maar pasop: OP HIERDIE VLAK KLAN SELFS NIE 'ROOT' OP DIE KONSOLE\n"
-#~ " AANTEKEN NIE. Vir 'root' toegang moet 'n gewone gebruiker eers "
-#~ "aanteken en dan\n"
-#~ " \"su\". Dit is uitsluitlik vir 'n bediener bedoel.\n"
-#~ "\n"
-#~ " - Presiese geheuegrootte: Daar is geen ongelukkig standaard metode om "
-#~ "die geheuegrootte\n"
-#~ " uit die BIOS te bepaal nie. Soms sal Linux nie die grootte korrek "
-#~ "bepaal nie. In hierdie geval\n"
-#~ " kan die korrekte grootte her gegee word. Let daarop dat 'n verskil "
-#~ "van 2-4MB normaal is.\n"
-#~ "\n"
-#~ " - Outohegting van verwyderbare media: Indien u nie elke keer die "
-#~ "hegting per intik wil doen\n"
-#~ " nie (van CDROMs, floppies, ZIpaandrywers ens.), selekteer hierdie "
-#~ "opsie.\n"
#~ "\n"
-#~ " - NumLock: Indien u NumLock wil aansit by herlaaityd, selekteer hierdie "
-#~ "opsie. Dit sal\n"
-#~ " nie noodwendig NumLock onder X aansit nie."
+#~ "probeer van die parameters verander"
-#~ msgid "Miscellaneous"
-#~ msgstr "Arbitręre items"
+#~ msgid "An error occurred:"
+#~ msgstr "Daar was 'n fout:"
-#~ msgid "Miscellaneous questions"
-#~ msgstr "Diverse vrae"
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "uitgang binne %ds"
-#~ msgid "Can't use supermount in high security level"
-#~ msgstr "U kan nie supermount in hoë sekuriteitsvlak gebruik nie."
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Is dit korrek?"
-#~ msgid ""
-#~ "beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
-#~ "If you want to be root, you have to login as a user and then use \"su\".\n"
-#~ "More generally, do not expect to use your machine for anything but as a "
-#~ "server.\n"
-#~ "You have been warned."
-#~ msgstr ""
-#~ "Warskuwing: IN HIERDIE SEKURITEITSVLAK, kan ROOT nie by die KONSOLE "
-#~ "AANTEKEN nie.\n"
-#~ "OM 'root' te wees moet u eers as 'n gewone gebruiker aanteken en dan 'su'."
-#~ "Hierdie is spesifiek vir bedienergebruik. U is gewaarsku!"
-
-#~ msgid ""
-#~ "Be carefull, having numlock enabled causes a lot of keystrokes to\n"
-#~ "give digits instead of normal letters (eg: pressing `p' gives `6')"
-#~ msgstr ""
-#~ "Wees versigtig, met NumLock aan sal heelwat sleutels as syfers eerder as "
-#~ "karakters na vore kom. (Bv 'n 'p' mag dalk '6' wees)"
-
-#~ msgid "First DNS Server"
-#~ msgstr "Eerste DNS bediener"
-
-#~ msgid "Second DNS Server"
-#~ msgstr "Tweede DNS bediener"
-
-#~ msgid "loopback"
-#~ msgstr "teruglus"
-
-#~ msgid "Which bootloader(s) do you want to use?"
-#~ msgstr "Watter herlaaistelsel(s) verlang u?"
-
-#~ msgid "Auto install floppy"
-#~ msgstr "Outoinstallasieskyf"
-
-#~ msgid "Try to find a modem?"
-#~ msgstr "Soekj vir 'n modem?"
-
-#~ msgid "Configure local network"
-#~ msgstr "Stel netwerk op"
-
-#~ msgid ""
-#~ "Local networking has already been configured.\n"
-#~ "Do you want to:"
-#~ msgstr "Plaaslike netwerk is alreeds opgestel: Wil u?"
-
-#~ msgid "KDE"
-#~ msgstr "KDE"
-
-#~ msgid "Gnome"
-#~ msgstr "Gnome"
-
-#~ msgid "Configure timezone"
-#~ msgstr "Konfigureer tydsone"
-
-#~ msgid "(may cause data corruption)"
-#~ msgstr "(kan data korrupteer)"
-
-#~ msgid "Enable num lock at startup"
-#~ msgstr "Aansit van NumLock met herlaai"
-
-#~ msgid "Confirm Password"
-#~ msgstr "Bevestig wagwoord"
-
-#~ msgid "default"
-#~ msgstr "verstek"
-
-#~ msgid "What is your system used for?"
-#~ msgstr "Waarvoor word u stelsel gebruik?"
-
-#~ msgid "Select the size you want to install"
-#~ msgstr "Kies die grootte van die installasie"
-
-#~ msgid "Use diskdrake"
-#~ msgstr "Gebruik diskdrake"
-
-#
-#~ msgid "Customized"
-#~ msgstr "Gespesialiseerde"
-
-#~ msgid ""
-#~ "Are you sure you are an expert? \n"
-#~ "You will be allowed to make powerful but dangerous things here.\n"
-#~ "\n"
-#~ "You will be asked questions such as: ``Use shadow file for passwords?'',\n"
-#~ "are you ready to answer that kind of questions?"
-#~ msgstr ""
-#~ "Is u 'n kundige? U sal sal toegelaat word om kragtige, maar\n"
-#~ "gevaarlike keuses uit te oefen\n"
-#~ "\n"
-#~ "U sal vrae gevra word soos: \"Gebruik skaduwagwoorde?\"\n"
-#~ "Is u reg vir sulke vrae?"
-
-#~ msgid "Use shadow file"
-#~ msgstr "Gebruik skadulęer"
-
-#~ msgid "MD5"
-#~ msgstr "MD5"
-
-#~ msgid "Use MD5 passwords"
-#~ msgstr "Gebruik MD5 wagwoorde"
-
-#~ msgid "Search"
-#~ msgstr "Soek"
-
-#~ msgid "Package"
-#~ msgstr "Pakket"
-
-#~ msgid "Tree"
-#~ msgstr "Boom"
-
-#~ msgid "Sort by"
-#~ msgstr "Gesorteer volgens"
-
-#~ msgid "Category"
-#~ msgstr "Kategorie"
-
-#~ msgid "Installed packages"
-#~ msgstr "Installeerde pakkette"
-
-#~ msgid "Available packages"
-#~ msgstr "Beskikbare pakkette"
-
-#~ msgid "Show only leaves"
-#~ msgstr "Wys net eindnodes"
-
-#~ msgid "Expand all"
-#~ msgstr "Maak boom oop"
-
-#~ msgid "Collapse all"
-#~ msgstr "Maak boom toe"
-
-#~ msgid "Add location of packages"
-#~ msgstr "Voeg pakketareas by"
-
-#~ msgid "Update location"
-#~ msgstr "Dateer ligging op"
-
-#~ msgid "Find Package"
-#~ msgstr "Soek pakket"
-
-#~ msgid "Find Package containing file"
-#~ msgstr "Soek pakket met lęer"
-
-#~ msgid "Toggle between Installed and Available"
-#~ msgstr "Skakel tussen installeerde en beskikbare"
-
-#~ msgid "Checking dependencies"
-#~ msgstr "Afhanklikhede word getoets"
-
-#
-#~ msgid "The following packages are going to be uninstalled"
-#~ msgstr "Die volgende pakkette gaan verwyder word"
-
-#~ msgid "Regexp"
-#~ msgstr "Regex"
-
-#~ msgid "Which package are looking for"
-#~ msgstr "Watter pakket soek vir"
-
-#~ msgid "No match"
-#~ msgstr "Geen treffer"
-
-#~ msgid "No more match"
-#~ msgstr "Niks meer treffers nie"
-
-#~ msgid ""
-#~ "rpmdrake is currently in ``low memory'' mode.\n"
-#~ "I'm going to relaunch rpmdrake to allow searching files"
-#~ msgstr ""
-#~ "rpmdrake is in lae-geheue opstelling.\n"
-#~ "Ek gaan rpmdrake herlaai om soektogte toe te laat."
-
-#
-#~ msgid "Which file are you looking for?"
-#~ msgstr "Watter lęer verlang u?"
-
-#~ msgid "What are looking for?"
-#~ msgstr "Wat soek vir?"
-
-#~ msgid "Give a name (eg: `extra', `commercial')"
-#~ msgstr "Gee 'n (engelse) naam (bv. 'extra')"
-
-#~ msgid "Directory"
-#~ msgstr "Lęergids"
-
-#~ msgid "No cdrom available (nothing in /mnt/cdrom)"
-#~ msgstr "Geen cdrom beskikbaar nie (niks in /mnt/cdrom nie)"
-
-#~ msgid "URL of the directory containing the RPMs"
-#~ msgstr "URL van die lęergids met die RPM's"
-
-#~ msgid ""
-#~ "For FTP and HTTP, you need to give the location for hdlist\n"
-#~ "It must be relative to the URL above"
-#~ msgstr ""
-#~ "Vir FTP en HTTP, moet die pad vir die hdlist gegee word\n"
-#~ "Dit moet relatief tot bg. URL wees."
-
-#~ msgid "Please submit the following information"
-#~ msgstr "Voorsien asb. die volgende inligting"
-
-#~ msgid "%s is already in use"
-#~ msgstr "%s is lareeds in gebruik"
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Hier is fout, probeer van die parameters verander"
-#~ msgid "Updating the RPMs base"
-#~ msgstr "Die RPM's se basis word opgedateer"
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 bediener: %s"
-#~ msgid "Going to remove entry %s"
-#~ msgstr "Inskrywing %s gaan verwyder word"
+#~ msgid "Show all"
+#~ msgstr "Vertoon almal"
-#~ msgid "Finding leaves"
-#~ msgstr "Eindnodes word gesoek"
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "X-Window konfigurasie word opgestel"
-#~ msgid "Finding leaves takes some time"
-#~ msgstr "Soek van eindnodes neem 'n tydjie"
-
-#~ msgid "I have found an ISDN Card:\n"
-#~ msgstr "Ek het 'n ISDN-kaart gevind\n"
-
-#~ msgid "Other countries"
-#~ msgstr "Ander lande"
-
-#
-#~ msgid "In which country are you located ?"
-#~ msgstr "In watter land is u?"
-
-#~ msgid "Alcatel modem"
-#~ msgstr "Alcatel modem"
-
-#~ msgid "ECI modem"
-#~ msgstr "ECI modem"
-
-#~ msgid ""
-#~ "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
-#~ msgstr "Indien u ADSL-modem 'n Alcatel is, kies Alcatel, andersins ECI."
-
-#~ msgid "don't use pppoe"
-#~ msgstr "moenie pppoe gebruik nie"
-
-#~ msgid "i18n (important)"
-#~ msgstr "i18n (belangrik)"
-
-#~ msgid "i18n (very nice)"
-#~ msgstr "i18n (baie oulik)"
-
-#~ msgid "i18n (nice)"
-#~ msgstr "i18n (oulik)"
-
-#~ msgid "Which serial port is your mouse connected to?"
-#~ msgstr "Aan watter seriaalpoort is u muis gekoppel?"
-
-#~ msgid "Czech"
-#~ msgstr "Tseggies"
-
-#~ msgid "Slovakian"
-#~ msgstr "Slovaaks"
-
-#~ msgid "Could not install ipchains RPM with urpmi."
-#~ msgstr "Kon nie ipchains RPM m.b.v. urpmi installeer nie."
-
-#~ msgid "Could not install dhcp RPM with urpmi."
-#~ msgstr "Kon nie dhcp RPM m.b.v. urpmi installeer nie."
-
-#~ msgid "Could not install linuxconf RPM with urpmi."
-#~ msgstr "Kon nie linuxconf RPM m.b.v. urpmi installeer nie."
-
-#~ msgid "Could not install bind RPM with urpmi."
-#~ msgstr "Kon nie bind RPM m.b.v. urpmi installeer nie."
-
-#~ msgid "Could not install caching-nameserver RPM with urpmi."
-#~ msgstr "Kon nie caching-nameserver RPM m.b.v. urpmi installeer nie. "
-
-#~ msgid "Reconfigure local network"
-#~ msgstr "Herkonfigureer plaaslike netwerk"
-
-#~ msgid ""
-#~ "Your computer can be configured to share its Internet connection.\n"
-#~ "\n"
-#~ msgstr "U rekenaar is opgestel om sy internet konneksie te deel.\n"
-
-#~ msgid "Everything has been configured.\n"
-#~ msgstr "Internetkonneksiedeling is ontsper.\n"
-
-#~ msgid "Connect to Internet with a normal modem"
-#~ msgstr "Konnekteer aan die internet met gewone modem"
-
-#~ msgid "Connect to Internet using ISDN"
-#~ msgstr "Konnekteer aan die internet met ISDN"
-
-#~ msgid "Connect to Internet using DSL (or ADSL)"
-#~ msgstr "Konnekteer aan die internet met DSL (of ADSL)"
-
-#~ msgid "Connect to Internet using Cable"
-#~ msgstr "Konnekteer aan die internet met kabel"
-
-#~ msgid ""
-#~ "Time (secs) of inactivity after which\n"
-#~ "it hangs up. (leave blank to disable it)"
-#~ msgstr ""
-#~ "Tyd, in sekondes, van onaktiwiteit voor diskonneksie.\n"
-#~ "Los oop om dié funksie te sper."
-
-#~ msgid "Germany (1TR6)"
-#~ msgstr "Duitsland (1TR6)"
-
-#~ msgid "What do you wish to do?"
+#~ msgid "What do you want to do?"
#~ msgstr "Wat wil u doen?"
-#~ msgid "Install/Rescue"
-#~ msgstr "Installasie/Redding"
+#~ msgid "Change Monitor"
+#~ msgstr "Verander monitor"
-#~ msgid "Rescue"
-#~ msgstr "Redding"
+#~ msgid "Change Graphics card"
+#~ msgstr "Verander videokaart"
-#~ msgid "Which partition type do you want?"
-#~ msgstr "Watter partisietipe verlang u?"
+#~ msgid "Change Server options"
+#~ msgstr "Verander bedienerinstellings"
-#, fuzzy
-#~ msgid ""
-#~ "Choose \"Install\" if there are no previous versions of GNU/Linux\n"
-#~ "installed, or if you wish to use multiple distributions or versions.\n"
-#~ "\n"
-#~ "Choose \"Rescue\" if you wish to rescue a version of Mandrake Linux "
-#~ "already installed.\n"
-#~ "\n"
-#~ "\n"
-#~ "Select:\n"
-#~ "\n"
-#~ " - Recommended: If you have never installed GNU/Linux before, choose "
-#~ "this.\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!\n"
-#~ msgstr ""
-#~ "Selekteer:\n"
-#~ "\n"
-#~ " - Afgemeet: Indien u vertroud genoeg is met GNU/Linux, kan u die "
-#~ "primęre\n"
-#~ " gebruik van u rekenaar kies. Sien onder vir details.\n"
-#~ "\n"
-#~ " - Kundige: Indien u vlot is in GNU/Linux en 'n hoogs aangepaste "
-#~ "installasie wil\n"
-#~ " doen, kan u die deur die gebruik van u rekenaar te kies.\n"
-#~ " MOET ASB. NIE HIERDIE OPSIE KIES INDIEN U NIE WEET WAT U DOEN NIE."
+#~ msgid "Change Resolution"
+#~ msgstr "Verander resolusie"
-#~ msgid ""
-#~ "At this point, you may choose what partition(s) to use to install\n"
-#~ "your Mandrake Linux system if they have been already defined (from a\n"
-#~ "previous install of GNU/Linux or from another partitioning tool). In "
-#~ "other\n"
-#~ "cases, hard drive partitions must be defined. This operation consists of\n"
-#~ "logically dividing the computer's hard drive capacity into separate\n"
-#~ "areas for use.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you have to create new partitions, use \"Auto allocate\" to "
-#~ "automatically\n"
-#~ "create partitions for GNU/Linux. You can select the disk for partitioning "
-#~ "by\n"
-#~ "clicking on \"hda\" for the first IDE drive,\n"
-#~ "\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
-#~ "\n"
-#~ "\n"
-#~ "Two common partition are: the root partition (/), which is the starting\n"
-#~ "point of the filesystem's directory hierarchy, and /boot, which contains\n"
-#~ "all files necessary to start the operating system when the\n"
-#~ "computer is first turned on.\n"
-#~ "\n"
-#~ "\n"
-#~ "Because the effects of this process are usually irreversible, "
-#~ "partitioning\n"
-#~ "can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-#~ "simplifies the process so that it must not be. Consult the documentation\n"
-#~ "and take your time before proceeding.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can reach any option using the keyboard: navigate through the "
-#~ "partitions\n"
-#~ "using Tab and Up/Down arrows. 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"
-#~ msgstr ""
-#~ "U kan nou kies watter partisie(s) gebruik kan word om Mandrake Linux\n"
-#~ "op te installeer indien hulle reeds bestaan (geskep uit 'n vorige "
-#~ "installasie,\n"
-#~ "of met 'n ander partisieprogram). In ander gevalle moet die partisies nog "
-#~ "geskep\n"
-#~ "word. Hierdie operasie bestan uit die logiese verdeling van die hardeskyf "
-#~ "in\n"
-#~ "aparte bruikbare areas\n"
-#~ "\n"
-#~ "\n"
-#~ "Indien u nuwe partisies moet skep, gebruik \"Outo-allokasie\" om "
-#~ "outomaties\n"
-#~ "partisies vir Linux te skep. U kan die skyf vir partisionering selekteer "
-#~ "deur\n"
-#~ "op \"hda\" te kliek vir die eerste IDE hardeskyf, hdb vir die tweede of "
-#~ "\"sda\"\n"
-#~ "vir die eerste SCSI skyf ens.\n"
-#~ "\n"
-#~ "\n"
-#~ "Twee algemene partisies is die \"root\" partisie (/), wat die wortel is\n"
-#~ "van die lęergidsstelsel, en /boot, wat die nodige lęers bevat om die\n"
-#~ "bedryfstelsel aan die gang te kry wanneer die rekenaar aangesit word.\n"
-#~ "\n"
-#~ "\n"
-#~ "Omdat die gevolge van hierdie proses onomkeerbaar is, kan partisionering "
-#~ "baie\n"
-#~ "intimiderend en stresvol vir die onervare gebruiker wees. DiskDrake maak "
-#~ "dié\n"
-#~ "proses heelwat makliker. Lees die dokumentasie en neem u tyd voor u "
-#~ "voortgaan.\n"
-#~ "\n"
-#~ "\n"
-#~ "U kan enige opsie gebruik deur die sleutelbord te gebruik. Navigeer deur "
-#~ "diepartisies met\n"
-#~ "Tab en die pyltjies. Wanneer 'n partisie gekies is, gebruik:\n"
-#~ "\n"
-#~ "- Ctrl-c om 'n partisie te skep (wanneer 'n leë partisie gekies is)\n"
-#~ "\n"
-#~ "- Ctrl-d om 'n partisie uit te vee\n"
-#~ "\n"
-#~ "- Ctrl-m om 'n partisie te heg\n"
+#~ msgid "Show information"
+#~ msgstr "Vertoon inligting"
-#~ msgid ""
-#~ "Any partitions that have been newly defined must be formatted for\n"
-#~ "use (formatting meaning creating a filesystem). At this time, you may\n"
-#~ "wish to re-format some already existing partitions to erase the data\n"
-#~ "they contain. Note: it is not necessary to re-format pre-existing\n"
-#~ "partitions, particularly if they contain files or data you wish to keep.\n"
-#~ "Typically retained are /home and /usr/local."
-#~ msgstr ""
-#~ "Enige partisies wat nuut geskep is, moet eers formateer word voor "
-#~ "gebruik.\n"
-#~ "(Formateering beteken die skep van 'n lOerstelsel). U kan nou kies om "
-#~ "ook\n"
-#~ "bestaande partisies te herformateer en die data daarop te vernietig.\n"
-#~ "NOTA: Dit is nie nodig om alle bestaande partisies te herformateer nie,\n"
-#~ "veral indien daar data op is wat u wil hou. 'n Tipiese voorbeeld is /home."
-
-#~ msgid ""
-#~ "The packages selected are now being installed. This operation\n"
-#~ "should take a few minutes unless you have chosen to upgrade an\n"
-#~ "existing system, in that case it can take more time even before\n"
-#~ "upgrade starts."
-#~ msgstr ""
-#~ "Die gekose pakette gaan nou installeer word. Hierdie proses\n"
-#~ "sal 'n paar minute neem. Indien u 'n opgradering gekies, kan dit\n"
-#~ "nog langer neem voordat die opgradering begin."
-
-#~ msgid ""
-#~ "If DrakX failed to find your mouse, or if you want to\n"
-#~ "check what it has done, you will be presented the list of mice\n"
-#~ "above.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you agree with DrakX's settings, just click 'Ok'.\n"
-#~ "Otherwise you may choose the mouse that more closely matches your own\n"
-#~ "from the menu above.\n"
-#~ "\n"
-#~ "\n"
-#~ "In case of a serial mouse, you will also have to tell DrakX\n"
-#~ "which serial port it is connected to."
-#~ msgstr ""
-#~ "Indien DrakX nie u muis kon vind nie, of as u wil sien\n"
-#~ "wat gedoen is, sal u moet die bg. lys van muistoestelle gepresenteer\n"
-#~ "word.\n"
-#~ "\n"
-#~ "\n"
-#~ "Indien u met DrakX saamstem, spring na die afdeling wat u\n"
-#~ "verlang deur op die kierkaart links te kliek. Andersins kies\n"
-#~ "'n muistoetsel in die kieskaart wat u dink die beste klop met die\n"
-#~ "muis wat u het.\n"
-#~ "\n"
-#~ "In geval van 'n seriaalmuis, moet u ook vir DrakX die seriaalpoort\n"
-#~ "gee."
-
-#~ msgid ""
-#~ "This section is dedicated to configuring a local area\n"
-#~ "network (LAN) or a modem.\n"
-#~ "\n"
-#~ "Choose \"Local LAN\" and DrakX will\n"
-#~ "try to find an Ethernet adapter on your machine. PCI adapters\n"
-#~ "should be found and initialized automatically.\n"
-#~ "However, if your peripheral is ISA, autodetection will not work,\n"
-#~ "and you will have to choose a driver from the list that will appear "
-#~ "then.\n"
-#~ "\n"
-#~ "\n"
-#~ "As for SCSI adapters, you can let the driver probe for the adapter\n"
-#~ "in the first time, otherwise you will have to specify the options\n"
-#~ "to the driver that you will have fetched from documentation of your\n"
-#~ "hardware.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you install a Mandrake Linux system on a machine which is part\n"
-#~ "of an already existing network, the network administrator will\n"
-#~ "have given you all necessary information (IP address, network\n"
-#~ "submask or netmask for short, and hostname). If you're setting\n"
-#~ "up a private network at home for example, you should choose\n"
-#~ "addresses.\n"
-#~ "\n"
-#~ "\n"
-#~ "Choose \"Dialup with modem\" and the Internet connection with\n"
-#~ "a modem will be configured. DrakX will try to find your modem,\n"
-#~ "if it fails you will have to select the right serial port where\n"
-#~ "your modem is connected to."
-#~ msgstr ""
-#~ "Hierdie afdeling is vir die konfigurasie van 'n lokaalareanetwerk\n"
-#~ "of 'n modem.\n"
-#~ "\n"
-#~ "Kies \"LAN\" en DrakX sal probeer om 'n Ethernetkaart in u rekenaar\n"
-#~ "te vind. PCI-kaarte sal heelwaarskynlik outomaties gevind en\n"
-#~ "inisialiseer word. Indien u 'n ISA-kaart het sal daar 'n kieslys\n"
-#~ "vertoon word waaruit u dan u kaart moet selekteer.\n"
-#~ "\n"
-#~ "\n"
-#~ "indien u Mandrake Linux installeer op 'n stelsel wat deel is van 'n\n"
-#~ "bestaande netwerk, sal due netwerk administrateur u alreeds met die\n"
-#~ "nodige inligting (IP adres, netmasker en rekenaarnaam) voorsien het.\n"
-#~ "Indien u 'n privaat netwerk opstel (sso by die huis), dan moet u die\n"
-#~ "adresse kies.\n"
-#~ "\n"
-#~ "\n"
-#~ "Kies \"Uitbel met Modem\" en die internetkonneksie vir 'n modem\n"
-#~ "sal opgestel word. DrakX sal u modem probeer bepaal. Indien dié faal\n"
-#~ "sal u die modem en korrekte seriaalpoort moet selekteer."
-
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these\n"
-#~ "types require a different setup. Note however that the print\n"
-#~ "spooler uses 'lp' as the default printer name; so you\n"
-#~ "must have one printer with such a name; but you can give\n"
-#~ "several names, separated by '|' characters, to a printer.\n"
-#~ "So, if you prefer to have a more meaningful name you just have\n"
-#~ "to put it first, eg: \"My Printer|lp\".\n"
-#~ "The printer having \"lp\" in its name(s) will be the default printer.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select\n"
-#~ "\"Local printer\". You will then have to tell which port your\n"
-#~ "printer is connected to, and select the appropriate filter.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine,\n"
-#~ "you will have to select \"Remote lpd\". In order to make\n"
-#~ "it work, no username or password is required, but you will need\n"
-#~ "to know the name of the printing queue on this server.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a SMB printer (which means, a printer located\n"
-#~ "on a remote Windows 9x/NT machine), you will have to specify its\n"
-#~ "SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
-#~ "plus the username, workgroup and password required in order to\n"
-#~ "access the printer, and of course the name of the printer. The same goes\n"
-#~ "for a NetWare printer, except that you need no workgroup information."
-#~ msgstr ""
-#~ "GNU/Linux kan verskeie drukkers gebruik. Elkeen van hierdie tipes\n"
-#~ "verlang 'n ander opstelling. Let asb. daarop dat die verstek drukkernaam "
-#~ "'lp' is.\n"
-#~ "U moet so 'n drukker skep. U kan egter addisionele name bysit deur dit "
-#~ "met die '|' karakterte skei.\n"
-#~ "Derhalwe kan u dus die drukker 'n meer betekenisvolle naam ook toeken.\n"
-#~ "Die drukker met 'lp' in die naam sal die verstek drukker wees.\n"
-#~ "\n"
-#~ "\n"
-#~ "Indien u drukker direk aan die rekenaar gekoppel is, selekteer\n"
-#~ "\"Lokale Drukker\". U moet dan die korrekte poort uitwys\n"
-#~ "en die gepaslike filter selekteer.\n"
-#~ "\n"
-#~ "\n"
-#~ "Indien u 'n drukker om 'n ander Unix-rekenaar wil gebruik, kies\n"
-#~ "\"Eksterne lpd\". In hierdie geval moet u die naam van die drukkertou\n"
-#~ "op die ander rekenaar ken.\n"
-#~ "\n"
-#~ "\n"
-#~ "Indien u toegang tot 'n SMB drukker (op 'n Windows-rekenaar) verlang,\n"
-#~ "moet u die SMB/NETBIOS naam (nie TCP/IP-naam nie) ken en moontlik ook "
-#~ "die\n"
-#~ "IP-adres. Daarby moet u ook 'n gebruikerskode, werkgroep en wagwoord en "
-#~ "die\n"
-#~ "drukkernaam voorsien. Dieselfde geld vir 'n Netware-drukker, behalwe dat "
-#~ "u\n"
-#~ "die werkgroep hoef te voorsien nie."
-
-# ../help.pm_.c:240 ../help.pm_.c:481 msgid ""
-#~ msgid ""
-#~ "It is strongly recommended that you answer \"Yes\" here. If you install\n"
-#~ "Microsoft Windows at a later date it will overwrite the boot sector.\n"
-#~ "Unless you have made a bootdisk as suggested, you will not be able to\n"
-#~ "boot into GNU/Linux any more."
-#~ msgstr ""
-#~ "Dit word sterk aanbeveel dat u \"Ja\" antwoord. Indien u Windows sou\n"
-#~ "herinstalleer, sal dit die herlaaisektor oorskryf. Indien u die die "
-#~ "herlaaiskyf\n"
-#~ "gemaak het nie, sal u nie weer in GNU/Linux kan inkom nie."
-
-#~ msgid "Move your wheel!"
-#~ msgstr "Draai u wiel!"
-
-#~ msgid "Forget the changes?"
-#~ msgstr "Vergeet van die veranderinge?"
-
-#~ msgid "What is the type of your mouse?"
-#~ msgstr "Wat is u muistipe?"
-
-#~ msgid "Automatic resolutions"
-#~ msgstr "OUtomatiese resolusies"
-
-#~ msgid ""
-#~ "To find the available resolutions I will try different ones.\n"
-#~ "Your screen will blink...\n"
-#~ "You can switch if off if you want, you'll hear a beep when it's over"
-#~ msgstr ""
-#~ "Ek gaan nou probeer m die beskikbare resolusies te kry.\n"
-#~ "Die skerm sal 'n paar maal flits...\n"
-#~ "U kan die skerm afsit indien u wil, ek sal biep wanneer ek klaar is"
-
-#~ msgid ""
-#~ "I can try to find the available resolutions (eg: 800x600).\n"
-#~ "Sometimes, though, it may hang the machine.\n"
-#~ "Do you want to try?"
-#~ msgstr ""
-#~ "Ek kan probeer om al die beskikbare resolusies te kry (bv. 800x600).\n"
-#~ "Soms kan die rekenaar ophang.\n"
-#~ "Wil u probeer?"
-
-#~ msgid ""
-#~ "No valid modes found\n"
-#~ "Try with another video card or monitor"
-#~ msgstr ""
-#~ "Geen geldige modes was gevind nie\n"
-#~ "Probeer 'n ander videokaart of monitor"
-
-#~ msgid "Automatical resolutions search"
-#~ msgstr "Outomatiese resolusie soektog"
-
-#~ msgid "pump"
-#~ msgstr "pump"
-
-#~ msgid "dhcpxd"
-#~ msgstr "dhcpxd"
-
-#~ msgid "dhcp-client"
-#~ msgstr "DHCP-kliënt"
-
-#~ msgid "Apple ADB Mouse"
-#~ msgstr "Apple ADB-muis"
-
-#~ msgid "Apple ADB Mouse (2 Buttons)"
-#~ msgstr "Apple ADB-muis (2 knoppe)"
-
-#~ msgid "Apple ADB Mouse (3+ Buttons)"
-#~ msgstr "Apple ADB-muis (3+ knoppe)"
-
-#~ msgid "Apple USB Mouse"
-#~ msgstr "Apple USB-muis"
-
-#~ msgid "Apple USB Mouse (2 Buttons)"
-#~ msgstr "Apple USB-muis (2 knoppe)"
-
-#~ msgid "Apple USB Mouse (3+ Buttons)"
-#~ msgstr "Apple USB-muis (3+ knoppe)"
-
-#~ msgid "ASCII MieMouse"
-#~ msgstr "ASCII MieMouse"
+#~ msgid "Test again"
+#~ msgstr "Toets weer"
-#~ msgid "Genius NetMouse Pro"
-#~ msgstr "Genius NetMouse Pro"
+#~ msgid "Setting security level"
+#~ msgstr "Sekuriteitsvlak word gestel."
-#~ msgid "ATI Bus Mouse"
-#~ msgstr "ATI Busmuis"
+#~ msgid "Graphics card"
+#~ msgstr "Videokaart"
-#~ msgid "Microsoft Bus Mouse"
-#~ msgstr "Microsoft busmuis"
+#~ msgid "Select a graphics card"
+#~ msgstr "Selekteer 'n videokaart"
-#~ msgid "Logitech Bus Mouse"
-#~ msgstr "Logitech busmuis"
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "Waarskuwing: Toetsing is gevaarlik met hierdie videokaart"
-#~ msgid "USB Mouse (3 buttons or more)"
-#~ msgstr "USB Muis (3 knoppe of meer)"
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Standaard VGA, 640x480 teen 60 Hz"
-#~ msgid "Microsoft Rev 2.1A or higher (serial)"
-#~ msgstr "Microsoft Rev 2.1A of beter (seriaal)"
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 teen 56 Hz"
-#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-#~ msgstr "Logitech MouseMan+/FirstMouse+ (seriaal)"
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514-aanpasbaar, 1024x768 teen 87Hz interverweef (nie 800x600 nie)"
-#~ msgid "ASCII MieMouse (serial)"
-#~ msgstr "ASCII MieMouse (seriaal)"
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 102x768 teen 87 Hz interverweef, 800x600 teen 56 Hz "
-#~ msgid "Genius NetMouse (serial)"
-#~ msgstr "Genius NetMouse (seriaal)"
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Verlengde Super VGA, 800x600 teen 60 Hz, 640x480 teen 72 Hz"
-#~ msgid "Generic Mouse (serial)"
-#~ msgstr "Generiese Muis (seriaal)"
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Nie-interverweefde SVGA, 1024x768 teen 60 Hz, 800x600 teen 72 Hz"
-#~ msgid "Microsoft compatible (serial)"
-#~ msgstr "Microsoft aanpasbaar (seriaal)"
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "Hod frekwensie SVGA, 1024x768 teen 70 Hz"
-#~ msgid "Generic 3 Button Mouse (serial)"
-#~ msgstr "Generiese 3-knopmuis (seriaal)"
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Multi-frekwensie wat 1280x1024 kan doen teen 60Hz"
-#~ msgid "Kensington Thinking Mouse (serial)"
-#~ msgstr "Kensington Thinking Mouse (seriaal)"
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Multi-frekwensie wat 1280x1024 kan doen teen 74Hz"
-#~ msgid ""
-#~ "I need to configure your network adapter to be able to connect to "
-#~ "internet."
-#~ msgstr ""
-#~ "Ek moet u netwerkkaart konfigureer om aan die internet te konnekteer."
-
-#~ msgid "nfs mount failed"
-#~ msgstr "NFS heg het gefaal"
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Multi-frekwensie wat 1280x1024 kan doen teen 76Hz"
-#~ msgid "Socket"
-#~ msgstr "Sok"
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Monitor wat 1600x1220 kan doen teen 70Hz"
-#~ msgid "Cryptographic"
-#~ msgstr "Kriptografie"
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Monitor wat 1600x1220 kan doen teen 76Hz"
#~ msgid ""
-#~ "DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
-#~ "By default, the 4.0 server is used unless your card is not supported.\n"
-#~ "\n"
-#~ "Do you want to keep XFree 3.3?"
-#~ msgstr ""
-#~ "DrakX sal konfigurasielęers maak vir beide XFree 3.3 en XFree 4.0.\n"
-#~ "By verstek sal die 4.0 bediener gebruik word indien u videokaart "
-#~ "ondersteun. word\n"
-#~ "\n"
-#~ "Wil u XFree 3.3 behou?"
-
-#~ msgid "Configure LAN"
-#~ msgstr "Stel LAN op"
-
-#~ msgid "Do not set up networking"
-#~ msgstr "Moenie netwerk opstel nie"
-
-#~ msgid "Do you want to configure a local network for your system?"
-#~ msgstr "Wil u die netwerk vir u stelsel opstel?"
-
-#~ msgid "Show less"
-#~ msgstr "Vertoon minder"
-
-#~ msgid "Show more"
-#~ msgstr "Vertoon meer"
-
-#, fuzzy
-#~ msgid "tie"
-#~ msgstr "koppel"
-
-#~ msgid "brunette"
-#~ msgstr "brunette"
-
-#~ msgid "girl"
-#~ msgstr "meisie"
-
-#~ msgid "woman-blond"
-#~ msgstr "blondine"
-
-#, fuzzy
-#~ msgid "automagic"
-#~ msgstr "automagic"
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Die totale grootte vir die gekose groepe is naastenby %d MB.\n"
-#~ msgid "What is your keyboard layout?"
-#~ msgstr "Wat is u sleutelborduitleg?"
-
-#~ msgid "Try to find PCMCIA cards?"
-#~ msgstr "Soek PCMCIA-kaarte?"
-
-#~ msgid "Try to find %s devices?"
-#~ msgstr "Soek vir %s-toestelle?"
-
-#~ msgid ""
-#~ "Do you want to configure a dialup connection with modem for your system?"
-#~ msgstr "Wil u die opbelkonneksie (modem) konfigureer?"
-
-#~ msgid "Try to find PCI devices?"
-#~ msgstr "Soek vir PCI-toestelle?"
-
-#~ msgid "Searching root partition."
-#~ msgstr "Wortelpartisisie word gesoek."
-
-#~ msgid "%s: This is not a root partition, please select another one."
-#~ msgstr ""
-#~ "%s: Hierdie is nie 'n wortellęerstelsel nie, kies asb. 'n ander een."
-
-#~ msgid "Please choose a partition to use as your root partition."
-#~ msgstr "Watter partisie moet u wortelpartisie wees?"
-
-#~ msgid "You don't have any windows partitions!"
-#~ msgstr "U het geen Windows-partisies nie!"
-
-#~ msgid "You don't have any enough room for Lnx4win"
-#~ msgstr "U het nie genoeg spasie vir Lnx4win nie."
-
-#~ msgid ", %U MB"
-#~ msgstr ", %U MB"
-
-# NOTE: this message will be displayed at boot time; that is
-# only the ascii charset will be available on most machines
-# so use only 7bit for this message (and do transliteration or
-# leave it in English, as it is the best for your language)
-#
-#, fuzzy
#~ msgid ""
-#~ "Welcome to LILO the operating system chooser!\n"
-#~ "\n"
-#~ "To list the possible choices, press <TAB>.\n"
-#~ "\n"
-#~ "To load one of them, write its name and press <ENTER> or wait %d seconds "
-#~ "for default boot.\n"
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
-#~ "Welkom by %s die bedryfstelselkeuseprogram!\n"
-#~ "\n"
-#~ "Om die moontlikhede te vertoon, druk <TAB>.\n"
-#~ "\n"
-#~ "Om 'n spesifieke een te laai, tik die nodige naam en druk <ENTER> of wag\n"
-#~ "%ds en die verstek bedryfstelsel sal laai.\n"
+#~ "Indien u verkies om minder as hierdie grootte te installeer, kies dan 'n\n"
+#~ "persentasie van pakkette wat u wil installeer.\n"
#~ "\n"
+#~ "'n Lae persentasie sal net die belangrikste pakkette installeer;\n"
+#~ "'n persentasie van 100%% sal alles gekose pakkette installeer."
-# NOTE: this message will be displayed at boot time; that is
-# only the ascii charset will be available on most machines
-# so use only 7bit for this message (and do transliteration or
-# leave it in English, as it is the best for your language)
-#
-#, fuzzy
#~ msgid ""
-#~ "Welcome to SILO the operating system chooser!\n"
-#~ "\n"
-#~ "To list the possible choices, press <TAB>.\n"
-#~ "\n"
-#~ "To load one of them, write its name and press <ENTER> or\n"
-#~ "wait %d seconds for default boot.\n"
+#~ "You have space on your disk for only %d%% of these packages.\n"
#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
#~ msgstr ""
-#~ "Welkom by %s die bedryfstelselkeuseprogram!\n"
-#~ "\n"
-#~ "Om die moontlikhede te vertoon, druk <TAB>.\n"
-#~ "\n"
-#~ "Om 'n spesifieke een te laai, tik die nodige naam en druk <ENTER> of wag\n"
-#~ "%ds en die verstek bedryfstelsel sal laai.\n"
+#~ "U het net spasie op u hardeskyf vir %d%% van hierdie pakkette.\n"
#~ "\n"
+#~ "Indien u minder wil installeer, kies die persentasie wat u verlang.\n"
+#~ "'n Lae persentasie sal net die belangrikste pakkette installeer;\n"
+#~ "'n Persentasie van %d%% sal soveel moontlik probeer installeer."
-#~ msgid "SILO main options"
-#~ msgstr "SILO hoofopsies"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "U sal met meer akkuraatheid in die volgende stap kan kies."
-#~ msgid ""
-#~ "Here are the following entries in SILO.\n"
-#~ "You can add some more or change the existing ones."
-#~ msgstr ""
-#~ "Hier is die huidige SILO-inskrywings\n"
-#~ "U kan byvoeg or verwyder soos nodig."
-
-#~ msgid "This label is already in use"
-#~ msgstr "Hierdie etiket is alreeds in gebruik"
-
-#~ msgid "Installation of SILO failed. The following error occured:"
-#~ msgstr "SILO installasie het gefaal a.g.v. hierdie fout: "
-
-#~ msgid ""
-#~ "DrakX will attempt at first to look for one or more PCI\n"
-#~ "SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-#~ "to use, it will insert it (them) automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-#~ "doesn't know which driver to use for this card, or if you have no\n"
-#~ "SCSI adapters at all, you will then be prompted on whether you have\n"
-#~ "one or not. If you have none, answer \"No\". If you have one or more,\n"
-#~ "answer \"Yes\". A list of drivers will then pop up, from which you\n"
-#~ "will have to select one.\n"
-#~ "\n"
-#~ "\n"
-#~ "After you have selected the driver, DrakX will ask if you\n"
-#~ "want to specify options for it. First, try and let the driver\n"
-#~ "probe for the hardware: it usually works fine.\n"
-#~ "\n"
-#~ "\n"
-#~ "If not, do not forget the information on your hardware that you\n"
-#~ "could get from your documentation or from Windows (if you have it\n"
-#~ "on your system), as suggested by the installation guide. These\n"
-#~ "are the options you will need to provide to the driver."
-#~ msgstr ""
-#~ "DrakX will probeer om eers te kyk vir een of meer bekende PCI\n"
-#~ "SCSI kaarte. Indien iets gevind word, en die drywers daarvoor\n"
-#~ "bekend is, sal dit outomaties bygevoeg word.\n"
-#~ "\n"
-#~ "\n"
-#~ "Indien u 'n ISA SCSI kaart het, of 'n onbekende PCI SCSI kaart, of\n"
-#~ "geen SCSI kaart nie, sa; u gevra word of daar enige SCSI kaarte is.\n"
-#~ "Indien daar geen is nie, antwoord \"Nee\". Indien daar wel is, antwoord\n"
-#~ "\"Ja\" en 'n lys van kaarte sal gegee word waaruit u moet kies.\n"
-#~ "\n"
-#~ "\n"
-#~ "Na seleksie van die drywer, sal DrakX of vra vir opsies. Probeer eers\n"
-#~ "dat die drywer die hardeware ondervra; dit werk gewoonlik.\n"
-#~ "\n"
-#~ "\n"
-#~ "Indien nie, moenie die dokumentasie van u hardeware vergeet nie; ook nie\n"
-#~ "enige inligting van Windows (indien u dit gennstalleer het). Hierdie is\n"
-#~ "opsies wat u die drywer moet verskaf."
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Persentasie pakkette om te installeer"
-#~ msgid "Shutting down"
-#~ msgstr "Stelselafsluiting"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Gebruik sekuriteitsvlak"
diff --git a/perl-install/share/po/ar.po b/perl-install/share/po/ar.po
index bad02e711..8f5d7ac41 100644
--- a/perl-install/share/po/ar.po
+++ b/perl-install/share/po/ar.po
@@ -1,39 +1,68 @@
# SOME DESCRIPTIVE TITLE.
-# Copyright (C) 2000 Free Software Foundation, Inc.
-# Djaghlouli Kamel <djkamel@chez.com>, 2000.
+# Copyright (C) 2001 Free Software Foundation, Inc.
+# Amr Fathy <amr10@menanet.net>, 2001.
# Mohammed Gamal <f2c2001@yahoo.com>, 2002
-# Boujaj Mostapha Ibrahim <mboujaj@yahoo.de>, 2002
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-08 02:00GMT\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2001-5-12 HO:MI+ZONE\n"
"Last-Translator: Mohammed Gamal <f2c2001@yahoo.com>\n"
-"Language-Team: ARABIC <ar@li.org>\n"
+"Language-Team: Arabic \n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 0.9.5\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "اعداد كل الرؤوس بشكل مستقل"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 كيلوبايت"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "استخدام امتداد Xinerama"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 كيلوبايت"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "قم بإعداد البطاقة \"%s\" فقط (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 ميغابايت"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 ميغابايت"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 ميغابايت"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 ميغابايت"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 ميغابايت"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 ميغابايت"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 ميغابايت أو أكثر"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "إختر خادم X"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "خادم X"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "إعداد متعدد الرؤوس"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -41,41 +70,44 @@ msgstr ""
"نظامك يدعم الإعداد متعدد الرؤوس.\n"
"ماذا تريد أن تفعل؟"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "بطاقة الشاشة"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "إختر حجم ذاكرة بطاقة الشاشة"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "اختر بطاقة شاشة"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "ؼؚداد XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "إختر خادم X"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "أي اعداد لـXFree تريد؟"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "خادم X"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "اعداد كل الرؤوس بشكل مستقل"
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "إختر مشغل X"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "استخدام امتداد Xinerama"
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "مشغل X"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "قم بإعداد البطاقة \"%s\" فقط (%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "أي اعداد لـXFree تريد؟"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s مع تسريع ثلاثي الأبعاد"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -85,32 +117,17 @@ msgstr ""
"بطاقتك مدعومة عن طريق XFree %s التي يمكن أن تكون مدعومة بشل أفضل في الوضع "
"ثنائي الأبعاد."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "يمكن لبطاقتك الحصول على دعم للتسريع ثلاثي الأبعاد مع XFree %s"
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s مع تسريع ثلاثي الأبعاد"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"يمكن لبطاقتك التمتع بدعم للرسوم ثلاثية الأبعاد مع XFree %s, \n"
-"لاحظ أن هذا الدعم تجريبي و قد يتسبب في ايقاف جهازك."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s مع دعم تجريبي للرسوم ثلاثية الأبعاد"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -122,31 +139,58 @@ msgstr ""
"بطاقتك مدعومة عن طريق XFree %s التي يمكن أن تكون مدعومة بشكل أفضل في وضعية "
"الرسوم ثنائية الأبعاد."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"يمكن لبطاقتك التمتع بدعم للرسوم ثلاثية الأبعاد مع XFree %s, \n"
+"لاحظ أن هذا الدعم تجريبي و قد يتسبب في ايقاف جهازك."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (مشغل عرض التثبيت)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "ؼؚداد XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "إختر حجم ذاكرة بطاقة الشاشة"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "إختر خيارات الخادم"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"هل تريد حفظ التغييرات؟\n"
+"الإعداد الحالي هو:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "ؼ؎تع شاش؊"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "الشاشة"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "مخصص"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Generic"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "تعا؏ؚ"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -167,510 +211,325 @@ msgstr ""
"أكبر من مقدرة شاشتك لأنك بهذا قد تدمر شاشتك.\n"
" اذا لم تكن متأكدا يمكنك اختيار اعدادات عادية."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "نسبة الإنعاش الأفقي"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "نسبة الإنعاش الرأسي"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "الشاشة غير معدّة"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "لم يتم اعداد بطاقة الشاشة حتى الآن"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "ام يتم اعداد دقة العرض حتى الآن"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "هل تريد تجربة الإعداد؟"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "تحذير: اختبار بطاقة العرض هذه قد يتسب في ايقاف جهازك"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "اختبار الإعداد"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 لون (8 بت)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"حاول تغيير بعض المعاملات"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 ألف لون (15 بت)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "ظهر خطأ:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 ألف لون (16 بت)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "المغادرة في %d ثوان"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 مليون لون (24 بت)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "هل هذا هو الضبط الصحيح؟"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 بليون لون (32 بت)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "ظهر خطأ, حاول تغيير بعض الماملات"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "دقة العرض"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "دقة العرض"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "اختر دقة العرض و عمق الألوام"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "بطاقة الشاشة: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "خادم XFree86 :%s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "أك؍ع"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "الغاء"
+
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "موافق"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "وضعية الخبير"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "اظهار الكل"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "هل تريد تجربة الإعداد؟"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "دقة العرض"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "اختبار الإعداد"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "لوحة المفاتيح: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "نوع الفأرة: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "جهاز الفأرة: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "الشاشة: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "تزامن الشاشة الأفقي: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "انعاش الشاشة الرأسي: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "بطاقة الشاشة: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "معرف بطاقة الشاشة: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "ذاكرة بطاقة الشاشة: %s كيلوبايت\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "عمق الألوان: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "دقة العرض: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "خادم XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "مشغل XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "جاري تجهيز تهيئة X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "ماذا تريد أن تفعل؟"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "تغيير الشاشة"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "تغيير بطاقة الشاشة"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "تغيير خيارات الخادم"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "تغيير دقة العرض"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "عرض المعلومات"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
+msgstr "واجهة رسومية عند بدء التشغيل"
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "اختبر مرة أخرى"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "؎عو؏"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"هل تريد حفظ التغييرات؟\n"
-"الإعداد الحالي هو:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "X عند بدء التشغيل"
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"يمكنني جعل جهازك يبدأ X بشكل آلي بعد الإقلاع.\n"
"هل تريد X أن بيدأ بعد إعادة تشغيل جهازك؟"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "يرجى اعادة تسجيل الدخول الى %s لتنشيط التغييرات"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "يرجى تسجيل الخروج ثم استخدم Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 لون )8 بت("
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 ألف لون )15 بت("
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 ألف لون )16 بت("
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 مليون لون )24 بت("
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 بليون لون )32 بت("
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 كيلوبايت"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 كيلوبايت"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 ميغابايت"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 ميغابايت"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 ميغابايت"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 ميغابايت"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 ميغابايت"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 ميغابايت"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 ميغابايت أو أكثر"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standard VGA, 640x480 at 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 at 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "High Frequency SVGA, 1024x768 at 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frequency that can do 1280x1024 at 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frequency that can do 1280x1024 at 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frequency that can do 1280x1024 at 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor that can do 1600x1200 at 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor that can do 1600x1200 at 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "القطاع اول من تجزئة الإقلاع"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "القطاع الأول من القرص (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "تثبيت SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "أين تريد تثبيت محمّل الإقلاع؟"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "تثبيت LILO/grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO مع قائمة نصية"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO مع قائمة رسومية"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "الإقلاع من DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "خيارات محمّل الإقلاع الرئيسية"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "محمّل الإقلاع المُستخدم"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "تثبيت محمل الإقلاع"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "جهاز الإقلاع"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA )لا يعمل مع أنظمة الـBIOS القديمة("
+msgstr "LBA (لا يعمل مع أنظمة الـBIOS القديمة)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "مدمج"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "مدمج"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "وضعية الفيدية"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "توقيت ما قبل اقلاع الصورة الافتراضية"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
-msgstr "???§?????????Š ?§???³?????????¹"
+msgstr "كلمة المرور"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
-msgstr "كلمة المرور )ثانيةً("
+msgstr "كلمة المرور (ثانية)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "تشديد خيارات سطر الأوامر"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "تشديد"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "قم بتنظيف /tmp عند كل إقلاع"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "حجم الذاكرة الدقيق عند الحاجة )تم ايجاد %d ميغابايت("
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "تمكين التشكيلات المتعددة"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "اكتب حجم الذاكرة بالميغابايت"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "خيار ``تشديد خيارات سطر الأوامر`` بدون قائدة من دون كلمة مرور"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "رجاء جاول مرة أخرى"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "كلمات المرور غير متطابقة"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "رسالة Init"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Open Firmware Delay"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "الوقت الأقصى لإقلاع النواة"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "تمكين الإقلاع من القرص المدمج؟"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "تمكين اقلاع OF؟"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "نظام التشغيل الافتراضي؟"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -679,83 +538,83 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
-"ها هنا المخلات المختلفة.\n"
+"ها هنا المدخلات المختلفة.\n"
"يمكنك اضافة مدخلات أخرى أو تغيير الموجودين."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
-msgstr "ؼ؜اف؊"
+msgstr "ا؜اف؊"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "انتهى"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "تعديل"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "ما نوع المدخل الذي تريد اضافته؟"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "لينكس"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "نظام آخر (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "نظام آخر (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "نظام آخر (Windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "ؾوع؊"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "الجذر"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "الحاق"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "للقراءة و الكتابة"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "الجدول"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
-msgstr "Unsafe"
+msgstr "غير آمن"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "عنوان"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "الإفتراضي"
@@ -787,53 +646,75 @@ msgstr "يجب عليك تحديد تقسيم جذر"
msgid "This label is already used"
msgstr "هذه العلامة مستخدمة مسبقا"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "تم ايجاد %s %s واجهات"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "هل عندك واحدة أخرى؟"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "هل لديك أي واجهات %s؟"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "لا"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "نعم"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "عرض معلومات العتاد"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "جاري تثبيت مشغل %s للبطاقة %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
-msgstr ")الوحدة %s("
+msgstr "(الوحدة %s)"
+
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"يمكنك الآن اعطاء الخيارات للوحدة %s.\n"
+"الخيارات في هيئة ``name=value name2=value2 ...'' \n"
+"مثلا, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "خيارات الوحدة:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "أي مشغل %s يجب أن استخدمه؟"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -851,37 +732,15 @@ msgstr ""
"لكن\n"
"لا يجب أن يتسبب ذلك في أي مشاكل."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "تحقق آلي"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "حدد الخيارات"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"يمكنك الآن اعطاء الخيارات للوحدة %s.\n"
-"الخيارات في هيئة ``name=value name2=value2 ...'' \n"
-"مثلا, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "خيارات الوحدة:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -890,49 +749,54 @@ msgstr ""
"فشل تحميل الوحدة %s.\n"
"هل تريد المحاولة ثانية بمعاملات أخرى؟"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "الوصول الى برامج X"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "الوصول الى أدوات rpm"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "اسمح بـ\"su\""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "الوصول الى ملفات الإدارة"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(تم اضافة %s مسبقا)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "كلمة المرور هذه بسيطة جدا"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "رجاءً قم بإعطاء اسم مستخدم"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "اسم المستخدم يجب أن يحتوي فقط على الحروف الصغيرة, الأرقام, `-' و `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "اسم المستخدم مُضاف مسبقا"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "اسم المستخدم مُضاف مسبقا"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "اضف مستخدم"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -941,32 +805,32 @@ msgstr ""
"أدخل مستخدم\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "وافق على المستخدم"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "الاسم الحقيقي"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "اسم المستخدم"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "الغلاف"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "أيقونة"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "دخول آلي"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -974,87 +838,67 @@ msgstr ""
"يمكنني اعداد جهازك لتسجيل الدخول آليل لمستخدم ما.\n"
"هل تريد استخدام هذه الميزة؟"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "اختر المستخدم الافتراضي:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "اختر مدير النوافذ الذي سيتم تشغيله:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "رجاء اختر لغة الاستخدام."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr "يمكنكن اختيار لغات أخرى و التي ستكون متوفرة بعد التثبيت"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "الكل"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "اسمح لكل المستخدمين"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "مخصص"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "لا مشاركة"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "الحزمة %s يجب أن تُثبّت. هل تريد تثبيتها؟"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "يمكنك التصدير باستخدام NFS أو Samba. أي منهما تريد"
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "الحزمة الضرورية %s مفقودة"
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "إلغاء"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr "شغّل userdrake"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -1062,89 +906,90 @@ msgstr ""
"المشاركة لكل مستخدم تستخدم المجموعة \"fileshare\".\n"
"يمكنك أن تستخدم userdrake لإضافة مستخدم في هذه المجموعة."
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "مرحبا بالمخترقين"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "فقير"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "القياسي"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "مرتفع"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
msgstr "مرتفع أكثر"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "مرتفع جدا"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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 ""
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
msgstr ""
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "اختر مستوى الأمن"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "مستوى الأمن"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "إستخدم libsafe للملقمات"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1161,52 +1006,52 @@ 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_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welcome to GRUB the operating system chooser!"
#. -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_.c:931
+#: ../../bootloader.pm_.c:915
#, 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."
#. -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_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Press enter to boot the selected OS, 'e' to edit the"
#. -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_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "commands before booting, or 'c' for a command-line."
#. -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_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "The highlighted entry will be booted automatically in %d seconds."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "لا توجد مساحو كافية في /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "سطح المكتب"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "يمكنك تثبيت محمّل الإقلاع على التجزئة %s\n"
@@ -1219,17 +1064,21 @@ msgstr "لا توجد مساعدة لهذا حتى الآن.\n"
msgid "Boot Style Configuration"
msgstr "اعداد أسلوب الإقلاع"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_ملف"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/ملف/_خروج"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
-msgstr "<control>ŘŽ"
+msgstr "<تحكم>Q"
#: ../../bootlook.pm_.c:91
msgid "NewStyle Categorizing Monitor"
@@ -1262,14 +1111,14 @@ msgstr "و؜ؚ Yaboot"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"أنت تستخدم %s كمدير اقلاع حاليا.\n"
"اضغط على تهيئة لتشغيل معالج الإعداد"
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "ؼؚداد"
@@ -1279,7 +1128,7 @@ msgid "System mode"
msgstr "وضع النظام"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "شغّل X-Window عند بدء التشغيل"
#: ../../bootlook.pm_.c:148
@@ -1290,14 +1139,16 @@ msgstr "لا, لا أريد دخولا أليا"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "نعم, أريد دخولا آليا مع هذا )المستخدم, سطح المكتب("
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "موافق"
@@ -1312,11 +1163,11 @@ msgstr "غيغابايت"
#: ../../common.pm_.c:94
msgid "KB"
-msgstr "كيلوبايا"
+msgstr "كيلوبايت"
#: ../../common.pm_.c:94
msgid "MB"
-msgstr "م.ب"
+msgstr "ميغابايت"
#: ../../common.pm_.c:102
msgid "TB"
@@ -1345,7 +1196,7 @@ msgstr "لا يمكنني غمل لقطات للشاشة قبل التجزئة"
msgid "Screenshots will be available after install in %s"
msgstr "ستكون لقطات الشاشة موجودة بعد التثبيت في %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "فرنسا"
@@ -1353,7 +1204,7 @@ msgstr "فرنسا"
msgid "Costa Rica"
msgstr "كوستاريكا"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "بلجيكا"
@@ -1377,11 +1228,12 @@ msgstr "النرويج"
msgid "Sweden"
msgstr "السويد"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "هولندا"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "إيطاليا"
@@ -1389,7 +1241,7 @@ msgstr "إيطاليا"
msgid "Austria"
msgstr "النمسا"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "الولايات المتحدة"
@@ -1397,8 +1249,8 @@ msgstr "الولايات المتحدة"
msgid "Please make a backup of your data first"
msgstr "رجاء قم بعمل نسخة احتياطية من بياناتك أولا"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "اقرأ جيدا!"
@@ -1411,11 +1263,12 @@ msgstr ""
"اذا كنت تريد استخدام aboot, فلا تنسى أن تترك مساحة فارغة في\n"
"بداية القرص (2048 قطاعات كافية)"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "؎ءأ"
@@ -1423,11 +1276,11 @@ msgstr "؎ءأ"
msgid "Wizard"
msgstr "المعالج"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "ا؎تع حد؍ا"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1435,177 +1288,182 @@ msgid ""
"(click on it, then click on \"Resize\")"
msgstr ""
"لديك تجزئة FAT واحدة كبيرة\n"
-")يستخدم عامة عن طريق Microsoft DOS/Windows(.\n"
+"(يستخدم عامة عن طريق Microsoft DOS/Windows).\n"
"اقترح أن تغير حجم هذه التجزئة\n"
-")اضغط عليها ثم اختر \"تغيير الحجم\"("
+"(اضغط عليها ثم اختر \"تغيير الحجم\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "فضلا اضغط على تجزئة"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "تفاصيل"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "Journalised FS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "التبديل"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "فاعغ"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "أخرى"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "أنواع أنظمة الملفات:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "عمل تجزئة"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "النوع"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "استخدم ``%s'' بدلا من ذلك"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "إلغاء"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "استخدم ``ازالة التجهيز'' أولا"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "بعد تغيير نوع التجزئة %s, فإنك ستسخر كل البيانات على التجزئة"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "ؼ؎تع ت؏ز،؊"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "ؼ؎تع شاش؊"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "؎عو؏"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "النتقال الى وضعية الخبير"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "الانتقال الى الوضع العادي"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "تعا؏ؚ"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "هل تريد الاكمال على أي حال؟"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "الخروج بدون الحفظ"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "هل تريد الخروج بدون كتابة جدول التقسيم؟"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "هل تريد حفظ تعديلات /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "تحديد آلي"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "أمسح الكل"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "أك؍ع"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "معلومات القرص الصلب"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "كل التجزئات الرئيسية مستخدمة"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "لا يمكنني اضافة أي تجزئة أخرى"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr "لكي تمتلك تجزئات أكثر, يرجى الغاء تجزئة كي تتمكن من عمل تجزئة ممتدة"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "حفظ جدول التقسيم"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "استعادة جدول التقسيم"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "إنقاذ جدول التقسيم"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "إعادة تحميل جدول التقسيم"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "التجهيز الآلي للوسائط القابلة للإزالة"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "اختر ملف"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1613,11 +1471,11 @@ msgstr ""
"جدول التقسيم المحفوظ ليس بنفس الحجم\n"
"لا زلت تريد الإكمال؟"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "تحذير"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1625,122 +1483,129 @@ msgstr ""
"أدخل قرصا مرنا في السواقة\n"
"كل البيانات على القرص ستمحى"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "جاري محاولة انقاذ جدول التقسيم"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "معلومات مفصّلة"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "نقطة التجهيز"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "خيارات"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "تغيير الحجم"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "نقل"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "تنسيق"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "جهز"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "اضافة الى RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "اضافة الى LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "ازل التجهيز"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "ازالة من RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "ازالة من LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "تعديل RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "استخدام لـloopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "اعمل تجزئة جديدة"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "قطاع البداية: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "الحجم باليغابايت: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "نوع نظام المفات: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "نقطة التجهيز: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "التفضيل: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+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/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "هل تريد ازالة ملف loopback؟"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "غير نوع التجزئة"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "أي نظام ملفات تريد؟"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "جاري التغيير من ext2 الى ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "أين تريد تجهيز ملف loopback %s؟"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "أين تريد بجهيز الجهاز%s؟"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1748,125 +1613,130 @@ msgstr ""
"لم يمكن ازالة تعيين نقطة التجهيز نظرا لأن هذه التجزئة مستخدمة لـloop back.\n"
"قم بإزالة الـloopback أولا"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "جاري حساب روابط نظام ملفات FAT"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "جاري تغيير الحجم"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "هذا التقسيم غير قابل لتغيير الحجم"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "كل البيانات على هذه التجزئة يجب حفظها احتياطيا"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "بعد تغيير حجم التجزئة %s, فإن كل البيانات على هذه التجزئة ستفقد"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "اختر الحجم الجديد"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "الحجم الجديد بالميغابايت: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "أي قرص تريد نقله؟"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "القطاع"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "أي قطاع تريد نقله؟"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
-msgstr "نقل"
+msgstr "جاري النقل"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "جاري نقل التجزئة..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "اختر RAID موجود للاضافة"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "جديد"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "اختر LVM l,جود للاضافة"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "اسم LVM؟"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "هذه التجزئة لا يمكن استخدامها لـloopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "اسم ملف Loopback: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "اعط اسم ملف"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "هذا الملف مستخدم من loopback أخرى, اختر ملفا آخر"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "الملف موجود مسبقا, هل تريد استخدامه؟"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "خيارات التجهيز"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "متنوعة"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
-msgstr "الجهاز"
+msgstr "وحد؊"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "المستوى"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "حجم chunk"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "كن حذرا: هذه العملية خطيرة"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "أي نوع من التجزئة؟"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "الحزمة %s يجب أن تُثبّت. هل تريد تثبيتها؟"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1874,7 +1744,7 @@ msgid ""
"need /boot"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1882,169 +1752,169 @@ msgid ""
"If you plan to use the LILO boot manager, be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"So be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "جدول اتتقسيم للقرص %s سيتم كتابته الى القرص!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "ستحتاج الى اعادة التشغيل قبل أن يتم تفعيل التعديلات"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "بعد تهيئة التقسيم %s, فإن كل البيانات الموجودة على التجزئة ستفقد"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "جاري التهيئة"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "جاري تهيئة ملف loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "جاري تهيئة التجزئة %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "خبء الملفات"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "انقل الملفات الى تجزئة جديدة"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"الدليل %s يحتوي مسبقا على بعض البيانات\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "جاري نقل الملفات الى التجزئة الجديدة"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "جاري نسخ %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "جاري ازالة %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "التجزئة %s معروفة الآن بالإسم %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "الجهاز: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "حرف سواقة DOS: %s (مجرد تخمين)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "النوع: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "الاسم: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "البداية: قطاع %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "الحجم: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s قطاع"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "الاسطوانة %d الى %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "مجهز\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "غير مجهز\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "محمل\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "المستوى %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "حجم Chunk %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "أقراص RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "اسم ملف Loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2052,7 +1922,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2060,62 +1930,62 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "الحجم: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "الهندسة: %s اسطوانة, %s رأس, %s قطاع\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "معلومات: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "أقراص LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "نوع جدول التقسيم: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "على bus %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "الخيارات: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "مفتاح تشفير نظام الملفات"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "اختر مفتاح تشفير نظام الملفات"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "مفتاح التشفير هذا بسيط جدا (يجب أن يكون %d حرفا على الأقل)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "مفاتيح التشفير غير متطابقة"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "مفاتح التشفير"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "مفاتح التشفير (مرة أخرى)"
@@ -2124,35 +1994,65 @@ msgid "Change type"
msgstr "غيّر النوع"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "فضلا اضعط على وسيط"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "التحقق"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "إنترنت"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "اسم المستخدم"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "اسم المستخدم"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS Domain"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "ابحث في أجهزة الخادم"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s تجهيز %s قد فشل"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "لا أعرف كيف أجهز %s في النوع %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr ""
@@ -2163,68 +2063,319 @@ msgstr "بسيط"
#: ../../fsedit.pm_.c:25
msgid "with /usr"
-msgstr ""
+msgstr "مع /usr"
#: ../../fsedit.pm_.c:30
msgid "server"
msgstr "خادم"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr ""
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr ""
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr ""
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "لا توجد مساحة كافية للتحديد الآلي"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
-msgstr ""
+msgstr "لا شيئ للعمل"
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
-msgstr ""
+msgstr " فتحة الخطإ %s للكتابة :%s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
+msgstr "ليس لديك أيّ فواصل ! "
+
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "تحقق آلي"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Generic"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Card mem (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "حمل الإعدادات"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "غيّر النوع"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "؎عو؏"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_مساعدة"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_مساعدة"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/مساعدة/_حول البرنامج..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "وحد؊"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Card mem (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "الغاء"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "Module"
+msgstr "وحد؊"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "الوصف"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "التحقق"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "اختر ملف"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Gateway device"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 buttons"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "التحقق من الأقراص الصلبة"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "عرض معلومات العتاد"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "اعرض المعلومات"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "إعداد الفأرة"
+
+#: ../../harddrake/ui.pm_.c:168
+msgid "Detection in progress"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "من فضلك انتظر"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d ثوان"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "جاري ازالة الطابعة \"%s\" ..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "تحقق آلي"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
msgstr ""
#: ../../help.pm_.c:13
@@ -2240,7 +2391,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2256,6 +2407,33 @@ msgid ""
"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
"for that user (bash by default)."
msgstr ""
+"لينكس هو نظام متعدد المستخدمين, أي أن كل مستخدم سيكون له اعداداته الخاصة و "
+"ملفاته\n"
+"الخاصة, الخ. يمكنك قراءة ``دليل المستخدم'' لتفاصيل أكثر.\n"
+"و على عكس \"الجذر\", أي مدير النظام, فإن المستخدمين الذين ستضيفهم هنا لن\n"
+"يتم السماح لهم بتغيير أي شئ ما عدا ملفاتهم و إعداداتهم الخاصة. سيجب عليك\n"
+"أن تضيق مستخدماً عادياً لك. و هذا الحساب هو الذي يجب أن تدخل عليه\n"
+"للاستخدام العادي. و برغم أنه من العملي الدخول بصفة \"جذر\" يوميا إلا أن\n"
+"هذا قد يكون خطيرا جدا! فأقل غلطة قد تعني أن نظامك لن يعمل بعد ذلك مطلقا.\n"
+"أما إذا ارتكبت خطأ كبيراً كمستخدم عادي, فقد تخسر بعض البيانات, ولكن ليس "
+"النظام ككل.\n"
+"\n"
+"أولا سيجب عليك أن تكتب اسمك الحقيقي. هذا ليس الزامياً بالطبع\n"
+"بما أنه من الممكن أن تكتب ما تريد. DrakX سيأخذ أول كلمة تدخلها في الصندوق\n"
+"و سيجلبها في خانة \"اسم المستخدم\". هذا الإسم هو الذي سيستخدمه المستخدم\n"
+"للدخول الى النظام. يمكنك تغييره أيضا. بعد ذلك ستحتاج لإدخال كلمة المرور "
+"هنا.\n"
+"كلمة المرور الخاصة بالمستخدم العادي ليست مهمة مثل كلمة مرور \"الجذر\"\n"
+"من وجهة نظر أمنية, لكن هذا ليس سببا لتناسي الموضوع لأنه في هذه الحال\n"
+"فإن ملفات ستكون في خطر.\n"
+"\n"
+"إذا ضغطت على زر \"وافق على المستخدم\", فسيمكنك بعد ذلك أن تضيف بقدر ما "
+"تريد.\n"
+"مثلا يمكنك أن تضيف اسم مستخدم لكل من أصدقائك أو والدك أو أختك. عندما تنتهي\n"
+"من إضافة كل المستخدمين الذين تريدهم, اختر زر \"انتهى\".\n"
+"\n"
+"ضغط زر \"متقدم\" سيسمح لك بتغيير \"الغلاف\" أو سطر الأوامر الإفتراضي لهذا\n"
+"المستخدم (bash هو الغلاف الإفتراضي)."
#: ../../help.pm_.c:41
msgid ""
@@ -2289,6 +2467,34 @@ msgid ""
"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
"\"second lowest SCSI ID\", etc."
msgstr ""
+"في الأعلى ستجد تقسيمات لينكس الموجودة و التي تم ايجادها على القرص الصلب "
+"الخاص بك.\n"
+"يمكنك أن تُبقي إختيارات المعالج, و هي جيدة لأغلب أنواع التثبيت.\n"
+"إذا قمت بعمل أي تغييرات فيجب عليك أن تعرف التقسيم الجذر (\"/\"). لا تختر\n"
+"تقسيمات ضغيرة جدا و إلا لن تستطيع تثبيت برامج كافية. إذا كنت تريد تخزين "
+"البيانات\n"
+"على تقسيم مستقل فستحتاج الى عمل تقسيم لـ\"/home\"\n"
+"(ممكن فقط إذا كان لديك أكثر من تقسيم للينكس).\n"
+"\n"
+"كل تقسيم مُعطى بالسكل التالي: \"الإسم\", \"السعة\".\n"
+"\n"
+"\"الإسم\" مركب بالسكل التالي: \"نوع القرص الصلب\", \"رقم القرص الصلب\",\n"
+"\"رقم التقسيم\" (مثلا, \"hda1\").\n"
+"\n"
+"\"رقم القرص الصلب\" دائما هو حرف بعد \"hd\" أو \"sd\". بالنسبة للأقراص "
+"الصلبة\n"
+"من نوع IDE فإن:\n"
+" * \"a\" تعني \"القرص الصلب الأساسي على متحكم IDE الأساسي\",\n"
+"\n"
+" * \"b\" تعني \"القرص الصلب الثانوي على متحكم IDE الأساسي\",\n"
+"\n"
+" * \"c\" تعني \"القرص الصلب الأساسي على متحكم IDE الثانوي\",\n"
+"\n"
+" * \"d\" تعني \"القرص الصلب الثانوي على متحكم IDE الثانوي\",\n"
+"\n"
+"أما بالنسبة لأقراص سكزي SCSI فالحرف \"a\" يعني \"أقل معرف SCSI\", و الحرف \"b"
+"\"\n"
+"يعني \"ثاني أقل معرف SCSI\", الخ."
#: ../../help.pm_.c:72
msgid ""
@@ -2296,6 +2502,9 @@ msgid ""
"knows if a selected package is located on another CD-ROM and will eject the\n"
"current CD and ask you to insert a different one as required."
msgstr ""
+"تثبيت Mandrake Linux موزع على العديد من الأقراص. DrakX\n"
+"يعلم إذا كانت حزمة ما في قرص آخر و سيخرج القرص\n"
+"الحالي و سيطلب منك أن تدخل قرصاً مختلفا كما هو مطلوب."
#: ../../help.pm_.c:77
msgid ""
@@ -2311,9 +2520,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2495,7 +2703,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2507,9 +2715,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2555,21 +2762,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2585,9 +2791,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
#: ../../help.pm_.c:347
@@ -2608,9 +2814,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -2720,38 +2925,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -2825,11 +3024,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -2853,7 +3052,7 @@ msgid ""
"choose this unless you know what you are doing."
msgstr ""
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -2868,7 +3067,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -2883,7 +3082,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -2899,29 +3098,29 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -2943,7 +3142,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -2965,7 +3164,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -2973,7 +3172,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -2994,7 +3193,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3007,7 +3206,7 @@ msgid ""
"you will need a boot disk in order to boot those other operating systems!"
msgstr ""
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3016,29 +3215,28 @@ msgid ""
"(MBR)\"."
msgstr ""
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3047,7 +3245,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3072,11 +3270,11 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3086,9 +3284,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3100,7 +3297,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" 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"
@@ -3126,7 +3323,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3153,18 +3350,17 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3172,12 +3368,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3193,14 +3388,14 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3211,7 +3406,7 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3219,12 +3414,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3239,26 +3434,26 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "NIS لا تسطيع ا ستعمال هذ ا البرنامج مع"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr ""
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr ""
@@ -3283,75 +3478,78 @@ msgstr ""
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr "استمرّ بأيّة حال"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr ""
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "استعمل مكانا حرا"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr ""
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr ""
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr ""
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr ""
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr ""
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr ""
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr ""
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr ""
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr ""
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr ""
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr ""
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
"the following error occured: %s"
msgstr ""
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -3363,63 +3561,63 @@ msgid ""
"When sure, press Ok."
msgstr ""
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr ""
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr ""
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr ""
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr ""
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr ""
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr ""
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr ""
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, don't forget to save using `w'"
msgstr ""
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr ""
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr ""
@@ -3427,16 +3625,16 @@ msgstr ""
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr ""
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr ""
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr ""
@@ -3446,12 +3644,12 @@ msgid ""
"Continue at your own risk."
msgstr ""
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr ""
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3459,12 +3657,12 @@ msgid ""
"\"\n"
msgstr ""
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr ""
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr ""
@@ -3474,192 +3672,158 @@ msgstr ""
msgid "Entering step `%s'\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr ""
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "قبول"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -3669,17 +3833,17 @@ msgid ""
"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr ""
@@ -3723,11 +3887,11 @@ msgstr ""
msgid "Do you really want to leave the installation?"
msgstr "هل تريد فعلا مغادرة التثبيت؟"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -3742,7 +3906,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -3848,284 +4012,290 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "لوحة المفاتيح"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "رجاء, اختر لوحة المفاتيح."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
-msgstr ""
+msgstr "Expert"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "ترقية"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "رجاء اختر لغة نوع الفأرة."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
-msgstr ""
+msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
-msgstr ""
+msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:490
+msgid "Looking for available packages and rebuilding rpm database..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "اختر الحزم التي ستُثبَّت"
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
-msgid "Recommended (%dMB)"
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
"If only some CDs are missing, unselect them, then click Ok."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr ""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
"%d%%"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -4162,157 +4332,187 @@ msgid ""
"USA"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "خادم NTP"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
msgstr "بطاقة الصّوت ISA هل عندك عند"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "الفأرة"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "ءابؚ؊"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+msgid "Windows PDC"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "التحقق"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "خادم LDAP"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
-msgstr ""
+msgstr "NIS Domain"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
+msgstr " الخادم NIS"
+
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "التحقق"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "احصل على خطوط Windows"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "خادم NTP"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -4330,19 +4530,19 @@ msgid ""
"drive and press \"Ok\"."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
-msgstr ""
+msgstr "المدخل المرن الثّاني"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "تخطي"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4358,7 +4558,7 @@ msgid ""
"%s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -4367,28 +4567,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
-msgstr ""
+msgstr "آسف , لا مدخل مرن متاح"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
-msgstr ""
+msgstr "أدخل قرص مرن بالدّاخل %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
+msgstr " إنشاء قرص الا قلا ع "
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
+msgstr " bootloader ؼؚداد "
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4396,25 +4596,25 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
-msgstr ""
+msgstr " aboot هل تريد أن تستخدم "
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
-msgstr ""
+msgstr "bootloader التّركيب "
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4425,25 +4625,25 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -4454,18 +4654,23 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+#, fuzzy
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakesoft.com/sales/contact"
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4474,15 +4679,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr ""
@@ -4498,531 +4703,535 @@ msgstr ""
#: ../../interactive.pm_.c:87
msgid "kdesu missing"
-msgstr ""
+msgstr "kdesu missing"
#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
msgid "consolehelper missing"
-msgstr ""
+msgstr "consolehelper missing"
#: ../../interactive.pm_.c:152
msgid "Choose a file"
msgstr "إختر ملف"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "متقدم"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
-msgstr ""
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr ""
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr ""
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr ""
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr ""
+msgstr "Basic"
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
-msgstr ""
+msgstr "اختيارك ? (default %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr ""
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
-msgstr ""
+msgstr "Button `%s': %s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+msgid "Do you want to click on this button?"
msgstr "هل تريد الضغط على هذا الزر؟ "
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
-msgstr ""
+msgstr "اختيارك ? (default `%s'%s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
-msgstr ""
+msgstr "إعادة تسليم"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
-msgstr ""
+msgstr "التشيكية (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "الألمانية"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
-msgstr ""
+msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "الإسبانية"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "الفنلندية"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "الفرنسية"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "النرويجية"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "البولندية"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "الروسية"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "السويدية"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
-msgstr ""
+msgstr "لوحة المفاتيح البريطانية"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
-msgstr ""
+msgstr "لوحة المفاتيح الأمريكية"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
-msgstr ""
+msgstr "الألبانيةّ"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
-msgstr ""
+msgstr "الأرمينية (قديم)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
-msgstr ""
+msgstr "الأرمينية (آلة كاتبة)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
-msgstr ""
+msgstr "الأرمينيةّ (صوتي)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
-msgstr ""
+msgstr "الأذربيجانية (لاتيني)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "البلجيكية"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr "البلغارية (صوتية)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "البلغارية (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
-msgstr ""
+msgstr "البرازيليةّ (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "البيلاروسية"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
-msgstr ""
+msgstr "السويسرية (تصميم ألماني)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
-msgstr ""
+msgstr "السويسرية (تصميم فرنسي) "
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
-msgstr ""
+msgstr "التشيكية (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
-msgstr ""
+msgstr " الألمانيةّ (no dead keys)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "الدنماركية"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
-msgstr ""
+msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
-msgstr ""
+msgstr "Dvorak (نرويجيةّ) "
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak (سويدية)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "الإستونية"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
-msgstr ""
+msgstr "الجورجية (التصميم الروسي)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
-msgstr ""
+msgstr "الجورجيةّ (التصميم اللاتيني)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
-msgstr "يوناني"
+msgstr "اليونانية"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
-msgstr "المجرية (الهنغارية)"
+msgstr "المجرية الهنغارية"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "الكرواتية"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "العبرية"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
-msgstr ""
+msgstr "العبرية (صوتية)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
-msgstr ""
+msgstr "الإيرانيّة"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "الآيسلاندية"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "الإيطالية"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
-msgstr ""
+msgstr "اليابانية 106 مفاتيح"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
-msgstr ""
+msgstr "لوحة المفاتيح الكورية"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
-msgstr ""
+msgstr "الأمريكية اللاتينية"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
-msgstr ""
+msgstr "اللّيتوانيةّ AZERTY ( قديم ) "
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
-msgstr ""
+msgstr "اللّيتوانيّة AZERTY ( جديد ) "
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
-msgstr ""
+msgstr "اللّيتوانيةّ \"number row\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr ""
+msgstr " اللّيتوانيةّ \"phonetic\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "اللاتفية"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "المقدونية"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
-msgstr ""
+msgstr "الهولنديّة"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
-msgstr ""
+msgstr "البولندية (qwerty layout)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
-msgstr ""
+msgstr "البولندية (qwertz layout)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "البرتغالية"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
-msgstr ""
+msgstr "الكنديّة (كيبيك)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
-msgstr ""
+msgstr "الرّومانيّة (qwertz)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
-msgstr ""
+msgstr "الرّومانيةّ (qwertz)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
-msgstr ""
+msgstr "الرّوسيةّ (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "السلوفينية"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
-msgstr ""
+msgstr "السلوفاكية (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
-msgstr ""
+msgstr "السلوفاكية (QWERTZ)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
-msgstr ""
+msgstr "الصّربيةّ (cyrillic)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr "التاميل"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
-msgstr ""
+msgstr "لوحة المفاتيح التّايلانديّة"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
-msgstr ""
+msgstr "لوحة مفاتيح الطّاجيكيّة"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
-msgstr ""
+msgstr "التّركيّ (traditional \"F\" model)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
-msgstr ""
+msgstr "التّركيّ (modern \"Q\" model)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "الأوكرانية"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
-msgstr ""
+msgstr "( "
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr ""
+msgstr "الفيتناميّ \"numeric row\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
-msgstr ""
+msgstr "( يوغسلافيّ ( اللّاتينيّة "
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
-msgstr ""
+msgstr "مفتاح Alt key"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
-msgstr ""
+msgstr "مفتاح CapsLock"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
+msgstr "Ctrl and Alt keys simultaneously"
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
-msgstr ""
+msgstr "Alt and Shift keys simultaneously"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
-msgstr ""
+msgstr "\"Menu\" key"
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
-msgstr ""
+msgstr "Left \"Windows\" key"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
-msgstr ""
+msgstr "Right \"Windows\" key"
#: ../../loopback.pm_.c:32
#, c-format
msgid "Circular mounts %s\n"
-msgstr ""
+msgstr "Circular mounts %s\n"
#: ../../lvm.pm_.c:88
msgid "Remove the logical volumes first\n"
msgstr ""
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "رقم التّليفون "
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "تجهيز التجزئات"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
#: ../../mouse.pm_.c:25
msgid "Sun - Mouse"
-msgstr ""
+msgstr "Sun - Mouse"
#: ../../mouse.pm_.c:32
msgid "Logitech MouseMan+"
-msgstr ""
+msgstr "Logitech MouseMan+"
#: ../../mouse.pm_.c:33
msgid "Generic PS2 Wheel Mouse"
-msgstr ""
+msgstr "Generic PS2 Wheel Mouse"
#: ../../mouse.pm_.c:34
msgid "GlidePoint"
-msgstr ""
+msgstr "GlidePoint"
#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
msgid "Kensington Thinking Mouse"
-msgstr ""
+msgstr "Kensington Thinking Mouse"
#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
msgid "Genius NetMouse"
-msgstr ""
+msgstr "Genius NetMouse"
#: ../../mouse.pm_.c:38
msgid "Genius NetScroll"
-msgstr ""
+msgstr "Genius NetScroll"
#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
msgid "1 button"
-msgstr ""
+msgstr "1 button"
#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
msgid "Generic 2 Button Mouse"
-msgstr ""
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr ""
+msgstr "Generic 2 Button Mouse"
#: ../../mouse.pm_.c:46
msgid "Wheel"
-msgstr ""
+msgstr "Wheel"
#: ../../mouse.pm_.c:49
msgid "serial"
-msgstr ""
+msgstr "serial"
#: ../../mouse.pm_.c:52
msgid "Generic 3 Button Mouse"
-msgstr ""
+msgstr "Generic 3 Button Mouse"
#: ../../mouse.pm_.c:53
msgid "Microsoft IntelliMouse"
-msgstr ""
+msgstr "Microsoft IntelliMouse"
#: ../../mouse.pm_.c:54
msgid "Logitech MouseMan"
-msgstr ""
+msgstr "Logitech MouseMan"
#: ../../mouse.pm_.c:55
msgid "Mouse Systems"
-msgstr ""
+msgstr "Mouse Systems"
#: ../../mouse.pm_.c:57
msgid "Logitech CC Series"
-msgstr ""
+msgstr "Logitech CC Series"
#: ../../mouse.pm_.c:58
msgid "Logitech MouseMan+/FirstMouse+"
-msgstr ""
+msgstr "Logitech MouseMan+/FirstMouse+"
#: ../../mouse.pm_.c:60
msgid "MM Series"
-msgstr ""
+msgstr "MM Series"
#: ../../mouse.pm_.c:61
msgid "MM HitTablet"
-msgstr ""
+msgstr "MM HitTablet"
#: ../../mouse.pm_.c:62
msgid "Logitech Mouse (serial, old C7 type)"
-msgstr ""
+msgstr "Logitech Mouse (serial, old C7 type)"
#: ../../mouse.pm_.c:66
msgid "busmouse"
-msgstr ""
+msgstr "busmouse"
#: ../../mouse.pm_.c:69
msgid "2 buttons"
-msgstr ""
+msgstr "2 buttons"
#: ../../mouse.pm_.c:70
msgid "3 buttons"
-msgstr ""
+msgstr "3 buttons"
#: ../../mouse.pm_.c:73
msgid "none"
@@ -5030,43 +5239,59 @@ msgstr "ولا واحد"
#: ../../mouse.pm_.c:75
msgid "No mouse"
-msgstr ""
+msgstr "No mouse"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
-msgstr ""
+msgstr "من فضلك اختبر الفأرة"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
-msgstr ""
+msgstr "To activate the mouse,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
-msgstr ""
+msgstr " WHEEL! حرّك "
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr ""
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "إنتهاء"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "التالي ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
-msgstr ""
+msgstr "<-سابق "
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
+msgstr "هل هذا صحيح ? "
+
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "المعلومات"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Expand Tree"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Collapse Tree"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
msgstr ""
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
-msgstr ""
+msgstr "وصّل إلى الإنترنت "
#: ../../network/adsl.pm_.c:20
msgid ""
@@ -5077,25 +5302,27 @@ msgstr ""
#: ../../network/adsl.pm_.c:22
msgid "Alcatel speedtouch usb"
-msgstr ""
+msgstr "Alcatel speedtouch usb"
#: ../../network/adsl.pm_.c:22
msgid "use dhcp"
-msgstr ""
+msgstr "use dhcp"
#: ../../network/adsl.pm_.c:22
msgid "use pppoe"
-msgstr ""
+msgstr "use pppoe"
#: ../../network/adsl.pm_.c:22
msgid "use pptp"
-msgstr ""
+msgstr "use pptp"
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
"Default is dhcpcd"
msgstr ""
+"تريد أن تستخدم dhcp أيّ عميل ?\n"
+" Default is dhcpcd"
#: ../../network/ethernet.pm_.c:88
msgid ""
@@ -5103,9 +5330,9 @@ msgid ""
"I cannot set up this connection type."
msgstr ""
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
-msgstr ""
+msgstr "اختر السّطح البينيّ للشبكة "
#: ../../network/ethernet.pm_.c:93
msgid ""
@@ -5114,11 +5341,11 @@ msgstr ""
#: ../../network/ethernet.pm_.c:178
msgid "no network card found"
-msgstr ""
+msgstr "لا بطاقة شبكة وجدت "
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
-msgstr ""
+msgstr "ا ؚداد شبك؊"
#: ../../network/ethernet.pm_.c:203
msgid ""
@@ -5128,25 +5355,25 @@ msgid ""
"such as ``mybox.mylab.myco.com''."
msgstr ""
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
-msgstr ""
+msgstr "Host اسم "
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "معالج إعداد الشبكة"
#: ../../network/isdn.pm_.c:22
msgid "External ISDN modem"
-msgstr ""
+msgstr "External ISDN modem"
#: ../../network/isdn.pm_.c:22
msgid "Internal ISDN card"
-msgstr ""
+msgstr "Internal ISDN card"
#: ../../network/isdn.pm_.c:22
msgid "What kind is your ISDN connection?"
@@ -5177,12 +5404,12 @@ msgstr "إعداد قديم (isdn4net)"
#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
#: ../../network/isdn.pm_.c:215
msgid "ISDN Configuration"
-msgstr ""
+msgstr "ISDN ؼؚداد "
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
#: ../../network/isdn.pm_.c:183
@@ -5199,12 +5426,12 @@ msgstr ""
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr ""
#: ../../network/isdn.pm_.c:199
@@ -5213,22 +5440,23 @@ msgstr ""
#: ../../network/isdn.pm_.c:200
msgid "I don't know"
-msgstr ""
+msgstr "لا أعرف "
#: ../../network/isdn.pm_.c:200
msgid "ISA / PCMCIA"
-msgstr ""
+msgstr "ISA / PCMCIA"
#: ../../network/isdn.pm_.c:200
msgid "PCI"
-msgstr ""
+msgstr "PCI"
#: ../../network/isdn.pm_.c:206
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"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
#: ../../network/isdn.pm_.c:210
@@ -5240,13 +5468,13 @@ msgid "Continue"
msgstr "تابؚ"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr ""
+msgid "Which is your ISDN card?"
+msgstr "ISDN ما هية بطاقتك"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
#: ../../network/isdn.pm_.c:244
@@ -5259,96 +5487,96 @@ msgstr ""
#: ../../network/modem.pm_.c:44
msgid "Dialup options"
-msgstr ""
+msgstr "Dialup options"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr ""
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
-msgstr ""
+msgstr "رقم التّليفون "
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
-msgstr ""
+msgstr "Login ID"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
-msgstr ""
+msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
-msgstr ""
+msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
-msgstr ""
+msgstr "Script-based"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
-msgstr ""
+msgstr "Terminal-based"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
-msgstr ""
+msgstr "Domain name"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
-msgstr ""
+msgstr "( خادم ا الأوّل ( اختياريّ "
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr ""
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr ""
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr ""
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "اتصل"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "اقطع الإتصال"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr "قم بإعداد الإتصال"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr ""
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -5360,12 +5588,12 @@ msgid ""
"Press OK to continue."
msgstr ""
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr ""
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -5373,97 +5601,103 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"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 ""
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr ""
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "وضعية الخبير"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr ""
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
-msgstr ""
+msgstr "ISDN connection"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
-msgstr ""
+msgstr "detected %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "وصلة ADSL"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "وصلة LAN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr ""
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "وصلة انترنت"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr ""
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
-msgstr ""
+msgstr "ا عداد الشّبكة "
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -5471,73 +5705,77 @@ msgid ""
"%s"
msgstr ""
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"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 ""
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
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 ""
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr ""
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
-msgstr ""
+msgstr "(driver %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
-msgstr ""
+msgstr "IP address"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
-msgstr ""
+msgstr "Netmask"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
-msgstr ""
+msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
-msgstr ""
+msgstr "Automatic IP"
+
+#: ../../network/network.pm_.c:314
+msgid "Start at boot"
+msgstr "ابدأ عند الإقلاع"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr ""
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -5545,357 +5783,362 @@ msgid ""
"You may also enter the IP address of the gateway if you have one"
msgstr ""
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
-msgstr ""
+msgstr "الخادم DNS"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
-msgstr ""
+msgstr "Gateway (e.g. %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
-msgstr ""
+msgstr "Gateway device"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
-msgstr ""
+msgstr "Proxies اؚداد"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
-msgstr ""
+msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
-msgstr ""
+msgstr "FTP proxy"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr ""
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr ""
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
-msgstr ""
+msgstr "اؚداد Internet "
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr ""
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr ""
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr ""
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr ""
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
msgstr ""
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr ""
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr ""
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr ""
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
-msgstr ""
+msgstr "Card mem (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
-msgstr ""
+msgstr "Card IO"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
-msgstr ""
+msgstr "Card IO_0"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
-msgstr ""
+msgstr "Card IO_1"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr ""
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr ""
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr ""
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr ""
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr ""
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "إختر بلدك"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr ""
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "سرعة الإتصال"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "الوقت الأقصى للاتصال (بالثواني)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr ""
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
+msgstr "Account Password"
+
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
msgstr ""
-#: ../../partition_table.pm_.c:600
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "فشل التحميل: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr ""
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr ""
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr ""
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr ""
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
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 trash"
msgstr ""
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr ""
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr ""
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr ""
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr ""
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr ""
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
-msgstr ""
+msgstr "CUPS - Common Unix Printing System"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
-msgstr ""
+msgstr "LPRng - LPR New Generation"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
-msgstr ""
+msgstr "LPD - Line Printer Daemon"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
-msgstr ""
+msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
-msgstr ""
+msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
-msgstr ""
+msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
-msgstr ""
+msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
-msgstr ""
+msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "طابعة محلية"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "طابعة بعيدة"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr ""
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr ""
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "ءابؚ؊ شبك؊ (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr ""
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr ""
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr ""
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "الطابعات المحلية"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "الطابعات البعيدة"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, c-format
msgid ", printing to %s"
msgstr ""
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr ""
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, c-format
msgid "On CUPS server \"%s\""
msgstr "على خادم CUPS \"%s\""
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr ""
@@ -5914,11 +6157,11 @@ msgid ""
"printers will be automatically detected."
msgstr ""
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
msgid "CUPS configuration"
msgstr " CUPS اؚدادات"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
msgid "Specify CUPS server"
msgstr "الخادم CUPS حدّد"
@@ -5947,7 +6190,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr ""
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr ""
@@ -5955,7 +6198,7 @@ msgstr ""
msgid "CUPS server IP"
msgstr "عنوان IP لخادم CUPS"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "البوابة"
@@ -5963,20 +6206,12 @@ msgstr "البوابة"
msgid "Automatic CUPS configuration"
msgstr "تهيئة CUPS آلية"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr "أضف طابعة جديدة"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -5989,13 +6224,13 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "طابعة محلية"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6013,11 +6248,11 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr "تحقق من الطابعات آليا"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6031,11 +6266,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6045,33 +6280,37 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "تحقق آلي"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr ""
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
msgstr "تم التحقق من %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
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, ..., "
@@ -6079,12 +6318,12 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
msgstr ""
#
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
@@ -6092,31 +6331,31 @@ msgstr ""
"لم يتم ايحاد طابعة محلية!\n"
"\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6124,7 +6363,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6132,92 +6371,103 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
msgstr "رجاء اختر المنفذ الموصلة إليه طابعتك."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
msgstr ""
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
msgstr "إعداد يدوي"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
msgstr ""
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
-msgstr ""
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
+msgstr "تركيب طرود ..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "تركيب طرود ..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr ""
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
msgstr ""
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr ""
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr ""
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -6225,35 +6475,35 @@ msgid ""
"access and any applicable user name, password, and workgroup information."
msgstr ""
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr ""
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr ""
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr ""
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "مجموعة العمل"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -6277,7 +6527,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -6286,7 +6536,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -6294,11 +6544,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
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 "
@@ -6306,27 +6556,27 @@ msgid ""
"name and password."
msgstr ""
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr ""
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr ""
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -6334,56 +6584,52 @@ msgid ""
"hardware."
msgstr ""
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "اسم مستضيف الطابعة"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr ""
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
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 ""
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr ""
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "الوصف"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "المكان"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr ""
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
msgid "Your printer model"
msgstr ""
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -6398,24 +6644,24 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
msgid "The model is correct"
msgstr ""
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
msgid "Select model manually"
msgstr "تم اختيار النّموذج يدويًّا"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "إختيار وحدات الطابعة"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "ما هو نوع الطابعة لديك؟"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -6424,17 +6670,17 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "ؼؚداد OKI WinPrinter"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -6444,11 +6690,11 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "ؼؚداد Lexmark Inkjet"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -6456,7 +6702,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -6469,7 +6715,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -6479,22 +6725,22 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -6503,11 +6749,11 @@ msgstr ""
"هل تريد تعيين هذه الطابعة (\"%s\")\n"
"كطابعة افتراضية؟"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -6515,39 +6761,39 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "ؼءبؚ"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr ""
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr ""
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr ""
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
msgstr ""
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr ""
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -6557,21 +6803,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr "طابعة خام"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -6580,15 +6826,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
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 ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -6597,49 +6843,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, 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\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -6649,7 +6895,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -6658,29 +6904,40 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "إغلاق"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "جاري الطباعة/المسح على \"%s\""
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "جاري الطباعة/المسح على \"%s\""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "جاري الطباعة/المسح على \"%s\""
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "جاري الطباعة على الطابعة \"%s\""
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "إغلاق"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "قائمة خيارات الطابعة"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -6688,36 +6945,36 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "نقل إعدادات الطابعة"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -6727,51 +6984,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -6779,56 +7036,56 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr ""
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, 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 ""
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr ""
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "جاري بدء الشبكة..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr ""
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "لم يتم تحديد وظيفية الشبكة"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -6836,11 +7093,11 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr ""
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -6850,31 +7107,31 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
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 ""
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr ""
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "مرتفع"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr ""
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -6889,11 +7146,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr ""
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -6907,63 +7164,63 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr ""
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "أي نظام طباعة تريد أن تستخدم؟"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "إعداد الطابعة \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
+msgstr "جاري إعداد الطابعة \"%s\" ..."
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
msgstr ""
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr ""
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr ""
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
msgid "Configuring applications..."
msgstr "جاري إعداد التطبيقات..."
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr ""
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -6971,35 +7228,39 @@ msgid ""
"OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
"it."
msgstr ""
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
msgid "Change the printing system"
msgstr "تغيير نظام الطباعة"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr ""
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "؎عو؏"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr "هل تريد تجربة إعداد طابعة أخرى؟"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "تعديل اعدادات الطابعة"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, c-format
msgid ""
"Printer %s\n"
@@ -7008,103 +7269,103 @@ msgstr ""
"الطابعة %s\n"
"هل تريد تعديل تلك الطابعة؟"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "نوع وصلة الطابعة"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr ""
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
msgstr "اعرف كيف تستخدم هذه الطابعة"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr ""
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr ""
+msgid "Removing old printer \"%s\"..."
+msgstr "جاري ازالة الطابعة القديمة \"%s\" ..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr ""
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr ""
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr ""
+msgid "Removing printer \"%s\"..."
+msgstr "جاري ازالة الطابعة \"%s\" ..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
#: ../../proxy.pm_.c:78
@@ -7178,24 +7439,51 @@ msgstr ""
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr ""
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr ""
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr ""
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr ""
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr ""
+#: ../../security/msec.pm_.c:144
+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 ""
+
+#: ../../security/msec.pm_.c:150
+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 ""
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "خيارات متقدمة"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "خيارات"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -7238,7 +7526,7 @@ msgid ""
"new/changed hardware."
msgstr ""
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -7294,7 +7582,7 @@ msgid ""
"available server."
msgstr ""
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -7351,7 +7639,7 @@ msgid ""
"which act as servers for protocols which make use of the RPC mechanism."
msgstr ""
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -7428,7 +7716,7 @@ msgstr "إنترنت"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "نظام"
@@ -7540,6 +7828,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
msgstr "مركز تحكم Mandrake"
@@ -7562,13 +7851,15 @@ msgstr ""
#: ../../share/advertising/07-server.pl_.c:9
msgid "Server Software"
-msgstr ""
+msgstr "برامج الخادم"
#: ../../share/advertising/07-server.pl_.c:10
msgid ""
"Transform your machine into a powerful server with just a few clicks of the "
"mouse: Web server, email, firewall, router, file and print server, ..."
msgstr ""
+"حوّل ماكينتك إلى خادم قويّ مع/ب فقط نقرات قليلة من ال الفأرة : خادم الويب , "
+"البريد الإلكترونيّ , فيروول , الحفّار , الملفّ و خادم الطّبع ,"
#: ../../share/advertising/08-games.pl_.c:9
msgid "Games"
@@ -7579,10 +7870,12 @@ msgid ""
"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
"cards, sports, strategy, ..."
msgstr ""
+" يمدّون أفضل لعب بمصادر مفتوحة Mandrake Linux 8.2 - arcade, action, "
+"cards, sports, strategy,...."
#: ../../share/advertising/09-MDKcampus.pl_.c:9
msgid "MandrakeCampus"
-msgstr ""
+msgstr "MandrakeCampus"
#: ../../share/advertising/09-MDKcampus.pl_.c:10
msgid ""
@@ -7593,7 +7886,7 @@ msgstr ""
#: ../../share/advertising/10-MDKexpert.pl_.c:9
msgid "MandrakeExpert"
-msgstr ""
+msgstr "MandrakeExpert"
#: ../../share/advertising/10-MDKexpert.pl_.c:10
msgid ""
@@ -7616,7 +7909,7 @@ msgstr ""
#: ../../share/advertising/12-MDKstore.pl_.c:9
msgid "MandrakeStore"
-msgstr ""
+msgstr "MandrakeStore"
#: ../../share/advertising/12-MDKstore.pl_.c:10
msgid ""
@@ -7632,21 +7925,186 @@ msgstr ""
#: ../../share/advertising/13-Nvert.pl_.c:11
msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr ""
+msgstr "http://www.mandrakesoft.com/sales/contact"
#: ../../standalone.pm_.c:25
msgid "Installing packages..."
-msgstr ""
+msgstr "تركيب طرود ..."
+
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "يرجى تسجيل الخروج ثم استخدم Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "يرجى اعادة تسجيل الدخول الى %s لتنشيط التغييرات"
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
msgstr ""
+" لا يمكن أن أقرأ جدول فاصلك هو يفسد أيضًا سوف أحاول أن أستمرّ فواصل سيّئة "
+
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "نقل إعدادات الطابعة"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "خادم قواعد بيانات"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "خادم قواعد بيانات"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr " الخادم NIS"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr " الخادم NIS"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "اضف مستخدم"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP العميل"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "مساعدة"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+#, fuzzy
+msgid "No kernel selected!"
+msgstr "لم يتم ايجاد بطاقة تلفاز!"
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "غير متصل"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "إلغاء"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "تم اختيار الكل"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "اضف مستخدم"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "DHCP العميل"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "جاري الإعداد..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "إعداة الإعداد"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "أدخل قرص مرن بالدّاخل %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "آسف , لا مدخل مرن متاح"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
-msgstr ""
+msgstr "؎ءأ ! "
#: ../../standalone/drakautoinst_.c:46
#, c-format
@@ -7682,6 +8140,10 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+msgid "Creating auto install floppy"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -7690,44 +8152,37 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr ""
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr "تثبيت آلي"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr ""
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr "أزل المادة الأخيرة"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -7735,15 +8190,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -7751,161 +8198,177 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
-" "
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:880
+#, fuzzy, c-format
+msgid ""
+"file list sent by FTP : %s\n"
+" "
+msgstr "ارسال الملفات عن طريق FTP"
+
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+msgid " Error during mail sending. \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
msgstr ""
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
msgstr "رجاء اختر كل المستخدمين الذين تريد تضمينهم في النسخ الإحتياطي."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
msgstr "ازل المادة المختارة"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr ""
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr "المستخدمون"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "استخدم القرص الصلب للنسخ الإحتياطي"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
msgstr "فضلا أدخل اسم المستضيف أو عنوان IP."
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
-msgstr ""
+msgstr "فضلاً أدخل الدليل الموجودة فيه النسخ الإحتياطية"
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
msgstr "رجاء أدخل اسم الدخول"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
msgstr "رجاء كلمة المرور"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
msgstr "تذكّر كلمة السّرّ هذه "
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "وصلة FTP"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "وصلة آمنة"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr "إلى المساعد CD/DVDROM الاستعمال "
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
msgstr "رجاء اختر مساحة القرص المدمج"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
msgstr "فضلا قم بالتأشير هنا اذا كنت تستخدم وسيط CDRW"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr "فيما مضى CDRW من فضلك فحص ,إذا أردت أن تمحو "
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
@@ -7913,72 +8376,83 @@ msgstr ""
" من فضلك فحص إذا أردت أن تتضمّن \n"
"ركّب الجدر على قرصك المدمج"
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "فيما مضى CDRW من فضلك فحص ,إذا أردت أن تمحو "
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1497
+#, fuzzy
+msgid "Please enter the directory to save to:"
+msgstr "فضلاً أدخل الدليل الموجودة فيه النسخ الإحتياطية"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
msgstr "الشبكة"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr "HardDrive / NFS"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "النوع"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr "كلّ ساعة "
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr "يوميًّا "
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr "أسبوعيّا"
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr "شهريا"
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
msgstr "استخدم المراقب"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -7986,7 +8460,7 @@ msgstr ""
"فضلا اختر الفترة \n"
"ما بين كل عملية نسخ احتياطي"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
@@ -7994,71 +8468,66 @@ msgstr ""
"ع؏اإ ا؎تع\n"
"وسيط النسخ الاحتياطي"
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "FTPاستخدم مع المراقب"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "ماذا "
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "أين"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "متى "
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
msgstr "خيارات أكثر"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
msgstr "ؼؚدادات Drakbackup"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
msgstr "رجاء اختر أين تريد النسخ الاحتياطي."
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr "على القرص الصّلب"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr "عبر الشّبكة"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
msgstr "رجاء اختر ما تريد نسخه احتياطياً"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
msgstr "نظام المساعد"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr "مستخدمو المساعد"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr "اخترالمستخدم يدويًّا"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
@@ -8066,7 +8535,7 @@ msgstr ""
"\n"
"مصادر المساعد :\n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
@@ -8074,7 +8543,7 @@ msgstr ""
"\n"
"-ملفّات النّظام :\n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
@@ -8082,7 +8551,7 @@ msgstr ""
"\n"
"-ملفّات المستخدم:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
@@ -8090,7 +8559,7 @@ msgstr ""
"\n"
"-الملفّات الأخرى:\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
@@ -8099,23 +8568,52 @@ msgstr ""
"\n"
"- احفد القرص الصّلب على الطّريق :%s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "جهاز الفأرة: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"-FTP و على host احفد على : %s\n"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
"\n"
"-FTP و على host احفد على : %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
@@ -8123,19 +8621,19 @@ msgstr ""
"\n"
"- خيارات:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr "\tBackups use tar and bzip2\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr "\tBackups use tar and gzip\n"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
@@ -8144,271 +8642,293 @@ msgstr ""
"\n"
"-Daemon (%s) include :\n"
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr "\t-Network by FTP.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr "\t-Network by SSH.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t-Network by FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t-Network by FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
msgid "Please uncheck or remove it on next time."
msgstr ""
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
msgid " Restore Configuration "
msgstr ""
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
-msgstr ""
+msgstr "اضغط موافق لاستعادة ملفات اخرى"
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
+msgstr "قائمة المستخدمين الذين سيتم استعادتهم"
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
-msgstr ""
+msgstr "انسخ ملفات النظام قبل:"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
msgid "please choose the date to restore"
msgstr "رجاء اختر تاريخ الإستعادة"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
+msgstr "استخدم القرص الصلب للنسخ الإحتياطي"
+
+#: ../../standalone/drakbackup_.c:2373
+msgid "Please enter the directory to save:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2416
+msgid "FTP Connection"
+msgstr "وصلة FTP"
+
+#: ../../standalone/drakbackup_.c:2424
+msgid "Secure Connection"
+msgstr "وصلة آمنة"
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
-msgstr ""
+msgstr "استعد من القرص الصلب"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
-msgstr ""
+msgstr "فضلاً أدخل الدليل الموجودة فيه النسخ الإحتياطية"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
msgstr "اختر وسيط آخر للاستعادة منه"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
msgid "Other Media"
msgstr "وسيط آخر"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
msgid "Restore system"
msgstr "استعد النّظام"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
msgstr "أعد المستخدمين "
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
msgstr "استؚد آ؎ع"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
-msgstr ""
+msgstr "اختر مسار الإستعادة (بدلاً من / )"
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
+msgstr "قم بنسخ احتياطي جديد فبل الإستعادة (فقط للنسخ الإحتياطية المتدرجة)"
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
-msgstr ""
+msgstr "أزل أدلة المستخدمين قبل الإستعادة"
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
-msgstr ""
+msgstr "استعد كل النسخ الإحتياطية"
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
msgid "Custom Restore"
msgstr "استعادة مخصصة"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "السابق"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "حفظ"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
-msgstr ""
+msgstr "ابني النسخة الإحتياطية"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
msgstr "استؚاد؊"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "التالي"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "قائمة الحزم المطلوب تثبيتها"
+#: ../../standalone/drakbackup_.c:2933
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "الحزمة %s يجب أن تُثبّت. هل تريد تثبيتها؟"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
msgstr "رجاء اختر تاريخ الإستعادة..."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
msgstr "رجاء اختر وسيط النسخ الإحتياطي..."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
msgstr "رجاء اختر البيانات المطلوب نسخها احتياطيا..."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
+"لم يتم ايجاد ملف تهيئة \n"
+"فضلا اضغط معالج لأو متقدم."
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
-msgstr ""
+msgstr "تحت التطوير ... انتظر فضلا"
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
msgid "Backup system files"
-msgstr ""
+msgstr "انسخ ملفات النظام"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
msgid "Backup user files"
-msgstr ""
+msgstr "انسخ ملفات المستخدم"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
msgid "Backup other files"
-msgstr ""
+msgstr "انسخ ملفات أخرى"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
-msgstr ""
+msgstr "اجمالي التقدم"
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
-msgstr ""
+msgstr "ارسال الملفات عن طريق FTP"
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
msgid "Sending files..."
-msgstr ""
+msgstr "جاري ارسال الملفات..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
-msgstr ""
+msgstr "قائمة البيانات التي ستضمن في القرص."
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
msgid "Please enter the cd writer speed"
msgstr "رجاء أدخل سرعة سواقة كتابة الأقراص"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
+msgstr "فضلا اختر اسم جهاز كتابة الأقراص (مثال: 0,1,0)"
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
-msgstr ""
+msgstr "فضلا تأكد بأنك تريد تضمين إقلاع التثبيت في قرصك المدمج."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
msgid "Backup Now from configuration file"
msgstr "قم بالنسخ الآن من ملف التهيئة"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
msgid "View Backup Configuration."
msgstr "اعرض تهيئة النسخ الإحتياطي"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
msgid "Wizard Configuration"
msgstr "إعدادات المعالج"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
msgid "Advanced Configuration"
msgstr "إعداد متقدم"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
-msgstr ""
+msgstr "قم بالنسخ الإحتياطي الآن"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
-msgstr ""
+msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -8440,7 +8960,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -8449,7 +8969,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -8490,7 +9010,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -8518,12 +9038,19 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
+" جميع الحقوق محفوظة (C) 2001 MandrakeSoft من دوبون سيباستيان <dupont_s"
+"\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -8539,8 +9066,24 @@ msgid ""
" along with this program; if not, write to the Free Software\n"
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
+" هذا البرنامج هو برنامج حر; يمكنك اعادة توزيعة و/أو تعديله\n"
+" تحت بنود رخصة GNU العمومية الشاملة (GPL) كما نُشِرت عن طريق\n"
+" جمعية البرمجيات الحرة; إما اإصدار الثاني من الترخيص أو\n"
+" أي نسخة تالية (حسب اختيارك).\n"
+"\n"
+" هذا البرنامج يُوزَّع على أمل أن يكون مفيدا,\n"
+" لكن دون أي ضمان’; حتى بدون الضمانة المفهومة\n"
+" للإتجار أو المناسبة لغرض معين. انظر\n"
+" رخصة GNU العمومية الشاملة للتفاصيل.\n"
+"\n"
+" يجب أن تكون قد تسلمت نسخة من ترخيص GNU العمومية الشاملة\n"
+" مع البرنامج; في حالة عدم تسلم الرخصة راسل جمعية البرمجيات الحرة على العنوان "
+"التالي\n"
+" Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA "
+"02111-1307,\n"
+" USA."
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -8580,7 +9123,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -8591,7 +9134,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -8604,7 +9147,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -8648,99 +9191,526 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "فشل تثبيت %s. ظهر الخطأ التالي:"
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
msgstr ""
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakfont_.c:253
-msgid "no fonts found"
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "أدوات سطر الأوامر"
+
+#: ../../standalone/drakbug_.c:53
+#, fuzzy
+msgid "HardDrake"
+msgstr "على القرص الصّلب"
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "استشاعات Mandrake"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "MandrakeStore"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "الفأرة"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "طابعة بعيدة"
+
+#: ../../standalone/drakbug_.c:58
+msgid "Software Manager"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Printerdrake"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "معالج إعداد الشبكة"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "التحقق"
+
+#: ../../standalone/drakbug_.c:75
+msgid "Package: "
+msgstr ""
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "من فضلك انتظر"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "ما بعد ازالة التثبيت"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "استؚاد؊"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "ستكون لقطات الشاشة موجودة بعد التثبيت في %s"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "اعدادات الشبكة (%d موائمات)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "التشكيل:"
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "احذف التشكيل..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "التشكيل المطلوب حذفه:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "تشكيل جديد..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"لإسم التشكيل الذي ستعمله (التشكيل الجديد يتم عمله كنسخة من التشكيل الحالي) :"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "اسم المستضيف :"
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "الدخول الى الإنترنت"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "النوع:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "البوابة:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "الواجهة:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "الحالة:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "الانتظار من فضلك"
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "إعداد الدخول الى الإنترنت..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "ؼؚداد LAN"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "المحرك"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "الواجهة"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "البروتوكول"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "الحالة"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "إعداد الشبكة المحلية..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "انقر هنا لتشغيل المعالج ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "المعالج..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "تطبيق"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "يرجى الإنتظار... جاري تطبيق الإعدادات"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "متّصل "
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "غير متصل"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "اتصل..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "اقطع الإتصال..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr "تحذير, تم ايجاد اتصال إنترنت آخر, ربما يكون يستخدم شبكتك"
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"لم تقم بتهيئة أي واجهات.\n"
+"قم بتهيئتهم أولا عن طريق الضغط على 'تهيئة'"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "ؼؚداد LAN"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "المحوّل %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "بروتوكول الإقلاع"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "يتم بدءه عند الإقلاع"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP العميل "
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "قم بالتنشيط الآن"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "قم بإزالة التنشيط الآن"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"لم يتم تهيئة الواجهة بعد.\n"
+"قم بتشغيل معالج التهيئة في النافذة الرئيسية"
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"ليست لديك أي اتصالات إنترنت.\n"
+"قم بعمل اتصال أولا باستخدام 'تهيئة'"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "إعدادات الإتصال بالإنترنت"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "إعدادات الإتصال بالإنترنت"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "نوع العلاقة"
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parameters"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Gateway"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Ethernet Card"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP العميل"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "الاستخدام: دريك للاقراص المرنة\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-متنوع-ثابت-وسط-ر-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "اسم الوحدة"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "حجم"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "دريك للاقراص المرنة"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "صنع قرص مرن لبدء النظام"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "المرجع"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "خطأ فى دريك لعمل قرص بدء النظام: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "اصدارة اللب"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "عام"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "منطقة الخبراء"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrd الخصائص الاختيارية"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "ا؜اف؊ وحد؊"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "ا؏باع"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "اذا احتجته"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "SCSI اهمل وحدات ال"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "RAID اهمل وحدات ال"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "ازالة وحدة"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "الناتج"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "جهز القرص"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "تأكد من وجود الوسيط للوحدة %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
msgstr ""
+"لا يوجد وسط أو ربما يكون الوسط محمي من القراءة للجهاز %s.\n"
+"فضلاً ادخل وسط فى الوحدة."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "تعذر تنفيذ: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"غير قادر على غلق mkbootdisk: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
+msgid "Search installed fonts"
+msgstr "ابحث في الخطوط المثبتة"
+
+#: ../../standalone/drakfont_.c:234
+msgid "Unselect fonts installed"
+msgstr "أزل اختيار الخطوط المثبتة"
+
+#: ../../standalone/drakfont_.c:258
+msgid "parse all fonts"
+msgstr "تحليل كل الخطوط"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:261
+msgid "no fonts found"
+msgstr "لا توجد خطوط"
+
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "انتهى"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
-msgstr ""
+msgstr "لم أتمكن من ايجاد أي خطوط في تجزئاتك المحملة"
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
-msgstr ""
+msgstr "أعد اختيار الخطوط الصحيحة"
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
-msgstr ""
+msgstr "لم أتمكن من إيجاد أي خط.\n"
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
-msgstr ""
+msgstr "ابحث عن الخطوط في القائمة المثبتة"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
-msgstr ""
+msgstr "نقل الخطوط"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
msgid "True Type fonts installation"
-msgstr ""
+msgstr "تثبيت خطوط True Type"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
-msgstr ""
+msgstr "رجاء انتظر أثناء عملية ttmkfdir..."
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
-msgstr ""
+msgstr "تم تثبيت خطوط True Type"
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
-msgstr ""
+msgstr "تحويل الخطوط"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
-msgstr ""
+msgstr "بناء type1inst"
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
-msgstr ""
+msgstr "Ghostscript referencing"
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
-msgstr ""
+msgstr "تحويل خطوط ttf"
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
-msgstr ""
+msgstr "تحويل خطوط pfm"
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
-msgstr ""
+msgstr "أبطل الملفات المؤقتة"
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
-msgstr ""
+msgstr "أعد تشغيل XFS"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
-msgstr ""
+msgstr "أبطل ملفات الخطوط"
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
msgid "xfs restart"
msgstr "xfs restart"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -8749,107 +9719,107 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
msgid "Fonts Importation"
msgstr "استيراد الخطوط"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
-msgstr ""
+msgstr "احصل على خطوط Windows"
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
-msgstr ""
+msgstr "اخذف الخطوط"
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "خيارات متقدمة"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
msgstr "قائمة الخطوط"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
msgid "Choose the applications that will support the fonts :"
-msgstr ""
+msgstr "اختر التطبيقات التي ستدعم الخطوط :"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
-msgstr ""
+msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
msgstr "طابعات عادية (Generic)"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
+msgstr "اختر ملف أو دليل الخطوط و اضغط 'اضافة'"
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
-msgstr ""
+msgstr "ثبّت القائمة"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
-msgstr ""
+msgstr "اضغط هنا إذا كنت متأكدا."
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
-msgstr ""
+msgstr "إضغط هنا إذا لم تكن متأكدا."
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
-msgstr ""
+msgstr "تم ازالة اختيار الكل"
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
msgid "Selected All"
msgstr "تم اختيار الكل"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
msgstr "ازل القائمة"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr "الإختبارات الأولية"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
-msgstr ""
+msgstr "انسخ الخطوط الى نظامك"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
-msgstr ""
+msgstr "ثبّت و حوّل الخطوط"
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
msgid "Post Install"
msgstr "ما بعد التثبيت"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
-msgstr ""
+msgstr "أزل الخطوط من النظام"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
msgid "Post Uninstall"
msgstr "ما بعد ازالة التثبيت"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
-msgstr ""
+msgstr "مشاركة الإتصال بالإنترنت"
+
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr "آسفون, نحن ندعم اصدارات النواة 2.4"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
-msgstr ""
+msgstr "مشاركة الإتصال بالإنترنت ممكنة حاليا"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -8857,51 +9827,51 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
-msgstr "أعق"
+msgstr "تعطيل"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
-msgstr ""
+msgstr "اهمال"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
-msgstr ""
+msgstr "إعداة الإعداد"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
-msgstr ""
+msgstr "جاري تعطيل الخوادم..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "مشاركة اتصال الإنترنت غير ممكَّنة الآن."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
-msgstr ""
+msgstr "مشاركة الإتصال بالإنترنت"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
"\n"
"What would you like to do?"
-msgstr "ماذا تحبّ أن تعمل"
+msgstr ""
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
-msgstr ""
+msgstr "تمكين"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
-msgstr ""
+msgstr "جاري تمكين الخوادم..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "مشاركة إتصال الإنترنت ممكَّنة الآن."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -8911,31 +9881,31 @@ msgid ""
"(LAN)."
msgstr ""
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
-msgstr "السّطح البينيّ %s(استعمال مركبة%s)"
+msgstr "الواجهة %s (باستخدام الوحدة %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
-msgstr "السّطح البينيّ %s"
+msgstr "الواجهة %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "لا محوّل الشّبكة على نظامك"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "سطح بينيّ للشبكة "
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -8945,17 +9915,17 @@ msgid ""
"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr "واجهة الشبكة معدّة مسبقا!"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -8965,15 +9935,15 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr "اعداة تهيئة آلية"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr "أظهر تهيئة الواجهة الحالية"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -8983,13 +9953,14 @@ msgid ""
"IP attribution: %s\n"
"Driver: %s"
msgstr ""
-"الشّكل الحاليّ من `%s':\n"
-"n/الشّبكة : %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
+"الإعداد الحالي لـ`%s':\n"
+"\n"
+"الشبكة: %s\n"
+"عنوان الـIP: %s\n"
+"صفة الـIP: %s\n"
+"المشغل: %s"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
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 C-Class Network that "
@@ -9001,74 +9972,80 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
-msgstr ""
+msgstr "شبكة محلية من الفئة C"
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr "عنوان IP لخادم DHCP (هذا)"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
-msgstr ""
+msgstr "إعادة إعداد الواجهة و خادم DHCP"
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
-msgstr ""
+msgstr "الشبكة المحلية لم تنته بـ`0', جاري الخروج."
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
+"تم ايجاد تعارض في عنوان الشبكة المحلية المبدئي في الإعداد الحالي لـ%s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
-msgstr "Firewalling configuration تم اكتشاف "
+msgstr "تم اكتشاف إعداد للجدار الناري!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
msgstr ""
+"تحذير! تم إيجاد إعداد جدار ناري موجود مسبقا. ربما تحتاج الى اصلاح يدوي بعد "
+"التثبيت."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
-msgstr ""
+msgstr "جاري الإعداد..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
-msgstr ""
+msgstr "جاري إعداد النصوص البرمجية و تثبيت البرمجيات و بدء الخدمات..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
-msgstr ""
+msgstr "كانت هناك مشاكل في تثبيت الحزمة %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
+"تم إعداد كل شئ.\n"
+"يمكنك الآن مشاركة اتصال الإنترنت مع الأجهزة الأخرى في شبكتك المحلية باستخدام "
+"إعداد الشبكة الأوتوماتيكي (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
-msgstr ""
+msgstr "تم عمل التنصيب, و لكنه غير ممكَّن الآن"
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
-msgstr ""
+msgstr "تم عمل التنصيب, و هو ممكَّن الآن."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "لم يتم اعداد أي مشاركة اتصال بالإنترنت"
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "إعدادات مشاركة إتصال الإنترنت"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -9077,206 +10054,11 @@ msgid ""
"\n"
"Click on Configure to launch the setup wizard."
msgstr ""
-
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr ""
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "النّبذة :"
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "نبذة جد يد ة..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Hostname :"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr ""
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "النوع:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "الانتظار من فضلك"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "ؼؚداد LAN"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "المحرك"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "الواجهة"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "الحالة"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "المعالج..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "تطبيق"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "يرجى الإنتظار... جاري تطبيق الإعدادات"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "متّصل "
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "غير متصل"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "متصل"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "ؼؚداد LAN"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "المحوّل %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr ""
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP العميل "
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr ""
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr ""
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "إعدادات الإتصال بالإنترنت"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "إعدادات الإتصال بالإنترنت"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "نوع العلاقة"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parameters"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernet Card"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP العميل"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr ""
+"أهلا بك في أداة مشاركة الإتصال بالإنترنت!\n"
+"\n"
+"%s\n"
+"\n"
+"اضغط على تهيئة لتشغيل معالج الإعداد."
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
@@ -9284,93 +10066,127 @@ msgstr "مركز التّحكّم "
#: ../../standalone/drakxconf_.c:48
msgid "Choose the tool you want to use"
+msgstr "اختر الأداة التي تريد استخدامها"
+
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\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 ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
msgstr "كندة (cable)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr "الولايات المتّحدة الأمريكيّة (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
+msgstr "الولايات المتّحدة الأمريكيّة (broadcast)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr "الولايات المتّحدة الأمريكيّة (cable)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr "الولايات المتّحدة الأمريكيّة (cable-hrc)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr "الصين (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
+msgstr "الصين (broadcast)"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr "اليابان (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
+msgstr "اليابان (broadcast)"
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr "اليابان (cable)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
msgstr "أوروبّا الشّرقيّة"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+msgid "France [SECAM]"
+msgstr "فرنسا [سيكام]"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
msgstr "أيرلندا"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
msgstr "أوروبّا الغربيّة"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
msgstr "أوستراليا"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr "نيوزيلندا "
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr "جنوب أفريقيا "
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr "الأرجنتين "
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-"من فضلك\n"
-" في معيار تليفزيونك و البلد type"
+"فضلاً,\n"
+"اطبع tv norm الخاص بك و بلدك"
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr "TV norm :"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
-msgstr "Area :"
+msgstr "المنطقة :"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
-msgstr ""
+msgstr "ضيط قنوات التلفاز في تقدم ..."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
-msgstr ""
+msgstr "جاري ضبط قنوات التلفاز"
+
+#: ../../standalone/drakxtv_.c:130
+msgid "There was an error while scanning for TV channels"
+msgstr "كان هناك خطأ أثناء ضبط قنوات التلفاز"
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr "XawTV غير مثبت!"
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr "نتمنى لك يوماً سعيداً!"
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr "الآن يمكنك تشغيل XawTV (في الواجهة الرسومية!) !\n"
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
-msgstr ""
+msgstr "لم يتم ايجاد بطاقة تلفاز!"
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -9381,6 +10197,14 @@ msgid ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+"لم يتم ايجاد بطاقة تلفاز على جهازك. فضلاً تأكد من أن بطاقة الفيديو/التلفاز "
+"المدعومة في لينكس موصولة بشكل صحيح.\n"
+"\n"
+"\n"
+"يمكنك زيارة قاعدة بيانات العتاد المدعوم الخاصة بنا على:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
@@ -9392,27 +10216,29 @@ msgstr "من فضلك اختر تصميم لوحة مفاتيحك"
#: ../../standalone/keyboarddrake_.c:36
msgid "Do you want the BackSpace to return Delete in console?"
-msgstr ""
+msgstr "هل تريد أن يقوم زر BackSpace بعمل وظيفة زر Delete في سطر الأوامر؟"
#: ../../standalone/livedrake_.c:24
msgid "Change Cd-Rom"
-msgstr "Cd-Romتغيير"
+msgstr "غيّر القرص المدمج"
#: ../../standalone/livedrake_.c:25
msgid ""
"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
"If you don't have it, press Cancel to avoid live upgrade."
msgstr ""
+"فضلا أدخل قرص التثبيت في سواقتك و اضغط موافق عندما تنتهي.\n"
+"إذا لم يكن قرص التثبيت لديك اضغط الغاء للإمتناع عن التحديث الحي."
#: ../../standalone/livedrake_.c:35
msgid "Unable to start live upgrade !!!\n"
-msgstr ""
+msgstr "لم أتمكن من بدء الترقية الحية !!!\n"
#: ../../standalone/localedrake_.c:32
msgid "The change is done, but to be effective you must logout"
-msgstr ""
+msgstr "تم عمل التغيير, و لكن ليتم تفعيله يجب عليك الخروج"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -9426,7 +10252,7 @@ msgstr "/ملف/_جديد"
#: ../../standalone/logdrake_.c:102
msgid "<control>N"
-msgstr "<control>ŘŹ"
+msgstr "<تحكم>N"
#: ../../standalone/logdrake_.c:103
msgid "/File/_Open"
@@ -9434,7 +10260,7 @@ msgstr "/ملف/_فتح"
#: ../../standalone/logdrake_.c:103
msgid "<control>O"
-msgstr "<control>ف"
+msgstr "<تحكم>O"
#: ../../standalone/logdrake_.c:104
msgid "/File/_Save"
@@ -9442,11 +10268,11 @@ msgstr "/ملف/_حفظ"
#: ../../standalone/logdrake_.c:104
msgid "<control>S"
-msgstr "<control>Ř­"
+msgstr "<تحكم>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
-msgstr "/ملف/حفظ با_سم"
+msgstr "/ملف/حفظ _باسم"
#: ../../standalone/logdrake_.c:106
msgid "/File/-"
@@ -9454,19 +10280,15 @@ msgstr "/ملف/-"
#: ../../standalone/logdrake_.c:108
msgid "/_Options"
-msgstr "/خ_يارات"
+msgstr "/_خيارات"
#: ../../standalone/logdrake_.c:109
msgid "/Options/Test"
-msgstr "/خيارات/احتبار"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_مساعدة"
+msgstr "/خيارات/اختبار"
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
-msgstr "/مساعدة/_حول"
+msgstr "/مساعدة/_حول البرنامج..."
#: ../../standalone/logdrake_.c:118
msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
@@ -9524,7 +10346,7 @@ msgstr "التقويم"
msgid "Content of the file"
msgstr "محتويات الملف"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr "تنبية البريد/SMS"
@@ -9533,11 +10355,11 @@ msgstr "تنبية البريد/SMS"
msgid "please wait, parsing file: %s"
msgstr "يرجى الإنتظار, جاري تحليل الملف: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
msgstr "تهيئة تنبيه البريد/SMS"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
@@ -9547,62 +10369,93 @@ msgstr ""
"\n"
"هنا سيمكنك الإعداد \n"
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Domain name"
#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
+#, fuzzy
+msgid "Ftp Server"
+msgstr " الخادم NIS"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "خادم البريد Postfix, خادم الأخبار Inn"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr " الخادم NIS"
#: ../../standalone/logdrake_.c:422
+#, fuzzy
+msgid "SSH Server"
+msgstr " الخادم NIS"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "الخدمات"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "الخدمات"
+
+#: ../../standalone/logdrake_.c:431
msgid "service setting"
msgstr "إعدادات الخدمات"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
-msgstr ""
+msgstr "سوف تستلم تنبيهاً إذا كانت أحد الخدمات المختارة غير عاملة."
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
msgstr "حمل الإعدادات"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr "سوف تستلم تنبيها اذا كان التحميل أعلى من هذه القيمة"
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
msgstr "إعدادات التنبيه"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr "أعدّ الطريقة التي سينبهك النظام بها"
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "حفظ بإسم.."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
-msgstr ""
+msgstr "فضلاً, اختر نوع الفأرة الخاصة بك."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "no serial_usb found\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
-msgstr ""
+msgstr "محاكاة الزر الثالث؟"
+
+#: ../../standalone/printerdrake_.c:49
+msgid "Reading printer data ..."
+msgstr "جاري قراءة بيانات الطابعة ..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "جاري التحقق من الأجهزة ..."
#: ../../standalone/scannerdrake_.c:53
#, c-format
@@ -9626,9 +10479,8 @@ msgid ""
msgstr ""
#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
msgid "choose device"
-msgstr "جهاز الإقلاع"
+msgstr "اختر الجهاز "
#: ../../standalone/scannerdrake_.c:102
#, c-format
@@ -9637,6 +10489,8 @@ msgid ""
"You can launch printerdrake from the Mandrake Control Center in Hardware "
"section."
msgstr ""
+"الماسح الضوئي %s يجب اعداده عن طريق PrinterDrake.\n"
+"يمكن تشغيل PrinterDrake من مركز التحكم في قسم العتاد."
#: ../../standalone/scannerdrake_.c:107
#, c-format
@@ -9645,6 +10499,21 @@ msgid ""
"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
"applications menu."
msgstr ""
+"تمت تهيئة الماسح الضوئي %s.\n"
+"يمكنك الآن مسح المستندات باستخدام ``XSane'' من فرع وسائط متعددة/برامج رسومية "
+"في قائمة التطبيقات."
+
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
@@ -9661,6 +10530,10 @@ msgid ""
"You already have set up a firewall.\n"
"Click on Configure to change or remove the firewall"
msgstr ""
+"الجدار الناري\n"
+"\n"
+"لقد قمت بإعداد جدار ناري مسبقا.\n"
+"اضغط تهيئة لتغيير أو إزالة الجدار الناري"
#: ../../standalone/tinyfirewall_.c:83
msgid ""
@@ -9668,6 +10541,9 @@ msgid ""
"\n"
"Click on Configure to set up a standard firewall"
msgstr ""
+"الجدار الناري\n"
+"\n"
+"اضغط تهيئة لإعداد جدار ناري قياسي"
#: ../../steps.pm_.c:14
msgid "Choose your language"
@@ -9749,6 +10625,11 @@ msgid ""
"For a powerful dedicated firewall solution, please look to the\n"
"specialized MandrakeSecurity Firewall distribution."
msgstr ""
+"أداة تهيئة الجدار الناري البسيط\n"
+"\n"
+"هذه الأداة تسمح لك بتهيئة جدار ناري شخصي لنظام Mandrake Linux هذا.\n"
+"إذا كنت تريد جدارا ناريا متخصصا, الق نظرة على\n"
+"توزيعة MandrakeSecurity Firewall."
#: ../../tinyfirewall.pm_.c:14
msgid ""
@@ -9760,6 +10641,13 @@ msgid ""
"it off. You can change this configuration anytime you like by\n"
"re-running this application!"
msgstr ""
+"الآن سنسألك بعض الأسئلة حول أي الخدمات تريد أن تسمح لها\n"
+"بالإتصال بالإنترنت. فضلا فكر بعناية حول هذه\n"
+"الأسئلة لأن أمن كمبيوترك مهم.\n"
+"\n"
+"رجاء, اذا كنت لا تستخدم أياً من هذه الخدمات فاحجبها عن\n"
+"الجدار الناري. يمكنك تغيير التهيئة في أي وقت تريد عن طريق\n"
+"تشغيل هذا البرنامج مرة أخرى!"
#: ../../tinyfirewall.pm_.c:21
msgid ""
@@ -9768,6 +10656,10 @@ msgid ""
"accessed by this machine, you can safely answer NO here.\n"
"\n"
msgstr ""
+"هل تشغّل خادم ويب على هذا الجهاز و تريد كل الإنترنت أن\n"
+"تراه؟ اذا كنت تستخدم خادم ويب تحتاج فقط أن تصل اليه عن طريق\n"
+"هذا الجهاز فيمكنك أن تجيب بـ\"لا\" هنا.\n"
+"\n"
#: ../../tinyfirewall.pm_.c:26
msgid ""
@@ -9776,6 +10668,10 @@ msgid ""
"answer no.\n"
"\n"
msgstr ""
+"هل تشغل خادم أسماء نطاقات هنا؟ إذا لم تكن أعددت واحدا\n"
+"لإعطاء معلومات الـIP و المكان لكل الإنترنت, فضلا أجب\n"
+"بـ\"لا\".\n"
+"\n"
#: ../../tinyfirewall.pm_.c:31
msgid ""
@@ -9785,6 +10681,11 @@ msgid ""
"encrypted -- so some attackers can steal your password if you use\n"
"it. ssh is encrypted and doesn't allow for this eavesdropping."
msgstr ""
+"هل تريد السماح لإتصالات ssh الواردة؟ هذا\n"
+"بديل عن telnet و يمكنك استخدامه للدخول. لإذا كنت تستخدم\n"
+"telnet الآن فيجب عليك حتما بالتبديل الى ssh. Telnet غير\n"
+"مشفر -- مما يسمح للمخترقين بسرقة كلمة المرور إذا كنت تستخدمها.\n"
+"SSH مشفر و لا يسمح بالتلصص."
#: ../../tinyfirewall.pm_.c:36
msgid ""
@@ -9793,6 +10694,10 @@ msgid ""
"strongly recommend answering No here and using ssh in place of\n"
"telnet.\n"
msgstr ""
+"هل تريد السماح لإتصالات Telnet الواردة؟\n"
+"هذا غير آم بشكل مخيف كما شرحنا في الخطوة السابقة. نحن ننصح بقوة\n"
+"بالإجابة ب\"لا\" هنا و استخدام SSH بدلا\n"
+"من Telnet.\n"
#: ../../tinyfirewall.pm_.c:41
msgid ""
@@ -9801,6 +10706,11 @@ msgid ""
"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
"attackers, since FTP also uses no encryption for transferring passwords.\n"
msgstr ""
+"هل تشغل خادم FTP هنا و تريد أن يُسمح للوصل اليه عن طريق\n"
+"الإنترنت؟ إذا كنت كذلك فنحن ننصح بقوة باستخدامه فقط\n"
+"لنقل الملفات عن طريق الدخول اللاإسمي [Anonymous]. أي كلمات مرور مبعوثة\n"
+"عن طريق FTP يمكن سرقتها عن طريق بعض المخترقين بما أن FTP أيضا لا يستخدم "
+"التشفير لنقل كلمات المرور.\n"
#: ../../tinyfirewall.pm_.c:46
msgid ""
@@ -9809,6 +10719,10 @@ msgid ""
"you probably are. Otherwise, you should firewall this off.\n"
"\n"
msgstr ""
+"هل تشغل خادم بريد هنا؟ إذا كنت ترسل الرسائل من خلال \n"
+"pine أو mutt أو أي برنامج بريد يعمل في سطر الأوامر,\n"
+"فالأرجح أنك تفعل ذلك. إذا كان غير ذلك, فسيجب عليك حجب الجدار الناري عن هذا.\n"
+"\n"
#: ../../tinyfirewall.pm_.c:51
msgid ""
@@ -9817,6 +10731,10 @@ msgid ""
"this machine.\n"
"\n"
msgstr ""
+"هل تشغل خدمة POP أو IMAP هنا؟ هذا سوف\n"
+"يستخدم لاستضافة حسابات البريد غير المعتمدة على الإنترنت\n"
+"عبر هذه الماكينة.\n"
+"\n"
#: ../../tinyfirewall.pm_.c:56
msgid ""
@@ -9825,6 +10743,10 @@ msgid ""
"(dynamically assigned), we need to allow for this. Is\n"
"this the case?\n"
msgstr ""
+"يبدو أنك تشغل نواة من الإصدار 2.2. إذا كان عنوان IP الخاص\n"
+"بشبكتك يتم تحديده عن طريق الكمبيوتر في بيتك أو مكتبك \n"
+"(مُعيَّن ديناميكياً), سيجب عليك السماح بهذا. هل\n"
+"هذه هي القضية؟\n"
#: ../../tinyfirewall.pm_.c:61
msgid ""
@@ -9834,6 +10756,11 @@ msgid ""
"of a larger office and haven't heard of this, you probably \n"
"aren't."
msgstr ""
+"هل التوقيت في جهازك متزامن مع جهاز آخر؟\n"
+"غالبا, هذه الطريقة تستخدم في أنظمة يونيكس/لينكس المتوسطة و الكبيرة.\n"
+"لتحديث أوقات الدخول و أشياء أخرى كهذه. إذا لم تكن جزءا من\n"
+"مكتب أكبر (أو شئ من هذا القبيل) أو لم تسمع بهذا من قبل, فالأرجح أن\n"
+"هذا لا يحصل."
#: ../../tinyfirewall.pm_.c:66
msgid ""
@@ -9842,15 +10769,15 @@ msgid ""
"\n"
"\n"
msgstr ""
-"?قد نكتب التّغييرات هذه للقرص. اعد اد كامل \n"
-" \n"
+"اكتملت التهيئة. هل يمكننا كتابة هذه التغييرات الى القرص؟\n"
+"\n"
"\n"
"\n"
#: ../../tinyfirewall.pm_.c:82
-#, fuzzy, c-format
+#, c-format
msgid "Can't open %s: %s\n"
-msgstr "استءؚ"
+msgstr "لا يمكن أن ينفتح %s: %s\n"
#: ../../tinyfirewall.pm_.c:84
#, c-format
@@ -9904,6 +10831,8 @@ msgid ""
"Failure installing the needed packages : %s and Bastille.\n"
" Try to install them manually."
msgstr ""
+"فشل تثبيت الحزم الضرورية: %s و Bastille.\n"
+" حاول تثبيتهم يدوياً."
#: ../../share/compssUsers:999
msgid "Web/FTP"
@@ -9990,10 +10919,6 @@ msgid "Multimedia - Sound"
msgstr "وسائط متعددة - صوت"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "أدوات خدمية"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "وثائق المساعدة"
@@ -10097,10 +11022,6 @@ msgstr ""
"لتصفح الإنترنت"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "الأرشفة, محاكيات, أدوات مراقبة النظام"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "الميزانية الشخصية"
@@ -10148,122 +11069,193 @@ msgstr "وسائط متعددة - نسخ أقراص"
msgid "Scientific Workstation"
msgstr "محطة عمل علمية"
-#~ msgid "About"
-#~ msgstr "حول"
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "معرف بطاقة الشاشة: %s\n"
-#~ msgid " Help "
-#~ msgstr " مساعدة "
+#~ msgid "Choose options for server"
+#~ msgstr "إختر خيارات الخادم"
-#~ msgid "None"
-#~ msgstr "ولا واحدة"
+#~ msgid "Monitor not configured"
+#~ msgstr "الشاشة غير معدّة"
-#~ msgid "Choose a default printer!"
-#~ msgstr "اختر الطابعة الافتراضية:"
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "لم يتم اعداد بطاقة الشاشة حتى الآن"
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "يمكنك الآن اعطاء الخيارات للوحدة %s"
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "ام يتم اعداد دقة العرض حتى الآن"
-#~ msgid "mount failed"
-#~ msgstr "فشل التحميل"
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "حاول تغيير بعض المعاملات"
+
+#~ msgid "An error occurred:"
+#~ msgstr "ظهر خطأ:"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "المغادرة في %d ثوان"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "هل هذا هو الضبط الصحيح؟"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "ظهر خطأ, حاول تغيير بعض الماملات"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "خادم XFree86 :%s"
+
+#~ msgid "Show all"
+#~ msgstr "اظهار الكل"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "جاري تجهيز تهيئة X-Window"
+
+#~ msgid "What do you want to do?"
+#~ msgstr "ماذا تريد أن تفعل؟"
+
+#~ msgid "Change Monitor"
+#~ msgstr "تغيير الشاشة"
+
+#~ msgid "Change Graphics card"
+#~ msgstr "تغيير بطاقة الشاشة"
+
+#~ msgid "Change Server options"
+#~ msgstr "تغيير خيارات الخادم"
+
+#~ msgid "Change Resolution"
+#~ msgstr "تغيير دقة العرض"
-#~ msgid "Low"
-#~ msgstr "منخفض"
+#~ msgid "Show information"
+#~ msgstr "اعرض المعلومات"
-#~ msgid "Medium"
-#~ msgstr "متوسط"
+#~ msgid "Test again"
+#~ msgstr "اختبر مرة أخرى"
-#~ msgid "Export"
-#~ msgstr "تصدير"
+#~ msgid "Use FTP with daemon"
+#~ msgstr "FTPاستخدم مع المراقب"
-#~ msgid "click here"
-#~ msgstr "انقر هنا"
+#~ msgid "Package List to Install"
+#~ msgstr "قائمة الحزم المطلوب تثبيتها"
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "تم التخقق من وجود %s, هل تريد اعداده؟"
+#~ msgid "proftpd"
+#~ msgstr "proftpd"
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "رجاء اختر الطابعة التي تريد تهيئتها."
+#~ msgid "sshd"
+#~ msgstr "sshd"
-#~ msgid "authentification"
-#~ msgstr "المصادقة"
+#~ msgid "webmin"
+#~ msgstr "webmin"
-#~ msgid "user"
-#~ msgstr "المستخدم"
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
-#~ msgid "Scanning available nfs shared resource"
-#~ msgstr "جاري مسح مصادر nfs المشتركة المتوفرة"
+#~ msgid "Setting security level"
+#~ msgstr "جاري ضبط مستوى الأمن"
-#~ msgid "Scanning available nfs shared resource of server %s"
-#~ msgstr "جاري مسح مصادر nfs المشتركة المتوفرة للخادم %s"
+#~ msgid "Graphics card"
+#~ msgstr "بطاقة الشاشة"
-#~ msgid "Scanning available samba shared resource"
-#~ msgstr "جاري مسح مصادر samba المشتركة المتوفرة"
+#~ msgid "Select a graphics card"
+#~ msgstr "اختر بطاقة شاشة"
-#~ msgid "Scanning available samba shared resource of server %s"
-#~ msgstr "جاري مسح مصادر samba المشتركة المتوفرة للخادم %s"
+#~ msgid "Choose a X driver"
+#~ msgstr "إختر مشغل X"
-#~ msgid "\\@quit"
-#~ msgstr "\\@؎عو؏"
+#~ msgid "X driver"
+#~ msgstr "مشغل X"
-#~ msgid "Removable media"
-#~ msgstr "وسائط قابلة للإزالة"
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "تحذير: اختبار بطاقة العرض هذه قد يتسب في ايقاف جهازك"
-#~ msgid "Active"
-#~ msgstr "نشط"
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Standard VGA, 640x480 at 60 Hz"
-#~ msgid "No X"
-#~ msgstr "لا X"
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 at 56 Hz"
-#~ msgid " Linux "
-#~ msgstr " لينكس "
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-#~ msgid " System "
-#~ msgstr " نظام "
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-#~ msgid " Other "
-#~ msgstr " أخرى "
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-#~ msgid "please choose your CD space"
-#~ msgstr "رجاء اختر مساحة القرص المدمج"
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "فضلا قم بالتأشير هنا اذا كنت تستخدم وسيط CDRW"
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "High Frequency SVGA, 1024x768 at 70 Hz"
-#~ msgid " Tape "
-#~ msgstr " الشريط "
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Multi-frequency that can do 1280x1024 at 60 Hz"
-#~ msgid " Cancel "
-#~ msgstr " إلغاء "
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Multi-frequency that can do 1280x1024 at 74 Hz"
-#~ msgid " Ok "
-#~ msgstr " موافق "
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Multi-frequency that can do 1280x1024 at 76 Hz"
-#~ msgid "close"
-#~ msgstr "إغلاق"
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Monitor that can do 1600x1200 at 70 Hz"
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "لم يمكن فتح /etc/sysconfig/autologin للقراءة: %s"
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Monitor that can do 1600x1200 at 76 Hz"
-#~ msgid "New"
-#~ msgstr "جديد"
+#~ msgid "Choose security level"
+#~ msgstr "اختر مستوى الأمن"
-#~ msgid "Remote"
-#~ msgstr "بعيد"
+#~ msgid "hide expert mode"
+#~ msgstr "اخفاء اسلوب المحترف"
+
+#~ msgid "show expert mode"
+#~ msgstr "اظهار اسلوب المحترف"
#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
+#~ "If '%s' is a removable peripheral,\n"
+#~ " verify that a media is inserted."
#~ msgstr ""
-#~ "فضلا اضغط الزر بالأعلى\n"
-#~ "\n"
-#~ "أو استخدم \"جديد\""
+#~ "اذا كان الجهاز '%s' قابلاً للتغيير,\n"
+#~ " تأكد من أن الوسيط داخل الجهاز."
+
+#~ msgid ""
+#~ "WARNING! This will format '%s'.\n"
+#~ "All data will be erased on the peripheral '%s'.\n"
+#~ "If you want to continue, press OK. "
+#~ msgstr ""
+#~ "تحذير! هذا سيقوم بتهيئة '%s'.\n"
+#~ "كل البيانات الموجودة على الوسط '%s' سيتم محوها.\n"
+#~ "اذا كنت تريد المتابعة, اضغط موافق. "
+
+#~ msgid "unknown"
+#~ msgstr "غير معروف"
+
+#~ msgid "Select a module or write his name:"
+#~ msgstr "اختار الوحدة أو اكتب اسمها:"
+
+#~ msgid "Category"
+#~ msgstr "صنف"
+
+#~ msgid "preload module"
+#~ msgstr "وحدة ما قبل التحميل"
+
+#~ msgid "click on a category"
+#~ msgstr "اضغط على الصنف"
+
+#~ msgid "Remove"
+#~ msgstr "محو"
+
+#~ msgid "Tool for boot disk creation"
+#~ msgstr "اداة لتجهيز قرص مرن لبدء النظام"
-#~ msgid "Use \"New\""
-#~ msgstr "استخدم \"جديد\""
+#~ msgid "Show expert mode"
+#~ msgstr "اظهار اسلوب المحترف"
-#~ msgid "If the list above doesn't contain the wanted entry, enter it here:"
-#~ msgstr "اذا لم تتضمن القائمة المدخل المطلوب, قم بإدخاله هنا:"
+#~ msgid "modules"
+#~ msgstr "وحدات"
-#~ msgid "Shared resource"
-#~ msgstr "مصدر مشترك"
+#~ msgid "Boot disk maker. Still in early stage.\n"
+#~ msgstr "صانع القرص لبدء النظام. لم يزل فى مرحلة مبكرة.\n"
diff --git a/perl-install/share/po/az.po b/perl-install/share/po/az.po
index fb71a4b28..502ff3346 100644
--- a/perl-install/share/po/az.po
+++ b/perl-install/share/po/az.po
@@ -1,11 +1,13 @@
-# Azerbaijani Turkish translation of DrakX
-# Copyright (C) 1999 MandrakeSof
-# Vasif Ismailoglu MD <azerb_linux@hotmail.com>, 2000
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) 2000 Free Software Foundation, Inc.
+# Copyright (c) 2000 MandrakeSoft
+# Vasif Ismailoglu MD<azerb_linux@hotmail.com> , 2000-2001
+#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2001-06-09 23:30GMT +0200\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2001-09-01 22:26GMT +0200\n"
"Last-Translator: Vasif İsmayıloğlu MD <azerb_linux@hotmail.com>\n"
"Language-Team: Azerbaijani Turkish <linuxaz@azerimal.net>\n"
"MIME-Version: 1.0\n"
@@ -13,24 +15,56 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 0.8\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Bütün başlıqları ayrı ayrı quraşdır"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Xinerama ifadələrini işlət"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Təkcə \"%s\" kartını qur (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+#, fuzzy
+msgid "64 MB or more"
+msgstr "16 MB və ya daha çox"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Bir X vericisi seçin"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X verici"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Çoxlu Başlıq quraşdırılması"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -38,43 +72,44 @@ msgstr ""
"Sizin sisteminiz çoxlu başlıq quraşdırmasını dəstəkləyir.\n"
"Nə etmək istəyirsiniz?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Ekran kartÄą"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Ekran kartınızın yaddaş böyüklüyünü seçin"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Ekran kartĹnĹzĹ seçin"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "XFree quraşdırılması"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Bir X vericisi seçin"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Necə bir XFree qurğusunu istəyirsiniz?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X verici"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Bütün başlıqları ayrı ayrı quraşdır"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Bir X vericisi seçin"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Xinerama ifadələrini işlət"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X verici"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Təkcə \"%s\" kartını qur (%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Necə bir XFree qurğusunu istəyirsiniz?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "3D avadanlıq sür'ətləndirməsi ilə XFree %s"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -86,32 +121,17 @@ msgstr ""
"Sizin kartınıza XFree %s tərəfindən dəstək verilir ve bu 2D üçün daha yaxşı "
"bir fikir olar."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Sizin kartınızın XFree %s ilə 3D dəstəyi ola bilər."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "3D avadanlıq sür'ətləndirməsi ilə XFree %s"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Sizin kartınızın XFree %s ilə 3D dəstəyi ola bilər.\n"
-"DİQQƏT! BU SINAQ MƏRHƏLƏSINDƏDIR VƏ KOMPÜTERİNİZ DONDURA BILƏR."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "SINAQ MƏRHƏLƏSİNDƏKİ 3D sür'ətləndirmə dəstəkli XFree %s"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -125,31 +145,58 @@ msgstr ""
"Sizin kartınıza XFree %s tərəfindən dəstək verilir ve bu 2D üçün daha yaxşı "
"bir seçki olar."
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
+"Sizin kartınızın XFree %s ilə 3D dəstəyi ola bilər.\n"
+"DİQQƏT! BU SINAQ MƏRHƏLƏSINDƏDIR VƏ KOMPÜTERİNİZ DONDURA BILƏR."
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree quraşdırılması"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Ekran kartınızın yaddaş böyüklüyünü seçin"
+#: ../../Xconfig/card.pm_.c:445
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "X verici üçün seçənəkləri göstərin"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Mövcud qurğuları saxlayım?\n"
+"Hal-hazırkı qurğular:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Monitorunuzu seçin"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "XĂźsusi"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Ümumi"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Geri al"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -167,512 +214,326 @@ msgstr ""
"seçməməyiniz çox vacibdir, əks halda monitor zərər görər.\n"
"Seçərkən bir qərarsızlığa düşərsəniz, alçaq rezolyusiya seçin."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Üfüqi yeniləmə sür'əti"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Şaquli yeniləmə sür'əti"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor qurulmayÄąb"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Ekran kartı hələ qurulmayıb"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Rezolyusiya hələ seçilməyib"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Qurğuları sınamaq istəyirsiniz?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Diqqət: Bu qrafika kartı ilə ediləcək sınaq təhlükəlidir"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Qurğuların sınağı"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 rəng (8 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"bə'zi parametrləri dəyişdirin"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 min rəng (15 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Bir xəta oldu:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 min rəng (16 bits)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "%d saniyə sonra çıxılacaq"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 milyon rəng (24 bits)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Bu qurğular doğrudur?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 milyard rəng (32 bits)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Bir xəta oldu, parametrləri dəyişdirin"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Rezolyusiyalar"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Rezolyusiya"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Rezolyusiya və rəng dərinliyini seçin"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Ekran kartÄą: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 verici: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Daha Çox"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Ləğv et"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Oldu"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Usta Modu"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Hamısını Göstər"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Qurğuları sınamaq istəyirsiniz?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Rezolyusiyalar"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Qurğuların sınağı"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Klavatura düzülüşü: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Siçan nÜvß: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Siçan avadanlığı: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Monitorun Şaquli Daraması: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Monitorun Üfüqi Yeniləməsi: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Ekran kartÄą: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Ekran kartÄą: %s\n"
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Ekran kartı yaddaşı: %s KB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Rəng dərinliyi: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Rezolyusiya: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 verici: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 sĂźrĂźcĂź: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "X-Window qurğuları hazırlanır"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Nə etmək istəyirsiniz?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Monitoru Dəyişdir"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Ekran kartını dəyişdir"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Verici seçənəklərini dəyişdir"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Rezolyusiyanı Dəyişdir"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Mə'lumatı göstər"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Yenidən sına"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Çıx"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Mövcud qurğuları saxlayım?\n"
-"Hal-hazırkı qurğular:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X ilə Açılış"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Kompüterinizi avtomatik olaraq X ilə açılması üçün qura bilərəm.\n"
"Açılışda X Window ilə başlamaq istəyirsiniz?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "\"%s\"a(ə) təkrar girin və dəyişiklikləri fəallaşdırın"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Lütfen çıxın və Ctrl-Alt-BackSpace düymələrinə basın"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 rəng (8 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 min rəng (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 min rəng (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milyon rəng (24 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 milyard rəng (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-#, fuzzy
-msgid "64 MB or more"
-msgstr "16 MB və ya daha çox"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standart VGA, 60 Hz-də 640x480 "
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 56 Hz-də 800x600"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 Uyğun, 87 Hz-də titrəşimli 1024x768 (800x600 yox)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 87 Hz-də titrəşimli 1024x768, 56 Hz-də 800x600"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Təkmilləşdirilmiş Super VGA, 60 Hz-də 800x600, 72 Hz-də 640x480"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Titrəşimsiz SVGA, 60 Hz-də 1024x768, 72 Hz-də 800x600"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Yüksək Frekanslı SVGA, 70 Hz-də 1024x768"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Çoxlu Frekansa qadir 60 Hz-də 1280x1024"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Çoxlu Frekansa qadir 74 Hz-də 1280x1024"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Çoxlu Frekansa qadir 76 Hz-də 1280x1024"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "70 Hz də 1600x1200 qadir Monitor"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "76 Hz də 1600x1200 qadir Monitor"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Açılış qisminin ilk sektoru"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Diskin ilk sektoru (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "SILO Qurulumu"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Sistem yükləyicisini haraya qurmaq istəyirsiniz?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "LILO/grup Qurulumu"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "Mətn menyulu LILO"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "Qrafiki menyulu LILO"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "DOS/Wİndowsdan açĹl (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Sistem yükləyicisi ana seçənəkləri"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "İstifadə ediləcək Açılış idarəcisi"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Açılış yükləyici quruluşu"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Açılış avadanlığı"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (köhnə BIOSlarda işləməz)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Bəsit"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "bəsit"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Ekran modu"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Açılışda gecikmə müddəti"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Parol"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Parol (təkrar)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Əmr sətiri seçənəklərini məhdudlaşdır"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "məhdudlaşdır"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "/tmp-i hər açılışda təmizlə"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Ümumi yaddaş miqdarı (%d MB tapıldı)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Birdən artıq profilə icazə ver"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Yaddaş miqdarını Mb cinsindən verin"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"``Əmr sətiri seçənəklərini məhdudlaşdır`` seçənəyi parolsuz bir işə yaramaz"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Xahiş edirik təkrar sınayın"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Parollar uyğun gəlmir"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Ä°nit Ä°smarÄącÄą"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Firmware Gecikməsini Aç"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Çəkirdək Açılışı Vaxt Dolması"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "CDdən Açılışı Fəallaşdırım?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "OF Açılışı Fəallaşdırım?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Əsas OS"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -681,83 +542,83 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Buradakı bir birindən fərqli seçənəklərə yenilərini əlavə edə bilər,\n"
"ya da mövcud olanları dəyişdirə bilərsiniz."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Əlavə et"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "QurtardÄą"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Təkmilləşdir"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Ne cür bir giriş istəyirsiniz?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linuks"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Digər sistemlər (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Digər sistemlər (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Digər sistemlər (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Əks"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "KĂśk"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Sonuna əlavə et"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Oxu-yaz"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Cədvəl"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "E'tibarsÄąz"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Etiket"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Əsas"
@@ -790,53 +651,75 @@ msgstr "Bir swap sahəsinə ehtiyacınız var"
msgid "This label is already used"
msgstr "Bu etiket istifadə edilməz"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "%s %s ara ĂźzĂź tapÄąldÄą"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Başqa var?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Heç %s ara ßzß var?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Xeyr"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Bəli"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Avadanlıq mə'lumatına bax"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "%s kartı (%s) üçün sürücü yüklənir"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"İstəsəniz indi %s modulunun parametrlərini göstərə bilərsiniz.\n"
+"Parametrlər``ad=qiymət ad2=qiymət2...'' şəklində olmalıdır.\n"
+"Məsələn ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Modul seçənəkləri:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "HansÄą %s sĂźrĂźcĂźsĂź sÄąnansÄąn?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -853,37 +736,15 @@ msgstr ""
"Bə'zən tanımlama kompüterinizi dondura bilər amma donduğu üçün\n"
"kompüterinizə heç bir şey olmaz."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Avtomatik yoxla"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Seçənəkləri göstər"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"İstəsəniz indi %s modulunun parametrlərini göstərə bilərsiniz.\n"
-"Parametrlər``ad=qiymət ad2=qiymət2...'' şəklində olmalıdır.\n"
-"Məsələn ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Modul seçənəkləri:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -892,51 +753,56 @@ msgstr ""
"%s modulunun yüklənməsi iflas etdi.\n"
"Yenidən başqa bir parametr ilə sınamaq istəyirsiniz?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(%s artıq əlavə edilmişdir)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Zəif parol seçdiniz!"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Xahiş edirik bir istifadəçi adı alın"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"İstifadəçi adında sadacə kiçik hərflər, rəqəmlər, `-' və `_' xarakterləri "
"ola bilər"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Bu istifadəçi adı artıq vardır"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Bu istifadəçi adı artıq vardır"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "İstifadəçini əlavə et"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -945,32 +811,32 @@ msgstr ""
"Bir istifadəçi girin\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "İstifadəçini qəbul et"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Həqiqi adı"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "İstifadəçi adı"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "QabÄąq"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Timsal"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Avtomatik Giriş"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -979,123 +845,103 @@ msgstr ""
"Kompüterinizi avtomatik olaraq bir istifadəçi ilə başlada bilərəm.\n"
"İstəmirsiniz isə rədd edin."
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Əsas istifadəçini seçin:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "İstifadə etmək istədiyiniz pəncərə idarəçisini seçin:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr "Qurulumdan sonra istifadə edə biləcəyiniz başqa dillər seçə bilərsiniz"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "HamÄąsÄą"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr "İstifadəçi əlavə et"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "XĂźsusi"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr "CUPS başlayır"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Bu paket yenilənməlidir\n"
"Sistemdən çıxarmaq mövzusunda ciddisiniz?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Ləğv et"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Krakerlərə xoşgəlmişsiniz"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Zəif"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Standart"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Yüksək"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Yüksək"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Şübhəci"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1106,7 +952,7 @@ msgstr ""
"işlədiləcək, ancaq xətalara qarşı da həssaiyyəti də artacaqdır. İnternetə \n"
"bağlı isəniz bunu tövsiyə etmirik. Parol ilə girilir."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1114,7 +960,7 @@ msgstr ""
"Parollar fəallaşdırıldı, yenə də bir şəbəkə üstündə istifadə edilməməsi "
"tövsiyə edilir."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1123,62 +969,63 @@ msgstr ""
"İnternetə bağlı bir kompüter üçün standart və tövsiyə edilən bir "
"təhlükəsizlik səviyyəsidir."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Bu təhlükəsizlik səviyyəsiylə sistemin bir verici olaraq istifadəsi "
"mĂźmkĂźndĂźr. \n"
"Təhlükəsizlik, birdən çox alıcının bağlanmasına icazə verəcək şəkildə "
"artırılmışdır. "
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Biz dördüncü səviyyə haqlarını verdik və sistem xarici bağlantılara qarşı "
"tamamilə qapalıdır.\n"
"Təhlükəsizlik səviyyəsi indi ən üstdədir."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Təhlükəsizlik səviyyəsini seçin"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
#, fuzzy
msgid "Security level"
msgstr "Təhlükəsizlik səviyyəsinin quraşdırılması"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
#, fuzzy
msgid "Use libsafe for servers"
msgstr "X verici üçün seçənəkləri göstərin"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1203,7 +1050,7 @@ 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_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Emeliyyat sistemi secici GRUB'a xos gəlmissiniz!"
@@ -1217,7 +1064,7 @@ msgstr "Emeliyyat sistemi secici GRUB'a xos gəlmissiniz!"
#
#. -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_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "%c ve %c duymeleri ile isÄąqlandÄąrÄąlmÄąs girisleri sece bilersiniz"
@@ -1232,7 +1079,7 @@ msgstr "%c ve %c duymeleri ile isÄąqlandÄąrÄąlmÄąs girisleri sece bilersiniz"
#
#. -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_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Sistemi secili emeliyyat sistemiyle acmaq ucun entere,"
@@ -1246,7 +1093,7 @@ msgstr "Sistemi secili emeliyyat sistemiyle acmaq ucun entere,"
#
#. -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_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr ""
"acilisdan evvel emrleri duzeltmək ucun 'e', emr setiri ucun ise 'c' basin"
@@ -1261,27 +1108,27 @@ 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_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Isaretli secenek %d saniye icinde sistemi acacaq."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "/boot içində lazımi yer yoxdur"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Masa Üstü"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Başlama Menyusu"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Sistem yükləyicisini haraya qurmaq istəyirsiniz?"
@@ -1294,17 +1141,21 @@ msgstr "hələlik yardım sistemi mövcud deyildir.\n"
msgid "Boot Style Configuration"
msgstr "Qurulum Tərzi Quraşdırılması"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Fayl"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
-msgstr "/Fayl/Çı_x"
+msgstr "/Fayl/_Çıx"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
-msgstr "<control>x"
+msgstr "<control>Q"
#: ../../bootlook.pm_.c:91
msgid "NewStyle Categorizing Monitor"
@@ -1337,14 +1188,14 @@ msgstr "Yaboot modu"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Açılış İdarəçisi olaraq hazırda %s işlədirsiniz.\n"
"Quraşdırma sehirbazını başlatmaq üçün tıqlayın."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Qur"
@@ -1354,7 +1205,7 @@ msgid "System mode"
msgstr "Sistem modu"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Açılışda X-Window sistemini başlat"
#: ../../bootlook.pm_.c:148
@@ -1366,14 +1217,16 @@ msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
"Bəli, bu istifadəçi üçün avtomatik giriş istəyirəm (istifadəçi, masa üstü)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "Oldu"
@@ -1422,7 +1275,7 @@ msgstr "Artıq bölmə əlavə edilə bilməz"
msgid "Screenshots will be available after install in %s"
msgstr "Qurulumdan sonra istifadə edə biləcəyiniz başqa dillər seçə bilərsiniz"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
#, fuzzy
msgid "France"
msgstr "FransÄązca"
@@ -1431,7 +1284,7 @@ msgstr "FransÄązca"
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Belçika dili"
@@ -1460,11 +1313,12 @@ msgstr "Norveçcə"
msgid "Sweden"
msgstr "İsveçcə"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr "Ä°talyanca"
@@ -1474,7 +1328,7 @@ msgstr "Ä°talyanca"
msgid "Austria"
msgstr "serial"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1482,8 +1336,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr "Əvvəlcə datanızın yedəyini alın"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Diqqətlə Oxuyun!"
@@ -1496,11 +1350,12 @@ msgstr ""
"Aboot istifadə etməyi istəyirsinizsə, boş disk sahəsi (2048 sektor bəsdir.)\n"
"buraxmayÄą unutmayÄąn."
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Xəta"
@@ -1508,11 +1363,11 @@ msgstr "Xəta"
msgid "Wizard"
msgstr "Sehirbaz"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Monitorunuzu seçin"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1525,78 +1380,78 @@ msgstr ""
"tövsiyə edirik. Əvvəlcə bölmənin üstünə, sonra \"Böyüklüyü\n"
"Dəyişdir\" düyməsinə tıqlayın"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Ətraflı"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
#, fuzzy
msgid "Journalised FS"
msgstr "bağlama iflas etdi"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Boş"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Digər"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Fayl sistemi nĂśvĂź:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Yarat"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "NĂśv"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Yerinə ``%s'' işlət"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Sil"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Əvvəlcə ``Ayır'-ı işlət"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1604,106 +1459,111 @@ msgstr ""
"%s bölməsinin növünü dəyişdirdikdən sonra, bu bölmədəki bütün mə'lumatlar "
"silinəcəkdir"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose a partition"
msgstr "Monitorunuzu seçin"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose another partition"
msgstr "Yeni bölmə yarat"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Usta moduna keç"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Normal moda keç"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Geri al"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Davam edilsin?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Qeyd etmədən Çıx"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Bölmə cədvəlini qeyd etmədən çıxırsınız?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Qurğuları sınamaq istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Avtomatik ayÄąr"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Hamısını təmizlə"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Daha Çox"
+
+#: ../../diskdrake/interactive.pm_.c:263
#, fuzzy
msgid "Hard drive information"
msgstr "Sabit disk seçkisi"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Bütün birinci bölmələr istifadədədir"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Artıq bölmə əlavə edilə bilməz"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr "Artıq bölmə yaratmaq üçün, bir bölməni silib məntiqi bölmə yaradın"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr "Bölmə cədvəlini yaz"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr "Bölmə cədvəlini qurtar"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Bölmə cədvəlini qurtar"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr "Bölmə cədvəlini qurtar"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Removable media automounting"
msgstr "Taxılıb sökülə bilən avadanlıqların avtomatik bağlanması"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Fayl seç"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1711,11 +1571,11 @@ msgstr ""
"Yedək bölmə cədvəli eyni böyüklüyə sahib deyil\n"
"Davam etmək istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Xəbərdarlıq"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1723,124 +1583,131 @@ msgstr ""
"Disket sürücüyə bir disket yerləşdirin\n"
"Bu disketdəki bütün mə'lumatlar yox olacaqdır"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Bölmə cədvəli qurtarılmağa cəhd edilir"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
#, fuzzy
msgid "Detailed information"
msgstr "Mə'lumatı göstər"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Bağlama nöqtəsi"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Seçənəklər"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Böyüklüyünü Dəyişdir"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Daşı"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Şəkilləndir"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Bağla"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "RAIDə əlavə et"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "LVMə əlavə et"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "AyÄąr"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "RAIDdən ayır"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "LVMdən ayır"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "RAIDi dəyişdir"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Loopback üçün istifadə et"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Yeni bölmə yarat"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Başlanğıç sektoru: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "MB cinsindən böyüklük: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Fayl sistemi nĂśvĂź: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Bağlama nöqtəsi: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Xüsusiyyətlər: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+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/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Loopback faylı şəkilləndirilir: %s"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Bölmə növünü Dəyişdir"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Hansı dili istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "%s loopback avadanlığını haraya bağlamaq istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "%s avadanlığını haraya bağlamaq istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1849,132 +1716,139 @@ msgstr ""
"nöqtəsindən ayrıla bilinmir.\n"
"Əvvəlcə loopback-ı ləğv edin."
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Fat fayl sistemi uclarÄą hesaplanÄąr"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Böyüklüyü dəyişdirilir"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Hansı bölmə növünü istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Bu bölmədəki bütün mə'lumatlar yedəklənməlidir"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"%s bölməsi böyüklüyü dəyişdirildirkdən sonra bu bölmədəki bütün mə'lumatlar "
"silinəcəkdir"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Yeni bÜyßklßk seçin"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
#, fuzzy
msgid "New size in MB: "
msgstr "MB cinsindən böyüklük: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Hansı diskə daşımaq istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Hansı sektora daşımaq istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Daşınır"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Bölmə daşınır..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Əlavə etmək üçün mövcud bir RAID seçin"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "yeni"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Əlavə etmək üçün mövcud bir LVM seçin"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "LVM adÄą?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Bu disk bölməsi loopback üçün işlədilməz"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Loopback fayl adÄą: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr "Həqiqi adı"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr ""
"Fayl başqa bir loopback tərəfindən istifadədədir, başqa\n"
"birini seçin"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Fayl onsuz da vardır. İşlədilsin?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
#, fuzzy
msgid "Mount options"
msgstr "Modul seçənəkləri:"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "avadanlÄąq"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "səviyyə"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "parça bÜyßklßyß"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Diqqətlı olun: bu əməliyyat təhlükəlidir."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Nəcə bölməlandirmə istəyirsən?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr ""
+"Bu paket yenilənməlidir\n"
+"Sistemdən çıxarmaq mövzusunda ciddisiniz?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1986,7 +1860,7 @@ msgstr ""
"ehtiyacınız yoxdur və ya LILO istifadəsini sınayarsınız, ancaq LILO işləməyə "
"bilər."
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1998,7 +1872,7 @@ msgstr ""
"istəyirsinizsə, \n"
"/boot bölməsini əlavə edərkən çox diqqətli olmalısınız."
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2009,132 +1883,132 @@ msgstr ""
"Əgər lilo ya da grub istifadə etmək istəyirsinizsə, bir /boot bölməsi\n"
"əlavə etməyi unutmayın"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "%s sürücüsünün bölmə cədvəli diskə yazılacaq!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Yeni qurğuların fəallaşmağı üçün sistemi yenidən başlatmalısınız"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"%s bölməsi şəkilləndirildikdən sonra bu bölmədəki bütün mə'lumatlar "
"silinəcəkdir"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Şəkilləndirilir"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Loopback faylı şəkilləndirilir: %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Şəkilləndirilən bölmə: %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Hide files"
msgstr "mkraid iflas etdi"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr "Yeni bölmələr üçün boş sahə yoxdur"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Yeni bölmələr üçün boş sahə yoxdur"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Rezolyusiya: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "AvadanlÄąq: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS sürücü hərfi: %s (sadəcə təxmini)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "NĂśv: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Ad: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Başlanğıc: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "BĂśyĂźklĂźyĂź: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sektor"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Silindr %d -dən silindr %d-yə\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Şəkilləndirilmiş\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Şəkilləndirilməmiş\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Bağlı\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2143,7 +2017,7 @@ msgstr ""
"Loopback faylÄą:\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2151,27 +2025,27 @@ msgstr ""
"Ana açılma bölməsi\n"
" (MS-DOS açılışı üçün)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Səviyyə %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Parça bÜyßklßyß %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-diskləri %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback faylÄą adÄą: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2182,7 +2056,7 @@ msgstr ""
"Bəlkə də bu bir Sürücü bölməsidir.\n"
"Onda bunu ele beləcə buraxın.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2193,64 +2067,64 @@ msgstr ""
"Bu, ikili açılış üçün xüsusi\n"
"Bootstrap-dÄąr.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "BĂśyĂźklĂźk: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometriyası: %s silindr, %s baş, %s sektor\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Mə'lumat: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-diskləri %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Bölmə cədvəli növü: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "%d data yolunda, %d nĂś'li\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Seçənəklər: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Fayl sistemi nĂśvĂź: "
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Bu parol çox sadədir (en az %d xarakter boyunda olmalıdır)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Parollar uyğun gəlmir"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2261,36 +2135,66 @@ msgstr "Bölmə növünü Dəyişdir"
#: ../../diskdrake/removable_gtk.pm_.c:28
#, fuzzy
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "TanÄątma"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Ä°nternet"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "İstifadəçi adı"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "İstifadəçi adı"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS sahəsi"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "DNS verici"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s şəkilləndirilməsində %s bölmə xətası"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "%s'i necə şəkilləndirəcəyimi bilmirəm (Növ: %s)"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "%s ayrılırkən xəta oldu: %s"
@@ -2307,69 +2211,323 @@ msgstr ""
msgid "server"
msgstr "verici"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "16MB dən kiçik disk bölmələrində JFS istifadə etməlisiniz"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "32MB dən kiçik disk bölmələrində ReiserFS istifadə etməlisiniz"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Bağlama nöqtələri / ilə başlamalıdır"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Onsuz da bağlama nöqtəsi %s olan bir bölmə var\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "%s üçün LVM Məntiqi Cildini istifadə edə bilməzsiniz"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Bu qovluq kök fayl sistemi içərisində olmalıdır"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Bu bağlama nöqtəsi üçün həqiqi bir fayl sisteminə (ext2, reisrfs)\n"
"ehtiyac vardÄąr.\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "%s üçün LVM Məntiqi Cildini istifadə edə bilməzsiniz"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Avtomatik yerləşdirmə üçün boş sahə yoxdur"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Yazmaq üçün açılan %s'də xəta: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Bir xəta oldu. Yeni fayl sisteminin yaradılacağı hökmlü bir sürücü "
"tapılmadı. Bu problemin qaynağı üçün avadanlığınızı yoxlayın"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Heç disk bölməniz yoxdur!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Avtomatik təsbit işlət"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Ümumi"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Kart mem (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Şəkilləndirilir"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Bölmə növünü Dəyişdir"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Çıx"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Kömək"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Kömək"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Kömək/_Haqqında..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Siçan"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Kart mem (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Ləğv et"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Siçan"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Ä°zah"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "TanÄątma"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Fayl seç"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Keçit avadanlığı"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 düyməli"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Sabit disk seçkisi"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Avadanlıq mə'lumatına bax"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Mə'lumatı göstər"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Siçan qurğuları"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "%s qapÄąsÄąnda tapÄąldÄą"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Xahiş edirik gözləyin"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d saniyə sonra çıxılacaq"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "CUPS sĂźrĂźcĂź datasÄą oxunur..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Avtomatik yoxla"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2383,7 +2541,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2488,9 +2646,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2681,7 +2838,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2693,9 +2850,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2742,21 +2898,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2772,9 +2927,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Bu nöqtədə Linuks Mandrakeni sabit diskinizdə haraya quracağınıza\n"
"qərar verəcəksiniz. Əgər diskiniz boş isə və ya bir başqa sistem\n"
@@ -2843,9 +2998,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -2991,38 +3145,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3196,11 +3344,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3253,7 +3401,7 @@ msgstr ""
" çıxa bilmək çox zəhmətli olur. Ona görə də nə etdiyinizi bilirsəniz, bu "
"sinifi seçin."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3268,7 +3416,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3283,7 +3431,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3299,7 +3447,7 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
#, fuzzy
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
@@ -3308,23 +3456,23 @@ msgstr ""
"Xahiş edirik doğru qapını seçin. Məsələn, MS Windowsdakı COM1'in qarşılığı\n"
"Linuksda ttyS0'dÄąr."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3346,7 +3494,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3368,7 +3516,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3376,7 +3524,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3397,7 +3545,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
#, fuzzy
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
@@ -3419,7 +3567,7 @@ msgstr ""
"bilərlər.\n"
"Parametrlər mövzusunda diqqətli olun."
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3431,29 +3579,28 @@ msgstr ""
"\n"
"Nə etdiyinizi bilmirsinizsə, \"Diskin ilk sektoru (MBR)\" seçin."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3462,7 +3609,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
#, fuzzy
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
@@ -3488,7 +3635,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"DrakX PCI SCSI adapterleri axtarmağa cəhd edəcək. Əgə DrakX SCSI\n"
@@ -3517,7 +3664,7 @@ msgstr ""
"ya da Microsoft Windowsdan (Əgər sisteminizdə qurulu isə)\n"
"mə'lumat alın."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
#, fuzzy
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
@@ -3528,9 +3675,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3542,7 +3688,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" 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"
@@ -3632,7 +3778,7 @@ msgstr ""
"TAB ilə açılış seçkilərinə baxdığınız vaxt \n"
"'*' işarətilə işıqlandırılacaqdır."
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
#, fuzzy
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
@@ -3660,9 +3806,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -3710,10 +3855,10 @@ msgstr ""
" - Ana OS: OF gecikməsi müddəti dolduğu vaxt hansı OSnin açılacağını "
"göstərir."
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3721,12 +3866,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3742,7 +3886,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
#, fuzzy
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
@@ -3753,7 +3897,7 @@ msgstr ""
"Diqqətli olun, sürücüdəki bütün mə'lumatlar silinəcək\n"
"və geri gəlməyəcək."
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
#, fuzzy
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
@@ -3773,7 +3917,7 @@ msgstr ""
"Bölmədəki mə'lumatları qoruyaraq \"Ləğv et\" düyməsinə\n"
"əməliyyatı ləğv edə bilərsiniz."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3781,12 +3925,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3810,20 +3954,20 @@ msgstr ""
"\n"
"Bu vericiləri qurmaq istəyirsiniz?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "NİS domeyni olmadan translasiya işlədilə bilməz"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "%s sürücüsünə FAT şəkilləndirilmiş bir disket taxın"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Bu floppi FAT şəklində deyildir"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3831,7 +3975,7 @@ msgstr ""
"Bu saxlanmış paketlər seçkisini işlətmək üçün qurulumu ``linux "
"defcfg=floppy''ilə başladın."
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "%s faylı oxunurkan xəta oldu"
@@ -3863,67 +4007,67 @@ msgstr "Bir swap sahəsinə ehtiyacınız var"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
"Bir swap sahəniz yoxdur\n"
"Davam edim?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Bir swap sahəsinə ehtiyacınız var"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Boş sahəni istifadə et"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Yeni bölmələr üçün boş sahə yoxdur"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Var olan bölmələri işlədimmi"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Bölmə cədvəli qurtarılmağa çalışılır"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Loopback üçün Windows bölməsini işlət"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Linuks4Win'i qurmaq üçün hansı disk bölməsini istifadə edəcəksiniz?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Böyüklüklərini seçin"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Kök (root) bölməsi böyüklüyü (Mb): "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Swap sahəsi böyüklüyü (Mb): "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Windows bölməsindəki boş sahəni işlət"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Hansı bölmənin böyüklüyünü dəyişdirəcəksiniz?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Fat fayl sistemi uclarÄą hesaplanÄąr"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -3932,13 +4076,16 @@ msgstr ""
"FAT tədqiqatçımız sizin bölümləri işlədə bilmir,\n"
"bu xəta oldu: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"Sizin Windows bölümü çox dağınıqdır. Daxiş edirik, əvvəlcə birləşdirin "
"(defraq)"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -3958,56 +4105,56 @@ msgstr ""
"ArdÄąndan quruluma \n"
"davam edin. Verilərinizin yedəyini almağı da unutmayın!"
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Hansı sektora daşımaq istəyirsiniz?"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "bölmə %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT böyüklüyü dəyişdirilməsi bacarılmadı: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr "FAT bölməsi yoxdur ya da loopback üçün lazımi yer buraxılmayıb"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "BĂźtĂźn diski sil"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "\"Windows\"u sil"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
"Sizin birdən çox diskiniz var, linux qurmaq üçün hansını istifadə "
"edəcəksiniz?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"%s bölüməsinin böyüklüyü dəyişdirildikdən sonra bu bölmədəki bütün "
"mə'lumatlar silinəcəkdir"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Hazırkı disk bölmələndirməsi"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Fdisk istifadə et"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4016,11 +4163,11 @@ msgstr ""
"İndi %s sabit diskinizi bölmələndirə bilərsiniz\n"
"İşinizi bitirdiyinizdə `w' ilə qeyd etməyi unutmayın"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Heç Windows disk bölməniz yoxdur!"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Artıq bölmə əlavə edilə bilməz"
@@ -4028,16 +4175,16 @@ msgstr "Artıq bölmə əlavə edilə bilməz"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX bölmə sehirbazı bu yolu tapdı:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Bölmə cədvəli növü: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Şəbəkə fəallaşdırılır"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Şəbəkə dayandırılır"
@@ -4049,12 +4196,12 @@ msgstr ""
"Bir xəta oldu, fəqət necə düzəldiləcəyini bilmirəm.\n"
"Davam edin, riski sizə aitdir!"
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "%s bağlama nöqtəsini çoxalt"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4066,12 +4213,12 @@ msgstr ""
"Əvvəldən Linuks qurulu bir sistemdə \"rpm -qpl Mandrake/RPMS/*.rpm\"'yi\n"
"istifadə edərək Cd-Rom'u yoxlayın.\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "%s Sisteminə Xoşgəlmişsiniz"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Disket sĂźrĂźcĂź yoxdur"
@@ -4081,9 +4228,9 @@ msgstr "Disket sĂźrĂźcĂź yoxdur"
msgid "Entering step `%s'\n"
msgstr "Başlanğıc addımı `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4094,198 +4241,156 @@ msgstr ""
"dəCDROMdan başlatdığınız zaman,\n"
" 'F1'ə basın və 'text' yazaraq enter'ə basın."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Qurulum Sinifi"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Xahiş edirik aşağıdakı qurulum siniflərindən birisini seçiniz:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Seçdiyiniz paket qruplarının ümumi böyüklüyü təximən %d MBdır.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Bu böyüklükdən daha azını yükləmək istəsəniz,\n"
-"qurmaq istədiyiniz paket faizini seçin.\n"
-"100%%'i seçərsəniz bütün paketlər qurulacaqdır."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Sabit diskinizdə bu paketlərin sadəcə olaraq %d%%'sini quracaq qədər yer "
-"var.\n"
-"Bundan daha azını qurmaq istəsəniz,\n"
-"daha az bir faiz sadəcə ən vacib paketləri ;\n"
-"%d%% isə qurula biləcək bütün paketləri quracaqdır."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Sonrakı addımda daha geniş bir seçki qabağınıza gələcəkdir."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Qurulacaq paketlərin faizi"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Paket Qrup Seçkisi"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Fərdi paket seçkisi"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ümumi böyüklük: %d / %d Mb"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Xətalı paket"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Ad: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Buraxılış: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "BĂśyĂźklĂźyĂź: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Əhəmiyyət: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "Bu paketi seçə bilməzsiniz, çünki qurmaq üçün yer çatmır."
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Aşağıdakı paketlər qurulacaqdır"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Aşağıdakı paketlər sistemdən silinəcəklər"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Bu paketi seçə bilməzsiniz/sistemdən çıxarda bilməzsınız"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Bu lazımlı bir paketdir, sistemdən çıxardıla bilməz"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Bu paketi sistemdən çıxarda bilməzsınız. Artıq qurulmuşdur."
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Bu paket yenilənməlidir\n"
"Sistemdən çıxarmaq mövzusunda ciddisiniz?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Bu paketi sistemdən çıxarda bilməzsiniz. Yenilənməlidir"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Avtomatik seçili paketləri göstər"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Qurulum"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Disketə qeyd et"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
#, fuzzy
msgid "Updating package selection"
msgstr "Paket seçkilərini saxla"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
#, fuzzy
msgid "Minimal install"
msgstr "Qurulumdan çĹx"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Qurmaq istədiyiniz paketləri seçin"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Qurulur"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Təxmini olaraq hesaplanır"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Qalan müddət"
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Xahiş edirik gözləyin, qurulum hazırlanır"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d paket"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "%s paketi qurulur"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Qəbul Et"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Rədd Et"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4299,17 +4404,17 @@ msgstr ""
"\"%s\" adlı Cd-Romu sürücünüzə taxın və OLDU'ya basın.\n"
"Əgər Cd-Rom əlinizdə deyilsə bu Cd-Rom'dan qurmamaq üçün İMTİNA ET'ə basın."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Yenə də davam edək?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Paketləri istərkən bir xəta oldu:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Paketlər qurulurkən bir xəta oldu:"
@@ -4382,11 +4487,11 @@ msgstr "Bir xəta oldu"
msgid "Do you really want to leave the installation?"
msgstr "Şəbəkəni yenidən başlatmaq istəyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Lisenziya sözləşməsi"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4401,7 +4506,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -4519,7 +4624,7 @@ msgstr ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -4624,113 +4729,117 @@ msgstr ""
"Paris - France.\n"
"For any question on this document, please contact MandrakeSoft S.A. \n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Klaviatura"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Klaviatura quruluşunu seçiniz."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "BĂźtĂźn mĂśvcud klaviaturalarÄąn siyahÄąsÄą"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Hansı qurulum sinifini istəyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Qurulum/Güncəlləmə"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Bu bir qurulum mu, yoxsa güncəlləməmidir?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Tövsiyə edilən"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Usta"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade"
msgstr "Güncəlləmə"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr "Paket seçkilərini saxla"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Siçan QapĹsĹ"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Siçanınızın bağlı olduğu serial Qapıyı seçin."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Düymə emulyasiyası"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Düymə 2 emulyasiyası"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Düymə 3 emulyasiyası"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "PCMCIA kartlar qurulur..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "IDE qapÄąlarÄą qurulur"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "uyğun bölmə tapılmadı"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Bağlama nöqtələri üçün bölmələr daranır"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Bağlama nöqtələrini seçin"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4744,7 +4853,7 @@ msgstr ""
"\n"
"Bütün bölmələri itirmək istəyirsiniz?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4752,139 +4861,142 @@ msgstr ""
"DiskDrake bölmə cədvəlini oxumağı bacara bilmədi.\n"
"Özünüz davam edə bilərsiniz."
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Şəkilləndiriləcək disk bölmələrini seçin"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Kök (root) Bölməsi"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Sisteminizin kök (/) bölməsi hansıdır?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Bölmə cəvəlindəki dəyişikliklərin daxil olması üçün kompüterinizi yenidən "
"başlatmalısınız."
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Şəkilləndiriləcək disk bölmələrini seçin"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Xətalı bloklar sınansınmı?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Bölmələr şəkilləndirilir"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "%s faylı yaradılır və şəkilləndirilir"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Qurulumu bitirmək üçün lazımi sahə yoxdur, xahiş edirik əlavə edin"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Mövcud olan paketlər axtarılır."
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "Mövcud olan paketlər axtarılır."
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Güncəllənəcək paketlar tapılır"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Bu paketi sistemdən çıxarda bilməzsınız. Artıq qurulmuşdur."
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Sisteminizdə qurulum ya da güncəlləmə üçün lazımi boş yer yoxdur(%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "HamÄąsÄą (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Ən az (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Tövsiyə edilən (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
#, fuzzy
msgid "Load from floppy"
msgstr "Disketdən geri çağır"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Loading from floppy"
msgstr "Disketdən geri çağır"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Package selection"
msgstr "Paket Qrup Seçkisi"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "%s sürücüsünə bir disket taxın"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Disketə qeyd et"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Seçili bÜyßklßk var olandan daha bÜyßkdßr"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4895,16 +5007,16 @@ msgstr ""
"CD'lərdən bə'ziləi əksik isə, onları seçili vəziyyətdən çıxardıb OLDU'ya "
"basÄąn."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "\"%s\" adlÄą Cd-Rom"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Qurulum hazÄąrlanÄąr"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4913,23 +5025,23 @@ msgstr ""
"%s paketi qurulur\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Qurulum sonrası qurğular"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "%s sürücüsünə bir disket taxın"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "%s sürücüsünə boş bir disket yerləşdirin"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -4997,166 +5109,197 @@ msgstr ""
"USA\n"
"ĂźnvanÄąna yazÄąnÄąz."
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Əks ünvanına bağlantı qurulur"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Paketleri almaq üçün bir əks ünvanı seçin"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Əks ünvanına bağlantı qurulur"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Sisteminiz hansı məqsədlə istifadə ediləcək?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Avadanlıq saatınız GMT-yə göra quruludur mu?"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
#, fuzzy
msgid "NTP Server"
msgstr "NIS Verici"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Uzaq CUPS vericisi"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Çap Edicisiz"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Başqa var?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Mündəricat"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Siçan"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Vaxt Dilimi"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Çap Edici"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "ISDN kartÄą"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Səs kartı"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV kartÄą"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "NIS"
msgstr "NIS istifadə et"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "\"Windows\"u sil"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Local files"
msgstr "Yerli Çap Edici"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Root parolunu qur"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Parolsuz"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr "Bu parol çox sadədir (en az %d xarakter boyunda olmalıdır)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "TanÄątma"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
#, fuzzy
msgid "Authentication LDAP"
msgstr "TanÄątma"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "LDAP Server"
msgstr "Verici"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
#, fuzzy
msgid "Authentication NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS sahəsi"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS Verici"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "TanÄątma"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "NIS sahəsi"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NIS Verici"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -5187,19 +5330,19 @@ msgstr ""
"yerləşdirin\n"
"və \"OLDU\" basın."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Ä°lk disket sĂźrĂźcĂź"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Ä°kinci disket sĂźrĂźcĂź"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Nəzərə Alma"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5229,7 +5372,7 @@ msgstr ""
"və \"OLDU\" basın.\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5238,28 +5381,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Bağışlayın, disket sürücü yoxdur"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Açılış disketi yaratmaq üçün istifadə ediləcək disket sürücüyü seçin"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "%s sürücüsünə bir disket taxın"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Açılış disketi yaradılır"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Açılış yükləyici hazırlanır"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5267,11 +5410,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "aboot istifadə etmək istəyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5279,16 +5422,16 @@ msgstr ""
"aboot qurulumunda xata, \n"
"ilk disk bölməsini yox etsə belə yenə də qurulmasını istəyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
#, fuzzy
msgid "Installing bootloader"
msgstr "Sistem yükləyicini qur"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Açılış yükləyicisi qurulumu iflas etdi. Xəta:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, fuzzy, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5305,18 +5448,17 @@ msgstr ""
" Sonra da bunlarÄą yazÄąn: shut-down\n"
"Bir sonrakı başlanğıcda açılış yükləyicisi sətirini görməlisiniz."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "%s sürücüsünə boş bir disket yerləşdirin"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Avtomatik qurulum disketi hazÄąrlanÄąr"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5326,8 +5468,8 @@ msgstr ""
"\n"
"Həqiqətən də çıxmaq istəyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:1337
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1332
+#, fuzzy, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5338,7 +5480,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5352,11 +5494,15 @@ msgstr ""
"Sisteminizin qurğuları haqqında daha geniş bilgiyi Linuks Mandrake \n"
"İstifadəçi Kitabcığında tapa bilərsiniz."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Avtomatik qurulum disketi hazÄąrlanÄąr"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5370,15 +5516,15 @@ msgstr ""
"\n"
"Bu qurulumu takrar etmək istəyə bilərsiniz axı.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Avtomatlaşdırılmış"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Təkrarla"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Paket seçkilərini saxla"
@@ -5406,421 +5552,405 @@ msgstr ""
msgid "Choose a file"
msgstr "Monitorunuzu seçin"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Ətraflı"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Xahiş edirik gözləyin"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Mə'lumat"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Ağacı Aç"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Ağacı Qapat"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Otaq və grup sıralaması arasında gəz"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Xətalı tərcih, təkrar sınayın\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Seçkiniz? (əsas %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Seçkiniz? (əsas %s) "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Seçənəklər: %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr "aboot istifadə etmək istəyirsiniz?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Seçkiniz? (əsas %s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Çex dili (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Almanca"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Ä°spanca"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Fincə"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "FransÄązca"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norveçcə"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Polyakca"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Rusca"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "İsveçcə"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Ä°ngiliz (UK) klaviaturasÄą"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Amerikan (US) klaviaturasÄą"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Albanian"
msgstr "Farsca"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Ermenicə (köhnə) "
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Ermenicə (yazı maşını)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Ermenicə (fonetik)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azərbaycanca (latın)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belçika dili"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Ermenicə (fonetik)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Bulqarca"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brazilya dili (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Belarusca"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "İsveçcə (Alman sırası)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "İsveçcə (Fransız sırası)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Çex dili (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Almanca (ölü düymələr olmasın)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Danimarka dili"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norveçcə)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estoniya dili"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "GĂźrcĂź dili (\"Rus\" sÄąrasÄą)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "GĂźrcĂź dili (\"LatÄąn\" sÄąrasÄą)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Yunanca"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Macarca"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "XÄąrvatca"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Ä°srail"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Ä°srail (Fonetik)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Farsca"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Ä°zlandiya dili"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Ä°talyanca"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Yaponca 106 düyməli"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Koreya klaviaturasÄą"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "LatÄąn Amerika dili"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Litvaniya dili AZERTY (köhnə)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Litvanya dili AZERTY (yeni)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litvanya dili \"number row\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litvanya dili \"Fonetik\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
#, fuzzy
msgid "Latvian"
msgstr "Yeri"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Makedoniya dili"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Hollandiya dili"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Polyakca (QWERTY sÄąrasÄą)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Polyakca (QWERTZ sÄąrasÄą)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portuqalca"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "FransÄązca (Kanada/Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Rusca (Yawerty)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Rusca (Yawerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Rusca (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slovencə"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovakca (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovakca (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Azərbaycanca (kiril)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Cədvəl"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thai klaviatura"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Thai klaviatura"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Türkcə (ənənəvi \"F\" klaviatura)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Türkcə (müasir \"Q\" klaviatura)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukrayna dili"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Amerikan (US) klaviaturası (beynəlmiləl)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vyetnam dili \"numeric row\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Yugoslavca (latÄąn/kiril)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5833,7 +5963,31 @@ msgstr "Dairəvi bağlama %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Məntiqi ciltləri birinci olaraq sil\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Telefon nömrəsi"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Bölmə şəkilləndirilməsi"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5874,10 +6028,6 @@ msgstr "1 düymə"
msgid "Generic 2 Button Mouse"
msgstr "Sıravi 2 Düyməli Siçan"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Ümumi"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Çərx"
@@ -5942,38 +6092,54 @@ msgstr "heç biri"
msgid "No mouse"
msgstr "SiçansĹzs"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Siçanınızı işə salmaq üçün,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "TƏKƏRİ OYNADIN!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Qurtar"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "SonrakÄą ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Əvvəlki"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Doğrudur?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Mə'lumat"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Ağacı Aç"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Ağacı Qapat"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Otaq və grup sıralaması arasında gəz"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "İnternetə bağlan"
@@ -6020,7 +6186,7 @@ msgstr ""
"Sisteminizdə heç bir eternet şəbəkə adapteri tapıla bilmədi.\n"
"Bu bağlantı şəklini qura bilmərəm."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Şəbəkə ara üzünü seçin"
@@ -6033,7 +6199,7 @@ msgstr "İnternetə bağlanmaq üçün şəbəkə adapteri seçin."
msgid "no network card found"
msgstr "şəbəkə kartı tapılmadı"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Şəbəkə Qurğuları"
@@ -6048,15 +6214,15 @@ msgstr ""
"Məsələn``kompüteradı.sahəadı.com''.\n"
"Əgə şəbəkə keçidi istifadə edirsinizsə bunun da IP nömrəsini girməlisiniz."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Ev sahibi adÄą"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Şəbəkə Quraşdırılması Sehirbazı"
@@ -6104,7 +6270,7 @@ msgstr "ISDN quraşdırılması"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"İnternet xidmət vericinizi seçin.\n"
"Siyahıda deyilsə Siyahıda deyil'i seçin."
@@ -6127,14 +6293,14 @@ msgstr "BĂźtĂźn dĂźnya"
#: ../../network/isdn.pm_.c:185
#, fuzzy
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"BĂźtĂźn dĂźnya \n"
" D-Channel'lə xaric (kiralıq xətlər)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Hansı protokolu istifadə etmək istəyirsiniz?"
#: ../../network/isdn.pm_.c:199
@@ -6158,7 +6324,8 @@ 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"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"ISA kartınız var isə sonrakı ekrandakı qiymətlər doğru olmalıdır.\n"
@@ -6174,13 +6341,13 @@ msgid "Continue"
msgstr "Davam et"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "HansÄąsÄą sizin ISDN kartÄąnÄązdÄąr?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"ISDN PCI kart tapdım, amma növünü bilmirəm. Xahiş edirik sonrakı ekrandakı "
"kartlardan birini seçin."
@@ -6197,47 +6364,47 @@ msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
msgid "Dialup options"
msgstr "Çevirməli şəbəkə seçənəkləri"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Bağlantı adı"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Telefon nömrəsi"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Giriş adı"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr ""
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Skript əsaslı"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Terminal əsaslı"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Sahə(domain) adı"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Birinci DNS Vericisi (arzuya görə)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "İkinci DNS Vericisi (arzuya görə)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6246,7 +6413,7 @@ msgstr ""
"Bağlantınızı kəsə bilərsiniz. Ya da bağlantını yenidən də quraşdıra "
"bilərsiniz."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6254,11 +6421,11 @@ msgstr ""
"\n"
"Bağlantınızı yenidən quraşdıra bilərsiniz."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Artıq İnternetə bağlısınız."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6266,28 +6433,28 @@ msgstr ""
"\n"
"İstəsəniz İnternetə bağlana bilərsiniz ya da yeniden quraşdıra bilərsiniz."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Hələ İnternetə bağlı deyilsiniz."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Bağlan"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Bağlantını kəs"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "Şəbəkəni qur"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "İnternet bağlantısı & quraşdırılması"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
@@ -6295,7 +6462,7 @@ msgstr ""
"Bağlantınızı kəsə bilərsiniz. Ya da bağlantını yenidən də quraşdıra "
"bilərsiniz."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, fuzzy, c-format
msgid ""
"\n"
@@ -6310,12 +6477,12 @@ msgstr ""
"Bağlantınızı kəsə bilərsiniz. Ya da bağlantını yenidən də quraşdıra "
"bilərsiniz."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Şəbəkə quraşdırılması"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6326,9 +6493,9 @@ msgstr ""
"Şəbəkə/İnternet bağlantınızı yenidən quraşdırmaq üçün Oldu'ya yoxsa Ləğv "
"et'ə basın.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"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"
@@ -6338,93 +6505,99 @@ msgstr ""
"İnternet/Şəbəkə qurğularınızı edəcəyik.\n"
"Avtomatik təsbit istəmirsiniz isə işarəti qaldırın.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Qurulacaq profili seçin"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Avtomatik təsbit işlət"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Usta Modu"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "AvadanlÄąqlar tanÄąnÄąr..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Normal modem təsbiti"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "%s qapÄąsÄąnda tapÄąldÄą"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN Bağlantısı"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "%s tapÄąldÄą"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy
msgid "ADSL connection"
msgstr "Yerli Şəbəkə quraşdırılması"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "%s ara üzündə tapıldı"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Kabel bağlantısı"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "cable connection detected"
msgstr "Kabel bağlantısı"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "Yerli Şəbəkə quraşdırılması"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "eternet kart tapÄąldÄą"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "İstifadə edəcəyiniz vasitəni seçin"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
#, fuzzy
msgid "Internet connection"
msgstr "İnternet Bağlantısı Bölüşdürülməsi"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Bağlantınızı açılışda başlatmaq istəyirsiniz?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Şəbəkə quraşdırılması"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6435,7 +6608,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6445,7 +6618,7 @@ msgstr ""
"\n"
"Qurğular indi sisteminizə əlavə ediləcək.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6453,16 +6626,16 @@ msgstr ""
"Bu edildikdən sonra Xdən çıxmağınızı tövsiyyə edirik, yoxsa\n"
"verici adı xəsarətləri meydana gələ bilər."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"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."
@@ -6472,45 +6645,50 @@ msgstr ""
"OLDU ya basÄąn.\n"
"Aşağıdakı girişləri düzəltməniz özünü əvvəlki qurğuların üstünə yazacaqdır."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
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 "Xahiş edirik bu kompüter üçün IP qurğularını girin"
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "%s şəbəkə avadanlığı qurulur"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (sĂźrĂźcĂź %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP ĂźnvanÄą"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Avtomatlaşdırılmış IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Açılışda başladılır"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP ünvanı 1.2.3.4 şəklində olmalıdır"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6521,64 +6699,64 @@ msgstr ""
"Məsələn``kompüteradı.sahəadı.com''.\n"
"Əgər şəbəkə keçidi istifadə edirsinizsə bunun da IP nömrəsini girməlisiniz."
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS verici"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Keçit avadanlığı"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Vəkil vericilər quraşdırılması"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP vəkil verici"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP vəkil verici"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Vəkil verici http://... şəklində olmalıdır."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Vəkil verici ftp://... olmalıdır."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "İnternet qurğuları"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "İnternete girişi indi sınamaq istəyirsiniz?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Bağlantınız sınanır..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "İnternetə artıq bağlısınız"
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Təhlükəsizlik səbəbi ilə indi bağlantı qopacaqdır."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6586,115 +6764,120 @@ msgstr ""
"Sisteminiz İnternetə bağlı deyil.\n"
"Bağlantını yenidən quraşdırın"
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Bağlantı quraşdırılması"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Xahiş edirik aşağıdakıları doldurun ya da seçin"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "Kart IRQ"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Kart mem (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "Kart IO"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "Kart IO_0"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "Kart IO_1"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Sizin şəxsi telefon nömrəniz"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "İnternet xidmət vericinizin adı (məsələn azeronline.com)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "İXM telefon nömrəsi"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Dns xidmətcisi 1 (arzuya görə)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Dns xidmətcisi 2 (arzuya görə)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
#, fuzzy
msgid "Choose your country"
msgstr "KlaviaturanĹzĹ seçin"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Yığma modu"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection speed"
msgstr "Bağlantı növü:"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Bağlantı növü:"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Hesab Girişi (istifadəçi adı)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Hesap Parolu"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "bağlama iflas etdi: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Bu platformda genişlədilmiş bölmələr dəstəklənmir"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Bölmə cədvəlinizdə bir boşluq var, amma o da işlədilə bilməz.\n"
"Bu boşluğu, birinci bölmənizi en yaxınındakı genişlədilmiş bölməyə "
"daşıyaraq\n"
"məsələni həll edə bilərsiniz."
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "%s faylından qurtarılışda xəta: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "%s faylına yazarkən xəta oldu"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6704,194 +6887,194 @@ msgstr ""
"DatanÄąn bĂźtĂśvlĂźyĂź yoxlamasÄą bacarÄąlmadÄą. \n"
"Bu o demekdir ki diskə yazılan hər şey təsadüfi olacaqdır"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "alÄąnmalÄą"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "vacib"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "əla"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "gözəl"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "bəlkə"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr ""
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr ""
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Yerli Çap Edici"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Uzaq Çap Edici"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "Uzaq CUPS vericisi"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Uzaq çap edici vericisi(lpd)"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
#, fuzzy
msgid "Network printer (TCP/Socket)"
msgstr "Şəbəkə Çap Edicisi (soket) "
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Çap Edici Vericisi"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Çap Edici avadanlığı URI"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr "Yerli Çap Edici"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr "Uzaq Çap Edici"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "%s faylına yazarkən xəta oldu"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(modul %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "CUPS verici IP"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Əsas)"
@@ -6914,12 +7097,12 @@ msgstr ""
"Buradakı hər çap edici avtomatik tapılacaqdır.\n"
"Olmazsa \"Uzaq CUPS vericisi\" ni seçin."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "Yerli Şəbəkə Quraşdırılması"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "Uzaq CUPS vericisi"
@@ -6950,7 +7133,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP ünvanı 1.2.3.4 şəklində olmalıdır"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
#, fuzzy
msgid "The port number should be an integer!"
msgstr "Qapı nömrəsi rəqəmlə yazılmalıdır"
@@ -6959,7 +7142,7 @@ msgstr "Qapı nömrəsi rəqəmlə yazılmalıdır"
msgid "CUPS server IP"
msgstr "CUPS verici IP"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "QapÄą"
@@ -6968,22 +7151,13 @@ msgstr "QapÄą"
msgid "Automatic CUPS configuration"
msgstr "Qurulum Tərzi Quraşdırılması"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "AvadanlÄąqlar tanÄąnÄąr..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "QapÄąlarÄą sÄąna"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "Çap Edicisiz"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6996,14 +7170,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr "Yerli Çap Edici"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7021,12 +7195,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "Uzaq Çap Edici"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7040,11 +7214,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7054,35 +7228,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "Avtomatik təsbit işlət"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "Uzaq Çap Edici"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "QapÄąlarÄą sÄąna"
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "%s tapÄąldÄą"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
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, ..., "
@@ -7090,43 +7268,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Çap Edici avadanlığı URI"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr "Yerli Çap Edici"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7134,7 +7312,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7142,73 +7320,83 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Çap Edici avadanlığı URI"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "Quraşdırma"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "%s paketi qurulur"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing SANE packages..."
msgstr "%s paketi qurulur"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "%s paketi qurulur"
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
#, fuzzy
-msgid "Making printer port available for CUPS ..."
+msgid "Making printer port available for CUPS..."
msgstr "CUPS sĂźrĂźcĂź datasÄą oxunur..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
#, fuzzy
-msgid "Reading printer database ..."
+msgid "Reading printer database..."
msgstr "CUPS sĂźrĂźcĂź datasÄą oxunur..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Uzaq Çap Edici (lpd) Seçənəkləri"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7218,31 +7406,31 @@ msgstr ""
"çap edicinin bağlı olduğu çap edici vericisinin adını və növbə \n"
"adınını verməlisiniz."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
#, fuzzy
msgid "Remote host name"
msgstr "UzaqdakÄą ev sahibi adÄą"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
#, fuzzy
msgid "Remote printer name"
msgstr "Uzaq Çap Edici"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
#, fuzzy
msgid "Remote host name missing!"
msgstr "UzaqdakÄą ev sahibi adÄą"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
#, fuzzy
msgid "Remote printer name missing!"
msgstr "UzaqdakÄą ev sahibi adÄą"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) Çap Edici Seçənəkləri"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7255,35 +7443,35 @@ msgstr ""
"IP ünvanı, çap edicinin paylaşdırma adı, işləmə grupu, istifadəçi adı və \n"
"parol verilməlidir."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "SMB verici adÄą"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "SMB verici IP"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Paylaşdırma adı"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "İş qrupu"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7307,7 +7495,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7316,7 +7504,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7324,11 +7512,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "NetWare Çap Edici Qurğuları"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7340,28 +7528,28 @@ msgstr ""
"edici \n"
"növbəsi adı ilə istifadəçi adı va parolu verilməlidir."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Çap Edici Vericisi"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Çap Edici Növbə Adı"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Soket Çap Edici Qurğuları"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
@@ -7372,60 +7560,56 @@ msgstr ""
"Soket çap edicidən yekun almaq üçün, çap edicinin ev sahibi adını ve "
"mümkünsə, qapısının nömrəsini verməlisiniz."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
#, fuzzy
msgid "Printer host name"
msgstr "Çap Edici Ev sahibi"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
#, fuzzy
msgid "Printer host name missing!"
msgstr "Çap Edici Ev sahibi"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Çap Edici avadanlığı URI"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
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 ""
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Çap edici adı"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Ä°zah"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Yeri"
-#: ../../printerdrake.pm_.c:1021
+#: ../../printerdrake.pm_.c:1045
#, fuzzy
-msgid "Preparing printer database ..."
+msgid "Preparing printer database..."
msgstr "CUPS sĂźrĂźcĂź datasÄą oxunur..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "Uzaq Çap Edici"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7440,28 +7624,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "Doğrudur?"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "Uzaq Çap Edici"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
#, fuzzy
msgid "Printer model selection"
msgstr "Çap Edici Bağlantısı"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Nə cür bir çap ediciniz var?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7470,18 +7654,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "İnternet qurğuları"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7491,12 +7675,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "İnternet qurğuları"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7504,7 +7688,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7517,7 +7701,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7527,34 +7711,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Çap edicini sınamaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
#, fuzzy
msgid "Test pages"
msgstr "QapÄąlarÄą sÄąna"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7562,45 +7746,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
#, fuzzy
msgid "No test pages"
msgstr "Bəli, hər iki sınaq səhifəsini də çap et"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
#, fuzzy
msgid "Print"
msgstr "Çap Edici"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
#, fuzzy
msgid "Standard test page"
msgstr "Standart"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Sınaq səhifəsi çap edilir..."
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
#, fuzzy
msgid "Photo test page"
msgstr "Sınaq səhifəsi çap edilir..."
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "Sınaq səhifəsi çap edilir..."
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Sınaq səhifəsi çap edilir..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7616,7 +7800,7 @@ msgstr ""
"\n"
"Düz mü işləyir?"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7626,16 +7810,16 @@ msgstr ""
"Çap edicinin işləməsi üçün bir az vaxt keçər.\n"
"Düz mü işləyir?"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "Çap Edicisiz"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7644,15 +7828,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
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 ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7661,49 +7845,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, 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\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7713,7 +7897,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7722,30 +7906,41 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Qapat"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Şəbəkə dayandırılır"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Şəbəkə dayandırılır"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Şəbəkə dayandırılır"
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Şəbəkə dayandırılır"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Qapat"
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "Çap edici seçənəkləri"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7753,38 +7948,38 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
#, fuzzy
-msgid "Reading printer data ..."
+msgid "Reading printer data..."
msgstr "CUPS sĂźrĂźcĂź datasÄą oxunur..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
#, fuzzy
msgid "Transfer printer configuration"
msgstr "İnternet qurğuları"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7794,51 +7989,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7846,61 +8041,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Çap edici adı təkcə hərf, rəqəm və alt xətt daxil edə bilər"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid "New printer name"
msgstr "Çap Edicisiz"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, 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 ""
-#: ../../printerdrake.pm_.c:1887
+#: ../../printerdrake.pm_.c:1935
#, fuzzy
-msgid "Refreshing printer data ..."
+msgid "Refreshing printer data..."
msgstr "CUPS sĂźrĂźcĂź datasÄą oxunur..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr ""
-#: ../../printerdrake.pm_.c:1896
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
-msgid "Starting network ..."
+msgid "Starting network..."
msgstr "Bağlantınız başladılır..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr "Şəbəkəni qur"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "Monitor qurulmayÄąb"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7908,12 +8103,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Şəbəkə Qurğuları"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7923,34 +8118,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
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 ""
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
-msgid "Restarting printing system ..."
+msgid "Restarting printing system..."
msgstr "Hansı çap edici sistemini istifadə etmək istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "Yüksək"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "Şübhəci"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7965,12 +8160,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Hansı çap edici sistemini istifadə etmək istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7984,70 +8179,70 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Çap Edici Bağlantısı Seçin"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Hansı çap edici sistemini istifadə etmək istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Çap Edicini Qur"
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr "%s paketi qurulur"
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Çap edici seçənəkləri"
-#: ../../printerdrake.pm_.c:2318
+#: ../../printerdrake.pm_.c:2389
#, fuzzy
-msgid "Preparing PrinterDrake ..."
+msgid "Preparing PrinterDrake..."
msgstr "CUPS sĂźrĂźcĂź datasÄą oxunur..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Çap Edicini Qur"
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Bir çap edici qurmaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "Printerdrake"
msgstr "Çap Edici"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8058,7 +8253,7 @@ msgstr ""
"Aşağıda yazıçıdakı növbələr verilmişdir.\n"
"Yenilərini əlavə edə bilər, və ya mövcud olanları dəyişdirə bilərsiniz."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8068,139 +8263,143 @@ msgstr ""
"Aşağıda yazıçıdakı növbələr verilmişdir.\n"
"Yenilərini əlavə edə bilər, və ya mövcud olanları dəyişdirə bilərsiniz."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Şəbəkəni qur"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Normal Mod"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Çıx"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Qurğuları sınamaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
#, fuzzy
msgid "Modify printer configuration"
msgstr "İnternet qurğuları"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Qurğuları sınamaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
#, fuzzy
msgid "Printer connection type"
msgstr "İnternet Bağlantısı Bölüşdürülməsi"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
#, fuzzy
msgid "Printer name, description, location"
msgstr "Çap Edici Bağlantısı"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
#, fuzzy
msgid "Print test pages"
msgstr "Sınaq səhifəsi çap edilir..."
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "Qurğuları sınamaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
#, fuzzy
msgid "Remove printer"
msgstr "Uzaq Çap Edici"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
msgstr "CUPS sĂźrĂźcĂź datasÄą oxunur..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
#, fuzzy
msgid "Default printer"
msgstr "Yerli Çap Edici"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Şəbəkəni yenidən başlatmaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr "CUPS sĂźrĂźcĂź datasÄą oxunur..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -8284,24 +8483,62 @@ msgstr "Parollar uyğun gəlmir"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Şəkilləndirilmiş RAID md%d-yə disk bölməsi əlavə edilə bilinmədi"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "%s faylına yazıla bilinmədi"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid iflas etdi"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid iflas etdi (raidtools əksik ola bilər mi?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "%d səviyyə RAID üçün çatmayan sayda disk bölməsi\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Bu səviyyə RAID'i diqqətli istifadənizi tövsiyə edirik. Sisteminiz daha "
+"asand\n"
+"işlədiləcək, ancaq xətalara qarşı da həssaiyyəti də artacaqdır. İnternetə \n"
+"bağlı isəniz bunu tövsiyə etmirik. Parol ilə girilir."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+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 ""
+"Bu təhlükəsizlik səviyyəsiylə sistemin bir verici olaraq istifadəsi "
+"mĂźmkĂźndĂźr. \n"
+"Təhlükəsizlik, birdən çox alıcının bağlanmasına icazə verəcək şəkildə "
+"artırılmışdır. "
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Yerli Şəbəkə Quraşdırılması"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Seçənəklər"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "ALSA səs sistemini (Advanced Linux Sound Architecture) başlat"
@@ -8359,7 +8596,7 @@ msgstr ""
"HardDrake texniki tə'minat sınağı aparar və onları bir ön quraşdırmadan "
"keçirər."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8435,7 +8672,7 @@ msgid ""
msgstr ""
"Linuks Virtual Verici, yüksək qabiliyyətli vericilər qurmaq üçün işlədilir."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -8514,7 +8751,7 @@ msgstr ""
"bağlantılarını təşkilatlandırır. Portmap vericisi RPC mexanizmini işlədən\n"
"protokollarla xidmət edən kompüterlərdə qurulmalıdır və işlədilməlidir."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -8613,7 +8850,7 @@ msgstr "Ä°nternet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "Sistem modu"
@@ -8736,6 +8973,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "İdarə Mərkəzi"
@@ -8839,6 +9077,15 @@ msgstr ""
msgid "Installing packages..."
msgstr "%s paketi qurulur"
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Lütfen çıxın və Ctrl-Alt-BackSpace düymələrinə basın"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "\"%s\"a(ə) təkrar girin və dəyişiklikləri fəallaşdırın"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8847,6 +9094,161 @@ msgstr ""
"Bölmə cədvəlini oxuya bilmirəm, dəyəsən biraz xarab olub:-(\n"
"Xəsərli hissələri düzəltməyə cəhd edəcəm"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "İnternet qurğuları"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Databeyz"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Databeyz"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS Verici"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS Verici"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "İstifadəçini əlavə et"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP AlÄącÄąsÄą"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#, fuzzy
+msgid "Help"
+msgstr "/_YardÄąm"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Bağlı deyil"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Sil"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Fayl seç"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "İstifadəçini əlavə et"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "DHCP AlÄącÄąsÄą"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Quraşdırılır..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "yenidən quraşdır"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "%s sürücüsünə bir disket taxın"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Disket sĂźrĂźcĂź yoxdur"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
#, fuzzy
msgid "Error!"
@@ -8888,6 +9290,11 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Avtomatik qurulum disketi hazÄąrlanÄąr"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -8896,47 +9303,40 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Təbriklər!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "Qurulum"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "İstifadəçi əlavə et"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "Loopback faylı şəkilləndirilir: %s"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8944,15 +9344,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8960,709 +9352,772 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "%s faylı oxunurkan xəta oldu"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "Paket Qrup Seçkisi"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "Növbəni sil"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
#, fuzzy
msgid "Windows (FAT32)"
msgstr "\"Windows\"u sil"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr "İstifadəçi adı"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "Xahiş edirik təkrar sınayın"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "Xahiş edirik təkrar sınayın"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "Parolsuz"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Yerli Şəbəkə quraşdırılması"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Çap Edici Bağlantısı Seçin"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Klaviatura quruluşunu seçiniz."
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "Şəbəkə ara üzü"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "NĂśv"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "İstifadəçi adı"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Sabit disk seçkisi"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "İstifadəçi adı"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr "Çərx"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr "Çərx"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "Modul seçənəkləri:"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "Fayl sistemi qurğuları"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Siçan avadanlığı: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Seçənəklər"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Xahiş edirik siçanınızı seçin"
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "Yerli Şəbəkə quraşdırılması"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Çap Edici Bağlantısı Seçin"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Disketdən geri çağır"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "Digər"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "Sistemi qur"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "XĂźsusi"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/_YardÄąm"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
#, fuzzy
msgid "Previous"
msgstr "<- Əvvəlki"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr "Hal:"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr "SonrakÄą ->"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "Qurulacaq paketləri seçin"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Aşağıdakı paketlər qurulacaqdır"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "Fayla qeyd et"
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "Yerli Şəbəkə Quraşdırılması"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "Yerli Şəbəkə Quraşdırılması"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "Fayl sistemi qurğuları"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9694,7 +10149,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9703,7 +10158,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9744,7 +10199,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9772,12 +10227,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -9794,7 +10254,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9834,7 +10294,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9845,7 +10305,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9858,7 +10318,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9902,104 +10362,532 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "%s qurulumu iflas etdi. Olan xəta:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Konsol Vasitələri"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "İdarə Mərkəzi"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "Usta"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Siçan"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Uzaq Çap Edici"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Paylaşdırma adı"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Çap Edici"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Şəbəkə Quraşdırılması Sehirbazı"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "TanÄątma"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Paket Qrup Seçkisi"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Xahiş edirik gözləyin"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Qurulumdan çĹx"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "QapÄą"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Qurulumdan sonra istifadə edə biləcəyiniz başqa dillər seçə bilərsiniz"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Şəbəkə quraşdırılması (%d adapter)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profil: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Profili sil..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Silinəcək profil:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Yeni profil..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Ev sahibi adÄą:"
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Ä°nternet imkanÄą"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "NĂśv: "
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Keçit:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Ara Ăźz"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Hal:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "İnternet keçişini Qur..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "Yerli Şəbəkə quraşdırılması"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "SĂźrĂźcĂź"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Ara Ăźz"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protokol"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "State"
+msgstr "Hal:"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Yerli Şəbəkəni Quraşdır..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Sehirbaz..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Əlavə Et"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Lütdən Gözləyin... Qurğular əlavə edilir"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Bağlandı"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Bağlı deyil"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Bağlan..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Bağlantını Kəs..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Qurulu ara ĂźzĂźnĂźz yoxdure.\n"
+"Əvvəlcə onları 'Quraşdır'a basaraq qurun"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "Yerli Şəbəkə Quraşdırılması"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "%s Adapteri: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Açılış Protokolu"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Açılışda başladılır"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP alÄącÄąsÄą"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "activate now"
+msgstr "Fəal"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "deactivate now"
+msgstr "Fəal"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Heç İnternet bağlantınız yoxdur.\n"
+"Əvvəlcə onları 'Quraşdır'a basaraq qurun"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "İnternet bağlantısı quraşdırılması"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "İnternet Bağlantısı Quraşdırılması"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Bağlantı növü:"
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parametrlər"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Keçit"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Eternet KartÄą"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP AlÄącÄąsÄą"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "istifadə qaydası: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Modul adÄą"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "BĂśyĂźklĂźk"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "açılış disketi yaradılması"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "əsas"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "DrakFloppy xətası: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "çəyirdək buraxılışı"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Ümumi"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Ustaların Sahəsi"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrdin arzuya bağlı olan arqumentləri"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Modul əlavə et"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "zorla"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "lazÄąm olarsa"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "scsi modullarĹ keç"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "raid modullarĹ keç"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Modulu çĹxart"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Nəticə"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Diski yarat"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "%s avadanlığında medya olduğundan əmin olun"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"%s avadanlığında medya yoxdur.\n"
+"Xahiş edirik. birini taxın."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Fork edilə bilmir: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"DĂźzgĂźn mkbootdisk aparÄąla bilmir: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "şəbəkə kartı tapılmadı"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr "QurtardÄą"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr ""
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "Qurulum hazÄąrlanÄąr"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
#, fuzzy
msgid "Restart XFS"
msgstr "məhdudlaşdır"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "məhdudlaşdır"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10008,122 +10896,121 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "Bölmə şəkilləndirilməsi"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Yerli Şəbəkə Quraşdırılması"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr "Bağlama nöqtəsi"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Şəkilləndiriləcək disk bölmələrini seçin"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "İş Yeri"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr "DayandÄąr"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr "Çap Edici"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "Sistemi qur"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "Fayl seç"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "Uzaq Çap Edici"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
#, fuzzy
msgid "Initials tests"
msgstr "Ä°nit Ä°smarÄącÄą"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr "Siseminizdə şəbəkə adapteri yoxdur!"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "Qurulum"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr "Siseminizdə şəbəkə adapteri yoxdur!"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "Qurulumdan çĹx"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "İnternet Bağlantısı Bölüşdürülməsi"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "İnternet Bağlantısı Bölüşdürülməsi fəallaşdırıldı"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10135,31 +11022,31 @@ msgstr ""
"\n"
"Nə etmək istəyirsiniz?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "passivləşdir"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "keç"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "yenidən quraşdır"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Vericilər bağlanır..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "İnternet Bağlantısı Bölüşdürülməsi indi bağlandı"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "İnternet Bağlantısı Bölüşdürülməsi passivləşdirildi"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10171,19 +11058,19 @@ msgstr ""
"\n"
"Nə etmək istəyirsiniz?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "fəallaşdır"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Xidmətlər fəallaşdırılır..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "İnternet Bağlantısı Bölüşdürülməsi indi açıldı"
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10199,21 +11086,21 @@ msgstr ""
"Xəbədarlıq: Yerli Şəbəkə (LAN) qurmaq üçün uyğun Şəbəkə Adapterinə "
"ehtiyacÄąnÄąz var."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Ara Üz %s (%s modulu işlədilir)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Ara Ăźz %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Siseminizdə şəbəkə adapteri yoxdur!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10221,11 +11108,11 @@ msgstr ""
"Sisteminizdə şəbəkə kartı tapıla bilməyib.Avadanlığı quran vasitəni işə "
"salÄąn."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Şəbəkə ara üzü"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10240,18 +11127,18 @@ msgstr ""
"\n"
"Yerli Şəbəkə adapterinizi qurmaq üzərəyəm?"
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr "Sizi Yerli Şəbəkəyə bağlayacaq adapteri seçin"
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "Monitor qurulmayÄąb"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10261,17 +11148,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Qurulum Tərzi Quraşdırılması"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "İnternet qurğuları"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10282,7 +11169,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
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 C-Class Network that "
@@ -10294,33 +11181,33 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "CUPS verici IP"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "%s quğusunda dəyəsən bir LAN ünvan çaxışması tapıldı!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Oddan divar (Firewall) quruluşu tapıldı!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10328,20 +11215,20 @@ msgstr ""
"Diqqət! Var olan Firewall qurğusu tapıldı. Yükləmədən sonra bir az əl "
"gəzdirə bilərsiniz."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Quraşdırılır..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Skriptlə qurulur, proqram tə'minatı qurulur, xidmətlər başladılır..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "%s paketi qurulurkən xəta oldu"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10352,23 +11239,23 @@ msgstr ""
"bölüşdürə bilərsiniz, bunun üçün isə avtomatik şəbəkə quraşdırılması (DHCP) "
"işlədilir."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "Quraşdırma artıq qurtarıbdır, amma fəaliyyəti dayandırılıb."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Quraşdırma artıq qurtarıbdır və fəaliyyətdədir."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "İnternet Bağlantısı Bölüşdürmə Quraşdırması aparılmayıb."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "İnternet bağlantısı bölüşdürülməsi quraşdırılması"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10383,213 +11270,6 @@ msgstr ""
"\n"
"Quraşdırma sehirbazını açmaq üçün Quraşdıra tıqlayın."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Şəbəkə quraşdırılması (%d adapter)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Profili sil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Silinəcək profil:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Yeni profil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Ev sahibi adÄą:"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Ä°nternet imkanÄą"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "NĂśv: "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Keçit:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Ara Ăźz"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Hal:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "İnternet keçişini Qur..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Yerli Şəbəkə quraşdırılması"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "SĂźrĂźcĂź"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Ara Ăźz"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokol"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Hal:"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Yerli Şəbəkəni Quraşdır..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Sehirbaz..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Əlavə Et"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Lütdən Gözləyin... Qurğular əlavə edilir"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Bağlandı"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Bağlı deyil"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Bağlan..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Bağlantını Kəs..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Qurulu ara ĂźzĂźnĂźz yoxdure.\n"
-"Əvvəlcə onları 'Quraşdır'a basaraq qurun"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Yerli Şəbəkə Quraşdırılması"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "%s Adapteri: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Açılış Protokolu"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Açılışda başladılır"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP alÄącÄąsÄą"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Fəal"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Fəal"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Heç İnternet bağlantınız yoxdur.\n"
-"Əvvəlcə onları 'Quraşdır'a basaraq qurun"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "İnternet bağlantısı quraşdırılması"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "İnternet Bağlantısı Quraşdırılması"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Bağlantı növü:"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametrlər"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Keçit"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Eternet KartÄą"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP AlÄącÄąsÄą"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Təhlükəsizlik səviyyəsinin quraşdırılması"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "İdarə Mərkəzi"
@@ -10598,94 +11278,130 @@ msgstr "İdarə Mərkəzi"
msgid "Choose the tool you want to use"
msgstr "İstifadə edəcəyiniz vasitəni seçin"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\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 ""
+
+#: ../../standalone/drakxtv_.c:72
#, fuzzy
msgid "Canada (cable)"
msgstr "FransÄązca (Kanada/Quebec)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "East Europe"
msgstr "Avropa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "FransÄązca"
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr "Ä°zlandiya dili"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "West Europe"
msgstr "Avropa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr "serial"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Paketlər qurulurkən bir xəta oldu:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10729,7 +11445,7 @@ msgstr "Təkmilləşdirmə işi başlaya bilmir !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -10740,11 +11456,11 @@ msgstr "Təkcə bu gününkünü göstər"
#: ../../standalone/logdrake_.c:102
msgid "/File/_New"
-msgstr "/Fayl/_Yeni"
+msgstr "/Fayl/_Təze"
#: ../../standalone/logdrake_.c:102
msgid "<control>N"
-msgstr "<control>Y"
+msgstr "<control>N"
#: ../../standalone/logdrake_.c:103
msgid "/File/_Open"
@@ -10752,7 +11468,7 @@ msgstr "/Fayl/_Aç"
#: ../../standalone/logdrake_.c:103
msgid "<control>O"
-msgstr "<control>A"
+msgstr "<control>O"
#: ../../standalone/logdrake_.c:104
msgid "/File/_Save"
@@ -10760,7 +11476,7 @@ msgstr "/Fayl/_Qeyd Et"
#: ../../standalone/logdrake_.c:104
msgid "<control>S"
-msgstr "<control>Q"
+msgstr "<control>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
@@ -10778,13 +11494,9 @@ msgstr "/_Seçənəklər"
msgid "/Options/Test"
msgstr "/Seçənəklər/Sınaq"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_YardÄąm"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
-msgstr "/YardÄąm/_HaqqÄąnda..."
+msgstr "/Kömək/_Haqqında..."
#: ../../standalone/logdrake_.c:118
msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
@@ -10845,7 +11557,7 @@ msgstr "Təqvim"
msgid "Content of the file"
msgstr "Fayl məzmunu"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -10854,80 +11566,111 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr "xahiş edirik, gözləyin, fayl daranır: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "Yerli Şəbəkə quraşdırılması"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache və Pro-ftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
+msgid "Apache World Wide Web Server"
msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Sahə(domain) adı"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "Ext2"
+msgid "Ftp Server"
+msgstr "NIS Verici"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Postfix məktub vericisi, Inn xəbər vericisi"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS Verici"
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "NIS Verici"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "avadanlÄąq"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Çap Edici Vericisi"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "avadanlÄąq"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "Şəkilləndirilir"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "Quraşdırma"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Fərqli qeyd et..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "serial_USB avadanlığı tapılmadı\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "3 düymə emulasiyası"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "CUPS sĂźrĂźcĂź datasÄą oxunur..."
+
+#: ../../standalone/scannerdrake_.c:42
+#, fuzzy
+msgid "Detecting devices ..."
+msgstr "AvadanlÄąqlar tanÄąnÄąr..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -10971,6 +11714,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "Firewall quraşdırılması"
@@ -11378,10 +12133,6 @@ msgid "Multimedia - Sound"
msgstr "Multimedya - Səs"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Vasitələr"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Sənədlər"
@@ -11484,10 +12235,6 @@ msgstr ""
"Elektronik məktub və xəbər oxuyucusu (pine, mutt, tin..) və Web səyyahları"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arxivləmə, emulyatorlar, izləmə"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Şəxsi Maliyyə"
@@ -11534,1391 +12281,149 @@ msgstr "Multimedya - CD YandÄąrma"
msgid "Scientific Workstation"
msgstr "Elmi iş stansiyası"
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "DayandÄąr"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
+#~ msgid "Choose options for server"
+#~ msgstr "X verici üçün seçənəkləri göstərin"
-#, fuzzy
-#~ msgid "None"
-#~ msgstr "QurtardÄą"
-
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Əsas istifadəçini seçin:"
-
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Uzaq Çap Edici"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "İndi %s moduluna parametrlər girə bilərsiniz."
-
-#~ msgid "mount failed"
-#~ msgstr "bağlama iflas etdi"
-
-#~ msgid "Low"
-#~ msgstr "Alçaq"
-
-#~ msgid "Medium"
-#~ msgstr "Orta"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Bu təhlükəsizlik səviyyəsi üçün əlavə olaraq artırılmış təhlükəsizlik "
-#~ "xəbərdarlığı və \n"
-#~ "yoxlama var."
-
-#~ msgid "Boot mode"
-#~ msgstr "Açılış modu"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Usta"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "Linuks zamanı GMT-yə (Greenwich Mean Time) görə qurğular və olduğunuz \n"
-#~ "yerdəki zamana görə lazımi dəyişiklikləri edər."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "İnternetə bağlantı"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "İnternetə bağlantını kəs"
-
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Şəbəkə (İnternet/LAN) bağlantınızı quraşdırın"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Hansı diskə daşımaq istəyirsiniz?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Mə'lumat"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Gnome iş stansiyası"
-
-#~ msgid "authentification"
-#~ msgstr "tanÄątma"
+#~ msgid "Monitor not configured"
+#~ msgstr "Monitor qurulmayÄąb"
-#~ msgid "user"
-#~ msgstr "istifadəçi"
-
-#, fuzzy
-#~ msgid ""
-#~ "Apache is a World Wide Web server. It is used to serve HTML files and "
-#~ "CGI."
-#~ msgstr ""
-#~ "Apache bir World Wide Web vericisidir. HTML faylları və CGI verilməsi "
-#~ "üçün istifadə edilir."
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Ekran kartı hələ qurulmayıb"
-#~ msgid ""
-#~ "named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
-#~ "host names to IP addresses."
-#~ msgstr ""
-#~ "named (BIND) verici adlarını IP ünvanlarına çevirən\n"
-#~ "Sahə Adı Vericisidir(DNS)."
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Rezolyusiya hələ seçilməyib"
-#, fuzzy
#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
#~ "\n"
-#~ msgstr "Xahiş edirik siçanınızın növünü seçin."
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "Çıx"
-
-#, fuzzy
-#~ msgid "Removable media"
-#~ msgstr "Taxılıb sökülə bilən avadanlıqların avtomatik bağlanması"
-
-#~ msgid "Active"
-#~ msgstr "Fəal"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "Xeyr"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "\"%s\" modelində bir çap edici tapıldı:"
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Yerli Çap Edici Avadanlığı"
-
-#~ msgid "Printer Device"
-#~ msgstr "Çap Edici Avadanlığı"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Uzaq CUPS vericisi"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "Uzaq CUPS vericisi"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linuks"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Sistem modu"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "Digər"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Klaviatura quruluşunu seçiniz."
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "NĂśv: "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Xətalı yedəkləmə faylı"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "X qur"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Çap Edici Avadanlığı"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Ləğv et"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "Oldu"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Qapat"
-
-#~ msgid "Starting your connection..."
-#~ msgstr "Bağlantınız başladılır..."
-
-#~ msgid "Closing your connection..."
-#~ msgstr "Bağlantınız kəsilir..."
-
-#~ msgid ""
-#~ "The connection is not closed.\n"
-#~ "Try to do it manually by running\n"
-#~ "/etc/sysconfig/network-scripts/net_cnx_down\n"
-#~ "in root."
-#~ msgstr ""
-#~ "Bağlantı kəsildi. Buna əllə kökdə\n"
-#~ "/etc/sysconfig/şəbəkə-scripts/net_cnx_down\n"
-#~ "əmrini icra edərək nail ola bilərsiniz."
-
-#~ msgid "The system is now disconnected."
-#~ msgstr "Sistem indi bağlantısını kəsib."
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Qurmaq istədiyiniz paketləri seçin"
-
-#~ msgid "Total size: "
-#~ msgstr "HamÄąsÄą: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Xahiş edirik gözləyin, "
-
-#~ msgid "Total time "
-#~ msgstr "Ümumi müddət"
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "X11 qurğuları üçün mövcud qurğulardan istifadə edək?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
+#~ "try to change some parameters"
#~ msgstr ""
-#~ "Çap ediciniz hansı avadanlığa bağlıdır? \n"
-#~ "(/dev/lp0, LPT1'nin qarşılığıdır)\n"
-
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr "Diqqət, şəbəkə adapteriniz onsuz da qurulub. Yenidən quracam."
-
-#~ msgid "New"
-#~ msgstr "Yeni"
-
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "Uzaqdakı növbə adı"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
+#~ "bə'zi parametrləri dəyişdirin"
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Qarışıqlıq (%s), daha aydın yazın\n"
+#~ msgid "An error occurred:"
+#~ msgstr "Bir xəta oldu:"
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (əsas %s) "
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "%d saniyə sonra çıxılacaq"
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "Seçkiniz (əsas %s, yoxsa `none' yazın) "
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Bu qurğular doğrudur?"
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "/etc/sysconfig/autologin oxunmaq ßçßn açĹla bilmir: %s"
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Bir xəta oldu, parametrləri dəyişdirin"
-#~ msgid "Do you want to restart the network"
-#~ msgstr "Şəbəkəni yenidən başlatmaq istəyirsiniz?"
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 verici: %s"
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "RazÄąsÄąnÄąz?"
+#~ msgid "Show all"
+#~ msgstr "Hamısını Göstər"
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Şəbəkə avadanlığını yenidən başlatmalıyam:\n"
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "X-Window qurğuları hazırlanır"
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "%s avadanlığını yenidən başladacam. Razısınız?"
+#~ msgid "What do you want to do?"
+#~ msgstr "Nə etmək istəyirsiniz?"
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Başqa bir şəkildə seçilməmiş isə, ümumiyyətlə bu seçki \"/dev/hda\" \n"
-#~ "(Birinci ali IDE disk) ya da \"/dev/sda\" (birinci SCSI disk)\n"
-#~ "olacaqdÄąr."
+#~ msgid "Change Monitor"
+#~ msgstr "Monitoru Dəyişdir"
-#, fuzzy
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "Bağlantı növü:"
+#~ msgid "Change Graphics card"
+#~ msgstr "Ekran kartını dəyişdir"
-#, fuzzy
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Əsas istifadəçini seçin:"
+#~ msgid "Change Server options"
+#~ msgstr "Verici seçənəklərini dəyişdir"
-#~ msgid "Test the mouse here."
-#~ msgstr "SiçanĹnĹzĹ buradan sĹnayĹn."
+#~ msgid "Change Resolution"
+#~ msgstr "Rezolyusiyanı Dəyişdir"
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr "Qurulma və sistem istifadəsi üçün bir dil seçin."
+#~ msgid "Show information"
+#~ msgstr "Mə'lumatı göstər"
-#~ msgid ""
-#~ "You need to accept the terms of the above license to continue "
-#~ "installation.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Accept\" if you agree with its terms.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Refuse\" if you disagree with its terms. Installation "
-#~ "will end without modifying your current\n"
-#~ "configuration."
-#~ msgstr ""
-#~ "Davam edə bilmək üçün yuxarıdakı lisenziyanın maddələrini qəbul "
-#~ "etməlisiniz.\n"
-#~ "\n"
-#~ "\n"
-#~ "Xahiş edirik, maddələrlə razı isəniz \"Qəbul\" düyməsinə basın.\n"
-#~ "\n"
-#~ "\n"
-#~ "Xahiş edirik, maddələrlə razı deyilsəniz ,\"Rədd\" düyməsinə basın\n"
-#~ "Yükləmə indiki qurğularınız dəyişdirilmədən bitiriləcək."
+#~ msgid "Test again"
+#~ msgstr "Yenidən sına"
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr "Yuxarıdakı siyahıdan klaviaturanıza uyöun gələn düzülüşü seçiniz"
+#~ msgid "Setting security level"
+#~ msgstr "Təhlükəsizlik səviyyəsinin quraşdırılması"
-#~ msgid ""
-#~ "If you wish other languages (than the one you choose at\n"
-#~ "beginning of installation) will be available after installation, please "
-#~ "chose\n"
-#~ "them in list above. If you want select all, you just need to select \"All"
-#~ "\"."
-#~ msgstr ""
-#~ "Əgər yükləmədən sonra işlətmək üçün fərqli dillər (yükləmənin əvvəlində "
-#~ "seçdiyinizdən) seçmək istəyirsinizsə,\n"
-#~ "xahiş edirik, onları yuxarıdakı siyahıdan seçin.\n"
-#~ "Əgər hamısını seçmək istəyirsiniz isə \"Hamısını\" seçin."
+#~ msgid "Graphics card"
+#~ msgstr "Ekran kartÄą"
-#~ msgid ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!"
-#~ msgstr ""
-#~ "Seç:\n"
-#~ "\n"
-#~ " - Xüsusi: Əgər Linuksa aşina isəniz bu seçənəyə tıqlayın.\n"
-#~ " Sonra sistemin sinifini seçə biləcəksiniz.\n"
-#~ " Ayrınrılar üçün aşağıya baxın.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Usta: Əgər GNU/Linuks haqqında yaxşı bilik sahibi isəniz bunu seçin.\n"
-#~ " Daha sonra \"Xüsusi\" seçkisində olduğu kimi sistemin sinifini seçə "
-#~ "biləcəksiniz.\n"
-#~ " Ancaq artıq dərəcədə xahiş edirik, NƏ ETDİYİNİZİ BİLMİRSƏNİZ BU "
-#~ "SİNİFİ SEÇMƏYİN!."
+#~ msgid "Select a graphics card"
+#~ msgstr "Ekran kartĹnĹzĹ seçin"
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "İndi isə kompüterinizi necə işlədəcəyinizə qerar verin.Seç:\n"
-#~ "\n"
-#~ "* Masa üstü: kompüterinizi gündəlik işlər (idarə işləri, qrafika vs.)\n"
-#~ " üçün istifadə edəcək isəniz, bunu seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Təcrübi: Kompüterinizi proqram tə'minatı inkişafı üçün işlədəcəksəniz, "
-#~ "sizin ßçßn ideal seçkidir.\n"
-#~ " O zaman qaynaq kodları yazmaq, şəkilləndirmək və xətadan ayıqlamaq və ya "
-#~ "proqram paketləri hazırlamaq üçün lazımi hər cür proqramın daxil olduğu "
-#~ "bir kolleksiya kompüterinizə qurulacaqdır.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Verici: Kompüterinizə Linuks-Mandrakeni verici olaraq işlətmək üçün "
-#~ "quracaqsanız, bu yaxşı bir seçkidir.\n"
-#~ " Bir fayl vericisi (NFS ya da SMB),çap edici vericisi(Unixin lp protokolu "
-#~ "ya da Windows tərzi SMB çap),\n"
-#~ " tanıdıcı verici (NIS), mə'lumat tabanı vericisi və oxşarı...Onda KDE, "
-#~ "GNOME kimi məzəli şeylərin qurulmağını gözləməyin."
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "Diqqət: Bu qrafika kartı ilə ediləcək sınaq təhlükəlidir"
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "İndi qurmaq ya da güncəlləmək istədiyiniz paket qruplarını\n"
-#~ "seçə bilərsiniz.\n"
-#~ "\n"
-#~ "Sonra DrakX seçdiklərinizi qurmaq ya da güncəlləmək üçün lazımi \n"
-#~ "boş yerinizin olub olmadığını sınayacaq. Əgər yoxsa, sizə bunu \n"
-#~ "söyləyəcək. Nə olursa olsun davam etmək istəsəniz,yükləmə davam edəcək.\n"
-#~ "Amma daha az ehtiyac olan paketlər qurulmayacaq.\n"
-#~ "Siyahının üstündə \"Şəxsi paket seçilməsi\"\n"
-#~ "seçənəyini işarətləsiniz 1000dən artıqpaket arasından seçə bilərsiniz."
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Standart VGA, 60 Hz-də 640x480 "
-#~ msgid ""
-#~ "You can now choose individually all the packages you\n"
-#~ "wish to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can expand or collapse the tree by clicking on options in the left "
-#~ "corner of\n"
-#~ "the packages window.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you prefer to see packages sorted in alphabetic order, click on the "
-#~ "icon\n"
-#~ "\"Toggle flat and group sorted\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want not to be warned on dependencies, click on \"Automatic\n"
-#~ "dependencies\". If you do this, note that unselecting one package may "
-#~ "silently\n"
-#~ "unselect several other packages which depend on it."
-#~ msgstr ""
-#~ "İndi isə siz istədiyiniz paketi qurmaq üçün\n"
-#~ "seçə bilərsiniz.\n"
-#~ "\n"
-#~ "\n"
-#~ "Paket pəncərəsi solundakı bucaqdaki seçənəyə tıqlayaraqağacı həm aça\n"
-#~ "həm də sıxışdıra bilərsiniz.\n"
-#~ "\n"
-#~ "\n"
-#~ "Paketlərin əlifba sırasına görə düzülməsini istəyirsinizsə\n"
-#~ "\"Otaq və grupu düz\"\n"
-#~ "düyməsinə basın.\n"
-#~ "\n"
-#~ "\n"
-#~ "Paket ehtiyacları xəbərdarlıqlarını istəmirsəniz \"Avtomatik\n"
-#~ "ehtiyaclar\"ı seçə bilərsiniz.\n"
-#~ "Amma bunu işarətlədiyiniz vaxt unutmayın bir paketin işarətini "
-#~ "qaldırdığınızda\n"
-#~ "ehtiyacı olan digər paketlerin de işarəti səssizcə qalxar."
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 56 Hz-də 800x600"
-#~ msgid ""
-#~ "If you have all the CDs in the list above, click Ok. If you have\n"
-#~ "none of those CDs, click Cancel. If only some CDs are missing, unselect "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "Yuxarıdakı siyahıdakı bütün CDlərə sahibsəniz, OLDUya tıqlayın.\n"
-#~ "Bu CD'lərin heç birinə sahib deyilsəniz, Ləğv et'i tıqlayın.\n"
-#~ "CD'lərdən bə'ziləri əksiksə, bunları seçili vəziyyətdən çıxarıb OLDUya "
-#~ "tÄąqlayÄąn."
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514 Uyğun, 87 Hz-də titrəşimli 1024x768 (800x600 yox)"
-#~ msgid ""
-#~ "If you wish to connect your computer to the Internet or\n"
-#~ "to a local network please choose the correct option. Please turn on your "
-#~ "device\n"
-#~ "before choosing the correct option to let DrakX detect it automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you do not have any connection to the Internet or a local network, "
-#~ "choose\n"
-#~ "\"Disable networking\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you wish to configure the network later after installation or if you "
-#~ "have\n"
-#~ "finished to configure your network connection, choose \"Done\"."
-#~ msgstr ""
-#~ "Kompüterinizi internete və ya yerli networka bağlamaq\n"
-#~ "istəyirsinizsə xahiş edirik doğru xüsusiyəti seçin. Ayrıca DrakXin bunu "
-#~ "tapması üçün avadanlığınızı açın.\n"
-#~ "\n"
-#~ "\n"
-#~ "İnternet və ya yerli networka heç girişiniz yox isə\"Şəbəkə qurğularını "
-#~ "keç\"\n"
-#~ "seçənəyini işarətləyin.\n"
-#~ "\n"
-#~ "\n"
-#~ "Şəbəkə qurğularını sonraya buraxmaq istəyirsinizsəvə ya qurğular bitdiysə "
-#~ "\"Oldu\" seçənəyini işarətləyin."
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 87 Hz-də titrəşimli 1024x768, 56 Hz-də 800x600"
-#~ msgid ""
-#~ "No modem has been detected. Please select the serial port on which it is "
-#~ "plugged.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, the first serial port (called \"COM1\" under Microsoft\n"
-#~ "Windows) is called \"ttyS0\" under Linux."
-#~ msgstr ""
-#~ "Modem tapılmadı. Xahiş edirik modemin bağlı olduğu serial qapını seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ "Xəbəriniz olsun, birinci serial qapı (Windows altında\n"
-#~ "\"COM1\") linux altında\"ttyS0\" deyə adlandırılır."
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Təkmilləşdirilmiş Super VGA, 60 Hz-də 800x600, 72 Hz-də 640x480"
-#~ msgid ""
-#~ "You may now enter dialup options. If you don't know\n"
-#~ "or are not sure what to enter, the correct informations can be obtained "
-#~ "from\n"
-#~ "your Internet Service Provider. If you do not enter the DNS (name "
-#~ "server)\n"
-#~ "information here, this information will be obtained from your Internet "
-#~ "Service\n"
-#~ "Provider at connection time."
-#~ msgstr ""
-#~ "İndi isə çevirməli bağlantı xüsusiyyətləri seçə bilərsiniz.\n"
-#~ "Əgər bilmirsinizsə və ya ne girəcəyinizə qerar vermədinizsə\n"
-#~ "(Məsələn, İXV (ISP) və DNS nömrələri kimi) bunları\n"
-#~ "daha sonra da internete girərək öyrənə bilərsiniz."
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Titrəşimsiz SVGA, 60 Hz-də 1024x768, 72 Hz-də 800x600"
-#~ msgid ""
-#~ "If your modem is an external modem, please turn on it now to let DrakX "
-#~ "detect it automatically."
-#~ msgstr ""
-#~ "Modeminiz xarici isə modeminizi açın ki DrakX onu avtomatik olaraq tapsın."
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "Yüksək Frekanslı SVGA, 70 Hz-də 1024x768"
-#~ msgid "Please turn on your modem and choose the correct one."
-#~ msgstr "Xahiş edirik modeminizi açın ve doğru seçənəyi işarətləyin."
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Çoxlu Frekansa qadir 60 Hz-də 1280x1024"
-#~ msgid ""
-#~ "If you are not sure if informations above are\n"
-#~ "correct or if you don't know or are not sure what to enter, the correct\n"
-#~ "informations can be obtained from your Internet Service Provider. If you "
-#~ "do not\n"
-#~ "enter the DNS (name server) information here, this information will be "
-#~ "obtained\n"
-#~ "from your Internet Service Provider at connection time."
-#~ msgstr ""
-#~ "Əgər yuxarıdakılar haqqında mə'lumatınız yox isə və ya ne girəcəyinizə "
-#~ "qərar vermədinizsə\n"
-#~ "(Məsələn, İXV (ISP) və DNS nömrələri kimi)bunları\n"
-#~ "daha sonra da internete girərək öyrənə bilərsiniz."
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Çoxlu Frekansa qadir 74 Hz-də 1280x1024"
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, the correct informations can "
-#~ "be\n"
-#~ "obtained from your Internet Service Provider."
-#~ msgstr ""
-#~ "İndi isə ev sahibi bilgilərini girin. Ne girəcəyinizə\n"
-#~ "qerar vermədinizsə\n"
-#~ "(Məsələn, İXV (ISP) və DNS nömrələri kimi)bunları\n"
-#~ "daha sonra da internete girərək öyrənə bilərsiniz."
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Çoxlu Frekansa qadir 76 Hz-də 1280x1024"
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Seç:\n"
-#~ "\n"
-#~ " - IP ünvanı: Əgər IP ünvanını bilmirsinizsə, sistem idarəcisinəya da \n"
-#~ "İnternet xidmət vericisinə danışın.\n"
-#~ "\n"
-#~ " - Şəbəkə maskası: Ümumiyyətlə \"255.255.255.0\" yaxşı bir seçkidir. Əgər "
-#~ "əmin \n"
-#~ "deyilsəniz, yenə sistem idarəcinizə ya da xidmət vericinizəsoruşun.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Avtomatik IP : Əgər networkunuz bootp ya da dhcp protokollarından bir "
-#~ "dənəsini \n"
-#~ "istifadə edirsə bu seçənəyi işarətləyin."
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, ask your network administrator."
-#~ msgstr ""
-#~ "Əgər şəbəkədə NIS işlədilirsə, \"NIS kullan\" seçənəyini işarətləyin. "
-#~ "Əgər \n"
-#~ "bilmirsinizsə sistem idarəcinizə soruşun."
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, leave blank."
-#~ msgstr "İndi ev sahibi adını girin. Bilmirsinizsə boş buraxın."
-
-#~ msgid ""
-#~ "You may now enter dialup options. If you're not sure what to enter, the\n"
-#~ "correct information can be obtained from your ISP."
-#~ msgstr ""
-#~ "İndi çevirməli bağlantı seçənəklərini girə bilərsiniz. Əgər nə yazılması "
-#~ "lazım olduğunu\n"
-#~ "bilmirsinizsə İnternet xidmət vericinizdən lazımi bilgiləri alın."
-
-#~ msgid ""
-#~ "If you will use proxies, please configure them now. If you don't know if\n"
-#~ "you should use proxies, ask your network administrator or your ISP."
-#~ msgstr "Əgə vəkil (proxy) verici istifadə edacəmsəniz bunları girin."
-
-#~ msgid ""
-#~ "You can install cryptographic package if your internet connection has "
-#~ "been\n"
-#~ "set up correctly. First choose a mirror where you wish to download "
-#~ "packages and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "Əgər İnternet bağlantınız doğru şəkildə qurulmuş isə kriptoqrafik "
-#~ "paketi \n"
-#~ "də qura bilərsiniz. Əvvəl bir əks ünvanı seçin və daha sonra qurulacaq \n"
-#~ "paketləri quraşdırın."
-
-#~ msgid "You can now select your timezone according to where you live."
-#~ msgstr "İndi isə yaşadığınız yerə görə zaman zolağını seçin."
-
-#~ msgid ""
-#~ "You can configure a local printer (connected to your computer) or remote\n"
-#~ "printer (accessible via a Unix, Netware or Microsoft Windows network)."
-#~ msgstr ""
-#~ "Siz indi yerli və ya çevirməli yazıçını qura bilərsiniz\n"
-#~ "(Unix, Netware və ya Microsoft Windows networkundakı)."
-
-#~ msgid ""
-#~ "If you wish to be able to print, please choose one printing system "
-#~ "between\n"
-#~ "CUPS and LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS is a new, powerful and flexible printing system for Unix systems "
-#~ "(CUPS\n"
-#~ "means \"Common Unix Printing System\"). It is the default printing system "
-#~ "in\n"
-#~ "Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR is the old printing system used in previous Mandrake Linux "
-#~ "distributions.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you don't have printer, click on \"None\"."
-#~ msgstr ""
-#~ "Yazdırma funksiyası istəyirsinizsə CUPS və LPR arasında seçici\n"
-#~ "davranmalÄąsÄąnÄąz.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS yeni, gĂźclĂź ve elastik bir Unix yazdÄąrma sistemidir\n"
-#~ "CUPS yəni \"Common Unix Printing System\". Bu da Linuks Mandrake\n"
-#~ "də əsas yazdırma sistemidir.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR Linuks Mandrakenin kĂśhne sistemidir.\n"
-#~ "\n"
-#~ "\n"
-#~ "Printeriniz yox isə \"Yox\" düyməsinə tıqlayın."
-
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these types "
-#~ "requires\n"
-#~ "a different setup.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select \"Local\n"
-#~ "printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine, select\n"
-#~ "\"Remote printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Microsoft Windows "
-#~ "machine\n"
-#~ "(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
-#~ msgstr ""
-#~ "GNU/Linuks bir çox çap edici növü işlədə bilər. Hər bir növ\n"
-#~ "müxtəlif quruluş istəyər.\n"
-#~ "\n"
-#~ "\n"
-#~ "Çap ediciniz fiziki olaraq kompüterinizə bağlı isə\n"
-#~ "\"Yerli çap edici\"nĹ seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ "Unix sisteminə bağlı çap ediciyə uzaqdan bağlanmaq istəyirsinizsə\n"
-#~ "\"Uzaqdan bağlanılan çap edici\".\n"
-#~ "\n"
-#~ "\n"
-#~ " MS Windows kompüterinə (və ya SMB protokolunu\n"
-#~ "işlədən Unix kompüterinə) bağlı bir çap ediciyə çatmaq üçün\n"
-#~ "\"SMB/Windows95/98/NT\" seçənəyini işarətləyin."
-
-#~ msgid ""
-#~ "Please turn on your printer before continuing to let DrakX detect it.\n"
-#~ "\n"
-#~ "You have to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of printer: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you must have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer a more meaningful name, you "
-#~ "have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Description: this is optional but can be useful if several printers "
-#~ "are connected to your computer or if you allow\n"
-#~ " other computers to access to this printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Location: if you want to put some information on your\n"
-#~ " printer location, put it here (you are free to write what\n"
-#~ " you want, for example \"2nd floor\").\n"
-#~ msgstr ""
-#~ "Xahiş edirik DrakXin tapa bilməsi üçün yazıçınızı açın.\n"
-#~ "\n"
-#~ "Burada bir neçə mə'lumat verməlisiniz.\n"
-#~ "\n"
-#~ "\n"
-#~ "*Çap Edici adı: yazıçılar üçün \"lp\" işlədilir.\n"
-#~ "Ona görə də yazıçınızın adı \"lp\" olmalıdır.\n"
-#~ "Bir neçə çap ediciniz var isə istədiyiniz adı verə bilərsiniz. Sadəcə "
-#~ "olaraq ə aralarına boru işarəti \"|\" qoymalısınız.\n"
-#~ "Məsələn \"Mənim yazıçım|lp\".\n"
-#~ "Adında \"lp\" olan çap edici baş çap edici olacaqdır.\n"
-#~ "\n"
-#~ "\n"
-#~ "*Təsvir: İstəyə bağlıdır. Amma bir neçə çap ediciniz var isə\n"
-#~ "bir xeyli faydalı ola bilər.\n"
-#~ "\n"
-#~ "\n"
-#~ "*Yerləşmə: Çap Edicinin yeri haqqında istədiyinizi yaza bilərsiniz."
-#~ "Məsələn, \"2ci mərtəbə\".\n"
-
-#~ msgid ""
-#~ "You need to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of queue: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you need have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer to have a more meaningful "
-#~ "name, you have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ " \n"
-#~ " * Spool directory: it is in this directory that printing jobs are "
-#~ "stored. Keep the default choice\n"
-#~ " if you don't know what to use\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printer Connection: If your printer is physically connected to your "
-#~ "computer, select \"Local printer\".\n"
-#~ " If you want to access a printer located on a remote Unix machine, "
-#~ "select \"Remote lpd printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to access a printer located on a remote Microsoft "
-#~ "Windows machine (or on Unix machine using SMB\n"
-#~ " protocol), select \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to acces a printer located on NetWare network, select "
-#~ "\"NetWare\".\n"
-#~ msgstr ""
-#~ "Burada bir neçə mə'lumat verməlisiniz.\n"
-#~ "\n"
-#~ "\n"
-#~ "*İstək adı: yazıçılar üçün \"lp\" işlədilir.\n"
-#~ "Ona görə də yazıçınızın adı \"lp\" olmalıdır.\n"
-#~ "Bir neçə çap ediciniz var isə istədiyiniz adı verə bilərsiniz. Sadəcə "
-#~ "əolaraq aralarına boru işarəti \"|\" qoymalısınız.\n"
-#~ "Məsələn \"Mənim yazıçım|lp\".\n"
-#~ "Adında \"lp\" olan çap edici baş çap edici olacaqdır.\n"
-#~ "\n"
-#~ "\n"
-#~ "*Saxlama qovluğu: Çap Edici sifarişlərinizi saxlanıldığı yer.\n"
-#~ "Mövzudan bixəbər isəniz əsas qurğunu seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ "*Çap Edici bağlantısı: Çap Edici fiziki olaraq kompüterə bağlı ise\n"
-#~ "\"Yerli Çap Edici\" seçin.\n"
-#~ "Uzaq bir Unix sistemə bağlı çap edici isə\"Uzaqdan idarəli lpd Çap Edici"
-#~ "\" seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ "Uzaq SMB vericisi işlədən Unix və ya Windows sisteminə bağlıyazıçı üçün "
-#~ "isə \"SMB/Windows 95/98/NT\" seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ "NetWare şəbəkədə yerləşən çap edici üçün isə\"NetWare\" seçin.\n"
-
-#~ msgid ""
-#~ "Your printer has not been detected. Please enter the name of the device "
-#~ "on\n"
-#~ "which it is connected.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, most printers are connected on the first parallel port. "
-#~ "This\n"
-#~ "one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
-#~ "Windows."
-#~ msgstr ""
-#~ "Sizin çap edici tapılmadı. Xahiş edirik bağlı olduğu avadanlığın\n"
-#~ "adÄąnÄą girin.\n"
-#~ "\n"
-#~ "\n"
-#~ "Xəbəriniz olsun, bir çox çap edici birinci paralel qapıya bağlıdır.\n"
-#~ "Bu da GNU/Linuksda \"/dev/lp0\", Windowsda isə \"LPT1\"dir."
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "70 Hz də 1600x1200 qadir Monitor"
-#~ msgid "You must now select your printer in the above list."
-#~ msgstr "İndi yuxarĹdakĹ siyahĹdan çap edici seçmalisiniz."
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "76 Hz də 1600x1200 qadir Monitor"
#~ msgid ""
-#~ "Please select the right options according to your printer.\n"
-#~ "Please see its documentation if you don't know what choose here.\n"
-#~ "\n"
-#~ "\n"
-#~ "You will be able to test your configuration in next step and you will be "
-#~ "able to modify it if it doesn't work as you want."
-#~ msgstr ""
-#~ "Xahiş edirik yazıcınız üçün doğru qurğuları girin.\n"
-#~ "Nə seçəcəyinizi bilmirsiniz isə sənədlərə baxın\n"
-#~ "\n"
-#~ "\n"
-#~ "Bir sonrakı addımda yazıcınızı sınaya bilərsiniz və\n"
-#~ "daha sonra da istədiyiniz zaman dəyişdirə bilər."
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Seçdiyiniz paket qruplarının ümumi böyüklüyü təximən %d MBdır.\n"
#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
-#~ "Linuks sisteminiz üçün bir idarəci parolu verilməlidir. Bu parol\n"
-#~ "yazılış xətalarına meydan verməməsi və e'tibarlı olması səbəbi ilə iki "
-#~ "dəfə\n"
-#~ "girilməlidir.\n"
-#~ "\n"
-#~ "\n"
-#~ "Bu parolu diqqətli seçməlisiniz. Sadəcə idarəi parolunu bilən \n"
-#~ "adamlar sistemi idarə və dəyişiklik edə bilirlər. Ayrıca idarəci \n"
-#~ "parolu ilə sistemə girən bir adam bütün veriləri silib, sistema zərər \n"
-#~ "verə bilər. Seçdiyiniz parol alfanumerik xarakterlər daxil edib en az 8 "
-#~ "xarakter uzunluğunda olmalıdır. Hər hansı bir kağıza, dəftara qeyd\n"
-#~ "alınmamalıdır. Çox uzun bir parol və ya çox qarışıq bir parol işlədilir "
-#~ "isə \n"
-#~ "parolun xatırlanması çətinləşir.\n"
-#~ "\n"
-#~ "\n"
-#~ "İdarəci olaraq sistemə girəcayiniz zaman, giriş sırasında \"login\"\n"
-#~ "yazan qismə \"root\" və \"password\" yazan qismə idarəci parolunu\n"
-#~ "yazmalÄąsÄąnÄąz."
+#~ "Bu böyüklükdən daha azını yükləmək istəsəniz,\n"
+#~ "qurmaq istədiyiniz paket faizini seçin.\n"
+#~ "100%%'i seçərsəniz bütün paketlər qurulacaqdır."
#~ msgid ""
-#~ "You may now create one or more \"regular\" user account(s), as\n"
-#~ "opposed to the \"privileged\" user account, root. You can create\n"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
+#~ "You have space on your disk for only %d%% of these packages.\n"
#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "İndi bir ya da daha çox adamın Linuks sisteminizi istifadə etməsinə "
-#~ "icazə\n"
-#~ "verə bilərsiniz. Hər istifadəçi hesabı üçün edilən dəyişikliklər sadəcə\n"
-#~ "o istifadəçi ve istifadəçinin \"istifadəçi sırası\" üçün hökmlü olar.\n"
-#~ "\n"
-#~ "\n"
-#~ "Sistemi sadəcə siz istifadə edeceksəniz belə ayrı bir istifadəçi hesabı "
-#~ "açaraq\n"
-#~ "normal işler üçün bu hesabı istifadə etməlisiniz. İdarəçi \"root\" "
-#~ "hesabÄą\n"
-#~ "gündəlik işlərdə istifadə edilməməlidir. Bu bir təhlükəsizlik riski "
-#~ "təşkil edər.\n"
-#~ "Sadə bir istifadəçi hesabı ilə işləmək sizi və sistemi size qarşı\n"
-#~ "qoruyar. İdarəci hesabı olan \"root\" sadəcə, sadə bir istifadəçi hesabı\n"
-#~ "ilə etməyəcəyiniz idarə və təmir işləri üçün istifadə edilməlidir."
-
-#~ msgid ""
-#~ "Creating a boot disk is strongly recommended. If you can't\n"
-#~ "boot your computer, it's the only way to rescue your system without\n"
-#~ "reinstalling it."
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
#~ msgstr ""
-#~ "Başlanğıc disketi yaradılması aşırı dərəcədə tövsiyyə edilir.\n"
-#~ "Sistemi aça bilmədiyiniz zaman bu, sizin üçün tək qurtuluş yolu olar.\n"
-#~ "Yoxsa sistemi yenidən yükləmək məcburiyyətindəsiniz."
-
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <number>: use the corresponding text mode.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories\n"
-#~ "stored in \"/tmp\" when you boot your system, select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the\n"
-#~ "BIOS about the amount of RAM present in your computer. As consequence, "
-#~ "Linux may\n"
-#~ "fail to detect your amount of RAM correctly. If this is the case, you "
-#~ "can\n"
-#~ "specify the correct amount or RAM here. Please note that a difference of "
-#~ "2 or 4\n"
-#~ "MB between detected memory and memory present in your system is normal."
-#~ msgstr ""
-#~ "LILO və grub ana seçənəkləri bunlardır: \n"
-#~ "- Açılış avadanlığı: Açılış sektorunu olduğu sabit disk bölməsini daxil "
-#~ "edən avadanlığın\n"
-#~ "adını təyin edər.\n"
-#~ "Əgər heç bir şey bilmirsinizsə \"/dev/hda\"yı seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ "- Əsas əks ilə açmadan əvvəl gecikmə: Açılış sistem yükləyicisinin ilk \n"
-#~ "əksi açmadan əvvəl gözləyəcəyi zamanın, saniyənin onda biri cinsindən "
-#~ "miqdarÄądÄąr.\n"
-#~ "Bu, klaviaturanın fəallaşmasından həmən sonra sabit diskdən açılan "
-#~ "sistemlər üçün faydalıdır.\n"
-#~ "Sistem yükləyicisi, əgər \"delay\" sıfır olaraq verilmiş isə\n"
-#~ "heç gözləməz.\n"
-#~ "\n"
-#~ "\n"
-#~ "- Ekran modu: Açılışda bir neçə mətn ekran modu seçilə bilər:\n"
-#~ " * sadə: 80x25 mətn ekran açılır.\n"
-#~ " * <rəqəm>: Göstərilənn rəqəmlərə görə mətn ekran rezolyusiyası "
-#~ "quraşdırılır.\n"
-#~ "\n"
-#~ "\n"
-#~ "- \"/tmp\"I hər açılışda təmizlə: Əgər hər açılışda \"/tmp\" cərgəsində "
-#~ "olan bĂźtĂźn\n"
-#~ "olan bütün cərgə və qovluqların silinməsini istəyirsinizsə, bu seçənəyi "
-#~ "seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ "- Var olan RAM miqdarı: Təəsüf ki, Linuks həmişə RAM miqdarını BIOSdan "
-#~ "dĂźzgĂźn\n"
-#~ "bir şəkildə öyrənəməyə bilər. Onda siz çzünüz sisteminizdə olan həqiq RAM "
-#~ "miqdarÄąnÄą buradan\n"
-#~ "girə bilərsiniz. Yadda saxlayın ki, həqiqi RAM ilə sistemin tapdığı "
-#~ "miqdar arasÄąnda 2\n"
-#~ "və ya 4 MBlıq fərq ola bilər."
-
-#~ msgid ""
-#~ "SILO is a bootloader for SPARC: it is able to boot\n"
-#~ "either GNU/Linux or any other operating system present on your computer.\n"
-#~ "Normally, these other operating systems are correctly detected and\n"
-#~ "installed. If this is not the case, you can add an entry by hand in this\n"
-#~ "screen. Be careful as to choose the correct parameters.\n"
-#~ "\n"
-#~ "\n"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "anyone, in which case you can delete the corresponding entries. But\n"
-#~ "in this case, you will need a boot disk in order to boot them!"
-#~ msgstr ""
-#~ "SILO (Linuks Yükləyici) SPARC üçün bir sistem yükləyicidir: sistemi "
-#~ "Linuks\n"
-#~ "ya da kompüterinizdəki başqa bir əməliyyat sistemiylə aça bilirlər.\n"
-#~ "Əsasən bu digər əməliyyat sistemləri doğru bir şəkildə təsbit edilib "
-#~ "açılışa\n"
-#~ "qurula bilərlər. Əgər bir problem olarsa, buradan əllə əlavə edilə "
-#~ "bilərlər.\n"
-#~ "Parametrlər mövzusunda diqqətli olun."
-
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ " - Açılış avadanlığı: Açılış sektorunu olduğu sabit disk bölməsini daxil "
-#~ "edən avadanlığın\n"
-#~ "adını təyin edər.\n"
-#~ "Əgər heç bir şey bilmirsinizsə \"/dev/hda\"yı seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Ana əks ilə açmadan əvvəl gecikmə: Açılış sistem yükləyicisinin ilk \n"
-#~ "görünüşü açmadan əvvəl gözləyəcəyi zamanın, saniyənin onda biri cinsindən "
-#~ "miqdarÄądÄąr.\n"
-#~ "Bu, klaviaturanın aktivləşməsindən həmən sonra sabit diskdən açılan "
-#~ "sistemlər üçün faydalıdır.\n"
-#~ "Sistem yükləyicisi, əgər delay sıfır olaraq verilmiş isə\n"
-#~ "heç gözləməz."
-
-#~ msgid ""
-#~ "Now it's time to configure the X Window System, which is the\n"
-#~ "core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "Buradan etibarən, Linuks GUI (Qrafik İstifadəçi Ara üzü) çəkirdəyini\n"
-#~ "əmələ gətirən X Window sistemini quracağıq. Buna görə də ekran kartınızı\n"
-#~ "və monitorunuzu qurmalısınız. Bu addımların çoxu onsuz da avtomatik "
-#~ "olaraq\n"
-#~ "keçiləcək və sizə sadəcə olaraq tövsiyə edilən qurğuları incələmək və "
-#~ "qəbul etmək\n"
-#~ "düşəcək. :-)\n"
-#~ "\n"
-#~ "\n"
-#~ "Quruluş qurtardığında əgər DrakXdən əksini istəmədiniz isə X Window \n"
-#~ "başlayacaqdır. Qurğuşarınıza baxın və yoxlayın. Qurğularınızı yoxlayaraq\n"
-#~ "uyuşmazlıq olub olmadığına baxın, lazım gəlirsə geriyə dönün."
-
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr "X qurğularında problem olarsa aşağıdakı seçənəkləri istifadə edin."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "Əgər sistemə girərkən qrafik arar üzünün gəlməsini istəyirsənız isə \"Bəli"
-#~ "\",əks halda \"Xeyr\" düyməsinə basın."
-
-#~ msgid ""
-#~ "You can choose a security level for your system. Please refer to the "
-#~ "manual for complete\n"
-#~ " information. Basically, if you don't know what to choose, keep the "
-#~ "default option.\n"
-#~ msgstr ""
-#~ "Sisteminiz üçün təhlükəsizlik səviyyəsini seçə bilərsiniz. Ətraflı "
-#~ "mə'lumat üçün xahiş edirik bələdçiyə\n"
-#~ " baş vurun. Əsasən , nə seçəcəyinizi bilmirsiniz isə buraya heç "
-#~ "toxunmayÄąn.\n"
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
-#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
-#~ msgstr ""
-#~ "İndi sistem yenidən qapanıb açılacaqdır.\n"
-#~ "\n"
-#~ "Açıldıqdan sonra Linuks Mandrake avtomatik olaraq yüklənəcəkdir. Əgər "
-#~ "başqa \n"
-#~ "bir əməliyyat sistemi də işlədəcəksəniz əlavə xəbərdarlıqları oxuyun."
-
-#~ msgid "Czech (Programmers)"
-#~ msgstr "Çex dili (Proqramcılar)"
-
-#~ msgid "Slovakian (Programmers)"
-#~ msgstr "Slovakca (ProqramcÄąlar)"
-
-#~ msgid "Name of the profile to create:"
-#~ msgstr "YaradÄąlacaq profil adÄą:"
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "/etc/fstab-a Yaz"
-
-#~ msgid "Format all"
-#~ msgstr "Hamısını şəkilləndir"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "Bütün bölmələri şəkilləndirdikdən sonra, "
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "bu bölmələrdəki bütün verilər itəcəkdir"
-
-#~ msgid "Reload"
-#~ msgstr "Yenidən yüklə"
-
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr ""
-#~ "Linuks köçürülməsi üçün bir dənə avtomatik qurulum disketi yaratmaq "
-#~ "istəyərmisiniz?"
-
-#~ msgid "ADSL configuration"
-#~ msgstr "ADSL quraşdırılması"
-
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ "Uzaq CUPS vericiləri üçün heç bir quraşdırmaya lüzüm yoxdur \n"
-#~ "Buradakı hər çap edici avtomatik tapılacaqdır. \n"
-#~ "Əgər uzaq çap edici vericiniz var ise CUPS vercisinin \n"
-#~ "IP ünvanını verməlisiniz. Qapı nömrəsi vacib \n"
-#~ "deyil."
-
-#, fuzzy
-#~ msgid "Remote queue name missing!"
-#~ msgstr "Uzaqdakı növbə adı"
-
-#, fuzzy
-#~ msgid "Command line"
-#~ msgstr "Sahə(domain) adı"
-
-#, fuzzy
-#~ msgid "Modify printer"
-#~ msgstr "Çap Edicisiz"
-
-#~ msgid "Network Monitoring"
-#~ msgstr "Şəbəkə Monitoru"
-
-#~ msgid "Profile "
-#~ msgstr "Profil "
-
-#~ msgid "Statistics"
-#~ msgstr "Statistikalar"
-
-#~ msgid "Sending Speed:"
-#~ msgstr "Yollama Sür'əti:"
-
-#~ msgid "Receiving Speed:"
-#~ msgstr "Alam Sür'əti:"
-
-#, fuzzy
-#~ msgid "Connection Time: "
-#~ msgstr "Bağlantı növü:"
-
-#~ msgid "Connecting to Internet "
-#~ msgstr "İnternetə bağlanılır"
-
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "İnternet ilə bağlantını kəs"
-
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "İnternet ilə bağlantı kəsilməsi bacarılmadı."
-
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "İnternet ilə bağlantı kəsilməsi qurtardı."
-
-#~ msgid "Connection complete."
-#~ msgstr "Bağlantı qurtardı."
-
-#~ msgid ""
-#~ "Connection failed.\n"
-#~ "Verify your configuration in the Mandrake Control Center."
-#~ msgstr ""
-#~ "Bağlantı iflas etdi.\n"
-#~ "Qurğularınızı Mandrake İdarə Mərkəzindən yoxlayın."
-
-#~ msgid "sent: "
-#~ msgstr "yollandÄą:"
-
-#~ msgid "received: "
-#~ msgstr "alÄąndÄą:"
-
-#~ msgid "Default Runlevel"
-#~ msgstr "Əsas Runlevel"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "Quraşdırma faylının içindəkilərlə oynanılmaz"
-
-#~ msgid "Unrecognized config file"
-#~ msgstr "Tanınmaz quraşdırma faylı"
-
-#~ msgid "Adapter"
-#~ msgstr "Adapter"
-
-#, fuzzy
-#~ msgid "Disable network"
-#~ msgstr "Bağla"
-
-#, fuzzy
-#~ msgid "Enable network"
-#~ msgstr "Aç"
-
-#~ msgid ""
-#~ "You can now test your mouse. Use buttons and wheel to verify\n"
-#~ "if settings are good. If not, you can click on \"Cancel\" to choose "
-#~ "another\n"
-#~ "driver."
-#~ msgstr ""
-#~ "İndi siçanı sınaya bilərsiniz. Hər şeyin yolunda olduğunu \n"
-#~ "sınamaq üçün düymə və çarxı işlədin. Qurğular yaxşı isə\n"
-#~ "problem yoxdur. Əgər deyilsə onda \"Ləğv et\"i tıqlayaraq\n"
-#~ "başqa siçan sürücüsü seçə bilərsiniz."
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "DSL (və ya ADSL) bağlantısı"
-
-#, fuzzy
-#~ msgid "Choose"
-#~ msgstr "Qapat"
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr "CUPS ilə çap ediciyə yetişmək üçün URIni verməlisiniz"
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "Bəli, ASCII sınaq səhifəsi çap et"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "Bəli, PostScript sınaq səhifəsi çap et"
-
-#~ msgid "Paper Size"
-#~ msgstr "Kağız Böyüklüyü"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "İş bittikdən sonra səhifə atılsın mı?"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "Uniprint sürücü seçənəkləri"
-
-#~ msgid "Color depth options"
-#~ msgstr "Rəng dərinlik seçənəkləri"
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "Mətni PostScript olaraq yazdırsın mı?"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "Mətn pilləli olaraq düzəldilsin mi?"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Hər yekun səhifəsinin nömrəsi"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "Sağ/Sol boşluqlar nöqtəvi(inch'in 1/72'si"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "Üst/Alt boşluqlar nöqtəvi (inch'in 1/72'si)"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "Əlavə GhostScript seçənəkləri"
-
-#~ msgid "Extra Text options"
-#~ msgstr "Əlavə mətn seçənəkləri"
-
-#~ msgid "Reverse page order"
-#~ msgstr "Tərs səhifə sıralaması"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Çap Edici Bağlantısı Seçin"
-
-#~ msgid ""
-#~ "Every printer need a name (for example lp).\n"
-#~ "Other parameters such as the description of the printer or its location\n"
-#~ "can be defined. What name should be used for this printer and\n"
-#~ "how is the printer connected?"
-#~ msgstr ""
-#~ "Hər çap edicinin bir adı olmalıdır (məsələn lp).\n"
-#~ "Çap edicinin təsviri və yeri də göstərilməlidir.\n"
-#~ "Bu çap edicinin adı nədir və yeri haradadır?"
-
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a\n"
-#~ "name (often lp) and a spool directory associated with it. What\n"
-#~ "name and directory should be used for this queue and how is the printer "
-#~ "connected?"
-#~ msgstr ""
-#~ "Hər çap edici növbəsinin (çap edici işlərinin yollandığı yer) bir adı "
-#~ "olar \n"
-#~ "(çoxunda lp) və gözləmə qovluğuna ehtiyac duyar. Bu növbə üçün\n"
-#~ "hansı ad və qovluq istifadə edilsin?"
-
-#~ msgid "Name of queue"
-#~ msgstr "Növbənin adı"
-
-#~ msgid "Spool directory"
-#~ msgstr "Gözləmə qovluğu"
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ msgstr ""
-#~ "Daha e'tibarlı bir sistem üçün \"Kölgə parol işlət\" və \"MD5 kodlama \n"
-#~ "işlət\" seçənəklərini işarətlayin."
-
-#~ msgid ""
-#~ "If your network uses NIS, select \"Use NIS\". If you don't know, ask "
-#~ "your\n"
-#~ "network administrator."
-#~ msgstr ""
-#~ "Əgər şəbəkədə NIS istifadə edilirsə, \"NIS işlət\" seçəneyini "
-#~ "işarətləyin. Əgər \n"
-#~ "bilmirsinizsə sistem idarəcinizə soruşun."
-
-#~ msgid "yellow pages"
-#~ msgstr "sarı səhifələr"
+#~ "Sabit diskinizdə bu paketlərin sadəcə olaraq %d%%'sini quracaq qədər yer "
+#~ "var.\n"
+#~ "Bundan daha azını qurmaq istəsəniz,\n"
+#~ "daha az bir faiz sadəcə ən vacib paketləri ;\n"
+#~ "%d%% isə qurula biləcək bütün paketləri quracaqdır."
-#~ msgid "Provider dns 1"
-#~ msgstr "Ä°XM dns 1"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Sonrakı addımda daha geniş bir seçki qabağınıza gələcəkdir."
-#~ msgid "Provider dns 2"
-#~ msgstr "Ä°XM dns 2"
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Qurulacaq paketlərin faizi"
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr "İnternetə necə bağlanmaq istəyirsiniz?"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Təhlükəsizlik səviyyəsini seçin"
diff --git a/perl-install/share/po/be.po b/perl-install/share/po/be.po
index 617c278c6..e808ec713 100644
--- a/perl-install/share/po/be.po
+++ b/perl-install/share/po/be.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
"PO-Revision-Date: 2000-09-24 12:30 +0100\n"
"Last-Translator: Alexander Bokovoy <ab@avilink.net>\n"
"Language-Team: be\n"
@@ -13,67 +13,99 @@ msgstr ""
"Content-Type: text/plain; charset=windows-1251\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 Ęá"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 Ęá"
-#: ../../Xconfigurator.pm_.c:246
-#, fuzzy, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Ęŕíôiăóđŕâŕöü ěŕţ ęŕđňó"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 Ěá"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 Ěá"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 Ěá"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 Ěá"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 Ěá"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 Ěá"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 Ěá öi áîëĺé"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Ŕá˙đűöĺ X ńĺđâĺđ"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X ńĺđâĺđ"
+
+#: ../../Xconfig/card.pm_.c:225
#, fuzzy
msgid "Multi-head configuration"
msgstr "÷űňŕííĺ íŕńňđîéęi"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Âiäýŕęŕđňŕ"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Ďŕçíŕ÷öĺ ďŕěĺđ âiäýŕďŕě˙öi"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Ŕá˙đűöĺ âiäýŕęŕđňó"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "Íŕńňđîéęŕ XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Ŕá˙đűöĺ X ńĺđâĺđ"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "ßęóţ ęŕíôiăóđŕöűţ XFree âű ćŕäŕĺöĺ ŕňđűěŕöü?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X ńĺđâĺđ"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Ŕá˙đűöĺ X ńĺđâĺđ"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X ńĺđâĺđ"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Ęŕíôiăóđŕâŕöü ěŕţ ęŕđňó"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "Ńĺđâĺđ XFree86 %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "ßęóţ ęŕíôiăóđŕöűţ XFree âű ćŕäŕĺöĺ ŕňđűěŕöü?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s ç ďŕäňđűěęŕé 3D-ďŕńęŕđýíí˙"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -82,36 +114,19 @@ msgstr ""
"Ďŕäňđűěęŕ 3D-ďŕńęŕđýíí˙ ˘ Âŕřŕé âłäýŕęŕđöĺ âűęŕíŕíŕ ňîëüęł ˘ XFree %s.\n"
"XFree %s ěîćŕ âűęŕđűńňî˘âŕöü ňîëüęł 2D-ďŕńęŕđýííĺ äë˙ ăýňŕé âłäýŕęŕđňű."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Âŕřŕ âiäýŕęŕđňŕ ěîćŕ ěĺöü 3D-ďŕńęŕđýííĺ, ˙ęîĺ ďŕäňđűěëiâŕĺööŕ ňîëüęi XFree %"
"s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s ç ďŕäňđűěęŕé 3D-ďŕńęŕđýíí˙"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Âŕřŕ âiäýŕęŕđňŕ ěîćŕ ěĺöü 3D-ďŕńęŕđýííĺ, ˙ęîĺ ďŕäňđűěëiâŕĺööŕ ňîëüęi XFree %"
-"s.\n"
-"ĚŔÉÖĹ ÍŔ ĄÂŔÇĹ, ŘŇÎ ĂÝŇŔ ÝĘŃĎĹĐŰĚĹÍŇŔËÜÍŔß ĎŔÄŇĐŰĚĘŔ I ĚÎĆŔ ĎĐŰÂĹŃÖI ÄŔ\n"
-"ÇŔÂIŃŔÍÍß ÂŔŘŔĂŔ ĘŔĚĎ'ŢŇÝĐÓ."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s ç ýęńďĺđűěĺíňŕëüíŕé ďŕäňđűěęŕé 3D-ďŕńęŕđýíí˙"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -124,31 +139,60 @@ msgstr ""
"ÇŔÂIŃŔÍÍß ÂŔŘŔĂŔ ĘŔĚĎ'ŢŇÝĐÓ. Âŕřŕ âiäýŕęŕđňŕ ďŕäňđűěëiâŕĺööŕ XFree %s, ˙ęi\n"
"ëĺďĺé ďŕäňđűěëiâŕĺ ęŕđňű ç 2D-ďŕńęŕđýííĺě."
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
+"Âŕřŕ âiäýŕęŕđňŕ ěîćŕ ěĺöü 3D-ďŕńęŕđýííĺ, ˙ęîĺ ďŕäňđűěëiâŕĺööŕ ňîëüęi XFree %"
+"s.\n"
+"ĚŔÉÖĹ ÍŔ ĄÂŔÇĹ, ŘŇÎ ĂÝŇŔ ÝĘŃĎĹĐŰĚĹÍŇŔËÜÍŔß ĎŔÄŇĐŰĚĘŔ I ĚÎĆŔ ĎĐŰÂĹŃÖI ÄŔ\n"
+"ÇŔÂIŃŔÍÍß ÂŔŘŔĂŔ ĘŔĚĎ'ŢŇÝĐÓ."
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Íŕńňđîéęŕ XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Ďŕçíŕ÷öĺ ďŕěĺđ âiäýŕďŕě˙öi"
+#: ../../Xconfig/card.pm_.c:445
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Ŕá˙đűöĺ äŕäŕňęîâű˙ íŕńňđîéęi äë˙ ńĺđâĺđŕ"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Öł ćŕäŕĺöĺ Âű çŕőŕâŕöü çě˙íĺííł?\n"
+"Á˙ăó÷ŕ˙ ęŕíôłăóđŕöű˙:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Ŕá˙đűöĺ ěŕíiňîđ"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Ěŕíiňîđ"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Ďŕ âűáŕđó"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Ŕăóëüíű"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Ŕäęŕň"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -171,518 +215,328 @@ msgstr ""
"âű ěîćŕöĺ ńŕďńŕâŕöü ěŕíiňîđ.\n"
"Ęŕëi âű ńóěí˙âŕĺöĺń˙, ŕá˙đűöĺ ęŕíńĺđâŕňű˘íű˙ íŕńňđîéęi."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "×ŕńöłí˙ ăŕđűçŕíňŕëüíűé đŕçăîđňęi"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "×ŕńöłí˙ âĺđňűęŕëüíŕé đŕçăîđňęi"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Ěŕíiňîđ ďŕęóëü íĺ íŕńňđîĺíű"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Âiäýŕęŕđňŕ ˙ř÷ý íĺ ŕäęŕíôiăóđŕâŕíŕ"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Ďŕěĺđű ýęđŕíó ˙ř÷ý íĺ ďŕçíŕ÷ŕíű"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Öi ćŕäŕĺöĺ ďđŕňýńöiđŕâŕöü íŕńňđîéęi?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Ďŕď˙đýäćŕííĺ: ňýńöiđŕâŕííĺ íŕ ăýňŕé âiäýŕęŕđöĺ íĺá˙ńďĺ÷íŕ"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Ďđŕâĺđęŕ ďŕđŕěĺňđࢠíŕńňđîéęi"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 ęîëĺđࢠ(8 áiňŕ˘)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"ďŕńďđŕáóéöĺ çě˙íiöü íĺęŕňîđű˙ ďŕđŕěĺňđű"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 ňűń˙÷ű ęîëĺđࢠ(15 áiňŕ˘)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Ďŕěűëęŕ:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 ňűń˙÷ ęîëĺđࢠ(16 áiňŕ˘)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Çŕńňŕëîń˙ %d ńĺęóíäŕ˘"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 ěiëü¸íࢠęîëĺđࢠ(24 áiňű)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Ăýňŕ äŕęëŕäíű˙ ďŕđŕěĺňđű íŕńňđîéęi?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 ěiëi˙đäŕ ęîëĺđࢠ(24 áiňű)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Ŕňđűěŕíŕ ďŕěűëęŕ, ďŕńďđŕáóéöĺ çě˙íiöü ďŕđŕěĺňđű"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Ďŕěĺđű ýęđŕíó"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Ďŕěĺđű ýęđŕíó"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Âűáŕđ ďŕěĺđࢠýęđŕíó i ăëűáiíi ęîëĺđó"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Âiäýŕęŕđňŕ: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Ńĺđâĺđ XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-#, fuzzy
-msgid "More"
-msgstr "Ďĺđŕíîń"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Ŕäěĺíŕ"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Îę"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-#, fuzzy
-msgid "Expert Mode"
-msgstr "Ýęńďĺđň"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Ďŕęŕçŕöü óń¸"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Öi ćŕäŕĺöĺ ďđŕňýńöiđŕâŕöü íŕńňđîéęi?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Ďŕěĺđű ýęđŕíó"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Ďđŕâĺđęŕ ďŕđŕěĺňđࢠíŕńňđîéęi"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Ňűď ęëŕâi˙ňóđű: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Ňűď ěűřű: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Ěűř: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Ěŕíiňîđ: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "×ŕńöłí˙ ăŕđ.đŕçă. ěŕíiňîđó: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "×ŕńöłí˙ âĺđň.đŕçă. ěŕíiňîđó: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Âiäýŕęŕđňŕ: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Âiäýŕęŕđňŕ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Âiäýŕďŕě˙öü: %s Ęá\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Ďŕđŕěĺňđű ăëűáiíi ęîëĺđó: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Ďŕěĺđű ýęđŕíó: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Ńĺđâĺđ XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Ńĺđâĺđ XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Ďŕäđűőňî˘ęŕ íŕńňđîéęi X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Řňî âű ćŕäŕĺöĺ çđŕáiöü?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Çě˙íiöü ěŕíiňîđ"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Çě˙íiöü âiäýŕęŕđňó"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Çě˙íiöü íŕńňđîéęi Ńĺđâĺđó"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Çě˙íiöü ďŕěĺđű ýęđŕíó"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Iíôŕđěŕöű˙"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Ďđŕâĺđűöü ˙ř÷ý đŕç"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Âűőŕä"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Öł ćŕäŕĺöĺ Âű çŕőŕâŕöü çě˙íĺííł?\n"
-"Á˙ăó÷ŕ˙ ęŕíôłăóđŕöű˙:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "Çŕďóńę X ďđű ńňŕđöĺ ńińňýěű"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Ěîćíŕ íŕńňđîiöü ńińňýěó äë˙ ŕ˘ňŕěŕňű÷íŕăŕ çŕďóńęó X ďŕńë˙ ńňŕđňó ńińňýěű.\n"
"Ćŕäŕĺöĺ, ęŕá X ńňŕđňŕâࢠďđű đýńňŕđöĺ?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Ęŕëi ëŕńęŕ, ďĺđŕéäçiöĺ ˘ %s äë˙ ŕęňűâŕöűi çě˙íĺíí˙˘"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Ęŕëi ëŕńęŕ, âűéäçiöĺ, ŕ ďîňűě ńęŕđűńňŕéöĺ Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 ęîëĺđࢠ(8 áiňŕ˘)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 ňűń˙÷ű ęîëĺđࢠ(15 áiňŕ˘)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 ňűń˙÷ ęîëĺđࢠ(16 áiňŕ˘)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 ěiëü¸íࢠęîëĺđࢠ(24 áiňű)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 ěiëi˙đäŕ ęîëĺđࢠ(24 áiňű)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 Ęá"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 Ęá"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 Ěá"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 Ěá"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 Ěá"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 Ěá"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-#, fuzzy
-msgid "16 MB"
-msgstr "1 Ěá"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-#, fuzzy
-msgid "32 MB"
-msgstr "2 Ěá"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-#, fuzzy
-msgid "64 MB or more"
-msgstr "16 Ěá öi áîëĺé"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Ńňŕíäŕđňíű VGA, 640x480 ďđű 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 ďđű 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Ńóěĺńíű ç 8514, 1024x768 ďđű 87 Hz ďđŕçđŕäęîâŕ (í˙ěŕ 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 ďđi 87 Hz ďđŕçđŕäęîâŕ, 800x600 ďđű 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Extended Super VGA, 800x600 ďđű 60 Hz, 640x480 ďđű 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Íĺďđŕçđŕäęîâŕ SVGA, 1024x768 ďđű 60 Hz, 800x600 ďđű 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Âűńîę÷ŕńöłí¸âű SVGA, 1024x768 ďđű 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Řěŕň÷ŕńöłí¸âű, ˙ęi çäîëüíű ďŕäňđűěëiâŕöü 1280x1024 ďđű 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Řěŕň÷ŕńöłí¸âű, ˙ęi çäîëüíű ďŕäňđűěëiâŕöü 1280x1024 ďđű 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Řěŕň÷ŕńöłí¸âű, ˙ęi çäîëüíű ďŕäňđűěëiâŕöü 1280x1024 ďđű 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Ěŕíiňîđ, ˙ęi çäîëüíű ďŕäňđűěëiâŕöü 1600x1200 ďđű 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Ěŕíiňîđ, ˙ęi çäîëüíű ďŕäňđűěëiâŕöü 1600x1200 ďđű 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Ďĺđřű ńĺęňŕđ çŕăđóçŕ÷íŕăŕ đŕçäçĺëó"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Ďĺđřű ńĺęňŕđ ďđűëŕäű (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "Óńňŕë˙âŕííĺ SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Ęóäű âű ćŕäŕĺöĺ ˘ńňŕë˙âŕöü ďŕ÷ŕňęîâű çŕăđóç÷űę?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "Óńňŕë˙âŕííĺ LILO/GRUB"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr ""
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr ""
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr ""
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Ăŕëî˘íű˙ îďöűi ďŕ÷ŕňęîâŕăŕ çŕăđóç÷űęó"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
#, fuzzy
msgid "Bootloader to use"
msgstr "Ăŕëî˘íű˙ îďöűi ďŕ÷ŕňęîâŕăŕ çŕăđóç÷űęó"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Óńňŕë˙âŕííĺ çŕăđóç÷űęó"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Çŕăđóçŕ÷íŕ˙ ďđűëŕäŕ"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (íĺ ďđŕöóĺ ďđű ńňŕđűő âĺđńi˙ő BIOS)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Ęŕěďŕęňíŕ"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "ęŕěďŕęňíŕ"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Âiäýŕ-đýćűě"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Çŕňđűěęŕ ďĺđŕä çŕăđóçęŕé âîáđŕçó ďŕ äŕěŕ˘ëĺííţ"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Ďŕđîëü"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Ďŕ˘ňŕđűöĺ ďŕđîëü"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Ŕáěĺćŕâŕííĺ îďöű˙˘ ęŕěŕíäíŕăŕ đŕäęŕ"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "ŕáěĺćŕâŕííĺ"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Ŕ÷űř÷ŕöü /tmp ďđű ęîćíŕé çŕăđóçöű"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Ďŕçíŕ÷öĺ äŕęëŕäíű ďŕěĺđ RAM (çíîéäçĺíŕ %d Má)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Äŕńňóďíŕ řěŕň ďđîôië˙˘"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Ďŕçíŕ÷öĺ ďŕěĺđ RAM ó Má"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Îďöű˙ ``Ŕáěĺćŕâŕííĺ îďöű˙˘ ęŕěŕíäíŕăŕ đŕäęó'' íĺ âűęŕđűńňî˘âŕĺööŕ áĺç ďŕđîë˙"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Ďŕńďđŕáóéöĺ ˙ř÷ý đŕç"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Ďŕđîëi íĺ ńóďŕäŕţöü"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr ""
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr ""
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr ""
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr ""
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr ""
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
#, fuzzy
msgid "Default OS?"
msgstr "Ďŕ äŕěŕ˘ëĺííţ"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -691,84 +545,84 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Ó ěĺíţ ěŕţööŕ íŕńňóďíű˙ ďóíęňű.\n"
"Âű ěîćŕöĺ äŕäŕöü ˙ř÷ý, ŕëüáî çě˙íiöü ińíóţ÷ű˙."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Äŕäŕöü"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Çđîáëĺíŕ"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
#, fuzzy
msgid "Modify"
msgstr "Çě˙íiöü RAID"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "ßęi ňűď ďóíęňŕ ćŕäŕĺöĺ äŕäŕöü?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Iířŕ˙ ŔŃ (SunOS,...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Iířŕ˙ ŔŃ (MacOS,...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Iířŕ˙ ŔŃ (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Âîáđŕç"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Äŕëó÷űöü"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "×űňŕííĺ-çŕďiń"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Ňŕáëiöŕ"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Íĺíŕäçĺéíŕ"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Ěĺňęŕ"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Ďŕ äŕěŕ˘ëĺííţ"
@@ -802,53 +656,75 @@ msgstr "Âű ďŕâiííű ěĺöü đŕçäçĺë swap"
msgid "This label is already used"
msgstr "Ăýňŕ˙ ěĺňęŕ ˘ćî âűęŕđűńňî˘âŕĺööŕ"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Çíîéäçĺíű %s %s iíňýđôĺéńű"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Öi ¸ńöü ó âŕń iířű?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Öi ¸ńöü ó âŕń %s iíňýđôĺéń?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Íĺ"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Ňŕę"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Ăë. ŕďińŕííĺ ŕáńňŕë˙âŕíí˙"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Óńňŕë˙âŕííĺ äđŕéâĺđó äë˙ %s ęŕđňű %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(ěîäóëü %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Âű íĺ ěîćŕöĺ çŕäŕöü îďöűi ěîäóëţ %s.\n"
+"Îďöűi - ó ôŕđěŕöĺ ``iě˙=çíŕ÷ýííĺ iě˙2=çíŕ÷ýííĺ2 ...''.\n"
+"Íŕďđűęëŕä, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Îďöűi ěîäóëţ:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "ßęi äđŕéâĺđ %s ďŕńďđŕáŕâŕöü?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -865,37 +741,15 @@ msgstr ""
"˘ ďîřóęŕő íĺŕáőîäíŕé iíôŕđěŕöűi? Ěŕă÷űěŕ, ňýńöiđŕâŕííĺ ďđűâ˙äçĺ\n"
"äŕ ńďűíĺíí˙ ęŕěď'ţňýđó, ŕëĺ ˙íî íi÷îăŕ íĺ ńŕďńóĺ."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Ŕ˘ňŕďîřóę"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Ďŕçíŕ÷öĺ ďŕđŕěĺňđű"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Âű íĺ ěîćŕöĺ çŕäŕöü îďöűi ěîäóëţ %s.\n"
-"Îďöűi - ó ôŕđěŕöĺ ``iě˙=çíŕ÷ýííĺ iě˙2=çíŕ÷ýííĺ2 ...''.\n"
-"Íŕďđűęëŕä, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Îďöűi ěîäóëţ:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -904,51 +758,56 @@ msgstr ""
"Çŕăđóçęŕ ěîäóëţ %s íĺ ďđŕéřëŕ.\n"
"Ćŕäŕĺöĺ ďŕńďđŕáŕâŕöü ç iířűěi ďŕđŕěĺňđŕěi?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(óćî äŕäŕäçĺíŕ %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Ăýňű ďŕđîëü çŕíŕäňŕ ďđîńňű"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Ęŕëi ëŕńęŕ, óâ˙äçiöĺ iě˙ ęŕđűńňŕëüíięó"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Iě˙ ęŕđűńňŕëüíięó ďŕâiííŕ çě˙ř÷ŕöü ëiňŕđű ňîëüęi íŕ íićíiě đýăińňđű, \n"
"ëi÷áű, `-' i `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Ăýňŕ iě˙ ęŕđűńňŕëüíięó ˘ćî äŕäŕäçĺíŕ"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Ăýňŕ iě˙ ęŕđűńňŕëüíięó ˘ćî äŕäŕäçĺíŕ"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Äŕäŕöü ęŕđűńňŕëüíięŕ"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -957,32 +816,32 @@ msgstr ""
"Óâ˙äçiöĺ iě˙ ęŕđűńňŕëüíięó\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Ďđűí˙öü ęŕđűńňŕëüíięŕ"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Óëŕńíŕĺ iě˙"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Iě˙ ęŕđűńňŕëüíięó:"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Ŕáŕëîíęŕ:"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Ďięňŕăđŕěŕ"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Ŕ˘ňŕěŕňű÷íű ˘âŕőîä ó ńińňýěó"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -991,121 +850,101 @@ msgstr ""
"Ěîćíŕ íŕńňđîiöü ńińňýěó äë˙ ŕ˘ňŕěŕňű÷íŕăŕ ˘âŕőîäó ˘ ńińňýěó äë˙\n"
"ŕäíŕăî ęŕđűńňŕëüíięŕ. Ęŕëi Âű íĺ ćŕäŕĺöĺ ăýňŕăŕ, íŕöińíiöĺ \"Ŕäěĺíŕ\"."
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Ŕá˙đűöĺ ŕńíî˘íŕăŕ ęŕđűńňŕëüíięŕ:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Ŕá˙đűöĺ ěýíýäćŕđ âîęíŕ˘:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr "Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ěîâó äë˙ ęŕđűńňŕíí˙."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr "Âű ěîćŕöĺ ŕáđŕöü łířű˙ ěîâű, ˙ęi˙ áóäóöü äŕńňóďíű ďŕńë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Óń¸"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr "Äŕäŕöü ęŕđűńňŕëüíięŕ"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Ďŕ âűáŕđó"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr "×ŕęŕĺööŕ"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Ŕäěĺíŕ"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Ńŕđäý÷íŕ çŕďđŕřŕĺě ó Crackers"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Çóńłě ńëŕáű"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Ńňŕíäŕđňíű"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Âűńîęi"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Âűńîęi"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Ďŕđŕíŕiäŕëüíű"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1117,7 +956,7 @@ msgstr ""
"íŕ ěŕřűíŕő, ˙ęi˙ äŕëó÷ŕíű äŕ ńĺňęi öi äŕ Internet. Óâŕőîä íĺ ŕáŕđîíĺíű "
"ďŕđîëĺě."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1125,7 +964,7 @@ msgstr ""
"Ďŕđîëü çŕđŕç óęëţ÷ŕíű, ŕëĺ âűęŕđűńňŕííĺ ęŕěď'ţňýđó ˘ ˙ęŕńöi ńĺňęŕâŕăŕ\n"
"ňŕęńŕěŕ íĺ đýęŕěĺíäŕâŕíŕ."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1135,55 +974,56 @@ msgstr ""
"˙ęi äŕëó÷ŕíű äŕ Internet ó ˙ęŕńöi ęëiĺíňó. Äŕäŕíű˙ íîâű˙ ďđŕâĺđęi\n"
"á˙ńďĺęi."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Íŕ ăýňŕě óçđî˘íĺ á˙ńďĺęi ěŕă÷űěŕ âűęŕđűńňŕííĺ ńińňýěű ˘ ˙ęŕńöi\n"
"ńĺđâĺđó. Óçđîâĺíü á˙ńďĺęi äŕńňŕňęîâŕ âűńîęi äë˙ đŕáîňű\n"
"ńĺđâĺđó, ˙ęi äŕďóńęŕĺ çëó÷ýííi ńŕ řěŕňëięiěi ęëiĺíňŕěi."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"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ěóě."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Óçđîâĺíü á˙ńďĺęi"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
#, fuzzy
msgid "Security level"
msgstr "Íŕńňđîéęi ˘çđî˘í˙ á˙ńďĺęi"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Ŕá˙đűöĺ äŕäŕňęîâű˙ íŕńňđîéęi äë˙ ńĺđâĺđŕ"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1195,52 +1035,52 @@ 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_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welcome to GRUB the operating system chooser!"
#. -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_.c:931
+#: ../../bootloader.pm_.c:915
#, 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."
#. -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_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Press enter to boot the selected OS, 'e' to edit the"
#. -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_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "commands before booting, or 'c' for a command-line."
#. -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_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "The highlighted entry will be booted automatically in %d seconds."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "Íĺ őŕďŕĺ äűńęŕâŕé ďđŕńňîđű ˘ /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Ďđŕöî˘íű ńňîë"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Ńňŕđňŕâŕĺ ěĺíţ"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Ęóäű âű ćŕäŕĺöĺ ˘ńňŕë˙âŕöü ďŕ÷ŕňęîâű çŕăđóç÷űę?"
@@ -1254,16 +1094,20 @@ msgstr ""
msgid "Boot Style Configuration"
msgstr "Íŕńňđîéęŕ ěŕäýěó"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
#, fuzzy
msgid "/_File"
msgstr "Ôŕéëű:\n"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr ""
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr ""
@@ -1302,12 +1146,12 @@ msgstr "Çŕăđóçŕ÷íŕ˙ ďđűëŕäŕ"
#: ../../bootlook.pm_.c:104
#, fuzzy, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr "Ńóěĺńíŕĺ Iíňýđíýň-çëó÷ýííĺ"
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
#, fuzzy
msgid "Configure"
@@ -1318,7 +1162,7 @@ msgid "System mode"
msgstr ""
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr ""
#: ../../bootlook.pm_.c:148
@@ -1329,14 +1173,16 @@ msgstr ""
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr ""
@@ -1385,7 +1231,7 @@ msgstr "Äŕäŕöü đŕçäçĺë íĺěŕă÷űěŕ"
msgid "Screenshots will be available after install in %s"
msgstr "Âű ěîćŕöĺ ŕáđŕöü łířű˙ ěîâű, ˙ęi˙ áóäóöü äŕńňóďíű ďŕńë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Ôđŕíöű˙"
@@ -1393,7 +1239,7 @@ msgstr "Ôđŕíöű˙"
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Áĺëüăiéńęi"
@@ -1421,11 +1267,12 @@ msgstr "Íŕđâĺćńęi"
msgid "Sweden"
msgstr "Ăë."
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr "Iňŕëü˙íńęi"
@@ -1435,7 +1282,7 @@ msgstr "Iňŕëü˙íńęi"
msgid "Austria"
msgstr "ďŕńë˙äî˘íŕ˙"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1443,8 +1290,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr "Ďŕ-ďĺđřŕĺ, çđŕáiöĺ đýçĺđâîâóţ ęîďiţ âŕřűő äŕäçĺíűő"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "×űňŕéöĺ ˘âŕćëiâŕ!"
@@ -1457,11 +1304,12 @@ msgstr ""
"Ęŕëi âű ďëŕíóĺöĺ âűęŕđűńňî˘âŕöü boot âîáëŕńöü, ňŕäű đŕçě˙ńöiöĺ ˙ĺ\n"
" íĺ äŕëĺé çŕ 2048 ńĺęňŕđî˘ ŕä ďŕ÷ŕňęó äűńęŕ"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Ďŕěűëęŕ"
@@ -1469,11 +1317,11 @@ msgstr "Ďŕěűëęŕ"
msgid "Wizard"
msgstr "Ěŕéńňŕđ ńňâŕđýíí˙"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Ŕá˙đűöĺ äçĺ˙ííĺ"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1485,149 +1333,155 @@ msgstr ""
"Ďđŕďŕíóţ, ďŕ-ďĺđřŕĺ, çě˙íiöü ďŕěĺđű đŕçäçĺëŕ\n"
"(ęëięíiöĺ íŕ ˙ăî, ŕ ďîňűě íŕ \"çě˙íĺííĺ ďŕěĺđŕ˘\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Íŕöłńíłöĺ íŕ đŕçäçĺë"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Ďŕäđŕá˙çíŕńöi"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
#, fuzzy
msgid "Journalised FS"
msgstr "ďŕěűëęŕ ěŕíöiđŕâŕíí˙"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Ďóńňŕ"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "˛ířű˙"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Ňűďű ôŕéëŕâűő ńińňýěŕ˘:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Ńňâŕđűöü"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Ňűď"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Âűęŕđűńňî˘âŕéöĺ ``%s'' çŕěĺńň"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Çíiř÷űöü"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Ńďŕ÷ŕňęó çđŕáiöĺ ``Unmount''"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "Óńĺ äŕäçĺíű˙ ˘ đŕçäçĺëĺ %s áóäóöü ńňđŕ÷ŕíű ďŕńë˙ çěĺíű ˙ăî ňűďó"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose a partition"
msgstr "Ŕá˙đűöĺ äçĺ˙ííĺ"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose another partition"
msgstr "Ńňâŕđýííĺ íîâŕăŕ đŕçäçĺëó"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Đýćűě ýęńďĺđňó"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Çâű÷ŕéíű đýćűě"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Ŕäęŕň"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Ńŕďđŕ˘äű ďđŕö˙ăâŕöü?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Âűéńöi áĺç çŕőŕâŕíí˙"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Âűéńöi áĺç çŕďińó ňŕáëiöű đŕçäçĺëŕ˘"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Öi ćŕäŕĺöĺ ďđŕňýńöiđŕâŕöü íŕńňđîéęi?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Đŕçěĺđęŕâŕöü ŕ˘ňŕěŕňű÷íŕ"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Ŕ÷űńöiöü óń¸"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+#, fuzzy
+msgid "More"
+msgstr "Ďĺđŕíîń"
+
+#: ../../diskdrake/interactive.pm_.c:263
#, fuzzy
msgid "Hard drive information"
msgstr "Iíôŕđěŕöű˙"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Óńĺ ďĺđřŕńíű˙ đŕçäçĺëű âűęŕđűńňŕíű"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Äŕäŕöü đŕçäçĺë íĺěŕă÷űěŕ"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1635,35 +1489,35 @@ msgstr ""
"Ęŕá çđŕáiöü áîëüř đŕçäĺëŕ˘, âűäŕëiöĺ ŕäçií i ńňâŕđűöĺ ďŕřűđŕíű đŕçäçĺë "
"(extended)"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr "Çŕďiń ňŕáëiöű đŕçäçĺëŕ˘"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr "Äŕäŕňęîâŕ˙ ňŕáëiöŕ đŕçäçĺëŕ˘"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Äŕäŕňęîâŕ˙ ňŕáëiöŕ đŕçäçĺëŕ˘"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr "Äŕäŕňęîâŕ˙ ňŕáëiöŕ đŕçäçĺëŕ˘"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Removable media automounting"
msgstr "Ŕ˘ňŕěŕíöiđŕâŕííĺ çěĺííűő íŕçŕďŕřâŕëüíłęŕ˘"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Ŕá˙đűöĺ ôŕéë"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1671,11 +1525,11 @@ msgstr ""
"Ňŕáëiöŕ đŕçě˙ř÷ýíí˙ đýçĺđâîâŕăŕ äűńęó ěŕĺ iířű ďŕěĺđ\n"
"Ďđŕö˙ăâŕöü äŕëĺé?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Óâŕăŕ!"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1683,125 +1537,132 @@ msgstr ""
"Óńňŕ˘öĺ äűńęĺňó ˘ äűńęŕâîä\n"
"Óńĺ äŕäçĺíű˙ íŕ ăýňŕé äűńęĺöĺ áóäóöü ńňđŕ÷ŕíű"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Ďŕńďđŕáóĺě âűđŕňŕâŕöü ňŕáëiöó đŕçäçĺëŕ˘"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
#, fuzzy
msgid "Detailed information"
msgstr "Iíôŕđěŕöű˙"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Ęđîďęŕ ěŕíöiđŕâŕíí˙"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Îďöűi"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Çě˙íĺííĺ ďŕěĺđŕ˘"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Ďĺđŕíîń"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Ôŕđěŕňŕâŕííĺ"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Ěŕíöiđŕâŕííĺ"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Äŕäŕöü äŕ RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Äŕäŕöü äŕ LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Đŕçěŕíöiđŕâŕöü"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Âűäŕëiöü ç RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Âűäŕëiöü ç LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Çě˙íiöü RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Âűęŕđűńňî˘âŕöü äë˙ âiđňóŕëüíŕé ôŕéëŕâŕé ńińňýěű"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Ńňâŕđýííĺ íîâŕăŕ đŕçäçĺëó"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Ďŕ÷ŕňęîâű ńĺęňŕđ:"
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Ďŕěĺđ ó Ěá:"
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Ňűď ôŕéëŕâŕé ńińňýěű:"
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Ďóíęň ěŕíöiđŕâŕíí˙:"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Ďŕđŕěĺňđű: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+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/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Ôŕđěŕňŕâŕííĺ âiđňóŕëüíŕăŕ đŕçäçĺëó %s"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Çě˙íiöü ňűď đŕçäçĺëó"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
#, fuzzy
msgid "Which filesystem do you want?"
msgstr "ßęóţ ńińňýěó äđóęó Âű ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Ęóäű âű ćŕäŕĺöĺ ěŕíöiđŕâŕöü âiđňóŕëüíóţ ďđűëŕäó %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Ęóäű âű ćŕäŕĺöĺ ěŕíöiđŕâŕöü ďđűëŕäó %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1810,132 +1671,137 @@ msgstr ""
"âiđňóŕëüíŕé ôŕéëŕâŕé ńińňýěű.\n"
"Ńďŕ÷ŕňęó âűäŕëiöĺ âiđňóŕëüíóţ ńińňýěó"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Ďŕäëłę ěĺćࢠôŕéëŕâŕé ńińňýěű FAT"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Çě˙íĺííĺ ďŕěĺđŕ˘"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
#, fuzzy
msgid "This partition is not resizeable"
msgstr "Ďŕěĺđű ˙ęîăŕ đŕçäçĺëŕ âű ćŕäŕĺöĺ çě˙íiöü?"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Óńĺ äŕäçĺíű˙ ˘ ăýňűě đŕçäçĺëĺ ďŕâiííű áűöü çŕđőiâŕâŕíű˙"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Óńĺ äŕäçĺíű˙ ˘ đŕçäçĺëĺ %s áóäóöü ńňđŕ÷ŕíű"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Âűáŕđ íîâűő ďŕěĺđŕ˘"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
#, fuzzy
msgid "New size in MB: "
msgstr "Ďŕěĺđ ó Ěá:"
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Íŕ ˙ęi äűńę ďĺđŕíĺńöł?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Ńĺęňŕđ"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Íŕ ˙ęi ńĺęňŕđ ďĺđŕíĺńöł?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Ďĺđŕíîńłě"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Ďĺđŕíîńłööŕ đŕçäçĺë..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Ŕá˙đűöĺ ińíóţ÷ű RAID äë˙ äŕäŕíí˙"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "íîâű"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Âűá˙đűöĺ ińíóţ÷ű LVM äë˙ äŕáŕ˘ëĺíí˙"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Ăýňű đŕçäçĺë íĺ ěîćŕ áűöü âűęŕđűńňŕíű ďŕä âiđňóŕëüíóţ ôŕéëŕâóţ ńińňýěó"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Âiđňóŕëüíŕ˙ ôŕéëŕâŕ˙ ńińňýěŕ (loopback)"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Iě˙ âiđňóŕëüíŕăŕ đŕçäçĺëó"
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr "Óëŕńíŕĺ iě˙"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr ""
"Ôŕéë óćî âűęŕđűńňî˘âŕĺööŕ iířŕé âiđňóŕëüíŕé ńińňýěŕé. Ęŕëi ëŕńęŕ, \n"
"ŕá˙đűöĺ iířóţ íŕçâó"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Ôŕéë óćî ińíóĺ. Âűęŕđűńňŕöü ˙ăî?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
#, fuzzy
msgid "Mount options"
msgstr "Îďöűi ěîäóëţ:"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "ďđűëŕäŕ"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "óçđîâĺíü"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "ďŕěĺđ áëîęó"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Áóäçüöĺ óâŕćëiâű. Ăýňóţ ŕďĺđŕöűţ íĺëüăŕ ŕäě˙íiöü"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
#, fuzzy
msgid "What type of partitioning?"
msgstr "ßęi ňűď äđóęŕđęi âű ěŕĺöĺ?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1946,7 +1812,7 @@ msgstr ""
"Ęŕëł âű äóěŕĺöĺ âűęŕđűńňî˘âŕöü LILO - ňŕäű ăýňŕ íĺ áóäçĺ ďđŕöŕâŕöü, LILO íĺ "
"âűęŕđűńňî˘âŕĺöŕ, ňŕäű /boot íĺ ďŕňđýáíű."
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1958,7 +1824,7 @@ msgstr ""
"Ęŕëi áóäçĺ âűęŕđűńňî˘âŕööŕ äűńďĺ÷ŕđ çŕăđóçęi LILO, íĺ çŕďŕě˙ňŕéöĺ äŕäŕöü\n"
"đŕçäçĺë /boot"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1968,137 +1834,137 @@ msgstr ""
"Í˙ěŕ çŕăđóç÷űęó, ˙ęi á çŕăđóçi˘ń˙ áĺç /boot đŕçäçĺëŕ.\n"
"Äŕäŕéöĺ đŕçäĺë /boot, ęŕëi ëŕńęŕ."
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Ňŕáëiöŕ đŕçě˙ř÷ýíí˙ ďđűëŕäű %s áóäçĺ çŕďińŕíŕ íŕ äűńę!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Ęŕá çě˙íĺííi ˘ńňóďiëi ˘ äçĺ˙ííĺ, íĺîáőîäíŕ ďĺđŕçŕăđóçiööŕ"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Óńĺ äŕäçĺíűĺ ˘ đŕçäçĺëĺ %s áóäóöü ńňđŕ÷ŕíű ďŕńë˙ ôŕđěŕňŕâŕíí˙"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Ôŕđěŕňŕâŕííĺ"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Ôŕđěŕňŕâŕííĺ âiđňóŕëüíŕăŕ đŕçäçĺëó %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Ôŕđěŕňŕâŕííĺ đŕçäçĺëó %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Hide files"
msgstr "mkraid íĺ ďđŕöŕçäîëüíű"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr "Íĺ őŕďŕĺ ďđŕńňîđű äë˙ ńňâŕđýíí˙ íîâűő đŕçäçĺëŕ˘"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Íĺ őŕďŕĺ ďđŕńňîđű äë˙ ńňâŕđýíí˙ íîâűő đŕçäçĺëŕ˘"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Ďŕěĺđű ýęđŕíó: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Ďđűëŕäŕ:"
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Ëiňŕđŕ äë˙ DOS-äűńęó: %s (íŕ˘ăŕä)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Ňűď: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Iě˙: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Ďŕ÷ŕňŕę: ńĺęňŕđ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Ďŕěĺđ: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s ńĺęňŕđŕ˘"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Öűëiíäđű ç %d ďŕ %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Ôŕđěŕňŕâŕííĺ\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Íĺ ŕäôŕđěŕňŕâŕíŕ\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Çŕěŕíöiđŕâŕíŕ\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Ôŕéë(ű) âiđňóŕëüíŕé ôŕéëŕâŕé ńińňýěű: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2106,27 +1972,27 @@ msgstr ""
"Çŕăđóçŕ÷íű đŕçäçĺë ďŕ äŕěŕ˘ëĺííţ\n"
" (äë˙ çŕăđóçęi MS-DOS, ŕ íĺ äë˙ lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Óçđîâĺíü %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Ďŕěĺđ ôđŕăěĺíňó %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-äűńęi %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Iě˙ ôŕéëó âiđňóŕëüíŕé ôŕéëŕâŕé ńińňýěű: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2134,7 +2000,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2142,65 +2008,65 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Ďŕěĺđ: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Ăĺŕěĺňđű˙: %s öűëiíäđŕ˘, %s ăŕëîâŕę, %s ńĺęňŕđŕ˘\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Iíôŕđěŕöű˙: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-äűńęi %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Ňűď ňŕáëiöű đŕçäçĺëŕ˘: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "íŕ řűíĺ %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Îďöűi: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Ňűď ôŕéëŕâŕé ńińňýěű:"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Ăýňű ďŕđîëü çŕíŕäňŕ ďđîńňű (˙ăî äŕ˘ćűí˙ ďŕâiííŕ áűöü íĺ ěĺíĺé çŕ %d ëiňŕđŕ˘)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Ďŕđîëi íĺ ńóďŕäŕţöü"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2211,36 +2077,66 @@ msgstr "Çě˙íiöü ňűď đŕçäçĺëó"
#: ../../diskdrake/removable_gtk.pm_.c:28
#, fuzzy
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Íŕöłńíłöĺ íŕ đŕçäçĺë"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Ŕ˘ňýíňűôięŕöű˙"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "öięŕâŕ"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Iě˙ ęŕđűńňŕëüíięó:"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Iě˙ ęŕđűńňŕëüíięó:"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS Domain"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "DNS ńĺđâĺđ"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s ďŕěűëęŕ ôŕđěŕňŕâŕíí˙ %s"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Íĺ âĺäŕţ ˙ę ŕäôŕđěŕňŕâŕöü %s ç ňűďŕě %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "ďŕěűëęŕ đŕçěŕíöiđŕâŕíí˙ %s: %s"
@@ -2257,72 +2153,325 @@ msgstr ""
msgid "server"
msgstr "ńĺđâĺđ"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
#, fuzzy
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Âű íĺ ěîćŕöĺ đŕçáiâŕöü íŕ đŕçäĺëű, ďŕěĺđ ˙ęiő ěĺíĺé çŕ 16 Ěá"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Âű íĺ ěîćŕöĺ đŕçáiâŕöü íŕ đŕçäĺëű, ďŕěĺđ ˙ęiő ěĺíĺé çŕ 32 Ěá"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Ďóíęň ěŕíöiđŕâŕíí˙ ďŕâiíĺí ďŕ÷űíŕööŕ ç /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Óćî ¸ńöü đŕçäçĺë ç ďóíęňŕě ěŕíöiđŕâŕíí˙ %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Ăýňű ęŕňŕëîă ďŕâłíĺí çíŕőîäçłööŕ ˘íóňđű ęŕđŕí¸âŕé ôŕéëŕâŕé ńłńňýěű"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Âŕě íĺŕáőîäíŕ çŕäŕöü ďđŕâiëüíű ňűď ôŕéëŕâŕé ńińňýěű (ext2, reiserfs)\n"
"äë˙ ăýňŕé ęđîďęi ěŕíöiđŕâŕíí˙\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
"Âŕě íĺŕáőîäíŕ çŕäŕöü ďđŕâiëüíű ňűď ôŕéëŕâŕé ńińňýěű (ext2, reiserfs)\n"
"äë˙ ăýňŕé ęđîďęi ěŕíöiđŕâŕíí˙\n"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Íĺ őŕďŕĺ ďđŕńňîđű äë˙ ńňâŕđýíí˙ íîâűő đŕçäçĺëŕ˘"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Ďŕěűëęŕ ŕäęđűöö˙ %s äë˙ çŕďińó: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Ďŕěűëęŕ: äë˙ ńňâŕđýíí˙ íîâűő ôŕéëŕâűő ńińňýěࢠíĺ çíŕéäçĺíű ŕäďŕâĺäíű˙ \n"
"ďđűëŕäű. Ďđŕâĺđöĺ ŕáńňŕë˙âŕííĺ äë˙ ďîřóęó iěŕâĺđíŕé ďđű÷űíű."
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Âű íĺ ńňâŕđűëi ŕíi˙ęiő đŕçäçĺëŕ˘!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Ŕääŕëĺíű ďđűíňýđ"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Ŕăóëüíű"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Ŕäđŕńű ďŕě˙öł ęŕđňű (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "ôŕđěŕňŕâŕííĺ"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Çě˙íiöü ňűď đŕçäçĺëó"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Âűőŕä"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:14
+msgid "/_Help..."
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "Ŕäě˙íiöü"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Ďîđň ěűřű"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Ŕäđŕńű ďŕě˙öł ęŕđňű (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Ŕäěĺíŕ"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Ďîđň ěűřű"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Ŕďińŕííĺ"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Ŕ˘ňýíňűôięŕöű˙"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Ŕá˙đűöĺ ôŕéë"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Ďđűëŕäŕ-řëţç"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 ęíîďęi"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Âűçíŕ÷ýííĺ ćîđńňęŕăŕ äűńęó"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Ăë. ŕďińŕííĺ ŕáńňŕë˙âŕíí˙"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Iíôŕđěŕöű˙"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Íŕńňđîéęŕ ěűřű"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "Äóáë˙âŕííĺ ďóíęňó ěŕíöiđŕâŕíí˙ %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Ęŕëi ëŕńęŕ, ďŕ÷ŕęŕéöĺ"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d ńĺęóíäŕ˘"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "×űňŕţ áŕçó äŕäçĺíűő äđŕéâĺđî˘ CUPS"
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Ŕ˘ňŕďîřóę"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2336,7 +2485,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2434,9 +2583,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2618,7 +2766,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2630,9 +2778,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2679,21 +2826,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2709,9 +2855,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Ó ăýňűě ďóíęöĺ, âű ďŕâłííű ŕáđŕöü äçĺ íŕ âŕřűě ćîđńęłě \n"
"äűńęó óńňŕë˙âŕöü ŕďĺđŕöűéíóţ ńłńňýěó Mandrake Linux. Ęŕëł äűńę ďóńňű\n"
@@ -2790,9 +2936,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -2939,38 +3084,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3073,11 +3212,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3132,7 +3271,7 @@ msgstr ""
"âĺëüěł ńęëŕäŕíűěł, ęŕëł âű íĺ ěŕĺöĺ äîáđűő âĺäࢠó GNU/Linux.\n"
" Ňŕěó íĺ ŕáłđŕéöĺ ăýňű ęëŕń łíńňŕë˙öűł, ęŕëł âű íĺ âĺäŕĺöĺ ňîĺ, řňî đîáłöĺ."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3147,7 +3286,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3162,7 +3301,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3178,29 +3317,29 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3222,7 +3361,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3244,7 +3383,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3252,7 +3391,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3273,7 +3412,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
#, fuzzy
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
@@ -3298,7 +3437,7 @@ msgstr ""
"Ó ňŕęiě âűďŕäęó ďŕňđýáíŕ âűäŕëiöü ŕäďŕâĺäíű˙ çŕďińű. Ŕëĺ ć ňŕäű âŕě \n"
"ďŕňđýáíŕ áóäçĺ çŕăđóçŕ÷íŕ˙ äűńęĺňŕ, ęŕá çŕăđóçiööŕ!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
#, fuzzy
msgid ""
"You must indicate where you wish to place the information required to boot\n"
@@ -3314,29 +3453,28 @@ msgstr ""
"Ęŕëi âű íĺ ŕä÷óâŕĺöĺ ŕáńŕëţňíŕ äŕęëŕäíŕ, řňî âű đîáiöĺ, \n"
"ŕá˙đűöĺ \"Ďĺđřű ńĺęňŕđ íŕ äűńęó (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3345,7 +3483,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3370,11 +3508,11 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3384,9 +3522,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3398,7 +3535,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" 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"
@@ -3424,7 +3561,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3451,18 +3588,17 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3470,12 +3606,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3491,7 +3626,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
#, fuzzy
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
@@ -3503,7 +3638,7 @@ msgstr ""
"áóäóöü\n"
" çíłř÷ŕíű ł łő íĺěŕă÷űěŕ áóäçĺ ŕäíŕâłöü."
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
#, fuzzy
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
@@ -3522,7 +3657,7 @@ msgstr ""
"\n"
"Íŕöłńíłöĺ \"Ŕäěĺíŕ\" ęŕá ŕäě˙íłöü ŕďĺđŕöűţ áĺç ńňđŕňű äŕäçĺíűő ł đŕçäçĺëŕ˘"
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3530,12 +3665,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3550,26 +3685,26 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "Íĺěŕă÷űěŕ âűęŕđűńňî˘âŕöü broadcast áĺç äŕěĺíŕ NIS"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Óńňŕ˘öĺ äűńęĺňó ˘ äűńęŕâîä %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Ďŕěűëęŕ ÷űňŕíí˙ ôŕéëó %s"
@@ -3599,7 +3734,7 @@ msgstr "Âű ďŕâiííű ěĺöü đŕçäçĺë swap"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -3607,61 +3742,61 @@ msgstr ""
"\n"
"Óń¸ ŕäíî ďđŕö˙ăâŕöü?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Âű ďŕâiííű ěĺöü đŕçäçĺë swap"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Âűęŕđűńňî˘âŕöü íĺçŕí˙ňóţ ďđŕńňîđó"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Íĺ őŕďŕĺ ďđŕńňîđű äë˙ ńňâŕđýíí˙ íîâűő đŕçäçĺëŕ˘"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Âűęŕđűńňî˘âŕöü ińíóţ÷ű đŕçäçĺë"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Í˙ěŕ ińíóţ÷űő đŕçäçĺëŕ˘, ˙ęi˙ ěîćíŕ âűęŕđűńňŕöü"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Âűęŕđűńňî˘âŕöü đŕçäçĺë Windows äë˙ âiđňóŕëüíŕé ôŕéëŕâŕé ńińňýěű"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
#, fuzzy
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Ďŕěĺđű ˙ęîăŕ đŕçäçĺëŕ âű ćŕäŕĺöĺ çě˙íiöü?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Âűáŕđ ďŕěĺđŕ˘"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Ęŕđŕí¸âű đŕçäçĺë ˘ Má: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Ďŕěĺđ swap đŕçäçĺëó ˘ Má:"
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Âűęŕđűńňî˘âŕöü íĺçŕí˙ňóţ ďđŕńňîđó íŕ đŕçäçĺëĺ Windows"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Ďŕěĺđű ˙ęîăŕ đŕçäçĺëŕ âű ćŕäŕĺöĺ çě˙íiöü?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Âűëi÷ýííĺ ěĺćࢠôŕéëŕâŕé ńińňýěű Windows"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -3670,13 +3805,16 @@ msgstr ""
"Ó ďđŕăđŕěű çěĺíű ďŕěĺđࢠđŕçäçĺëŕ FAT íĺ ŕňđűěŕëŕń˙\n"
"ŕďđŕöŕâŕöü Âŕř đŕçäçĺë, ďŕěűëęŕ: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+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''"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -3697,55 +3835,55 @@ msgstr ""
"äŕäçĺíűő i ňîëüęi ďîňűě çíî˘ â˙đíiöĺń˙ äŕ ďđŕăđŕěű ˘ńňŕë˙âŕíí˙.\n"
"Ęŕëi ďŕäđűőňŕâŕëiń˙, íŕöińíiöĺ Ok."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "ßęóţ ďđŕńňîđó çŕőŕâŕöü äë˙ Windows?"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "Đŕçäçĺë %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Ŕ˘ňŕçě˙íĺííĺ ďŕěĺđࢠíĺ ŕňđűěŕëŕń˙ äë˙ đŕçäçĺëó FAT %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Íĺ çíîéäçĺíŕ đŕçäçĺëࢠFAT äë˙ çě˙íĺíí˙ ďŕěĺđࢠŕëüáî âűęŕđűńňŕíí˙\n"
"˘ ˙ęŕńöi âiđňóŕëüíŕé ôŕéëŕâŕé ńińňýěű (öi íĺäŕńňŕňęîâŕ ďđŕńňîđű íŕ äűńęó)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Ńö¸đöi äŕäçĺíű˙ íŕ ˘ńiě äűńęó"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Âűäŕëiöü Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Íŕ ˙ęi ç ěŕţ÷űőń˙ ćîđńňęiő äűńęࢠÂű ćŕäŕĺöĺ ˘ńňŕë˙âŕöü Linux?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Óńĺ ińíóţ÷ű˙ đŕçäçĺëű íŕ äűńęó %s i äŕäçĺíű˙ íŕ iő áóäóöü ńňđŕ÷ŕíű"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
#, fuzzy
msgid "Custom disk partitioning"
msgstr "Âűęŕđűńňî˘âŕöü ińíóţ÷ű đŕçäçĺë"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Âűęŕđűńňî˘âŕöü fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -3754,12 +3892,12 @@ msgstr ""
"Âű ěîćŕöĺ ö˙ďĺđ đŕçáiöü âŕř äűńę %s\n"
"Ďŕ çŕęŕí÷ýííi íĺ çŕáóäçüöĺń˙ çŕőŕâŕöü çě˙íĺííi, ńęŕđűńňŕ˘řű `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
#, fuzzy
msgid "You don't have enough free space on your Windows partition"
msgstr "Âűęŕđűńňî˘âŕöü íĺçŕí˙ňóţ ďđŕńňîđó íŕ đŕçäçĺëĺ Windows"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
#, fuzzy
msgid "I can't find any room for installing"
msgstr "Äŕäŕöü đŕçäçĺë íĺěŕă÷űěŕ"
@@ -3768,16 +3906,16 @@ msgstr "Äŕäŕöü đŕçäçĺë íĺěŕă÷űěŕ"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Ěŕéńňŕđ ďŕäđűőňî˘ęi đŕçäçĺëࢠDrakX çíŕéřî˘ íŕńňóďíű˙ âŕđű˙íňű:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Ďŕäđűőňî˘ęŕ đŕçäĺëࢠíĺ ˘äŕëŕń˙: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Äŕëó÷ýííĺ äŕ ńĺňęi"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Ŕäëó÷ýííĺ ŕä ńĺňęi"
@@ -3789,12 +3927,12 @@ msgstr ""
"Óçíięëŕ ďŕěűëęŕ, ˙ęóţ íĺ ŕňđűěëłâŕĺööŕ ęŕđýęňíŕ ŕďđŕöŕâŕöü,\n"
"ňŕěó ďđŕö˙ăâŕéöĺ íŕ ńâŕţ đűçűęó."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Äóáë˙âŕííĺ ďóíęňó ěŕíöiđŕâŕíí˙ %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3806,12 +3944,12 @@ msgstr ""
"Ďđŕâĺđöĺ cdrom íŕ âŕřűě ęŕěďóňŕđű, âűęŕđűńňî˘âŕţ÷ű\"rpm -qpl Mandrake/RPMS/*."
"rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Сардэчна запрашаем у %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Äűńęŕâîä íĺäŕńňóďíű"
@@ -3821,9 +3959,9 @@ msgstr "Äűńęŕâîä íĺäŕńňóďíű"
msgid "Entering step `%s'\n"
msgstr "Ďĺđŕőîä íŕ ęđîę `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -3833,203 +3971,158 @@ msgstr ""
"ďđŕăđŕěó ˘ńňŕë˙âŕíí˙. Äë˙ ăýňŕăŕ íŕöińíiöĺ `F1' ó ÷ŕń çŕăđóçęi, ŕ ďîňűě\n"
"íŕá˙đűöĺ `text' i íŕöińíiöĺ <ENTER>."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Ęëŕń Óńňŕë˙âŕíí˙"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ŕäçií ç ęëŕńࢠóńňŕë˙âŕíí˙:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Ŕăóëüíű ďŕěĺđ äë˙ ŕáđŕíűő ăđóďࢠďđűáëiçíŕ đî˘íű %d Ěá.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Ęŕëi âű ćŕäŕĺöĺ ˘ńňŕë˙âŕöü ěĺíĺé ăýňŕăó ďŕěĺđó,\n"
-"ŕá˙đűöĺ ŕäńîňŕę ďŕęĺňŕ˘, ˙ęi âű ćŕäŕĺöĺ ˘ńňŕë˙âŕöü.\n"
-"\n"
-"Ďđű íiçęiě ŕäńîňęó áóäóöü óńňŕë˙âŕíű ňîëüęi íŕéáîëüř âŕćíű˙ ďŕęĺňű,\n"
-"ŕ ďđű 100% áóäóöü óńňŕë˙âŕíű ˘ńĺ ŕáđŕíű˙ ďŕęĺňű."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Íŕ âŕřűě äűńęó ¸ńöü ěĺńöŕ ňîëüęi äë˙ %d%% ăýňűő ďŕęĺňŕ˘.\n"
-"\n"
-"Ęŕëi âű ćŕäŕĺöĺ ˘ńňŕë˙âŕöü ěĺíĺé ăýňŕăŕ, ňî\n"
-"ďŕçíŕ÷öĺ ŕäńîňŕę ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙.\n"
-"Ďđű ěŕëűě ŕäńîňęó áóäóöü óńňŕë˙âŕíű íŕéáîëüř âŕćíű˙ ďŕęĺňű;\n"
-"ďđű ŕäńîňęó %d%% áóäçĺ ˘ńňŕë˙âŕíŕ ńňîëüęi ďŕęĺňࢠęîëüęi ěŕă÷űěŕ."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Áîëüř äŕęëŕäíű âűáŕđ ěîćíŕ áóäçĺ çđŕáiöü íŕ íŕńňóďíűě ęđîęó."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Ŕäńîňŕę ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Âűáŕđ ăđóďű ďŕęĺňŕ˘"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Ŕńŕáińňű âűáŕđ ďŕęĺňŕ˘"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ŕăóëüíű ďŕěĺđ: %d / %d Má"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Äđýííű ďŕęĺň"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Iě˙: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Âĺđńi˙: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Ďŕěĺđ: %d Ká\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Çíŕ÷íŕńöü: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Âű íĺ ěîćŕöĺ âűáđŕöü ăýňű ďŕęĺň, ňŕěó ˙ę íĺ őŕďŕĺ ěĺńöŕ äë˙ ˙ăî ˘ńňŕë˙âŕíí˙"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Íŕńňóďíű˙ ďŕęĺňű áóäóöü äŕäŕíű äŕ ńińňýěű"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Íŕńňóďíű˙ ďŕęĺňű áóäóöü âűäŕëĺíű"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Âű íĺ ěîćŕöĺ âűëó÷ŕöü ł ŕäě˙í˙öü âűëó÷ýííĺ ăýňŕăŕ ďŕęĺňó"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Ăýňŕ ŕáŕâ˙çęîâű ďŕęĺň, ˙ăî âűëó÷ýííĺ íĺëüăŕ ŕäě˙íiöü"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Âű íĺ ěîćŕöĺ ŕäě˙íiöü âűëó÷ýííĺ ăýňŕăŕ ďŕęĺňó. ¨í óćî ˘ńňŕë˙âŕíű"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Ăýňű ďŕęĺň ďŕâiíĺí áűöü ŕáíî˘ëĺíű\n"
"Âű ˘ďý˘íĺíű, řňî őî÷ŕöĺ ŕäě˙íiöü âűëó÷ýííĺ?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Âű íĺ ěîćŕöĺ ŕäě˙íiöü âűëó÷ýííĺ ăýňŕăŕ ďŕęĺňó. ßăî ďŕňđýáíŕ ŕáíŕâiöü"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Óńňŕ븢ęŕ"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Çŕőŕâŕííĺ íŕ äűńęĺňó"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
#, fuzzy
msgid "Updating package selection"
msgstr "Ŕńŕáińňű âűáŕđ ďŕęĺňŕ˘"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
#, fuzzy
msgid "Minimal install"
msgstr "Âűäŕëiöü ç ńińňýěű"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Óńňŕ븢âŕĺě"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "×ŕęŕĺööŕ"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Çŕńňŕëîń˙ ÷ŕńó "
-#: ../../install_steps_gtk.pm_.c:528
+#: ../../install_steps_gtk.pm_.c:474
#, fuzzy
-msgid "Please wait, preparing installation"
+msgid "Please wait, preparing installation..."
msgstr "Ďŕäđűőňî˘ęŕ ˘ńňŕë˙âŕíüí˙"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d ďŕęĺňŕ˘"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Óńňŕë˙âŕííĺ ďŕęĺňó %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Ďđűí˙öü"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Ŕäęŕçŕöü"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4045,17 +4138,17 @@ msgstr ""
"Ęŕëi âű íĺ ěŕĺöĺ ˙ăî, íŕöińíiöĺ Ŕäě˙íiöü, ęŕá ŕäě˙íiöü óńňŕë˙âŕííĺ ç ăýňŕăŕ "
"Cd."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Óń¸ đî˘íŕ ďđŕö˙ăâŕöü?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Ŕňđűěŕëŕń˙ ďŕěűëęŕ ˘ďŕđŕäęŕâŕíí˙ ďŕęĺňŕ˘:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Ŕňđűěŕëŕń˙ ďŕěűëęŕ ˘ďŕđŕäęŕâŕíí˙ ďŕęĺňŕ˘:"
@@ -4100,11 +4193,11 @@ msgstr "Ŕäáűëŕń˙ ďŕěűëęŕ"
msgid "Do you really want to leave the installation?"
msgstr "Öi ćŕäŕĺöĺ ďđŕňýńöiđŕâŕöü íŕńňđîéęi?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Ëłöýíçłéíŕ˙ äŕěîâŕ"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4119,7 +4212,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -4225,114 +4318,118 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Ęëŕâi˙ňóđŕ"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ňűď ęëŕâi˙ňóđű."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "ßęi ęëŕń óńňŕë˙âŕíí˙ âű ćŕäŕĺöĺ?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
#, fuzzy
msgid "Install/Update"
msgstr "Óńňŕ븢ęŕ"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
#, fuzzy
msgid "Is this an install or an update?"
msgstr "Ŕá˙đűöĺ ˘ńňŕë˙âŕííĺ öi ŕáíŕ˘ëĺííĺ"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Đýęŕěĺíäŕâŕíŕ"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Ýęńďĺđň"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr "Ŕńŕáińňű âűáŕđ ďŕęĺňŕ˘"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "ęŕëi ëŕńęŕ, ďŕçíŕ÷öĺ ňűď âŕřŕé ěűřű."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Ďîđň ěűřű"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Ęŕëi ëŕńęŕ, ďŕçíŕ÷öĺ ďîńë˙äî˘íű ďîđň, äŕ ˙ęîăŕ ďŕäęëţ÷ŕíŕ âŕřŕ˙ ěűř."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Íŕńňđîéęŕ ęŕđň PCMCIA ..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Íŕńňđîéęŕ IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "í˙ěŕ äŕńňóďíűő đŕçäçĺëŕ˘"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Ŕá˙đűöĺ ďóíęňű ěŕíöiđŕâŕíí˙"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4345,7 +4442,7 @@ msgstr ""
"\n"
"Öi ćŕäŕĺöĺ ńňđŕöiöü óńĺ đŕçäçĺëű?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4353,140 +4450,143 @@ msgstr ""
"DiskDrake íĺ çěîă ďđŕâiëüíŕ ďđŕ÷űňŕöü ňŕáëiöó đŕäçĺëŕ˘.\n"
"Ďđŕö˙ăâŕéöĺ ňîëüęi íŕ ńâŕţ đűçűęó!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Ęŕđŕí¸âű đŕçäçĺë íĺ çíîéäçĺíű"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Ęŕđŕí¸âű đŕçäçĺë"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "ßęi đŕäçĺë ęŕđŕí¸âű (/) äë˙ âŕřŕé ńińňýěű?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Ęŕá ěŕäűôięŕöű˙ ňŕáëiöű đŕçäçĺëࢠçäĺéńíiëŕń˙, ďŕňđýáíŕ ďĺđŕçŕăđóçęŕ."
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Âűáŕđ đŕçäçĺëࢠäë˙ ôŕđěŕňŕâŕíí˙"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Ďđŕâĺđűöü íŕ íŕ˙˘íŕńöü äđýííűő áëîęŕ˘?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Ôŕđěŕňŕâŕíí˙ đŕçäçĺëŕ˘"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Ńňâŕđýííĺ i ôŕđěŕňŕâŕííĺ ôŕéëŕ %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Íĺ őŕďŕĺ ěĺńöŕ ˘ áóôĺđű ďŕäęŕ÷ęi (swap) äë˙ ˘ńňŕë˙âŕíí˙, ďŕâ˙ëi÷öĺ ˙ăî."
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Ďđŕăë˙ä äŕńňóďíűő ďŕęĺňŕ˘"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
+msgstr "Ďđŕăë˙ä äŕńňóďíűő ďŕęĺňŕ˘"
+
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Ďîřóę ďŕęĺňࢠäë˙ ŕáíŕ˘ëĺíí˙"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Âű íĺ ěîćŕöĺ ŕäě˙íiöü âűëó÷ýííĺ ăýňŕăŕ ďŕęĺňó. ¨í óćî ˘ńňŕë˙âŕíű"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Âŕřŕ ńińňýěŕ íĺ ěŕĺ äŕńňŕęîâŕ ěĺńöŕ äë˙ ˘ńňŕë˙âŕíí˙ öi ŕáíŕ˘ëĺíí˙ (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Ďî˘íű (%dMá)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Ěiíiěŕëüíű (%dMá)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Đýęŕěĺíäŕâŕíŕ (%dĚá)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
#, fuzzy
msgid "Load from floppy"
msgstr "Ŕäíŕ˘ëĺííĺ ç äűńęĺňű"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Loading from floppy"
msgstr "Ŕäíŕ˘ëĺííĺ ç äűńęĺňű"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Package selection"
msgstr "Âűáŕđ ăđóďű ďŕęĺňŕ˘"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Óńňŕ˘öĺ äűńęĺňó ˘ äűńęŕâîä %s"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Çŕőŕâŕííĺ íŕ äűńęĺňó"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
#, fuzzy
msgid "Type of install"
msgstr "Âűáŕđ ďŕęĺňࢠäë˙ óńňŕë˙âŕíí˙"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
#, fuzzy
msgid "With X"
msgstr "×ŕęŕéöĺ"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4496,16 +4596,16 @@ msgstr ""
"Ęŕëi âű íĺ ěŕĺöĺ ŕíi âîäíŕăŕ ç ăýňűő CD äűńęŕ˘, íŕöińíiöĺ Ŕäě˙íiöü.\n"
"Ęŕëi íĺęŕňîđűő ç CD äűńęࢠíĺ ěŕĺöĺ, ŕäě˙íiöĺ iő âűäç˙ëĺííĺ i íŕöińíiöĺ Îę."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom ďŕçíŕ÷ŕíű \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Ďŕäđűőňî˘ęŕ ˘ńňŕë˙âŕíüí˙"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4514,23 +4614,23 @@ msgstr ""
"Óńňŕë˙âŕííĺ ďŕęĺňó %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Íŕńňđîéęŕ ďŕńë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Óńňŕ˘öĺ äűńęĺňó ˘ äűńęŕâîä %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Óńňŕ˘öĺ äűńęĺňó ˘ äűńęŕâîä %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -4606,171 +4706,202 @@ msgstr ""
"75002 Paris\n"
"FRANCE"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Ńóâ˙çü ç ëţđŕě äë˙ ŕňđűěŕíí˙ ńďińó äŕńňóďíűő ďŕęĺňŕ˘"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Âűáŕđ ëţńňđŕ äë˙ ŕňđűěŕíí˙ ďŕęĺňŕ˘"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Ńóâ˙çü ç ëţđŕě äë˙ ŕňđűěŕíí˙ ńďińó äŕńňóďíűő ďŕęĺňŕ˘"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "ßęi âŕř ÷ŕńŕâű ďî˙ń?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Âŕř ńińňýěíű ăŕäçiííię óńňŕë˙âŕíű íŕ GMT?"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
#, fuzzy
msgid "NTP Server"
msgstr "NIS ńĺđâĺđ:"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Ŕääŕëĺíű ńĺđâĺđ CUPS"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
#, fuzzy
msgid "No printer"
msgstr "Iě˙ äđóęŕđęi"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Öi ¸ńöü ó âŕń iířű?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
#, fuzzy
msgid "Mouse"
msgstr "Ďîđň ěűřű"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Ďđűíňýđ"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
#, fuzzy
msgid "ISDN card"
msgstr "Óíóňđŕíŕ˙ ISDN ęŕđňŕ"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
#, fuzzy
msgid "Sound card"
msgstr "Ńňŕíäŕđňíű"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "NIS"
msgstr "Âűęŕđűńňî˘âŕöü NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Âűäŕëiöü Windows(TM)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Local files"
msgstr "Ëŕęŕëüíű ďđűíňýđ"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Ďŕđîëü äë˙ root"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Í˙ěŕ ďŕđîëţ"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Ăýňű ďŕđîëü çŕíŕäňŕ ďđîńňű (˙ăî äŕ˘ćűí˙ ďŕâiííŕ áűöü íĺ ěĺíĺé çŕ %d ëiňŕđŕ˘)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Ŕ˘ňýíňűôięŕöű˙"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
#, fuzzy
msgid "Authentication LDAP"
msgstr "Ŕ˘ňýíňűôięŕöű˙"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "LDAP Server"
msgstr "ńĺđâĺđ"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
#, fuzzy
msgid "Authentication NIS"
msgstr "Ŕ˘ňýíňűôięŕöű˙ NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS Domain"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS ńĺđâĺđ:"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Ŕ˘ňýíňűôięŕöű˙"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NIS ńĺđâĺđ:"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -4797,19 +4928,19 @@ msgstr ""
"Ęŕëi ćŕäŕĺöĺ ńňâŕđűöü çŕăđóçŕ÷íű äűńę çŕđŕç, óńňŕ˘öĺ äűńęĺňó ˘ ďĺđřű\n"
"äűńęŕâîä i íŕöińíiöĺ \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Ďĺđřű äűńęŕâîä"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Äđóăi äűńęŕâîä"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Ďđŕďóńöiöü"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4835,7 +4966,7 @@ msgstr ""
"Ćŕäŕĺöĺ ńňâŕđűöü çŕăđóçŕ÷íű äűńę çŕđŕç?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -4844,28 +4975,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Âűáŕ÷ŕéöĺ, ŕëĺ äűńęŕâîä íĺäŕńňóďíű"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Ŕá˙đűöĺ äűńęŕâîä, ó ˙ęiě áóäçĺ ńňâŕđŕööŕ çŕăđóçŕ÷íŕ˙ äűńęĺňŕ"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Óńňŕ˘öĺ äűńęĺňó ˘ äűńęŕâîä %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Ńňâŕđýííĺ çŕăđóçŕ÷íŕé äűńęĺňű"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Ďŕäđűőňî˘ęŕ çŕăđóç÷űęŕ"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4873,11 +5004,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Âű ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -4885,16 +5016,16 @@ msgstr ""
"Ďŕěűëęŕ ˘ńňŕë˙âŕíí˙ ŕboot, \n"
"ńďđŕáŕâŕöü óńňŕ븢âŕöü, íĺăëĺäç˙÷ű íŕ ěŕă÷űěŕńöü ďŕđóřýíí˙ ďĺđřŕăŕ đŕçäĺëó?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
#, fuzzy
msgid "Installing bootloader"
msgstr "Óńňŕë˙âŕííĺ çŕăđóç÷űęó"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Ďđŕöýń óńňŕë˙âŕíí˙ çŕăđóç÷űęŕ íĺ ŕňđűěŕ˘ń˙. Óçíięëŕ íŕńňóďíŕ˙ ďŕěűëęŕ:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4905,18 +5036,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Óńňŕ˘öĺ äűńęĺňó ˘ äűńęŕâîä %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Ńňâŕđýííĺ äűńęĺňű äë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -4925,7 +5055,8 @@ msgstr ""
"Íĺęŕňîđű˙ ęđîęi íĺ çŕâĺđřŕíű.\n"
"Âű ńŕďđŕ˘äű ćŕäŕĺöĺ âűéńöi çŕđŕç?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -4936,7 +5067,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -4950,18 +5081,22 @@ msgstr ""
"çâ˙đňŕéöĺńü íŕ \n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Iíôŕđěŕöű˙ ďŕ íŕńňđîéęĺ âŕřŕé ńińňýěű ¸ńňü ˘ ďŕńë˙-˘ńňŕë¸âŕ÷íŕé\n"
"ăëŕâĺ âŕřŕăŕ Äŕďŕěîćíięŕ Ęŕđűńňŕëüíięó ç Ŕôiöűéíŕăŕ Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
#, fuzzy
msgid "Generate auto install floppy"
msgstr "Ńňâŕđýííĺ äűńęĺňű äë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4970,16 +5105,16 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Ŕ˘ňŕěŕňű÷íű"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
#, fuzzy
msgid "Replay"
msgstr "Ďĺđŕçŕăđóçiöü"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
#, fuzzy
msgid "Save packages selection"
msgstr "Ŕńŕáińňű âűáŕđ ďŕęĺňŕ˘"
@@ -5008,422 +5143,406 @@ msgstr ""
msgid "Choose a file"
msgstr "Ŕá˙đűöĺ äçĺ˙ííĺ"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr ""
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Ęŕëi ëŕńęŕ, ďŕ÷ŕęŕéöĺ"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Iíôŕđěŕöű˙"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Đŕçăŕđíóöü äđýâŕ"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Çăŕđíóöü äđýâŕ"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Ďĺđŕęëţ÷ýííĺ ďŕěić óďŕđŕäęŕâŕííĺě ďŕ ăđóďĺ i ŕńîáęŕő"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Äđýííű âűáŕđ, ďŕńďđŕáóéöĺ ˙ř÷ĺ\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Âŕř âűáŕđ? (çěî˘÷ŕííĺ %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Âŕř âűáŕđ? (çěî˘÷ŕííĺ %s) "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Îďöűi: %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr "Âű ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü aboot?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Âŕř âűáŕđ? (çěî˘÷ŕííĺ %s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "×ĺřńęi (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Í˙ěĺöęi"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Ińďŕíńęi"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Ôiíńęi"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Ôđŕíöóçńęi"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Íŕđâĺćńęi"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Ďîëüńęi"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Đóńęi"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Řâĺöęi"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "UK ęëŕâi˙ňóđŕ"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "US ęëŕâi˙ňóđŕ"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Albanian"
msgstr "Iđŕíńęi"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Ŕđě˙íńęi (ńňŕđű)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Ŕđě˙íńęi (typewriter)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Ŕđě˙íńęi (ôŕíĺňű÷íű)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Ŕçĺđáŕéäćŕíńęł (latin)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Áĺëüăiéńęi"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Ŕđě˙íńęi (ôŕíĺňű÷íű)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Áŕëăŕđńęi"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Áđŕçiëüńęi (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Áĺëŕđóńęł"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Řâĺéöŕđńęi (Í˙ěĺöęŕ˙ đŕńęëŕäęŕ)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Řâĺéöŕđńęi (Ôđŕíöóçńęŕ˙ đŕńęëŕäęŕ)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "×ĺřńęi (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Í˙ěĺöęi (í˙ěŕ çŕáëŕęiđŕâŕíűő ęëŕâiř)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Äŕöęi"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Íŕđâĺćńęi)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Ýńňîíńęi"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Ăđóçiíńęi (\"Đóńęŕ˙\" đŕńęëŕäęŕ)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Ăđóçiíńęi (\"Ëŕöiíńęŕ˙\" đŕńęëŕäęŕ)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Ăđý÷ŕńęi"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Ěŕäü˙đńęi"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Őŕđâŕöęi"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "I˘đűň"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "I˘đűň (ôŕíĺňű÷íű)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iđŕíńęi"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Ińëŕíäńęi"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Iňŕëü˙íńęi"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "ßďîíńęi 106 ęëŕâiř"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
#, fuzzy
msgid "Korean keyboard"
msgstr "UK ęëŕâi˙ňóđŕ"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Ëŕöiíŕ-Ŕěĺđűęŕíńęi"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Ëiňî˘ńęi AZERTY (ńňŕđű)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Ëiňî˘ńęi AZERTY (íîâű)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Ëiňî˘ńęi \"íóěŕđ đŕäęŕ\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Ëiňî˘ńęi \"ôŕíĺňű÷íű\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
#, fuzzy
msgid "Latvian"
msgstr "Đŕçěĺđęŕâŕííĺ"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr ""
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Ăŕëŕíäńęi"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Ďîëüńęi (ńňŕíäŕđňíŕ˙ đŕńęëŕäęŕ)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Ďîëüńęi (qwertz đŕńęëŕäęŕ)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Ďŕđňóăŕëüńęi"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Ęŕíŕäńęi (Ęâĺáýę)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Đóńęi (ß-Â-Ĺ-Đ-Ň-Č)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Đóńęi (ß-Â-Ĺ-Đ-Ň-Č)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Đóńęi (ß-Â-Ĺ-Đ-Ň-Č)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Ńëŕâĺíńęi"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Ńëŕâŕöęi (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Ńëŕâŕöęi (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Ŕçĺđáŕéäćŕíńęł (ęłđűëłöŕ)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Ňŕáëiöŕ"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Ňŕéńęŕ˙ ęëŕâi˙ňóđŕ"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Ňŕéńęŕ˙ ęëŕâi˙ňóđŕ"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Ňóđýöęi (ňđŕäűöű¸íŕ˙ \"F\" ěŕäýëü)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Ňóđýöęi (ńó÷ŕńíŕ˙ \"Q\" ěŕäýëü)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Óęđŕiíńęi"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US ęëŕâi˙ňóđŕ (ěićíŕđîäíŕ˙)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Âüĺňíŕěńęi \"íóěŕđ đŕäęŕ\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Ŕçĺđáŕéäćŕíńęł (latin)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5436,7 +5555,31 @@ msgstr "Ěŕíöiđŕâŕííĺ äűńęó %s\n"
msgid "Remove the logical volumes first\n"
msgstr ""
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Íóěŕđ ňýëĺôîíó"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Ôŕđěŕňŕâŕííĺ đŕçäçĺëŕ˘"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5479,10 +5622,6 @@ msgstr "2 ęíîďęi"
msgid "Generic 2 Button Mouse"
msgstr "Çâű÷ŕéíŕ˙ ěűř ç 2 ęíîďęŕěł"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Ŕăóëüíű"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Ç ęîëŕě"
@@ -5548,40 +5687,56 @@ msgstr "í˙ěŕ"
msgid "No mouse"
msgstr "Í˙ěŕ ěűřű"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Ęŕëł ëŕńęŕ, çđŕáłöĺ íĺęŕëüęł đóőࢠěűřřó."
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
#, fuzzy
msgid "To activate the mouse,"
msgstr "Ęŕëł ëŕńęŕ, çđŕáłöĺ íĺęŕëüęł đóőࢠěűřřó."
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "Đóřöĺ ęîëŕě ěűřű!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
#, fuzzy
msgid "Finish"
msgstr "Ôiíńęi"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Äŕëĺé ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr ""
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Ăýňŕ äŕęëŕäíŕ?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Iíôŕđěŕöű˙"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Đŕçăŕđíóöü äđýâŕ"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Çăŕđíóöü äđýâŕ"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Ďĺđŕęëţ÷ýííĺ ďŕěić óďŕđŕäęŕâŕííĺě ďŕ ăđóďĺ i ŕńîáęŕő"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýňó"
@@ -5627,7 +5782,7 @@ msgstr ""
"Íi âîäíű ethernet ńĺňęŕâű ŕäŕďňŕđ ó âŕřŕé ńińňýěĺ íĺ âűçíŕ÷ŕíű. Ęŕëi ëŕńęŕ, "
"ńęŕđűńňŕéöĺ ęŕíôiăóđŕöűéíű iíńňđóěýíň."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Ďŕçíŕ÷öĺ ńĺňęŕâű iíňýđôĺéń"
@@ -5642,7 +5797,7 @@ msgstr ""
msgid "no network card found"
msgstr "ńĺňęŕâŕ˙ ęŕđňŕ íĺ çíîéäçĺíŕ"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Íŕńňđîéęŕ ńĺňęi"
@@ -5658,15 +5813,15 @@ msgstr ""
"íŕďđűęëŕä ``mybox.mylab.myco.com''.\n"
"Âű ěîćŕöĺ ňŕęńŕěŕ ˘âĺńöi IP ŕäđŕń řëţçó, ęŕëi ¸í ó âŕń ¸ńöü."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Iě˙ ěŕřűíű"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
#, fuzzy
msgid "Network Configuration Wizard"
msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
@@ -5716,7 +5871,7 @@ msgstr "Íŕńňđîéęŕ ISDN"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Ŕá˙đűöĺ âŕřŕăŕ ďđŕâŕéäŕđŕ.\n"
"ęŕëi ˙ăî í˙ěŕ ˘ ăýňűě ńďińĺ, ŕá˙đűöĺ ňűď ``Iířű''"
@@ -5738,14 +5893,14 @@ msgstr "Ďŕäęëţ÷ýííĺ"
#: ../../network/isdn.pm_.c:185
#, fuzzy
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Ďŕäęëţ÷ýííĺ \n"
" íĺ ďđŕç D-ęŕíŕë (âűëó÷ŕíű˙ ęŕíŕëű)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "ßęi ďđŕňŕęîë âű ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü?"
#: ../../network/isdn.pm_.c:199
@@ -5769,7 +5924,8 @@ 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"
+"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ííű áűöü "
@@ -5786,13 +5942,13 @@ msgid "Continue"
msgstr "Ďđŕö˙ăíóöü"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "ßęŕ˙ ˘ âŕń ISDN ęŕđňŕ?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Âűçíŕ÷ŕíŕ ISDN PCI ęŕđňŕ, ŕëĺ íĺâ˙äîěű ˙ĺ ňűď. Ęŕëi ëŕńęŕ, ďŕçíŕ÷öĺ PCI "
"ęŕđňó íŕ íŕńňóďíűě ýęđŕíĺ."
@@ -5809,49 +5965,49 @@ msgstr "Äŕ ˙ęîăŕ ďŕńë˙äî˘íŕăŕ ďîđňó äŕëó÷ŕíű ěŕäýě?"
msgid "Dialup options"
msgstr "Ďŕđŕěĺňđű ęŕěóňŕâŕíŕăŕ çëó÷ýíí˙ (Dialup)"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Iě˙ çëó÷ýíí˙"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Íóěŕđ ňýëĺôîíó"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Iě˙ (login ID)"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "íŕ ŕńíîâĺ ńęđűďňó"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "íŕ ŕńíîâĺ ňýđěiíŕëó"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Iě˙ äŕěĺíó"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
#, fuzzy
msgid "First DNS Server (optional)"
msgstr "Ďĺđřű ńĺđâĺđ DNS"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
#, fuzzy
msgid "Second DNS Server (optional)"
msgstr "Äđóăi ńĺđâĺđ DNS:"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -5859,7 +6015,7 @@ msgstr ""
"\n"
"Âű ěîćŕöĺ ŕäęëţ÷űööŕ öł ďĺđŕęŕíôłăóđŕâŕöü âŕřŕĺ çëó÷ýííĺ."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
#, fuzzy
msgid ""
"\n"
@@ -5868,12 +6024,12 @@ msgstr ""
"\n"
"Âű ěîćŕöĺ ŕäęëţ÷űööŕ öł ďĺđŕęŕíôłăóđŕâŕöü âŕřŕĺ çëó÷ýííĺ."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
#, fuzzy
msgid "You are currently connected to internet."
msgstr "ßę âű ďëŕíóĺöĺ äŕëó÷űööŕ äŕ Iíňýđíýňó?"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid ""
"\n"
@@ -5882,38 +6038,38 @@ msgstr ""
"\n"
"Âű ěîćŕöĺ ŕäęëţ÷űööŕ öł ďĺđŕęŕíôłăóđŕâŕöü âŕřŕĺ çëó÷ýííĺ."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid "You are not currently connected to Internet."
msgstr "ßę âű ďëŕíóĺöĺ äŕëó÷űööŕ äŕ Iíňýđíýňó?"
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Connect"
msgstr "Iě˙ çëó÷ýíí˙"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
#, fuzzy
msgid "Disconnect"
msgstr "Íŕńňđîéęŕ ISDN"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "Íŕńňđîéęŕ ńĺňęi"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Iíňýđíýň çëó÷ýííĺ i ęŕíôiăóđŕöű˙"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
"\n"
"Âű ěîćŕöĺ ŕäęëţ÷űööŕ öł ďĺđŕęŕíôłăóđŕâŕöü âŕřŕĺ çëó÷ýííĺ."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, fuzzy, c-format
msgid ""
"\n"
@@ -5927,12 +6083,12 @@ msgstr ""
"\n"
"Âű ěîćŕöĺ ŕäęëţ÷űööŕ öł ďĺđŕęŕíôłăóđŕâŕöü âŕřŕĺ çëó÷ýííĺ."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -5940,106 +6096,113 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"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 ""
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
#, fuzzy
msgid "Choose the profile to configure"
msgstr "Ŕá˙đűöĺ ŕńíî˘íŕăŕ ęŕđűńňŕëüíięŕ:"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+#, fuzzy
+msgid "Expert Mode"
+msgstr "Ýęńďĺđň"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Âűçíŕ÷ýííĺ ďđűëŕäŕ˘..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, fuzzy, c-format
msgid "detected on port %s"
msgstr "Äóáë˙âŕííĺ ďóíęňó ěŕíöiđŕâŕíí˙ %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, fuzzy
msgid "ISDN connection"
msgstr "Íŕńňđîéęŕ ISDN"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy
msgid "ADSL connection"
msgstr "Đŕçěĺđęŕâŕííĺ"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy, c-format
msgid "detected on interface %s"
msgstr "Ńĺňęŕâű iíňýđôĺéń"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "Cable connection"
msgstr "Çëó÷ýííĺ ďđűíňýđó"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "cable connection detected"
msgstr "Çëó÷ýííĺ ďđűíňýđó"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
#, fuzzy
msgid "LAN connection"
msgstr "Đŕçěĺđęŕâŕííĺ"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Ŕá˙đűöĺ iíńňđóěĺíň, ˙ęi ćŕäŕĺöĺ ńęŕđűńňŕöü"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
#, fuzzy
msgid "Internet connection"
msgstr "Ńóěĺńíŕĺ Iíňýđíýň-çëó÷ýííĺ"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Âű ćŕäŕĺöĺ, ęŕá ăýňŕĺ çëó÷ýííĺ ńňŕđňŕâŕëŕ ďđű çŕăđóçöű?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
#, fuzzy
msgid "Network configuration"
msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6047,35 +6210,35 @@ msgid ""
"%s"
msgstr "Öi ćŕäŕĺöĺ ďđŕňýńöiđŕâŕöü íŕńňđîéęi?"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"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 ""
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6085,38 +6248,43 @@ msgstr ""
"Ęîćíű ďóíęň ďŕâiíĺí áűöü çŕďî˘íĺíű ˙ę IP ŕäđŕń ˘ äçĺń˙ňęîâŕ-ęđîďęŕâŕé \n"
"íŕňŕöűi (íŕďđűęëŕä, 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Íŕńňđîéęŕ ńĺňęŕâŕé ďđűëŕäű %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, fuzzy, c-format
msgid " (driver %s)"
msgstr "Ńĺđâĺđ XFree86: %s\n"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP ŕäđŕń"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Ěŕńęŕ ńĺňęi"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Ŕ˘ňŕěŕňű÷íű IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Ńňâŕđűöü çŕăđ. äűńę"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP ŕäđŕń ďŕâiíĺí áűöü ó ôŕđěŕöĺ 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6128,66 +6296,66 @@ msgstr ""
"íŕďđűęëŕä ``mybox.mylab.myco.com''.\n"
"Âű ěîćŕöĺ ňŕęńŕěŕ ˘âĺńöi IP ŕäđŕń řëţçó, ęŕëi ¸í ó âŕń ¸ńöü."
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS ńĺđâĺđ"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Ďđűëŕäŕ-řëţç"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Íŕńňđîéęŕ proxy ęýřóţ÷űő ńĺđâĺđŕ˘"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Proxy ďŕâiíĺí áűöü http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Proxy ďŕâiíĺí áűöü ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Íŕńňđîéęŕ çëó÷ýíí˙ ç Iíňýđíýňŕě"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Öi ćŕäŕĺöĺ çŕđŕç ďŕńďđŕáŕâŕöü äŕëó÷űööŕ äŕ Iíňýđíýňó?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
#, fuzzy
msgid "Testing your connection..."
msgstr "ßęi ňűď âŕřŕăŕ ISDN çëó÷ýíí˙?"
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
#, fuzzy
msgid "The system is now connected to Internet."
msgstr "ßę âű ďëŕíóĺöĺ äŕëó÷űööŕ äŕ Iíňýđíýňó?"
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr ""
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
#, fuzzy
msgid ""
"The system doesn't seem to be connected to internet.\n"
@@ -6196,309 +6364,314 @@ msgstr ""
"\n"
"Âű ěîćŕöĺ ŕäęëţ÷űööŕ öł ďĺđŕęŕíôłăóđŕâŕöü âŕřŕĺ çëó÷ýííĺ."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Íŕńňđîéęŕ äŕëó÷ýíí˙ äŕ Iíňýđíýňó"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Ęŕëi ëŕńęŕ, çŕďî˘íiöĺ öi ďŕçíŕ÷öĺ ďîëĺ íićýé"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ ęŕđňű"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Ŕäđŕńű ďŕě˙öł ęŕđňű (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "IO ęŕđňű"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "IO_0 ęŕđňű"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "IO_1 ęŕđňű"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Âŕř ŕńŕáińňű ňýëĺôîííű íóěŕđ"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Iě˙ ďđŕâŕéäŕđó, íŕďđűęëŕä ďđŕâŕéäŕđ.net"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Íóěŕđ ňýëĺôîíó ďđŕâŕéäŕđŕ"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
#, fuzzy
msgid "Provider dns 1 (optional)"
msgstr "DNS 1 ďđŕâŕéäŕđó"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
#, fuzzy
msgid "Provider dns 2 (optional)"
msgstr "DNS 2 ďđŕâŕéäŕđó"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
#, fuzzy
msgid "Choose your country"
msgstr "Âűáŕđ ęëŕâi˙ňóđű"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Đýćűě çëó÷ýíí˙"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection speed"
msgstr "Iě˙ çëó÷ýíí˙"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Iě˙ çëó÷ýíí˙"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Iě˙ äë˙ ˘âŕőîäó (iě˙ ęŕđűńňŕëüíięó)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Ďŕđîëü äë˙ ˘âŕőîäó"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "ďŕěűëęŕ ěŕíöiđŕâŕíí˙: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Ďŕřűđŕíű đŕçäçĺë íĺ ďŕäňđűěëiâŕĺööŕ ăýňŕé ďëŕňôîđěŕé"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Âű ěŕĺöĺ äçiđęó ˘ ňŕáëiöű đŕäçĺëŕ˘, ŕëĺ ˙ íĺ ěŕţ ěŕă÷űěŕńöi ˙ĺ ńęŕđűńňŕöü.\n"
"Ŕäçiíű âűőŕä ó ňűě, ęŕá ďĺđŕě˙ńöiöü ďĺđřŕńíű˙ đŕçäçĺëű ňŕę, ęŕá äçiđęŕ iřëŕ\n"
"ŕäđŕçó çŕ ďŕřűđŕíűě (extended) đŕçäçĺëŕě"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Ŕäíŕ˘ëĺííĺ ç ôŕéëŕ %s íĺ ŕňđűěŕëŕń˙: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Ďŕěűëęŕ çŕďińó ˘ ôŕéë %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
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 trash"
msgstr ""
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "ďŕâiííű ěĺöü"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "âŕćíŕ"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "âĺëüěi äîáđŕ"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "äîáđŕ"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "ěîćŕ áűöü"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr ""
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr ""
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Ëŕęŕëüíű ďđűíňýđ"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Ŕääŕëĺíű ďđűíňýđ"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "Ŕääŕëĺíű ńĺđâĺđ CUPS"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Ŕääŕëĺíű ńĺđâĺđ lpd"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Ńĺňęŕâű ďđűíňýđ (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Ńĺđâĺđ äđóęó"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
#, fuzzy
msgid "Enter a printer device URI"
msgstr "URI ďđűíňýđó"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr "Ëŕęŕëüíű ďđűíňýđ"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr "Ŕääŕëĺíű ďđűíňýđ"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Ďŕěűëęŕ çŕďińó ˘ ôŕéë %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(ěîäóëü %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP ńĺđâĺđŕ SMB"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Ďŕ äŕěŕ˘ëĺííţ)"
@@ -6521,12 +6694,12 @@ msgstr ""
"íŕ ăýňŕé ěŕřűíĺ, ¸í áóäçĺ çíîéäçĺíű ŕ˘ňŕěŕňű÷íŕ.\n"
"Ęŕëł Âű íĺ ˘ďý˘íĺíű, ŕá˙đűöĺ \"Ŕääŕëĺíű ńĺđâĺđ CUPS\"."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "Íŕńňđîéęŕ"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "Ŕääŕëĺíű ńĺđâĺđ CUPS"
@@ -6557,7 +6730,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP ŕäđŕń ďŕâiíĺí áűöü ó ôŕđěŕöĺ 1.2.3.4"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr ""
@@ -6566,7 +6739,7 @@ msgstr ""
msgid "CUPS server IP"
msgstr "IP ńĺđâĺđŕ SMB"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Ďîđň"
@@ -6575,22 +6748,13 @@ msgstr "Ďîđň"
msgid "Automatic CUPS configuration"
msgstr "Íŕńňđîéęŕ ěŕäýěó"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "Âűçíŕ÷ýííĺ ďđűëŕäŕ˘..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Ďđŕâĺđęŕ ďŕđňî˘"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "Iě˙ äđóęŕđęi"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6603,14 +6767,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr "Ëŕęŕëüíű ďđűíňýđ"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6628,12 +6792,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "Ŕääŕëĺíű ďđűíňýđ"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6647,11 +6811,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6661,35 +6825,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "Ŕääŕëĺíű ďđűíňýđ"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "Ŕääŕëĺíű ďđűíňýđ"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Ďđŕâĺđęŕ ďŕđňî˘"
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "Äóáë˙âŕííĺ ďóíęňó ěŕíöiđŕâŕíí˙ %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
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, ..., "
@@ -6697,43 +6865,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "URI ďđűíňýđó"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr "Ëŕęŕëüíű ďđűíňýđ"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6741,7 +6909,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6749,73 +6917,83 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Äŕ ˙ęîăŕ ďŕńë˙äî˘íŕăŕ ďîđňó äŕëó÷ŕíű ěŕäýě?"
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "URI ďđűíňýđó"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "Íŕńňđîéęŕ"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "Óńňŕë˙âŕííĺ ďŕęĺňó %s"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing SANE packages..."
msgstr "Óńňŕë˙âŕííĺ ďŕęĺňó %s"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Óńňŕë˙âŕííĺ ďŕęĺňó %s"
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
#, fuzzy
-msgid "Making printer port available for CUPS ..."
+msgid "Making printer port available for CUPS..."
msgstr "×űňŕţ áŕçó äŕäçĺíűő äđŕéâĺđî˘ CUPS"
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
#, fuzzy
-msgid "Reading printer database ..."
+msgid "Reading printer database..."
msgstr "×űňŕţ áŕçó äŕäçĺíűő äđŕéâĺđî˘ CUPS"
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Îďöűi ŕääŕëĺíŕăŕ ďđűíňýđó lpd"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -6825,31 +7003,31 @@ msgstr ""
"ďŕçíŕ÷űöü iě˙ ŕääŕëĺíŕăŕ ńĺđâĺđŕ i iě˙ ÷ŕđăi äđóęó,\n"
"ó ˙ęóţ ŕääŕëĺíű ńĺđâĺđ áóäçĺ ŕäďđŕ˘ë˙öü çŕäŕííi."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
#, fuzzy
msgid "Remote host name"
msgstr "Ŕääŕëĺíű âóçĺë"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
#, fuzzy
msgid "Remote printer name"
msgstr "Ŕääŕëĺíű ďđűíňýđ"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
#, fuzzy
msgid "Remote host name missing!"
msgstr "Ŕääŕëĺíű âóçĺë"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Ŕääŕëĺíű âóçĺë"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Îďöűi ďđűíňýđó SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -6862,35 +7040,35 @@ msgstr ""
"đýńóđńó, ˙ęi ńďŕëó÷ŕíű ç âűáđŕíűě ďđűíňýđŕě, iě˙ ęŕđűńňŕëüíięó, ďŕđîëü i "
"iíôŕđěŕöűţ ŕá ďđŕöî˘íŕé ăđóďĺ."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "Iě˙ ńĺđâĺđó SMB"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP ńĺđâĺđŕ SMB"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Iě˙ äë˙ đŕçěĺđęŕâŕíŕăŕ đýńóđńó"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Ďđŕöî˘íŕ˙ ăđóďŕ"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -6914,7 +7092,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -6923,7 +7101,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -6931,11 +7109,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Îďöűi ďđűíňýđó NetWare"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -6947,28 +7125,28 @@ msgstr ""
"(íĺ çŕ˘ń¸äű ńóďŕäŕĺ ç iěĺíĺě ó ńĺňöű TCP/IP) i iě˙ ÷ŕđăi äđóęó, ˙ęŕ˙ "
"ŕäďŕâ˙äŕĺ ŕáđŕíŕěó ďđűíňýđó, ŕ ňŕęńŕěŕ iě˙ ęŕđűńňŕëüíięó i ďŕđîëü."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Ńĺđâĺđ äđóęó"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Iě˙ ÷ŕđăi äđóęó"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Îďöűi ńîęĺňó ďđűíňýđó"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
@@ -6979,60 +7157,56 @@ msgstr ""
"Ęŕá äđóęŕâŕöü ďđŕç ńîęĺň äđóęŕđęi, âŕě íĺŕáőîäíŕ çŕá˙ńďĺ÷űöü\n"
"iě˙ ďđűíňýđó i ěŕă÷űěŕ ˙ăî íóěŕđ ďîđňó."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
#, fuzzy
msgid "Printer host name"
msgstr "Iě˙ ďđűíňýđó"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
#, fuzzy
msgid "Printer host name missing!"
msgstr "Iě˙ ďđűíňýđó"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "URI ďđűíňýđó"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
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 ""
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Iě˙ äđóęŕđęi"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Ŕďińŕííĺ"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Đŕçěĺđęŕâŕííĺ"
-#: ../../printerdrake.pm_.c:1021
+#: ../../printerdrake.pm_.c:1045
#, fuzzy
-msgid "Preparing printer database ..."
+msgid "Preparing printer database..."
msgstr "×űňŕţ áŕçó äŕäçĺíűő äđŕéâĺđî˘ CUPS"
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "Ŕääŕëĺíű ďđűíňýđ"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7047,28 +7221,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "Ăýňŕ äŕęëŕäíŕ?"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "Ŕääŕëĺíű ďđűíňýđ"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
#, fuzzy
msgid "Printer model selection"
msgstr "Çëó÷ýííĺ ďđűíňýđó"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
#, fuzzy
msgid "Which printer model do you have?"
msgstr "ßęi ňűď äđóęŕđęi âű ěŕĺöĺ?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7077,18 +7251,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Íŕńňđîéęŕ çëó÷ýíí˙ ç Iíňýđíýňŕě"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7098,12 +7272,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Íŕńňđîéęŕ çëó÷ýíí˙ ç Iíňýđíýňŕě"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7111,7 +7285,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7124,7 +7298,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7134,34 +7308,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Ćŕäŕĺöĺ ďđŕňýńöiđŕâŕöü äđóę?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
#, fuzzy
msgid "Test pages"
msgstr "Ďđŕâĺđęŕ ďŕđňî˘"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7169,45 +7343,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
#, fuzzy
msgid "No test pages"
msgstr "Ňŕę, íŕäđóęŕâŕöü ŕáĺäçâĺ ńňŕđîíęi ňýęńňó"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
#, fuzzy
msgid "Print"
msgstr "Ďđűíňýđ"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
#, fuzzy
msgid "Standard test page"
msgstr "Ńňŕíäŕđňíű"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Äđóę ňýńňŕâűő ńňŕđîíŕę"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
#, fuzzy
msgid "Photo test page"
msgstr "Äđóę ňýńňŕâűő ńňŕđîíŕę"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "Äđóę ňýńňŕâűő ńňŕđîíŕę"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Äđóę ňýńňŕâűő ńňŕđîíŕę"
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7223,7 +7397,7 @@ msgstr ""
"\n"
"¨í ďđŕöóĺ íŕđěŕëüíŕ?"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7233,16 +7407,16 @@ msgstr ""
"Ďĺđŕä ňűě, ˙ę ďđűíňýđ çŕďđŕöóĺ, ěîćŕ ďđŕéńöi ďý˘íű ÷ŕń.\n"
"¨í ďđŕöóĺ íŕđěŕëüíŕ?"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "Iě˙ äđóęŕđęi"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7251,15 +7425,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
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 ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7268,49 +7442,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, 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\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7320,7 +7494,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7329,31 +7503,42 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-#, fuzzy
-msgid "Close"
-msgstr "Ďîđň ěűřű"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Ŕäëó÷ýííĺ ŕä ńĺňęi"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Ŕäëó÷ýííĺ ŕä ńĺňęi"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Ŕäëó÷ýííĺ ŕä ńĺňęi"
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Ŕäëó÷ýííĺ ŕä ńĺňęi"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+#, fuzzy
+msgid "Close"
+msgstr "Ďîđň ěűřű"
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "Îďöűi ďđűíňýđó"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7361,38 +7546,38 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
#, fuzzy
-msgid "Reading printer data ..."
+msgid "Reading printer data..."
msgstr "×űňŕţ áŕçó äŕäçĺíűő äđŕéâĺđî˘ CUPS"
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Íŕńňđîéęŕ çëó÷ýíí˙ ç Iíňýđíýňŕě"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7402,51 +7587,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7454,62 +7639,62 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid "New printer name"
msgstr "Iě˙ äđóęŕđęi"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, 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 ""
-#: ../../printerdrake.pm_.c:1887
+#: ../../printerdrake.pm_.c:1935
#, fuzzy
-msgid "Refreshing printer data ..."
+msgid "Refreshing printer data..."
msgstr "×űňŕţ áŕçó äŕäçĺíűő äđŕéâĺđî˘ CUPS"
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Íŕńňđîéęŕ ďđűíňýđó"
-#: ../../printerdrake.pm_.c:1896
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
-msgid "Starting network ..."
+msgid "Starting network..."
msgstr "ßęi ňűď âŕřŕăŕ ISDN çëó÷ýíí˙?"
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr "Íŕńňđîéęŕ ńĺňęi"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "Ěŕíiňîđ ďŕęóëü íĺ íŕńňđîĺíű"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7517,12 +7702,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Íŕńňđîéęŕ ńĺňęi"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7532,34 +7717,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
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 ""
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
-msgid "Restarting printing system ..."
+msgid "Restarting printing system..."
msgstr "ßęóţ ńińňýěó äđóęó Âű ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü?"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "Âűńîęi"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "Ďŕđŕíŕiäŕëüíű"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7574,12 +7759,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "ßęóţ ńińňýěó äđóęó Âű ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü?"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7593,70 +7778,70 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Âűáŕđ ňűďó çëó÷ýíí˙ ďđűíňýđó"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "ßęóţ ńińňýěó äđóęó Âű ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Íŕńňđîéęŕ ďđűíňýđó"
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr "Óńňŕë˙âŕííĺ ďŕęĺňó %s"
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Îďöűi ďđűíňýđó"
-#: ../../printerdrake.pm_.c:2318
+#: ../../printerdrake.pm_.c:2389
#, fuzzy
-msgid "Preparing PrinterDrake ..."
+msgid "Preparing PrinterDrake..."
msgstr "×űňŕţ áŕçó äŕäçĺíűő äđŕéâĺđî˘ CUPS"
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Íŕńňđîéęŕ ďđűíňýđó"
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Ćŕäŕĺöĺ íŕńňđîiöü ďđűíňýđ?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "Printerdrake"
msgstr "Ďđűíňýđ"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7667,7 +7852,7 @@ msgstr ""
"Ňóň çě˙ř÷ŕţööŕ ÷ýđăi äđóęó.\n"
"Âű ěîćŕöĺ äŕäŕöü ˙ř÷ý, ŕëüáî çě˙íiöü ińíóţ÷ű˙."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7677,140 +7862,144 @@ msgstr ""
"Ňóň çě˙ř÷ŕţööŕ ÷ýđăi äđóęó.\n"
"Âű ěîćŕöĺ äŕäŕöü ˙ř÷ý, ŕëüáî çě˙íiöü ińíóţ÷ű˙."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Íŕńňđîéęŕ ńĺňęi"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
#, fuzzy
msgid "Normal Mode"
msgstr "Çâű÷ŕéíű"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Âűőŕä"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Öi ćŕäŕĺöĺ ďđŕňýńöiđŕâŕöü íŕńňđîéęi?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
#, fuzzy
msgid "Modify printer configuration"
msgstr "Íŕńňđîéęŕ çëó÷ýíí˙ ç Iíňýđíýňŕě"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Öi ćŕäŕĺöĺ ďđŕňýńöiđŕâŕöü íŕńňđîéęi?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
#, fuzzy
msgid "Printer connection type"
msgstr "Ńóěĺńíŕĺ Iíňýđíýň-çëó÷ýííĺ"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
#, fuzzy
msgid "Printer name, description, location"
msgstr "Çëó÷ýííĺ ďđűíňýđó"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
#, fuzzy
msgid "Print test pages"
msgstr "Äđóę ňýńňŕâűő ńňŕđîíŕę"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "Öi ćŕäŕĺöĺ ďđŕňýńöiđŕâŕöü íŕńňđîéęi?"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
#, fuzzy
msgid "Remove printer"
msgstr "Ŕääŕëĺíű ďđűíňýđ"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
msgstr "×űňŕţ áŕçó äŕäçĺíűő äđŕéâĺđî˘ CUPS"
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
#, fuzzy
msgid "Default printer"
msgstr "Ëŕęŕëüíű ďđűíňýđ"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Öi ćŕäŕĺöĺ ďđŕňýńöiđŕâŕöü íŕńňđîéęi?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr "×űňŕţ áŕçó äŕäçĺíűő äđŕéâĺđî˘ CUPS"
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -7893,24 +8082,62 @@ msgstr "Ďŕđîëi íĺ ńóďŕäŕţöü"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Íĺ ŕňđűěëiâŕĺööŕ äŕäŕöü đŕçäçĺë íŕ _ŕäôŕđěŕöiđŕâŕíű_ RAID md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Íĺ ŕňđűěëiâŕĺööŕ çŕďiń ó ôŕéë %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid íĺ ďđŕöŕçäîëüíű"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid íĺ ďđŕöŕçäîëüíű (ěîćŕ raid ďđűëŕäű ŕäńóňíi÷ŕţöü?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Íĺäŕńňŕňęîâŕ đŕçäçĺëࢠäë˙ RAID óçđî˘í˙ %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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. Óâŕőîä íĺ ŕáŕđîíĺíű "
+"ďŕđîëĺě."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+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."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Çŕęŕí÷ýííĺ íŕńňđîéęi"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Îďöűi"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -7966,7 +8193,7 @@ msgid ""
"new/changed hardware."
msgstr ""
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8036,7 +8263,7 @@ msgid ""
"available server."
msgstr ""
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -8112,7 +8339,7 @@ msgstr ""
"âűęîíâŕööŕ\n"
"íŕ ěŕřűíŕő ˙ęi˙ ďđŕöóţöü ˙ę ńĺđâĺđű äë˙ ďđŕňŕęîëŕ˘, ˙ęi˙ ńęŕđűńňî˘âŕţöü RPC."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -8209,7 +8436,7 @@ msgstr "öięŕâŕ"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "Mouse Systems"
@@ -8334,6 +8561,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýňó"
@@ -8438,6 +8666,15 @@ msgstr ""
msgid "Installing packages..."
msgstr "Óńňŕë˙âŕííĺ ďŕęĺňó %s"
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Ęŕëi ëŕńęŕ, âűéäçiöĺ, ŕ ďîňűě ńęŕđűńňŕéöĺ Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Ęŕëi ëŕńęŕ, ďĺđŕéäçiöĺ ˘ %s äë˙ ŕęňűâŕöűi çě˙íĺíí˙˘"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8446,6 +8683,159 @@ msgstr ""
"Ňŕáëiöŕ đŕçäçĺëࢠíĺ ÷űňŕĺööŕ, ˙íŕ çŕíŕäňŕ ńŕďńŕâŕíŕ äë˙ ěĺí˙ :(\n"
"Ďŕńďđŕáóţ ińöi äŕëĺé i áóäó ďđŕďóńęŕöü äđýííű˙ đŕçäçĺëű"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Íŕńňđîéęŕ çëó÷ýíí˙ ç Iíňýđíýňŕě"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Ńĺđâĺđ äđóęó"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Ńĺđâĺđ äđóęó"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS ńĺđâĺđ:"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS ńĺđâĺđ:"
+
+#: ../../standalone/drakTermServ_.c:234
+#, fuzzy
+msgid "Etherboot Floppy/ISO"
+msgstr "Ńňâŕđűöü çŕăđ. äűńę"
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Äŕäŕöü ęŕđűńňŕëüíięŕ"
+
+#: ../../standalone/drakTermServ_.c:242
+msgid "Add/Del Clients"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Đŕçěĺđęŕâŕííĺ"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Çíiř÷űöü"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Ŕá˙đűöĺ ôŕéë"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Äŕäŕöü ęŕđűńňŕëüíięŕ"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+msgid "<-- Del Client"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Íŕńňđîéęŕ IDE"
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "Íŕńňđîéęŕ X Window"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Óńňŕ˘öĺ äűńęĺňó ˘ äűńęŕâîä %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Äűńęŕâîä íĺäŕńňóďíű"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
#, fuzzy
msgid "Error!"
@@ -8487,6 +8877,11 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Ńňâŕđýííĺ äűńęĺňű äë˙ ˘ńňŕë˙âŕíí˙"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -8495,47 +8890,40 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Ďđűěłöĺ âiířŕâŕííi!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "Óńňŕ븢ęŕ"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "Äŕäŕöü ęŕđűńňŕëüíięŕ"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "Ôŕđěŕňŕâŕííĺ âiđňóŕëüíŕăŕ đŕçäçĺëó %s"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8543,15 +8931,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8559,709 +8939,774 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "Ďŕěűëęŕ ÷űňŕíí˙ ôŕéëó %s"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "Âűáŕđ ăđóďű ďŕęĺňŕ˘"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "Âűäŕëiöü ÷ŕđăó äđóęó"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Âűäŕëiöü Windows(TM)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr "Iě˙ ęŕđűńňŕëüíięó:"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Ęŕëł ëŕńęŕ, çđŕáłöĺ íĺęŕëüęł đóőࢠěűřřó."
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "Ďŕńďđŕáóéöĺ ˙ř÷ý đŕç"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "Ďŕńďđŕáóéöĺ ˙ř÷ý đŕç"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "Í˙ěŕ ďŕđîëţ"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Đŕçěĺđęŕâŕííĺ"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Âűáŕđ ňűďó çëó÷ýíí˙ ďđűíňýđó"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ňűď ęëŕâi˙ňóđű."
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Íŕöłńíłöĺ íŕ đŕçäçĺë"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "Ęŕëł ëŕńęŕ, çđŕáłöĺ íĺęŕëüęł đóőࢠěűřřó."
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "Ńĺňęŕ:"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Ňűď: "
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "Iě˙ ęŕđűńňŕëüíięó:"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ěîâó äë˙ ęŕđűńňŕíí˙."
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Âűęŕđűńňî˘âŕöü ŕďňűěiçŕöűţ ćîđńňęŕăŕ äűńęó?"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Âűęŕđűńňî˘âŕöü ŕďňűěiçŕöűţ ćîđńňęŕăŕ äűńęó?"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
#, fuzzy
msgid "What"
msgstr "×ŕęŕéöĺ"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr "Ç ęîëŕě"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr "Ç ęîëŕě"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "Îďöűi ěîäóëţ:"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
#, fuzzy
msgid "across Network"
msgstr "Ńĺňęŕ:"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "Íŕńňđ. ôŕéëŕâűő ńińňýěŕ˘"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Ěűř: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1983
+#, c-format
+msgid ""
+"\n"
+"- Save via %s on host : %s\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Îďöűi"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+#, fuzzy
+msgid "\t-Tape \n"
+msgstr "Ňűď: "
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Äŕ ˙ęîăŕ ďŕńë˙äî˘íŕăŕ ďîđňó äŕëó÷ŕíű ěŕäýě?"
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "ęŕëi ëŕńęŕ, ďŕçíŕ÷öĺ ňűď âŕřŕé ěűřű."
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Ęŕëł ëŕńęŕ, çđŕáłöĺ íĺęŕëüęł đóőࢠěűřřó."
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "Đŕçěĺđęŕâŕííĺ"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Âűáŕđ ňűďó çëó÷ýíí˙ ďđűíňýđó"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Ŕäíŕ˘ëĺííĺ ç äűńęĺňű"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "ęŕëi ëŕńęŕ, ďŕçíŕ÷öĺ ňűď âŕřŕé ěűřű."
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "˛ířű˙"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "Óńňŕë˙âŕííĺ ńińňýěű"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "Ŕäíŕ˘ëĺííĺ ç ôŕéëó"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "Ŕäíŕ˘ëĺííĺ ç ôŕéëó"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "Ďŕ âűáŕđó"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr ""
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr "Ńňŕđňŕâŕĺ ěĺíţ"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr "Ŕäíŕ˘ëĺííĺ ç ôŕéëó"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr "Ňýęńň"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "Âűáŕđ ďŕęĺňŕ˘"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Íŕńňóďíű˙ ďŕęĺňű áóäóöü äŕäŕíű äŕ ńińňýěű"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ěîâó äë˙ ęŕđűńňŕíí˙."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ěîâó äë˙ ęŕđűńňŕíí˙."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ěîâó äë˙ ęŕđűńňŕíí˙."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "Çŕőŕâŕííĺ ˘ ôŕéë"
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "Ęŕëł ëŕńęŕ, çđŕáłöĺ íĺęŕëüęł đóőࢠěűřřó."
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "Íŕńňđîéęŕ"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "Çŕęŕí÷ýííĺ íŕńňđîéęi"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "Íŕńňđ. ôŕéëŕâűő ńińňýěŕ˘"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9293,7 +9738,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9302,7 +9747,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9343,7 +9788,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9371,12 +9816,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -9393,7 +9843,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9433,7 +9883,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9444,7 +9894,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9457,7 +9907,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9501,105 +9951,551 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Óńňŕë˙âŕííĺ %s íĺ ŕňđűěŕëŕń˙. Óçíięëŕ íŕńňóďíŕ˙ ďŕěűëęŕ:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Ęŕíńîëüíű˙ łíńňđóěĺíňŕëüíű˙ ńđîäęł"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýňó"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "ŕáŕâ˙çęîâŕ"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Ďîđň ěűřű"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Ŕääŕëĺíű ďđűíňýđ"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Iě˙ äë˙ đŕçěĺđęŕâŕíŕăŕ đýńóđńó"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+#, fuzzy
+msgid "Windows Migration tool"
+msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Âűęŕđűńňî˘âŕöü DiskDrake"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Đŕçěĺđęŕâŕííĺ"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Ďŕęĺň"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Ęŕëi ëŕńęŕ, ďŕ÷ŕęŕéöĺ"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Çŕęŕí÷ýííĺ ˘ńňŕë˙âŕíí˙"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "Ďîđň"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Âű ěîćŕöĺ ŕáđŕöü łířű˙ ěîâű, ˙ęi˙ áóäóöü äŕńňóďíű ďŕńë˙ ˘ńňŕë˙âŕíí˙"
+
+#: ../../standalone/drakconnect_.c:80
+#, fuzzy, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#, fuzzy
+msgid "Profile: "
+msgstr "ďŕěűëęŕ ěŕíöiđŕâŕíí˙: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+#, fuzzy
+msgid "Hostname: "
+msgstr "Iě˙ ěŕřűíű"
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:181
+#, fuzzy
+msgid "Type:"
+msgstr "Ňűď: "
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Řëţç:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+#, fuzzy
+msgid "Configure Internet Access..."
+msgstr "Íŕńňđîéęŕ ńëóćáŕ˘"
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#, fuzzy
+msgid "LAN configuration"
+msgstr "Íŕńňđîéęŕ ADSL"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "Driver"
+msgstr "ńĺđâĺđ"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "Interface"
+msgstr "Ńĺňęŕâű iíňýđôĺéń"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "State"
+msgstr "Ńňŕđňŕâŕĺ ěĺíţ"
+
+#: ../../standalone/drakconnect_.c:244
+#, fuzzy
+msgid "Configure Local Area Network..."
+msgstr "Íŕńňđîéęŕ ëŕęŕëüíŕé ńĺňęi"
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Ěŕéńňŕđ ńňâŕđýíí˙..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:302
+#, fuzzy
+msgid "Please Wait... Applying the configuration"
+msgstr "Ďđŕâĺđęŕ ďŕđŕěĺňđࢠíŕńňđîéęi"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#, fuzzy
+msgid "Connected"
+msgstr "Iě˙ çëó÷ýíí˙"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#, fuzzy
+msgid "Not connected"
+msgstr "Đŕçěĺđęŕâŕííĺ"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:453
+#, fuzzy
+msgid "LAN Configuration"
+msgstr "Íŕńňđîéęŕ"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "activate now"
+msgstr "Ŕęňű˘íű"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "deactivate now"
+msgstr "Ŕęňű˘íű"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:584
+#, fuzzy
+msgid "Internet connection configuration"
+msgstr "Iíňýđíýň çëó÷ýííĺ i ęŕíôiăóđŕöű˙"
+
+#: ../../standalone/drakconnect_.c:588
+#, fuzzy
+msgid "Internet Connection Configuration"
+msgstr "Iíňýđíýň çëó÷ýííĺ i ęŕíôiăóđŕöű˙"
+
+#: ../../standalone/drakconnect_.c:597
+#, fuzzy
+msgid "Connection type: "
+msgstr "Iě˙ çëó÷ýíí˙"
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Řëţç"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:69
+#, fuzzy
+msgid "Module name"
+msgstr "Îďöűi ěîäóëţ:"
+
+#: ../../standalone/drakfloppy_.c:69
+#, fuzzy
+msgid "Size"
+msgstr "Ďŕěĺđ: %s"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+#, fuzzy
+msgid "drakfloppy"
+msgstr "Ŕäíŕ˘ëĺííĺ ç äűńęĺňű"
+
+#: ../../standalone/drakfloppy_.c:91
+#, fuzzy
+msgid "boot disk creation"
+msgstr "Íŕńňđîéęŕ ďŕńë˙ ˘ńňŕë˙âŕíí˙"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "Ďŕ äŕěŕ˘ëĺííţ"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:126
+#, fuzzy
+msgid "kernel version"
+msgstr "Íŕńňđîéęŕ çëó÷ýíí˙ ç Iíňýđíýňŕě"
+
+#: ../../standalone/drakfloppy_.c:132
+#, fuzzy
+msgid "General"
+msgstr "Ŕăóëüíű"
+
+#: ../../standalone/drakfloppy_.c:137
+#, fuzzy
+msgid "Expert Area"
+msgstr "Ýęńďĺđň"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:141
+#, fuzzy
+msgid "Add a module"
+msgstr "Äŕäŕöü ęŕđűńňŕëüíięŕ"
+
+#: ../../standalone/drakfloppy_.c:161
+#, fuzzy
+msgid "force"
+msgstr "Ďĺđŕíîń"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:163
+#, fuzzy
+msgid "omit scsi modules"
+msgstr "Đýćűě çëó÷ýíí˙"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:200
+#, fuzzy
+msgid "Remove a module"
+msgstr "Ŕäâŕđîňíű ďŕđŕäŕę ńňŕđîíŕę"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:427
+#, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:429
+#, fuzzy, c-format
+msgid "Unable to fork: %s"
+msgstr "Çđŕáiöü íĺŕęňű˘íűě ńĺňęŕâŕĺ çëó÷ýííĺ"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "Íĺ çíŕéřëi %s"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr "Çđîáëĺíŕ"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
#, fuzzy
msgid "Fonts copy"
msgstr "Ôŕđěŕňŕâŕöü äűńęĺňó"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "Ďŕäđűőňî˘ęŕ ˘ńňŕë˙âŕíüí˙"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
#, fuzzy
msgid "Restart XFS"
msgstr "ŕáěĺćŕâŕííĺ"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "ŕáěĺćŕâŕííĺ"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -9608,122 +10504,121 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "Ôŕđěŕňŕâŕííĺ đŕçäçĺëŕ˘"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
#, fuzzy
msgid "Uninstall Fonts"
msgstr "Âűäŕëĺííĺ âűáđŕíűő RPM-ďŕęĺňࢠç ńińňýěű"
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Çŕęŕí÷ýííĺ íŕńňđîéęi"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr "Ęđîďęŕ ěŕíöiđŕâŕíí˙"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Âűáŕđ đŕçäçĺëࢠäë˙ ôŕđěŕňŕâŕíí˙"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "äîáđŕ"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr "Ŕäě˙íiöü"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr "Ďđűíňýđ"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "Óńňŕë˙âŕííĺ ńińňýěű"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "Ŕá˙đűöĺ ôŕéë"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "Ŕääŕëĺíű ďđűíňýđ"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr ""
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr "Ó âŕřŕé ńłńňýěĺ í˙ěŕ íiâîäíŕăŕ ńĺňęŕâŕăŕ ŕäŕďňŕđŕ!"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "Óńňŕ븢ęŕ"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr "Ó âŕřŕé ńłńňýěĺ í˙ěŕ íiâîäíŕăŕ ńĺňęŕâŕăŕ ŕäŕďňŕđŕ!"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "Çŕęŕí÷ýííĺ ˘ńňŕë˙âŕíí˙"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Ńóěĺńíŕĺ Iíňýđíýň-çëó÷ýííĺ"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Ńóěĺńíŕĺ Iíňýđíýň-çëó÷ýííĺ çŕđŕç ěŕă÷űěŕ"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -9731,35 +10626,35 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
#, fuzzy
msgid "disable"
msgstr "Ňŕáëiöŕ"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr ""
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
#, fuzzy
msgid "reconfigure"
msgstr "Íŕńňđîéęŕ X Window"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
#, fuzzy
msgid "Disabling servers..."
msgstr "Âűçíŕ÷ýííĺ ďđűëŕäŕ˘..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
#, fuzzy
msgid "Internet connection sharing is now disabled."
msgstr "Ńóěĺńíŕĺ Iíňýđíýň-çëó÷ýííĺ çŕđŕç çŕáŕđîíĺíŕ"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Ńóěĺńíŕĺ Iíňýđíýň-çëó÷ýííĺ çŕđŕç çŕáŕđîíĺíŕ"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -9767,21 +10662,21 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
#, fuzzy
msgid "enable"
msgstr "Ňŕáëiöŕ"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
#, fuzzy
msgid "Internet connection sharing is now enabled."
msgstr "Ńóěĺńíŕĺ Iíňýđíýň-çëó÷ýííĺ çŕđŕç ěŕă÷űěŕ"
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
#, fuzzy
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -9798,21 +10693,21 @@ msgstr ""
"\n"
"Âű ćŕäŕĺöĺ óńňŕë˙âŕöü ńóěĺńíű äîńňóď äŕ Internet?"
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr ""
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, fuzzy, c-format
msgid "Interface %s"
msgstr "Ńĺňęŕâű iíňýđôĺéń"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Ó âŕřŕé ńłńňýěĺ í˙ěŕ íiâîäíŕăŕ ńĺňęŕâŕăŕ ŕäŕďňŕđŕ!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -9820,11 +10715,11 @@ msgstr ""
"Íi âîäíű ethernet ńĺňęŕâű ŕäŕďňŕđ ó âŕřŕé ńińňýěĺ íĺ âűçíŕ÷ŕíű. Ęŕëi ëŕńęŕ, "
"ńęŕđűńňŕéöĺ ęŕíôiăóđŕöűéíű iíńňđóěýíň."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Ńĺňęŕâű iíňýđôĺéń"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -9834,7 +10729,7 @@ msgid ""
"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -9842,12 +10737,12 @@ msgstr ""
"Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ńĺňęŕâű ŕäŕďňŕđ, ˙ęł áóäçĺ âűęŕđűńňŕíű äë˙ äŕëó÷ýíí˙ äŕ "
"âŕřŕé ëŕęŕëüíŕé ńĺňęi."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "Ěŕíiňîđ ďŕęóëü íĺ íŕńňđîĺíű"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -9857,17 +10752,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Íŕńňđîéęŕ ěŕäýěó"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "Íŕńňđîéęŕ çëó÷ýíí˙ ç Iíňýđíýňŕě"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -9878,7 +10773,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
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 C-Class Network that "
@@ -9890,33 +10785,33 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP ńĺđâĺđŕ SMB"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Ďŕňýíöűéíű ŕäđŕń ËÂŃ ęŕíôëięňóĺ ç á˙ăó÷ŕé ęŕíôiăóđŕöű˙é %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Çíîéäçĺíŕ ńłńňýěŕ ńĺňęŕâŕé á˙ńďĺęł (firewall)!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -9924,21 +10819,21 @@ msgstr ""
"Óâŕăŕ! Çíîéäçĺíŕ łńíóţ÷ŕ˙ ńińňýěŕ ńĺňęŕâŕé á˙ńďĺęi (firewall). Âŕě ěŕă÷űěŕ "
"ńďŕňđýáłööŕ ńęŕđýęňŕâŕöü ˙ĺ ďŕńë˙ ˘ńňŕë˙âŕíí˙."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
#, fuzzy
msgid "Configuring..."
msgstr "Íŕńňđîéęŕ IDE"
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Ęŕíôłăóđŕöű˙ ńöýíŕđŕ˘, óńňŕë˙âŕííĺ ĎÇ, çŕďóńę ńëóćáŕ˘..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Ďđŕáëĺěű ç óńňŕë˙âŕííĺě ďŕęĺňó %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -9949,25 +10844,25 @@ msgstr ""
"ç łířűěł ęŕěď'ţňýđŕěł ˘ âŕřŕé ËÂŃ, ęŕđűńňŕţ÷űń˙ ŕ˘ňŕěŕňű÷íűě\n"
"ęŕíôłăóđŕâŕííĺě (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
#, fuzzy
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Ńóěĺńíŕĺ Iíňýđíýň-çëó÷ýííĺ çŕđŕç ěŕă÷űěŕ"
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
#, fuzzy
msgid "Internet connection sharing configuration"
msgstr "Iíňýđíýň çëó÷ýííĺ i ęŕíôiăóđŕöű˙"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, fuzzy, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -9977,224 +10872,6 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Ńóěĺńíŕĺ Iíňýđíýň-çëó÷ýííĺ"
-#: ../../standalone/draknet_.c:80
-#, fuzzy, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-#, fuzzy
-msgid "Profile: "
-msgstr "ďŕěűëęŕ ěŕíöiđŕâŕíí˙: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-#, fuzzy
-msgid "Hostname: "
-msgstr "Iě˙ ěŕřűíű"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr ""
-
-#: ../../standalone/draknet_.c:181
-#, fuzzy
-msgid "Type:"
-msgstr "Ňűď: "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Řëţç:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-#, fuzzy
-msgid "Configure Internet Access..."
-msgstr "Íŕńňđîéęŕ ńëóćáŕ˘"
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-#, fuzzy
-msgid "LAN configuration"
-msgstr "Íŕńňđîéęŕ ADSL"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "Driver"
-msgstr "ńĺđâĺđ"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "Interface"
-msgstr "Ńĺňęŕâű iíňýđôĺéń"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Ńňŕđňŕâŕĺ ěĺíţ"
-
-#: ../../standalone/draknet_.c:244
-#, fuzzy
-msgid "Configure Local Area Network..."
-msgstr "Íŕńňđîéęŕ ëŕęŕëüíŕé ńĺňęi"
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Ěŕéńňŕđ ńňâŕđýíí˙..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr ""
-
-#: ../../standalone/draknet_.c:302
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr "Ďđŕâĺđęŕ ďŕđŕěĺňđࢠíŕńňđîéęi"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Connected"
-msgstr "Iě˙ çëó÷ýíí˙"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Not connected"
-msgstr "Đŕçěĺđęŕâŕííĺ"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-#, fuzzy
-msgid "LAN Configuration"
-msgstr "Íŕńňđîéęŕ"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr ""
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr ""
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr ""
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Ŕęňű˘íű"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Ŕęňű˘íű"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-#, fuzzy
-msgid "Internet connection configuration"
-msgstr "Iíňýđíýň çëó÷ýííĺ i ęŕíôiăóđŕöű˙"
-
-#: ../../standalone/draknet_.c:588
-#, fuzzy
-msgid "Internet Connection Configuration"
-msgstr "Iíňýđíýň çëó÷ýííĺ i ęŕíôiăóđŕöű˙"
-
-#: ../../standalone/draknet_.c:597
-#, fuzzy
-msgid "Connection type: "
-msgstr "Iě˙ çëó÷ýíí˙"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr ""
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Řëţç"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr ""
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr ""
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Íŕńňđîéęi ˘çđî˘í˙ á˙ńďĺęi"
-
#: ../../standalone/drakxconf_.c:47
#, fuzzy
msgid "Control Center"
@@ -10204,94 +10881,130 @@ msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýňó"
msgid "Choose the tool you want to use"
msgstr "Ŕá˙đűöĺ iíńňđóěĺíň, ˙ęi ćŕäŕĺöĺ ńęŕđűńňŕöü"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\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 ""
+
+#: ../../standalone/drakxtv_.c:72
#, fuzzy
msgid "Canada (cable)"
msgstr "Ęŕíŕäńęi (Ęâĺáýę)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "East Europe"
msgstr "Ţđîďŕ"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Ôđŕíöű˙"
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr "Ińëŕíäńęi"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "West Europe"
msgstr "Ţđîďŕ"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr "ďŕńë˙äî˘íŕ˙"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Ŕňđűěŕëŕń˙ ďŕěűëęŕ ˘ďŕđŕäęŕâŕíí˙ ďŕęĺňŕ˘:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10341,7 +11054,7 @@ msgstr "Íĺěŕă÷űěŕ çŕďóńöłöü live upgrade !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr ""
@@ -10389,10 +11102,6 @@ msgstr ""
msgid "/Options/Test"
msgstr ""
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr ""
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr ""
@@ -10455,7 +11164,7 @@ msgstr ""
msgid "Content of the file"
msgstr ""
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -10464,80 +11173,111 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr ""
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "Íŕńňđîéęŕ ADSL"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr ""
-
#: ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid "sshd"
-msgstr "öĺíü"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Iě˙ äŕěĺíó"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "Ext2"
+msgid "Ftp Server"
+msgstr "NIS ńĺđâĺđ:"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Ńĺđâĺđ äđóęó"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS ńĺđâĺđ:"
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "NIS ńĺđâĺđ:"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "ďđűëŕäŕ"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Ńĺđâĺđ äđóęó"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "ďđűëŕäŕ"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "ôŕđěŕňŕâŕííĺ"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "Íŕńňđîéęŕ"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr ""
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "ęŕëi ëŕńęŕ, ďŕçíŕ÷öĺ ňűď âŕřŕé ěűřű."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "serial_usb íĺ çíîéäçĺí\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Ýěóë˙âŕöü ňđýöţţ ęíîďęó?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "×űňŕţ áŕçó äŕäçĺíűő äđŕéâĺđî˘ CUPS"
+
+#: ../../standalone/scannerdrake_.c:42
+#, fuzzy
+msgid "Detecting devices ..."
+msgstr "Âűçíŕ÷ýííĺ ďđűëŕäŕ˘..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -10581,6 +11321,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
#, fuzzy
msgid "Firewalling Configuration"
@@ -10933,10 +11685,6 @@ msgid "Multimedia - Sound"
msgstr "Ěóëüňűěĺäű˙ - ăóę"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Óöłëłňű"
-
-#: ../../share/compssUsers:999
#, fuzzy
msgid "Documentation"
msgstr "Ŕ˘ňýíňűôięŕöű˙"
@@ -11049,10 +11797,6 @@ msgstr ""
"Web ŕăë˙äŕëüíłęł"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Ŕđőłâŕňŕđű, ýěóë˙ňŕđű, ěŕíłňîđűíă"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Ďĺđńŕíŕëüíű˙ ôłíŕíńű"
@@ -11102,192 +11846,211 @@ msgstr "Ěóëüňűěĺäű˙ - Ńňâŕđýííĺ CD"
msgid "Scientific Workstation"
msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Ŕäě˙íiöü"
+#~ msgid "Choose options for server"
+#~ msgstr "Ŕá˙đűöĺ äŕäŕňęîâű˙ íŕńňđîéęi äë˙ ńĺđâĺđŕ"
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
+#~ msgid "Monitor not configured"
+#~ msgstr "Ěŕíiňîđ ďŕęóëü íĺ íŕńňđîĺíű"
-#~ msgid "None"
-#~ msgstr "Í˙ěŕ"
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Âiäýŕęŕđňŕ ˙ř÷ý íĺ ŕäęŕíôiăóđŕâŕíŕ"
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Ŕá˙đűöĺ ŕńíî˘íŕăŕ ęŕđűńňŕëüíięŕ:"
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Ďŕěĺđű ýęđŕíó ˙ř÷ý íĺ ďŕçíŕ÷ŕíű"
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Ŕääŕëĺíű ďđűíňýđ"
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "ďŕńďđŕáóéöĺ çě˙íiöü íĺęŕňîđű˙ ďŕđŕěĺňđű"
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Âű íĺ ěîćŕöĺ çŕäŕöü îďöűi ěîäóëţ %s."
+#~ msgid "An error occurred:"
+#~ msgstr "Ďŕěűëęŕ:"
-#~ msgid "mount failed"
-#~ msgstr "ďŕěűëęŕ ěŕíöiđŕâŕíí˙"
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Çŕńňŕëîń˙ %d ńĺęóíäŕ˘"
-#~ msgid "Low"
-#~ msgstr "Ńëŕáű"
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Ăýňŕ äŕęëŕäíű˙ ďŕđŕěĺňđű íŕńňđîéęi?"
-#~ msgid "Medium"
-#~ msgstr "Ń˙đýäíi"
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Ŕňđűěŕíŕ ďŕěűëęŕ, ďŕńďđŕáóéöĺ çě˙íiöü ďŕđŕěĺňđű"
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Ăýňű óçđîâĺíü á˙ńďĺęi ěŕĺ řýđŕă ďŕë˙ďřýíí˙˘, ó ďĺđřóţ ÷ŕđăó\n"
-#~ "ďŕâ˙ëi÷űëŕń˙ ęîëüęŕńöü ďđŕâĺđŕę i ďŕď˙đýäćŕíí˙˘."
+#~ msgid "XFree86 server: %s"
+#~ msgstr "Ńĺđâĺđ XFree86: %s"
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr "Ěóëüňűěĺäű˙"
+#~ msgid "Show all"
+#~ msgstr "Ďŕęŕçŕöü óń¸"
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Ýęńďĺđň"
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Ďŕäđűőňî˘ęŕ íŕńňđîéęi X-Window"
-#, fuzzy
-#~ msgid "Connect to Internet"
-#~ msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýňó"
+#~ msgid "What do you want to do?"
+#~ msgstr "Řňî âű ćŕäŕĺöĺ çđŕáiöü?"
-#, fuzzy
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýňó"
+#~ msgid "Change Monitor"
+#~ msgstr "Çě˙íiöü ěŕíiňîđ"
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Íŕ ˙ęi äűńę ďĺđŕíĺńöł?"
+#~ msgid "Change Graphics card"
+#~ msgstr "Çě˙íiöü âiäýŕęŕđňó"
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
+#~ msgid "Change Server options"
+#~ msgstr "Çě˙íiöü íŕńňđîéęi Ńĺđâĺđó"
-#, fuzzy
-#~ msgid "Infos"
+#~ msgid "Change Resolution"
+#~ msgstr "Çě˙íiöü ďŕěĺđű ýęđŕíó"
+
+#~ msgid "Show information"
#~ msgstr "Iíôŕđěŕöű˙"
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
+#~ msgid "Test again"
+#~ msgstr "Ďđŕâĺđűöü ˙ř÷ý đŕç"
-#, fuzzy
-#~ msgid ""
-#~ "Apache is a World Wide Web server. It is used to serve HTML files and "
-#~ "CGI."
-#~ msgstr ""
-#~ "Apache - ăýňŕ World Wide Web ńĺđâĺđ. ¨í âűęŕđűńňî˘çâŕĺöŕ äë˙ "
-#~ "ŕáńëóăî˘âŕíí˙\n"
-#~ "HTML ôŕéëࢠi CGI."
+#~ msgid "Setting security level"
+#~ msgstr "Íŕńňđîéęi ˘çđî˘í˙ á˙ńďĺęi"
-#~ msgid ""
-#~ "named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
-#~ "host names to IP addresses."
-#~ msgstr ""
-#~ "named (BIND) - ăýňŕ ńĺđâĺđ äŕěĺííűő iě¸íŕ˘, ˙ęi âűęŕđűńňî˘âŕĺööŕ äë˙\n"
-#~ "ďĺđŕęëŕäŕíí˙ iě¸í âóçëî˘ ó IP ŕäđŕńű."
+#~ msgid "Graphics card"
+#~ msgstr "Âiäýŕęŕđňŕ"
-#, fuzzy
-#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
-#~ "\n"
-#~ msgstr "ęŕëi ëŕńęŕ, ďŕçíŕ÷öĺ ňűď âŕřŕé ěűřű."
+#~ msgid "Select a graphics card"
+#~ msgstr "Ŕá˙đűöĺ âiäýŕęŕđňó"
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "Âűőŕä"
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "Ďŕď˙đýäćŕííĺ: ňýńöiđŕâŕííĺ íŕ ăýňŕé âiäýŕęŕđöĺ íĺá˙ńďĺ÷íŕ"
-#, fuzzy
-#~ msgid "Removable media"
-#~ msgstr "Ŕ˘ňŕěŕíöiđŕâŕííĺ çěĺííűő íŕçŕďŕřâŕëüíłęŕ˘"
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Ńňŕíäŕđňíű VGA, 640x480 ďđű 60 Hz"
-#~ msgid "Active"
-#~ msgstr "Ŕęňű˘íű"
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 ďđű 56 Hz"
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "Íĺ"
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "Ńóěĺńíű ç 8514, 1024x768 ďđű 87 Hz ďđŕçđŕäęîâŕ (í˙ěŕ 800x600)"
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "Ďđűíňýđ ěŕäýëi \"%s\" çíîéäçĺíű íŕ "
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 ďđi 87 Hz ďđŕçđŕäęîâŕ, 800x600 ďđű 56 Hz"
-#~ msgid "Local Printer Device"
-#~ msgstr "Ëŕęŕëüíű ďđűíňýđ"
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Extended Super VGA, 800x600 ďđű 60 Hz, 640x480 ďđű 72 Hz"
-#~ msgid "Printer Device"
-#~ msgstr "Ďîđň ďđűíňýđó"
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Íĺďđŕçđŕäęîâŕ SVGA, 1024x768 ďđű 60 Hz, 800x600 ďđű 72 Hz"
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Ŕääŕëĺíű ńĺđâĺđ CUPS"
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "Âűńîę÷ŕńöłí¸âű SVGA, 1024x768 ďđű 70 Hz"
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "Ŕääŕëĺíű ńĺđâĺđ CUPS"
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Řěŕň÷ŕńöłí¸âű, ˙ęi çäîëüíű ďŕäňđűěëiâŕöü 1280x1024 ďđű 60 Hz"
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Řěŕň÷ŕńöłí¸âű, ˙ęi çäîëüíű ďŕäňđűěëiâŕöü 1280x1024 ďđű 74 Hz"
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Mouse Systems"
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Řěŕň÷ŕńöłí¸âű, ˙ęi çäîëüíű ďŕäňđűěëiâŕöü 1280x1024 ďđű 76 Hz"
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "˛ířű˙"
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Ěŕíiňîđ, ˙ęi çäîëüíű ďŕäňđűěëiâŕöü 1600x1200 ďđű 70 Hz"
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ňűď ęëŕâi˙ňóđű."
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Ěŕíiňîđ, ˙ęi çäîëüíű ďŕäňđűěëiâŕöü 1600x1200 ďđű 76 Hz"
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Íŕöłńíłöĺ íŕ đŕçäçĺë"
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Ŕăóëüíű ďŕěĺđ äë˙ ŕáđŕíűő ăđóďࢠďđűáëiçíŕ đî˘íű %d Ěá.\n"
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Ňűď: "
+#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
+#~ msgstr ""
+#~ "Ęŕëi âű ćŕäŕĺöĺ ˘ńňŕë˙âŕöü ěĺíĺé ăýňŕăó ďŕěĺđó,\n"
+#~ "ŕá˙đűöĺ ŕäńîňŕę ďŕęĺňŕ˘, ˙ęi âű ćŕäŕĺöĺ ˘ńňŕë˙âŕöü.\n"
+#~ "\n"
+#~ "Ďđű íiçęiě ŕäńîňęó áóäóöü óńňŕë˙âŕíű ňîëüęi íŕéáîëüř âŕćíű˙ ďŕęĺňű,\n"
+#~ "ŕ ďđű 100% áóäóöü óńňŕë˙âŕíű ˘ńĺ ŕáđŕíű˙ ďŕęĺňű."
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
+#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
+#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
+#~ msgstr ""
+#~ "Íŕ âŕřűě äűńęó ¸ńöü ěĺńöŕ ňîëüęi äë˙ %d%% ăýňűő ďŕęĺňŕ˘.\n"
+#~ "\n"
+#~ "Ęŕëi âű ćŕäŕĺöĺ ˘ńňŕë˙âŕöü ěĺíĺé ăýňŕăŕ, ňî\n"
+#~ "ďŕçíŕ÷öĺ ŕäńîňŕę ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙.\n"
+#~ "Ďđű ěŕëűě ŕäńîňęó áóäóöü óńňŕë˙âŕíű íŕéáîëüř âŕćíű˙ ďŕęĺňű;\n"
+#~ "ďđű ŕäńîňęó %d%% áóäçĺ ˘ńňŕë˙âŕíŕ ńňîëüęi ďŕęĺňࢠęîëüęi ěŕă÷űěŕ."
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "Íŕńňđîéęŕ X Window"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Áîëüř äŕęëŕäíű âűáŕđ ěîćíŕ áóäçĺ çđŕáiöü íŕ íŕńňóďíűě ęđîęó."
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Ďîđň ďđűíňýđó"
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Ŕäńîňŕę ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Ŕäěĺíŕ"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Óçđîâĺíü á˙ńďĺęi"
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "Îę"
+#~ msgid "Complete (%dMB)"
+#~ msgstr "Ďî˘íű (%dMá)"
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Ďîđň ěűřű"
+#~ msgid "Minimum (%dMB)"
+#~ msgstr "Ěiíiěŕëüíű (%dMá)"
-#, fuzzy
-#~ msgid "toto"
-#~ msgstr "Root"
+#~ msgid "Recommended (%dMB)"
+#~ msgstr "Đýęŕěĺíäŕâŕíŕ (%dĚá)"
-#, fuzzy
-#~ msgid "Starting your connection..."
-#~ msgstr "ßęi ňűď âŕřŕăŕ ISDN çëó÷ýíí˙?"
+#~ msgid "Utilities"
+#~ msgstr "Óöłëłňű"
-#, fuzzy
-#~ msgid "Closing your connection..."
-#~ msgstr "ßęi ňűď âŕřŕăŕ ISDN çëó÷ýíí˙?"
+#~ msgid "Archiving, emulators, monitoring"
+#~ msgstr "Ŕđőłâŕňŕđű, ýěóë˙ňŕđű, ěŕíłňîđűíă"
-#, fuzzy
-#~ msgid "The system is now disconnected."
-#~ msgstr "ßę âű ďëŕíóĺöĺ äŕëó÷űööŕ äŕ Iíňýđíýňó?"
+#~ msgid "None"
+#~ msgstr "Í˙ěŕ"
+
+#~ msgid "You may now provide options to module %s."
+#~ msgstr "Âű íĺ ěîćŕöĺ çŕäŕöü îďöűi ěîäóëţ %s."
+
+#~ msgid "mount failed"
+#~ msgstr "ďŕěűëęŕ ěŕíöiđŕâŕíí˙"
+
+#~ msgid "Low"
+#~ msgstr "Ńëŕáű"
+
+#~ msgid "Medium"
+#~ msgstr "Ń˙đýäíi"
+
+#~ msgid ""
+#~ "Few improvements for this security level, the main one is that there are\n"
+#~ "more security warnings and checks."
+#~ msgstr ""
+#~ "Ăýňű óçđîâĺíü á˙ńďĺęi ěŕĺ řýđŕă ďŕë˙ďřýíí˙˘, ó ďĺđřóţ ÷ŕđăó\n"
+#~ "ďŕâ˙ëi÷űëŕń˙ ęîëüęŕńöü ďđŕâĺđŕę i ďŕď˙đýäćŕíí˙˘."
+
+#~ msgid ""
+#~ "named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
+#~ "host names to IP addresses."
+#~ msgstr ""
+#~ "named (BIND) - ăýňŕ ńĺđâĺđ äŕěĺííűő iě¸íŕ˘, ˙ęi âűęŕđűńňî˘âŕĺööŕ äë˙\n"
+#~ "ďĺđŕęëŕäŕíí˙ iě¸í âóçëî˘ ó IP ŕäđŕńű."
+
+#~ msgid "Active"
+#~ msgstr "Ŕęňű˘íű"
+
+#~ msgid "A printer, model \"%s\", has been detected on "
+#~ msgstr "Ďđűíňýđ ěŕäýëi \"%s\" çíîéäçĺíű íŕ "
+
+#~ msgid "Local Printer Device"
+#~ msgstr "Ëŕęŕëüíű ďđűíňýđ"
+
+#~ msgid "Printer Device"
+#~ msgstr "Ďîđň ďđűíňýđó"
#~ msgid "Choose the size you want to install"
#~ msgstr "Ŕá˙đűöĺ ďŕćŕäŕíű ďŕěĺđ óńňŕë˙âŕíí˙"
@@ -11311,30 +12074,9 @@ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
#~ "Äŕ ˙ęîăŕ ďîđňó äŕëó÷ŕíű âŕř ďđűíňýđ \n"
#~ "(/dev/lp0 ýęâiâŕëĺíňíű LPT1:)?\n"
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#, fuzzy
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr ""
-#~ "Óâŕăŕ, ńĺňęŕâű ŕäŕďňŕđ ńęŕíôiăóđŕâŕíű.\n"
-#~ "Öi ćŕäŕĺöĺ ďĺđŕęŕíôiăóđŕâŕöü ˙ăî?"
-
#~ msgid "New"
#~ msgstr "Íîâű"
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "Çíiř÷űöü"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Íŕöłńíłöĺ íŕ đŕçäçĺë"
-
#~ msgid "Ambiguity (%s), be more precise\n"
#~ msgstr "Íĺâűçíŕ÷ŕíŕńöü (%s), áóäçüöĺ äŕęëŕäíű˙\n"
@@ -11344,10 +12086,6 @@ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
#~ msgid "Your choice? (default %s enter `none' for none) "
#~ msgstr "Âŕř âűáŕđ? (çěî˘÷ŕííĺ %s. Óâ˙äçiöĺ `none' ďđű ŕäńóňíŕńöi) "
-#, fuzzy
-#~ msgid "Do you want to restart the network"
-#~ msgstr "Öi ćŕäŕĺöĺ ďđŕňýńöiđŕâŕöü íŕńňđîéęi?"
-
#~ msgid ""
#~ "\n"
#~ "Do you agree?"
@@ -11355,27 +12093,6 @@ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
#~ "\n"
#~ "Âű çăîäíű˙?"
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Ęŕëi âű íĺ âĺäŕĺöĺ äŕęëŕäíŕ, äűę çâű÷ŕéíűě âűáŕđŕě ç'˙˘ë˙ĺööŕ \"/dev/hda"
-#~ "\"\n"
-#~ "(ďĺđřŕńíű ěŕéńňŕđ IDE äűńę) öi \"/dev/sda\" (ďĺđřű SCSI äűńę)."
-
-#, fuzzy
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "Iě˙ çëó÷ýíí˙"
-
-#, fuzzy
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Ŕá˙đűöĺ ŕńíî˘íŕăŕ ęŕđűńňŕëüíięŕ:"
-
-#, fuzzy
-#~ msgid "Test the mouse here."
-#~ msgstr "Ęŕëł ëŕńęŕ, çđŕáłöĺ íĺęŕëüęł đóőࢠěűřřó."
-
#~ msgid ""
#~ "You need to accept the terms of the above license to continue "
#~ "installation.\n"
@@ -11485,18 +12202,6 @@ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
#~ "řňî íĺ âűáŕđ ŕäíŕăî ďŕęĺňó â˙äçĺ äŕ íĺěŕă÷űěŕńöł âűáđŕöü ďŕęĺňű,\n"
#~ "˙ęł˙ ŕä ˙ăî çŕëĺćŕöü."
-#, fuzzy
-#~ msgid ""
-#~ "If you have all the CDs in the list above, click Ok. If you have\n"
-#~ "none of those CDs, click Cancel. If only some CDs are missing, unselect "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "Ęŕëi âű ěŕĺöĺ ˘ńĺ CD äűńęi ńŕ ńďińŕ íićýé, íŕöińíiöĺ Îę.\n"
-#~ "Ęŕëi âű íĺ ěŕĺöĺ ŕíi âîäíŕăŕ ç ăýňűő CD äűńęŕ˘, íŕöińíiöĺ Ŕäě˙íiöü.\n"
-#~ "Ęŕëi íĺęŕňîđűő ç CD äűńęࢠíĺ ěŕĺöĺ, ŕäě˙íiöĺ iő âűäç˙ëĺííĺ i íŕöińíiöĺ "
-#~ "Îę."
-
#~ msgid ""
#~ "If you wish to connect your computer to the Internet or\n"
#~ "to a local network please choose the correct option. Please turn on your "
@@ -11581,26 +12286,6 @@ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
#~ "˘âîäçłöĺ łíôŕđěŕöűţ ŕá DNS, ăýňŕ˙ łíôŕđěŕöű˙ áóäçĺ ŕňđűěŕíŕ ŕä âŕřŕăŕ\n"
#~ "ďđŕâŕéäýđó ďŕä ÷ŕń çëó÷ýíí˙."
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, the correct informations can "
-#~ "be\n"
-#~ "obtained from your Internet Service Provider."
-#~ msgstr ""
-#~ "Çŕđŕç ěîćíŕ ˘âĺńöi ďŕđŕěĺňđű çëó÷ýíí˙ ďđŕç ěŕäýě (dialup). Ęŕëi âű\n"
-#~ "íĺ âĺäŕĺöĺ, řňî ďŕňđýáíŕ ďińŕöü,\n"
-#~ "ďŕńďđŕáóéöĺ ŕňđűěŕöü äŕęëŕäíóţ iíôŕđěŕöűţ ˘ ńâŕéăî ďđŕâŕéäýđó Internet "
-#~ "(ISP)."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, ask your network administrator."
-#~ msgstr ""
-#~ "Ęŕëł íĺŕáőîäíŕ, âű ěŕćŕöĺ óâĺńöł łě˙ âŕřŕăŕ őŕńňŕ. Ęŕëł âű\n"
-#~ "íĺ âĺäŕĺöĺ öł íĺ ˘ďĺ˘íĺíű˙, řňî ňđýáŕ ˘âŕäçłöü. Ďŕęłíöĺ ďîëĺ ďóńňűě."
-
#~ msgid ""
#~ "You may now enter your host name if needed. If you\n"
#~ "don't know or are not sure what to enter, leave blank."
@@ -11905,58 +12590,6 @@ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
#~ "çŕăđóçłöü âŕř ęŕěď'ţňŕđ, äűę ăýňŕ âŕř ŕäçłíű ńďîńŕá ŕäíŕâłöü\n"
#~ "ńłňýěű áĺç ĺéíŕăŕ ďĺđŕ˘ńňŕë˙âŕíüí˙."
-#, fuzzy
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <number>: use the corresponding text mode.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories\n"
-#~ "stored in \"/tmp\" when you boot your system, select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the\n"
-#~ "BIOS about the amount of RAM present in your computer. As consequence, "
-#~ "Linux may\n"
-#~ "fail to detect your amount of RAM correctly. If this is the case, you "
-#~ "can\n"
-#~ "specify the correct amount or RAM here. Please note that a difference of "
-#~ "2 or 4\n"
-#~ "MB between detected memory and memory present in your system is normal."
-#~ msgstr ""
-#~ "Ŕńíî˘íű˙ ďŕđŕěĺňđű SILO:\n"
-#~ " - Óńňŕë˙âŕííĺ çŕăđóç÷űęó: Ŕá˙đűöĺ ěĺńöŕ, äçĺ âű ćŕäŕĺöĺ çěĺńöiöü\n"
-#~ "iíôŕđěŕöűţ, ďŕňđýáíóţ äë˙ çŕăđóçęi GNU/Linux. Ęŕëi íĺ ˘ďý˘íĺíű, řňî\n"
-#~ "đîáiöĺ ďđŕâiëüíŕ, ŕá˙đűöĺ \"Ďĺđřű ńĺęňŕđ äűńęŕ (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Çŕňđűěęŕ ďŕ çěî˘÷ŕííţ ďĺđŕä çŕăđóçęŕé âîáđŕçó: Çŕäŕĺ ÷ŕń ó äç˙ń˙ňűő\n"
-#~ "ńĺęóíäű, íŕ ďđŕö˙ăó ˙ęîăŕ çŕăđóç÷űę ÷ŕęŕĺ ďĺđŕä çŕăđóçęŕé âîáđŕçó ďŕ "
-#~ "çěî˘÷ŕííţ.\n"
-#~ "Ăýňű ďŕđŕěĺňŕđ ęŕđűńíű äë˙ ńińňýěŕ˘, ˙ęi˙ ŕäđŕçó çŕăđóćŕţööŕ ç ćîđńňęŕăŕ\n"
-#~ "äűńęó ŕäđŕçó ŕďŕńë˙ ˘ęëţ÷ýíí˙ ęëŕâi˙ňóđű. Çŕăđóç÷űę íĺ ÷ŕęŕĺ, ęŕëi "
-#~ "\"çŕňđűěęŕ\"\n"
-#~ "\"çŕňđűěęŕ\" íĺ áóäçĺ ďŕçíŕ÷ŕíŕ öi óńňŕë˙âŕíŕ íŕ íîëü."
-
#~ msgid ""
#~ "SILO is a bootloader for SPARC: it is able to boot\n"
#~ "either GNU/Linux or any other operating system present on your computer.\n"
@@ -12084,69 +12717,9 @@ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
#~ msgid "ADSL configuration"
#~ msgstr "Íŕńňđîéęŕ ADSL"
-#, fuzzy
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ "Ŕääŕëĺíű CUPS ńĺđâĺđ íĺ ďŕňđŕáóĺ ŕä Âŕń íŕńňđîéęł ďđűíňýđó\n"
-#~ "íŕ ăýňŕé ěŕřűíĺ, ¸í áóäçĺ çíîéäçĺíű ŕ˘ňŕěŕňű÷íŕ.\n"
-#~ "Ęŕëł Âű íĺ ˘ďý˘íĺíű, ŕá˙đűöĺ \"Ŕääŕëĺíű ńĺđâĺđ CUPS\"."
-
#~ msgid "Remote queue"
#~ msgstr "Ŕääŕëĺíŕ˙ ÷ŕđăŕ äđóęó"
-#, fuzzy
-#~ msgid "Remote queue name missing!"
-#~ msgstr "Ŕääŕëĺíŕ˙ ÷ŕđăŕ äđóęó"
-
-#, fuzzy
-#~ msgid "Command line"
-#~ msgstr "Iě˙ äŕěĺíó"
-
-#, fuzzy
-#~ msgid "Modify printer"
-#~ msgstr "Iě˙ äđóęŕđęi"
-
-#, fuzzy
-#~ msgid "Network Monitoring"
-#~ msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
-
-#, fuzzy
-#~ msgid "Profile "
-#~ msgstr "ďŕěűëęŕ ěŕíöiđŕâŕíí˙: "
-
-#, fuzzy
-#~ msgid "Connection Time: "
-#~ msgstr "Iě˙ çëó÷ýíí˙"
-
-#, fuzzy
-#~ msgid "Connecting to Internet "
-#~ msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýňó"
-
-#, fuzzy
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýňó"
-
-#, fuzzy
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýňó"
-
-#, fuzzy
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýňó"
-
-#, fuzzy
-#~ msgid "Connection complete."
-#~ msgstr "Iě˙ çëó÷ýíí˙"
-
-#, fuzzy
-#~ msgid "Default Runlevel"
-#~ msgstr "Ďŕ äŕěŕ˘ëĺííţ"
-
#~ msgid "NetWare"
#~ msgstr "NetWare"
@@ -12156,10 +12729,6 @@ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
#~ msgid "Disable network"
#~ msgstr "Çđŕáiöü íĺŕęňű˘íűě ńĺňęŕâŕĺ çëó÷ýííĺ"
-#, fuzzy
-#~ msgid "Enable network"
-#~ msgstr "Çđŕáiöü íĺŕęňű˘íűě ńĺňęŕâŕĺ çëó÷ýííĺ"
-
#~ msgid ""
#~ "You can now test your mouse. Use buttons and wheel to verify\n"
#~ "if settings are good. If not, you can click on \"Cancel\" to choose "
@@ -12171,10 +12740,6 @@ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
#~ "óńňŕë˙âŕöü\n"
#~ "łířű äđŕéâĺđ."
-#, fuzzy
-#~ msgid "Choose"
-#~ msgstr "Ďîđň ěűřű"
-
#~ msgid "You can specify directly the URI to access the printer with CUPS."
#~ msgstr "Âű ěîćŕöĺ âűçíŕ÷űöü íŕ˘ďđîńň URI ęŕá äŕëó÷űööŕ äŕ äđóęŕđęi ç CUPS."
@@ -12217,9 +12782,6 @@ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
#~ msgid "Extra Text options"
#~ msgstr "Äŕäŕňęîâű˙ ďŕđŕěĺňđű ňýęńňó"
-#~ msgid "Reverse page order"
-#~ msgstr "Ŕäâŕđîňíű ďŕđŕäŕę ńňŕđîíŕę"
-
#~ msgid "Select Remote Printer Connection"
#~ msgstr "Âűáŕđ ňűďó çëó÷ýíí˙ ç ŕääŕëĺíűě ďđűíňýđŕě"
@@ -12252,14 +12814,6 @@ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
#~ msgid "Spool directory"
#~ msgstr "Äűđýęňîđű˙ ńďóëiíăó"
-#, fuzzy
-#~ msgid "Disable"
-#~ msgstr "Ňŕáëiöŕ"
-
-#, fuzzy
-#~ msgid "Enable"
-#~ msgstr "Ňŕáëiöŕ"
-
#~ msgid ""
#~ "To enable a more secure system, you should select \"Use shadow file\" "
#~ "and\n"
@@ -12281,10 +12835,6 @@ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
#~ msgid "yellow pages"
#~ msgstr "ćî˘ňű˙ ńňŕđîíęi"
-#, fuzzy
-#~ msgid "Light configuration"
-#~ msgstr "Íŕńňđîéęŕ ADSL"
-
#~ msgid "Provider dns 1"
#~ msgstr "DNS 1 ďđŕâŕéäŕđó"
@@ -12294,61 +12844,18 @@ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
#~ msgid "How do you want to connect to the Internet?"
#~ msgstr "ßę âű ďëŕíóĺöĺ äŕëó÷űööŕ äŕ Iíňýđíýňó?"
-#, fuzzy
-#~ msgid "Selected size %d%s"
-#~ msgstr "Ŕá˙đűöĺ ôŕéë"
-
-#, fuzzy
-#~ msgid "Opening your connection..."
-#~ msgstr "ßęi ňűď âŕřŕăŕ ISDN çëó÷ýíí˙?"
-
-#, fuzzy
-#~ msgid "Configure..."
-#~ msgstr "Íŕńňđîéęŕ IDE"
-
-#, fuzzy
-#~ msgid "Configuration de Lilo/Grub"
-#~ msgstr "Íŕńňđîéęŕ: Äŕäŕöü ęđűíiöó"
-
#~ msgid "This startup script try to load your modules for your usb mouse."
#~ msgstr " Ăýňű ďóńęŕâű ńęđűďň ŕäíŕ˘ë˙ĺ ˘ńĺ ěîäóëi äë˙ usb ěűřű."
-#, fuzzy
-#~ msgid "Boot style configuration"
-#~ msgstr "Íŕńňđîéęŕ ďŕńë˙ ˘ńňŕë˙âŕíí˙"
-
-#, fuzzy
-#~ msgid ""
-#~ "Now that your Internet connection is configured,\n"
-#~ "your computer can be configured to share its Internet connection.\n"
-#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
-#~ "(LAN).\n"
-#~ "\n"
-#~ "Would you like to setup the Internet Connection Sharing?\n"
-#~ msgstr ""
-#~ "Âŕř ęŕěď'ţňŕđ ěîćŕ áűöü ńęŕíôłăóđŕâŕíű íŕ ńóěĺńíŕĺ âűęŕđűńňŕííĺ\n"
-#~ " ˛íňýđíýňó (Internet Connection Sharing)?\n"
-#~ "\n"
-#~ "Çŕ˘âŕăŕ: âŕě ďŕňđýáíű ńĺňęŕâű ŕäŕďňŕđ äë˙ ďŕäęëţ÷ýíí˙ äŕ ËÂŃ.\n"
-#~ "\n"
-#~ "Âű ćŕäŕĺöĺ óńňŕë˙âŕöü ńóěĺńíű äîńňóď äŕ Internet?"
-
#~ msgid "Automatic dependencies"
#~ msgstr "Ďđŕâĺđęŕ çŕëĺćíŕńö˙˘"
#~ msgid "Configure LILO/GRUB"
#~ msgstr "Íŕńňđîéęŕ LILO/GRUB"
-#~ msgid "Create a boot floppy"
-#~ msgstr "Ńňâŕđűöü çŕăđ. äűńę"
-
#~ msgid "Choice"
#~ msgstr "Âűáŕđ"
-#, fuzzy
-#~ msgid "gMonitor"
-#~ msgstr "Ěŕíiňîđ"
-
#~ msgid "Miscellaneous"
#~ msgstr "Đîçíŕĺ"
@@ -12380,10 +12887,6 @@ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
#~ "Áóäçüöĺ ˘âŕćëiâű, óęëţ÷ýííĺ NumLock ěîćŕ ďđűâĺńöi äŕ ďŕěűëęîâŕé\n"
#~ "ďđŕöű ęëŕâi˙ňóđű (íŕďđűęëŕä, íŕöińę íŕ `p' äŕĺ `6')."
-#, fuzzy
-#~ msgid "Actions"
-#~ msgstr "Đŕçěĺđęŕâŕííĺ"
-
#~ msgid "Scientific applications"
#~ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
@@ -12393,10 +12896,6 @@ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
#~ msgid "Second DNS Server"
#~ msgstr "Äđóăi ńĺđâĺđ DNS:"
-#, fuzzy
-#~ msgid "using module"
-#~ msgstr "Đýćűě çëó÷ýíí˙"
-
#~ msgid "%s is already in use"
#~ msgstr "%s óćî âűęŕđűńňî˘âŕĺööŕ"
@@ -13150,9 +13649,6 @@ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
#~ msgid "Other countries"
#~ msgstr "Iířű˙ ęđŕiíű"
-#~ msgid "Package"
-#~ msgstr "Ďŕęĺň"
-
#~ msgid "Password:"
#~ msgstr "Ďŕđîëü:"
@@ -13406,9 +13902,6 @@ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
#~ msgid "Use MD5 passwords"
#~ msgstr "Âűęŕđűńňî˘âŕöü ďŕđîëi MD5"
-#~ msgid "Use diskdrake"
-#~ msgstr "Âűęŕđűńňî˘âŕöü DiskDrake"
-
#~ msgid "Use shadow file"
#~ msgstr "Âűęŕđűńňî˘âŕöü öĺí˙âű ôŕéë"
@@ -13513,9 +14006,6 @@ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
#~ msgid "changing type of"
#~ msgstr "Çě˙íĺííĺ ňűďó"
-#~ msgid "default"
-#~ msgstr "Ďŕ äŕěŕ˘ëĺííţ"
-
#~ msgid "dhcp-client"
#~ msgstr "dhcp-client"
diff --git a/perl-install/share/po/bg.po b/perl-install/share/po/bg.po
index 7bea7e548..2ae952797 100644
--- a/perl-install/share/po/bg.po
+++ b/perl-install/share/po/bg.po
@@ -1,84 +1,112 @@
# SOME DESCRIPTIVE TITLE.
-# Copyright (C) 1999, 2000 MandrakeSoft
-# Elena Radeva <ely@triada.bg>, 1999.
-# Pavel Cholakov <pavel@linux.home.bg>, 1999.
-# Boyan Ivanov <boyan17@bulgaria.com>, 1999, 2000
-# Bozhan Boiadzhiev <bozhan@plov.omega.bg>, 2000
-# Valery Dachev <valery@zonebg.com>, 2000, 2001
-#
-# Bulgarians on Linux use windows-1251 encoding
+# Copyright (C) 2000 Free Software Foundation, Inc.
+# Copyright (c) 2000 MandrakeSoft
+# Bozhan Boiadzhiev <bozhan@plov.omega.bg>, 2000.
#
+#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2000-08-15 15:29+0200\n"
-"Last-Translator: Valery Dachev <valery@zonebg.com>\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2000-02-28 20:56+0200\n"
+"Last-Translator: Bozhan Boiadzhiev <bozhan@plov.omega.bg>\n"
"Language-Team: Bulgarian\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=windows-1251\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 ĘÁ"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Čçďîëçâŕé đŕçřčđĺíčĺňî Xinerama"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 ĘÁ"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Íŕńňđîéęŕ ńŕěî íŕ ęŕđňŕ \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 ĚÁ"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 ĚÁ"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 ĚÁ"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 ĚÁ"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 ĚÁ"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 ĚÁ"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 ĚÁ čëč ďîâĺ÷ĺ"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Čçáĺđĺňĺ X ńúđâúđ"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X ńúđâúđ"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr ""
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Ăđŕôč÷íŕ ęŕđňŕ"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Čçáĺđĺňĺ ęŕďŕöčňĺň íŕ ďŕěĺňňŕ íŕ ăđŕôč÷íŕňŕ ńč ęŕđňŕ"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Čçáĺđĺňĺ ăđŕôč÷íŕ ęŕđňŕ"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "Íŕńňđîéęŕ íŕ XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Čçáĺđĺňĺ X ńúđâúđ"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Ęî˙ íŕńňđîéęŕ íŕ XFree čńęŕňĺ äŕ čěŕňĺ ?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X ńúđâúđ"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Čçáĺđĺňĺ X ńúđâúđ"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Čçďîëçâŕé đŕçřčđĺíčĺňî Xinerama"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X ńúđâúđ"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Íŕńňđîéęŕ ńŕěî íŕ ęŕđňŕ \"%s\" (%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Ęî˙ íŕńňđîéęŕ íŕ XFree čńęŕňĺ äŕ čěŕňĺ ?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s ń őŕđäóĺđíî 3D óńęîđĺíčĺ"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -89,33 +117,17 @@ msgstr ""
"Ęŕđňŕňŕ âč ńĺ ďîääúđćŕ îň XFree %s, ęîéňî ěîćĺ äŕ čěŕ ďî-äîáđŕ ďîääđúćęŕ íŕ "
"2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Ęŕđňŕňŕ âč ěîćĺ äŕ čěŕ ďîääđúćęŕ íŕ őŕđäóĺđíî 3D óńęîđĺíčĺ â XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s ń őŕđäóĺđíî 3D óńęîđĺíčĺ"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Ęŕđňŕňŕ âč ěîćĺ äŕ čěŕ ďîääđúćęŕ íŕ őŕđäóĺđíî 3D óńęîđĺíčĺ ń XFree %s.\n"
-"ÎŇÁĹËĹĆĹŇĹ, ×Ĺ ŇÎÂŔ Ĺ ĹĘŃĎĹĐČĚĹÍŇŔËÍŔ ĎÎÄÄĐÚĆĘŔ Č ĘÎĚĎŢŇÚĐÚŇ ÂČ ĚÎĆĹ ÄŔ "
-"ÇŔÁČĹ."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s ń ĹĘŃĎĹĐČĚĹÍŇŔËÍO őŕđäóĺđíî 3D óńęîđĺíčĺ"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -129,31 +141,59 @@ msgstr ""
"Ęŕđňŕňŕ âč ńĺ ďîääúđćŕ îň XFree %s, ęîéňî ěîćĺ äŕ čěŕ ďî-äîáđŕ ďîääđúćęŕ íŕ "
"2D."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Ęŕđňŕňŕ âč ěîćĺ äŕ čěŕ ďîääđúćęŕ íŕ őŕđäóĺđíî 3D óńęîđĺíčĺ ń XFree %s.\n"
+"ÎŇÁĹËĹĆĹŇĹ, ×Ĺ ŇÎÂŔ Ĺ ĹĘŃĎĹĐČĚĹÍŇŔËÍŔ ĎÎÄÄĐÚĆĘŔ Č ĘÎĚĎŢŇÚĐÚŇ ÂČ ĚÎĆĹ ÄŔ "
+"ÇŔÁČĹ."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (číńňŕëŕöč˙ ăđŕôč÷ĺí äđŕéâĺđ)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Íŕńňđîéęŕ íŕ XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Čçáĺđĺňĺ ęŕďŕöčňĺň íŕ ďŕěĺňňŕ íŕ ăđŕôč÷íŕňŕ ńč ęŕđňŕ"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Čçáĺđĺňĺ îďöčč çŕ ńúđâúđŕ"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Äŕ çŕďŕç˙ ëč ďđîěĺíčňĺ ?\n"
+"Ňĺęóůŕňŕ íŕńňđîéęŕ ĺ:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Čçáĺđĺňĺ ěîíčňîđ"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Ěîíčňîđ"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Ęëčĺíňńęŕ"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Îáů"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Âúđíč"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -177,511 +217,325 @@ msgstr ""
"ďîâđĺäčňĺ ěîíčňîđŕ ńč.\n"
" Ŕęî čěŕňĺ í˙ęŕęâč ńúěíĺíč˙, čçáĺđĺňĺ ęîíńĺđâŕňčâíŕ íŕńňđîéęŕ."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Őîđčçîíňŕëíŕ ńęîđîńň íŕ âúçńňŕíîâ˙âŕíĺ"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Âĺđňčęŕëíŕ ńęîđîńň íŕ âúçńňŕíîâ˙âŕíĺ"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Ěîíčňîđúň íĺ ĺ íŕńňđîĺí"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Ăđŕôč÷íŕňŕ ęŕđňŕ âńĺ îůĺ íĺ ĺ íŕńňđîĺíŕ"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Îůĺ íĺ ĺ čçáđŕíŕ đŕçäĺëčňĺëíŕ ńďîńîáíîńň"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Čńęŕňĺ ëč äŕ ňĺńňâŕňĺ íŕńňđîéęčňĺ?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-"Âíčěŕíčĺ: ňĺńňâŕíĺňî íŕ ňŕçč ăđŕôč÷íŕ ęŕđňŕ ěîćĺ äŕ \"çŕěđŕçč\" ęîěďţňúđŕ âč"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Ďđîâĺđęŕ íŕ íŕńňđîéęŕňŕ"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 öâ˙ňŕ (8 áčňŕ)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"îďčňŕéňĺ ńĺ äŕ ďđîěĺíčňĺ í˙ęîč ďŕđŕěĺňđč"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 őčë˙äč öâ˙ňŕ (15 áčňŕ)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Ďî˙âč ńĺ ăđĺřęŕ:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 őčë˙äč öâ˙ňŕ (16 áčňŕ)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Čçőîä äî %d ńĺęóíäč"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 ěčëčîíŕ öâ˙ňŕ (24 áčňŕ)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Âĺđíč ëč ńŕ íŕńňđîéęčňĺ ?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 ěčëčŕđäŕ öâ˙ňŕ (32 áčňŕ)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Ďî˙âč ńĺ ăđĺřęŕ, îďčňŕéňĺ ńĺ äŕ ďđîěĺíčňĺ í˙ęîč ďŕđŕěĺňđč"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Đŕçäĺëčňĺëíŕ ńďîńîáíîńň"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Đŕçäĺëčňĺëíŕ ńďîńîáíîńň"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Čçáĺđĺňĺ đŕçäĺëčňĺëíŕ ńďîńîáíîńň č äúëáî÷číŕ íŕ öâĺňîâĺňĺ"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Ăđŕôč÷íŕ ęŕđňŕ: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 ńúđâúđ: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Îůĺ"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Îňęŕç"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Ĺęńďĺđňĺí đĺćčě"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Ďîęŕćč âńč÷ęč"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Čńęŕňĺ ëč äŕ ňĺńňâŕňĺ íŕńňđîéęčňĺ?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Đŕçäĺëčňĺëíŕ ńďîńîáíîńň"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Ďđîâĺđęŕ íŕ íŕńňđîéęŕňŕ"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Ňčď ęëŕâčŕňóđŕ: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Ňčď ěčřęŕ: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Óńňđîéńňâî íŕ ěčřęŕňŕ: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Ěîíčňîđ: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Őîđčçîíňŕëíŕ ńčíőđîíčçŕöč˙ íŕ ěîíčňîđŕ: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Âĺđňčęŕëíî îďđĺńí˙âŕíĺ íŕ ěîíčňîđŕ: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Ăđŕôč÷íŕ ęŕđňŕ: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Čäĺíňčôčęŕöč˙ íŕ ăđŕôč÷íŕňŕ ęŕđňŕ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Ăđŕôč÷íŕ ďŕěĺň: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Äúëáî÷číŕ íŕ öâĺňŕ: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Đŕçäĺëčňĺëíŕ ńďîńîáíîńň: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 ńúđâúđ: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 äđŕéâĺđ: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Ďîäăîňîâęŕ çŕ íŕńňđîéâŕíĺ íŕ X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Ęŕęâî čńęŕňĺ äŕ íŕďđŕâčňĺ?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Ďđîěĺíĺňĺ ěîíčňîđŕ"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Ďđîěĺíĺňĺ ăđŕôč÷íŕňŕ ęŕđňŕ"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Ďđîěĺíĺňĺ îďöččňĺ íŕ ńúđâúđŕ"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Ďđîěĺíĺňĺ đŕçäĺëčňĺëíŕňŕ ńďîńîáíîńň"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Ďîęŕćč číôîđěŕöč˙ňŕ"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Ňĺńňâŕé îňíîâî"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Čçëčçŕíĺ"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Äŕ çŕďŕç˙ ëč ďđîěĺíčňĺ ?\n"
-"Ňĺęóůŕňŕ íŕńňđîéęŕ ĺ:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X ďđč ńňŕđňčđŕíĺ íŕ ńčńňĺěŕňŕ"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Kîěďţňúđŕ âč ěîćĺ ŕâňîěŕňč÷íî, äŕ âëĺçĺ â X ďđč ńňŕđňčđŕíĺ.\n"
"Čńęŕňĺ ëč X äŕ ńĺ ńňŕđňčđŕ, ęîăŕňî đĺńňŕđňčđŕňĺ ńčńňĺěŕňŕ?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Ěîë˙ âëĺçňĺ îňíîâî â %s, çŕ äŕ ŕęňčâčđŕňĺ ďđîěĺíčňĺ"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Ěîë˙ čçëĺçňĺ îň ńĺńč˙ňŕ č čçďîëçâŕéňĺ Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 öâ˙ňŕ (8 áčňŕ)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 őčë˙äč öâ˙ňŕ (15 áčňŕ)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 őčë˙äč öâ˙ňŕ (16 áčňŕ)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 ěčëčîíŕ öâ˙ňŕ (24 áčňŕ)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 ěčëčŕđäŕ öâ˙ňŕ (32 áčňŕ)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 ĘÁ"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 ĘÁ"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 ĚÁ"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 ĚÁ"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 ĚÁ"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 ĚÁ"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 ĚÁ"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 ĚÁ"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 ĚÁ čëč ďîâĺ÷ĺ"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standard VGA, 640x480 íŕ 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 íŕ 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514-ńúâěĺńňčě, 1024x768 íŕ 87 Hz interlaced (í˙ěŕ 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 íŕ 87 Hz interlaced, 800x600 íŕ 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Extended Super VGA, 800x600 íŕ 60 Hz, 640x480 íŕ 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Non-Interlaced SVGA, 1024x768 íŕ 60 Hz, 800x600 íŕ 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Âčńîęî÷ĺńňîňĺí SVGA, 1024x768 íŕ 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Ěíîăî÷ĺńňîňĺí ěîíčňîđ, ęîéňî äîńňčăŕ 1280x1024 íŕ 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Ěíîăî÷ĺńňîňĺí ěîíčňîđ, ęîéňî äîńňčăŕ 1280x1024 íŕ 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Ěíîăî÷ĺńňîňĺí ěîíčňîđ, ęîéňî äîńňčăŕ 1280x1024 íŕ 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Ěîíčňîđ, ęîéňî äîńňčăŕ 1600x1200 íŕ 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Ěîíčňîđ, ęîéňî äîńňčăŕ 1600x1200 íŕ 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Ďúđâč ńĺęňîđ îň ńňŕđňčđŕůč˙ ńĺ ä˙ë"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Ďúđâč˙ň ńĺęňîđ îň äđŕéâŕ (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "SILO číńňŕëŕöč˙"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Ęúäĺ čńęŕňĺ äŕ číńňŕëčđŕňĺ bootloader-ŕ?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "LILO/grub číńňŕëŕöč˙"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO ń ňĺęńňîâî ěĺíţ"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO ń ăđŕôč÷íî ěĺíţ"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Ńňŕđňčđŕíĺ îň DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Îďöčč íŕ çŕđĺćäŕůŕňŕ ďđîăđŕěŕ"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Čçďîëçâŕíŕ çŕđĺćäŕůŕňŕ ďđîăđŕěŕ"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Bootloader číńňŕëŕöč˙"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Ńňŕđňčđŕůî óńňđîéńňâî"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (íĺ đŕáîňč íŕ ńňŕđč BIOS-č)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Ęîěďŕęňĺí"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "ęîěďŕęňĺí"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Âčäĺî đĺćčě"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Çŕáŕâ˙íĺ ďđĺäč ńňŕđňčđŕíĺňî íŕ default ä˙ëŕ"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Ďŕđîëŕ"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Ďŕđîëŕ (îňíîâî)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Îăđŕíč÷č îďöččňĺ, çŕäŕâŕíč îň ęîěŕíäíč˙ đĺä"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "îăđŕíč÷č"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Ďî÷čńňâŕíĺ íŕ /tmp ďđč âń˙ęî çŕđĺćäŕíĺ"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Ňî÷ĺí đŕçěĺđ íŕ RAM-ďŕěĺňňŕ, ŕęî ĺ íĺîáőîäčěî (íŕěĺđĺíč %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Âęëţ÷č ěíîăî ďđîôčëč"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Äŕéňĺ đŕçěĺđŕ RAM-ďŕěĺň â Mb"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Îďöč˙ňŕ ``Îăđŕíč÷č îďöččňĺ îň ęîěŕíäíč˙ đĺä'' ĺ áĺçďîëĺçíŕ áĺç ďŕđîëŕ"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Ěîë˙, îďčňŕéňĺ îňíîâî"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Ďŕđîëčňĺ íŕ ńúâďŕäŕň"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Ńňŕđňîâî ńúîáůĺíčĺ"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Čç÷ŕęâŕíĺ íŕ Open Firmware"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Čç÷ŕęâŕíĺ çŕ ńňŕđňčđŕíĺ íŕ ˙äđîňî"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Ńňŕđňčđŕíĺ îň CD ?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Ńňŕđňčđŕíĺ îň OF ?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "ÎŃ ďî ďîäđŕçáčđŕíĺ ?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -690,83 +544,83 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Ňîâŕ ńŕ đŕçëč÷íčňĺ çŕďčńč.\n"
"Ěîćĺňĺ äŕ äîáŕâčňĺ îůĺ čëč äŕ ďđîěĺíčňĺ ńúůĺńňâóâŕůčňĺ."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Äîáŕâč"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Ăîňîâî"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Ěîäčôčöčđŕé"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Ęŕęúâ ňčď číôîđěŕöč˙ čńęŕňĺ äŕ ďđčáŕâčňĺ"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Äđóăŕ ÎŃ (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Äđóăŕ ÎŃ (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Äđóăŕ ÎŃ (Windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Îáđŕç"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Ăëŕâĺí"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Äîďúëâŕíĺ"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "×ĺňĺíĺ-çŕďčń"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Ňŕáëčöŕ"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Îďŕńĺí"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Ĺňčęĺň"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Ďî ďîäđŕçáčđŕíĺ"
@@ -799,53 +653,75 @@ msgstr "Ňđ˙áâŕ äŕ čěŕňĺ swap-ä˙ë"
msgid "This label is already used"
msgstr "Ňîçč ĺňčęĺň âĺ÷ĺ ńĺ čçďîëçâŕ"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Íŕěĺđĺíč ńŕ %s %s číňĺđôĺéńč"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Čěŕňĺ ëč äđóă(č) ?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Čěŕňĺ ëč í˙ęŕęúâ %s číňĺđôĺéń?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Íĺ"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Äŕ"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Âčć őŕđäóĺđíŕňŕ číôîđěŕöč˙"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Číńňŕëčđŕíĺ íŕ äđŕéâĺđ çŕ %s ďëŕňęŕ %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(ěîäóë %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Ńĺăŕ ěîćĺňĺ äŕ ďîäŕäĺňĺ îďöččňĺ ěó äî ěîäóëŕ %s.\n"
+"Îďöččňĺ ńŕ âúâ ôîđěŕň ``čěĺ=ńňîéíîńň čěĺ2=ńňîéíîńň2 ...''.\n"
+"Íŕďđčěĺđ: ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Îďöčč íŕ ěîäóëŕ:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Ęîé %s äđŕéâĺđ äŕ ďđîáâŕě ?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -864,37 +740,15 @@ msgstr ""
"îň ęî˙ňî ńĺ íóćäŕĺ ? Ďî ďđčíöčď ňîâŕ ěîćĺ äŕ çŕáčĺ ęîěďţňúđŕ âč, íî í˙ěŕ äŕ "
"ăî ďîâđĺäč."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Ŕâňîěŕňč÷íî çŕńč÷ŕíĺ"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Çŕäŕé îďöčč"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Ńĺăŕ ěîćĺňĺ äŕ ďîäŕäĺňĺ îďöččňĺ ěó äî ěîäóëŕ %s.\n"
-"Îďöččňĺ ńŕ âúâ ôîđěŕň ``čěĺ=ńňîéíîńň čěĺ2=ńňîéíîńň2 ...''.\n"
-"Íŕďđčěĺđ: ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Îďöčč íŕ ěîäóëŕ:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -903,50 +757,55 @@ msgstr ""
"Çŕđĺćäŕíĺňî íŕ ěîäóëŕ %s íĺ óńď˙.\n"
"Čńęŕňĺ ëč äŕ îďčňŕňĺ îňíîâî ń äđóăč ďŕđŕěĺňđč ?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(âĺ÷ĺ ďđčáŕâčő %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Ňŕçč ďŕđîëŕ ĺ ďđĺęŕëĺíî ďđîńňŕ"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Ěîë˙, çŕäŕéňĺ ďîňđĺáčňĺëńęî čěĺ"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Ďîňđĺáčňĺëńęîňî čěĺ ěîćĺ äŕ âęëţ÷âŕ ńŕěî ěŕëęč áóęâč, íîěĺđŕ, `-' č `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Ňîâŕ ďîňđĺáčňĺëńęî čěĺ ĺ âĺ÷ĺ äîáŕâĺíî"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Ňîâŕ ďîňđĺáčňĺëńęî čěĺ ĺ âĺ÷ĺ äîáŕâĺíî"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Äîáŕâč ďîňđĺáčňĺë"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -955,32 +814,32 @@ msgstr ""
"Âúâĺäĺňĺ ďîňđĺáčňĺë\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Ďđčĺěč ďîňđĺáčňĺë"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Čńňčíńęî čěĺ"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Ďîňđĺáčňĺëńęî čěĺ"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Řĺë"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Čęîíŕ"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -989,123 +848,103 @@ msgstr ""
"ďîňđĺáčňĺë.\n"
"Čńęŕňĺ ëč ňŕçč âúçěîćíîńň ?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Čçáĺđĺňĺ ďîäđŕçáčđŕů ńĺ ďîňđĺáčňĺë :"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Čçáĺđĺňĺ Windows Manager çŕ ńňŕđňčđŕíĺ:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr "Ěîë˙, čçáĺđĺňĺ čçďîëçâŕí ĺçčę."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr "Ěîćĺňĺ äŕ čçáĺđĺňĺ äđóăč ĺçčöč, ęîčňî ůĺ áúäŕň íŕëčöĺ ńëĺäčíńňŕëŕöč˙ňŕ"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Âńč÷ęč"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr "Äîáŕâ˙íĺ íŕ ďîňđĺáčňĺë"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Ęëčĺíňńęŕ"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr "Ďîäĺë˙íĺ íŕ ôŕéëîâĺ"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Ňîçč ďŕęĺň ňđ˙áâŕ äŕ áúäĺ îáíîâĺí\n"
"Ńčăóđíč ëč ńňĺ, ÷ĺ čńęŕňĺ äŕ ăî čçęëţ÷čňĺ ?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Îňě˙íŕ"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Äîáđĺ äîřëč ďđč Cracker-čňĺ"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Ëîřî"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Ńňŕíäŕđňíŕ"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Âčńîęî"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Âčńîęî"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Ďŕđŕíîč÷íî"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1115,7 +954,7 @@ msgstr ""
"óďîňđĺáŕ, íî ĺ ďî-÷óâńňâčňĺëíî: íĺ ňđ˙áâŕ äŕ áúäĺ čçďîëçâŕíŕ íŕ ěŕřčíč\n"
"ńâúđçŕíč ń äđóăč čëč ďî Číňĺđíĺň. Í˙ěŕ äîńňúď ń ďŕđîëč."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1123,7 +962,7 @@ msgstr ""
"Ďŕđîëŕňŕ ńĺăŕ ĺ âęëţ÷ĺíŕ, íî čçďîëçâŕíĺňî ęŕňî ěđĺćîâ ęîěďţňúđ íĺ ĺ "
"ďđĺďîđú÷čňĺëíî."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1133,61 +972,62 @@ msgstr ""
"čçďîëçâŕí äŕ ńĺ ńâúđçâŕ ęúě Číňĺđíĺň ęŕňî ęëčĺíň. Čěŕ ďđîâĺđęč íŕ "
"ńčăóđíîńňňŕ. "
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Ń ňîâŕ íčâî íŕ ńčăóđíîńň, ďîëçâŕíĺňî íŕ ńčńňĺěŕňŕ ęŕňî ńúđâúđ ńňŕâŕ "
"âúçěîćíî.\n"
"Ńčăóđíîńňňŕ ńĺăŕ ĺ äîńňŕňú÷íî ăîë˙ěŕ äŕ ńĺ čçďîëçâŕ ńčńňĺěŕňŕ ęŕňî\n"
"ńúđâúđ ďđčĺěŕů âđúçęč îň ěíîăî ęëčĺíňč. "
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Čçáčđŕěĺ 4-ňî íčâî, íî ńčńňĺěŕňŕ ĺ íŕďúëíî çŕňâîđĺíŕ.\n"
"Íčâîňî íŕ ńčăóđíîńň ĺ íŕ ěŕęńčěóěŕ ńč."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Čçáĺđĺňĺ íčâî íŕ ńčăóđíîńň"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Íčâî íŕ ńčăóđíîńň"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Čçďîëçâŕéňĺ libsafe çŕ ńúđâúđč"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Áčáëčîňĺęŕ, ęî˙ňî îńčăóđ˙âŕ çŕůčňŕ îň aňŕęč ń ďđĺďúëâŕíĺ íŕ áóôĺđ č ôîđěŕňíč "
"ńňđčíăîâĺ."
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1212,7 +1052,7 @@ 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_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welcome to GRUB the operating system chooser!"
@@ -1226,7 +1066,7 @@ msgstr "Welcome to GRUB the operating system chooser!"
#
#. -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_.c:931
+#: ../../bootloader.pm_.c:915
#, 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."
@@ -1241,7 +1081,7 @@ msgstr "Use the %c and %c keys for selecting which entry is highlighted."
#
#. -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_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Press enter to boot the selected OS, 'e' to edit the"
@@ -1255,7 +1095,7 @@ msgstr "Press enter to boot the selected OS, 'e' to edit the"
#
#. -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_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "commands before booting, or 'c' for a command-line."
@@ -1269,27 +1109,27 @@ msgstr "commands before booting, or 'c' for a command-line."
#
#. -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_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "The highlighted entry will be booted automatically in %d seconds."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "í˙ěŕ äîńňŕňú÷íî ě˙ńňî çŕ /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Äĺńęňîď"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Ńňŕđňîâî Ěĺíţ"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Íĺ ěîćĺňĺ äŕ číńňŕëčđŕňĺ bootloader íŕ ä˙ëŕ %s\n"
@@ -1302,17 +1142,21 @@ msgstr "í˙ěŕ âúâĺäĺíŕ ďîěîů îůĺ.\n"
msgid "Boot Style Configuration"
msgstr "Íŕńňđîéęŕ íŕ íŕ÷číŕ íŕ ńňŕđňčđŕíĺ"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
-msgstr "/_Ôŕéëîâĺ"
+msgstr "/_Ôŕéë"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Ôŕéë/_Čçőîä"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
-msgstr "<ęîíňđîë>Q"
+msgstr "<control>Q"
#: ../../bootlook.pm_.c:91
msgid "NewStyle Categorizing Monitor"
@@ -1345,14 +1189,14 @@ msgstr "Đĺćčě íŕ Yaboot"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Â ěîěĺíňŕ čçďîëçâŕňĺ %s ęŕňî ďđîăđŕěŕ çŕ ńňŕđňčđŕíĺ.\n"
"Öúęíĺňĺ íŕ Íŕńňđîé, çŕ äŕ ńňŕđňčđŕňĺ óńňŕíîâ˙âŕůč˙ ěŕăüîńíčę."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Íŕńňđîé"
@@ -1362,7 +1206,7 @@ msgid "System mode"
msgstr "Ńčńňĺěĺí đĺćčě"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Ďóńíč X-Window ńčńňĺěŕňŕ ďđč ńňŕđňčđŕíĺ"
#: ../../bootlook.pm_.c:148
@@ -1373,14 +1217,16 @@ msgstr "Íĺ, íĺ čńęŕě autologin"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Äŕ, čńęŕě autologin ń ňîâŕ (ďîňđĺáčňĺë, äĺńęňîď)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "OK"
@@ -1429,7 +1275,7 @@ msgstr "Íĺ ěîăŕ äŕ äîáŕâ˙ ďîâĺ÷ĺ ä˙ëîâĺ"
msgid "Screenshots will be available after install in %s"
msgstr "Ěîćĺňĺ äŕ čçáĺđĺňĺ äđóăč ĺçčöč, ęîčňî ůĺ áúäŕň íŕëčöĺ ńëĺäčíńňŕëŕöč˙ňŕ"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Ôđŕíöč˙"
@@ -1437,7 +1283,7 @@ msgstr "Ôđŕíöč˙"
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Áĺëăčéńęŕ"
@@ -1466,11 +1312,12 @@ msgstr "Íîđâĺćęŕ"
msgid "Sweden"
msgstr "Âčć"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr "Čňŕëčŕíńęŕ"
@@ -1480,7 +1327,7 @@ msgstr "Čňŕëčŕíńęŕ"
msgid "Austria"
msgstr "ńĺđčéíŕ"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1488,8 +1335,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr "Ďúđâî ńúçäŕéňĺ backup íŕ ńâîčňĺ äŕííč"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Ďđî÷ĺňĺňĺ âíčěŕňĺëíî !"
@@ -1503,11 +1350,12 @@ msgstr ""
"ńĺęňîđŕ\n"
"ńŕ äîńňŕňú÷íč) â íŕ÷ŕëîňî íŕ äčńęŕ"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Ăđĺřęŕ"
@@ -1515,11 +1363,11 @@ msgstr "Ăđĺřęŕ"
msgid "Wizard"
msgstr "Ěŕăüîńíčę"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Čçáĺđĺňĺ äĺéńňâčĺ"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1531,144 +1379,149 @@ msgstr ""
"Ďđĺäëŕăŕě ďúđâî äŕ ďđîěĺíčňĺ ăîëĺěčíŕňŕ íŕ ňîçč ä˙ë\n"
"(ůđŕęíĺňĺ âúđőó íĺăî, ŕ ńëĺä ňîâŕ ůđŕęíĺňĺ âúđőó \"Ďđîěĺíč ăîëĺěčíŕňŕ\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Ěîë˙, öúęíĺňĺ íŕ ä˙ëŕ"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Ďîäđîáíîńňč"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "Ćóđíŕëíŕ FS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Ďđŕçĺí"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Äđóăŕ"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Âčäîâĺ ôŕéëîâŕ ńčńňĺěŕ:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Ńúçäŕé"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Âčä"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Âěĺńňî ňîâŕ čçďîëçâŕéňĺ ``%s''"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Čçňđčé"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Ďúđâî čçďîëçâŕéňĺ 'Äĺěîíňčđŕíĺ'"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Ńëĺä ďđîě˙íŕ íŕ ňčďŕ íŕ ä˙ëŕ %s, âńč÷ęč äŕííč âúđőó íĺăî ůĺ áúäŕň çŕăóáĺíč"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Čçáĺđĺňĺ ä˙ë"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Čçáĺđĺňĺ äđóă ä˙ë"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Čçëĺç"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Ďđĺěčíč â Ĺęńďĺđňĺí đĺćčě"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Ďđĺěčíč â Íîđěŕëĺí đĺćčě"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Âúđíč"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Ďđîäúëćĺíčĺ âúďđĺęč âńč÷ęî ?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Čçőîä áĺç çŕďčń"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Čçőîä, áĺç äŕ çŕďčń íŕ ňŕáëčöŕňŕ íŕ ä˙ëîâĺňĺ ?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "Čńęŕňĺ ëč äŕ çŕďŕçčňĺ ďđîěĺíčňĺ â /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Ŕâňîěŕňč÷íî ńúçäŕâŕíĺ"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Čç÷čńňč âńč÷ęî"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Îůĺ"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "Číôîđěŕöč˙ňŕ çŕ ňâúđäč˙ äčńę"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Âńč÷ęč ďúđâč÷íč ä˙ëîâĺ ńĺ čçďîëçâŕň"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Íĺ ěîăŕ äŕ äîáŕâ˙ ďîâĺ÷ĺ ä˙ëîâĺ"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1676,31 +1529,31 @@ msgstr ""
"Ŕęî čńęŕňĺ îůĺ ä˙ëîâĺ, ěîë˙ čçňđčéňĺ ĺäčí, çŕ äŕ ěîćĺňĺ äŕ ńúçäŕäĺňĺ ĺäčí "
"đŕçřčđĺí ä˙ë"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "Çŕďŕçč ňŕáëčöŕňŕ ń ä˙ëîâĺňĺ"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "Âúçńňŕíîâč ňŕáëčöŕňŕ ń ä˙ëîâĺňĺ"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Ńďŕń˙âŕíĺ ňŕáëčöŕňŕ ń ä˙ëîâĺňĺ"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "Ďđĺçŕđĺäč ňŕáëčöŕňŕ ń ä˙ëîâĺňĺ"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "Ŕâňîěŕňč÷íî ěîíňčđŕíĺ íŕ ńěĺí˙ĺě íîńčňĺë"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Čçáĺđĺňĺ ôŕéë"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1708,11 +1561,11 @@ msgstr ""
"Đĺçĺđâíŕňŕ ňŕáëčöŕ íŕ ä˙ëîâĺňĺ íĺ ĺ ńúń ńúůŕňŕ ăîëĺěčíŕ\n"
"Äŕ ďđîäúëćŕ ëč âńĺ ďŕę ?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Ďđĺäóďđĺćäĺíčĺ"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1720,122 +1573,129 @@ msgstr ""
"Ńëîćĺňĺ äčńęĺňŕ âúâ ôëîďčňî\n"
"Âńč÷ęč äŕííč, íŕěčđŕůč ńĺ âúđőó äčńęĺňŕňŕ, ůĺ áúäŕň çŕăóáĺíč"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Îďčňâŕě ńĺ äŕ ńďŕń˙ ňŕáëčöŕňŕ íŕ ä˙ëîâĺňĺ"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Ďîäđîáíŕ číôîđěŕöč˙"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Ě˙ńňî íŕ ěîíňčđŕíĺ"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Îďöčč"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Ďđîěĺíč ăîëĺěčíŕňŕ"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Ďđĺěĺńňč"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Ôîđěŕňčđŕé"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Ěîíňčđŕé"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Ďđčáŕâč ęúě RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Ďđčáŕâč ęúě LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Äĺěîíňčđŕé"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Ďđĺěŕőíč îň RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Ďđĺěŕőíč îň LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Ěîäčôčöčđŕé RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Čçďîëçâŕé çŕ loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Ńúçäŕé íîâ ä˙ë"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Íŕ÷ŕëĺí ńĺęňîđ: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Ăîëĺěčíŕ â MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Âčä ôŕéëîâŕ ńčńňĺěŕ: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Ě˙ńňî íŕ ěîíňčđŕíĺ: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Ďđĺäďî÷čňŕíčĺ: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+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/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "Äŕ ďđĺěŕőíŕ ëč loopback ôŕéëŕ ?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Ďđîě˙íŕ ňčďŕ íŕ ä˙ëŕ"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Ęî˙ ôŕéëîâŕ ńčńňĺěŕ čńęŕňĺ ?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Ďđĺőîä îň ext2 ęúě ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Ęúäĺ čńęŕňĺ äŕ ěîíňčđŕňĺ loopback-ôŕéëŕ %s ?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Ęúäĺ čńęŕňĺ äŕ ěîíňčđŕňĺ óńňđîéńňâî %s ?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1844,126 +1704,133 @@ msgstr ""
"loopback.\n"
"Ďúđâî ěŕőíĺňĺ loopback"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Čç÷čńë˙âŕě ăđŕíčöčňĺ íŕ fat ôŕéëîâŕňŕ ńčńňĺěŕ"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Ďđîě˙íŕ íŕ ăîëĺěčíŕňŕ"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Ăîëĺěčíŕňŕ íŕ ä˙ëŕ íĺ ěîćĺ äŕ áúäĺ ďđîěĺíĺíŕ"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Âńč÷ęč äŕííč íŕ ňîçč ä˙ë ňđ˙áâŕ äŕ áúäŕň ŕđőčâčđŕíč"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Ńëĺä ďđîě˙íŕ ăîëĺěčíŕňŕ íŕ ä˙ëŕ %s, äŕííčte âúđőó íĺăî ůĺ áúäŕň çŕăóáĺíč"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Čçáĺđĺňĺ íîâŕ ăîëĺěčíŕ"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Íîâŕ ăîëĺěčíŕ â MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Íŕ ęîé äčńę čńęŕňĺ äŕ ăî ďđĺěĺńňčňĺ ?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Ńĺęňîđ"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Íŕ ęîé ńĺęňîđ čńęŕňĺ äŕ ăî ďđĺěĺńňčňĺ?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Ěĺńňĺíĺ"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Ěĺńňâ˙ ä˙ëŕ ... "
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Čçáĺđĺňĺ ńúůĺńňâóâŕů RAID çŕ ďđčáŕâ˙íĺ"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "íîâ"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Čçáĺđĺňĺ ńúůĺńňâóâŕů LVM çŕ ďđčáŕâ˙íĺ"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "LVM čěĺ ?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Ňîçč ä˙ë íĺ ěîćĺ äŕ áúäĺ čçďîëçâŕí çŕ loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Čěĺ íŕ loopback ôŕéëŕ: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Äŕéňĺ čěĺ íŕ ôŕéë"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Ôŕéëúň âĺ÷ĺ ńĺ čçďîëçâŕ ňî äđóă loopback, čçáĺđĺňĺ äđóă ôŕéë."
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Ôŕéëúň âĺ÷ĺ ńúřĺńňâóâŕ. Äŕ ăî čçďîëçâŕě ëč ?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Îďöčč çŕ mount:"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Đŕçëč÷íč"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "óńňđîéńňâî"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "íčâî"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "ăîëĺěčíŕ íŕ ďŕđ÷ĺňî"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Âíčěŕíčĺ: ňŕçč îďĺđŕöč˙ ĺ îďŕńíŕ"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Ęŕęúâ ňčď đŕçäĺë˙íĺ íŕ ä˙ëîâĺ ?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr ""
+"Ňîçč ďŕęĺň ňđ˙áâŕ äŕ áúäĺ îáíîâĺí\n"
+"Ńčăóđíč ëč ńňĺ, ÷ĺ čńęŕňĺ äŕ ăî čçęëţ÷čňĺ ?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1975,7 +1842,7 @@ msgstr ""
"Čëč čçďîëçâŕňĺ LILO č ňî íĺ đŕáîňč, čëč íĺ čçďîëçâŕňĺ LILO č í˙ěŕňĺ íóćäŕ "
"îň /boot"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1987,7 +1854,7 @@ msgstr ""
"Ŕęî ńě˙ňŕňĺ äŕ čçďîëçâŕňĺ boot ěĺíčäćúđŕ LILO, áúäĺňĺ âíčěŕňĺëíč ďđč\n"
"ďđčáŕâ˙íĺňî íŕ /boot ä˙ë"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1997,129 +1864,129 @@ msgstr ""
"Í˙ěŕ çŕđĺćäŕůŕ ďđîăđŕěŕ, ęî˙ňî äŕ ěîćĺ äŕ ńĺ ńďđŕâč ń íĺăî áĺç /boot ä˙ë.\n"
"Ňŕęŕ ÷ĺ äîáŕâĺňĺ /boot ä˙ë"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Ňŕáëčöŕňŕ íŕ ä˙ëîâĺňĺ íŕ óńňđîéńňâî %s ůĺ áúäĺ çŕďčńŕíŕ âúđőó äčńęŕ !"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Ňđ˙áâŕ äŕ đĺńňŕđňčđŕňĺ, ďđĺäč ďđîěĺíčňĺ äŕ âë˙çŕň â ńčëŕ"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Ńëĺä ôîđěŕňčđŕíĺ íŕ ä˙ëŕ %s, âńč÷ęč äŕííč âúđőó íĺăî ůĺ áúäŕň çŕăóáĺíč"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Ôîđěŕňčđŕíĺ"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Ôîđěŕňčđŕíĺ íŕ loopback ôŕéëŕ %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Ôîđěŕňčđŕíĺ íŕ ä˙ëŕ %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Ńęđčé ôŕéëîâĺňĺ"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Ďđĺěĺńňč ôŕéëîâĺňĺ íŕ íîâ ä˙ë"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"Äčđĺęňîđč˙ňŕ %s âĺ÷ĺ ńúäúđćŕ í˙ęŕęâč äŕííč\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "Ďđĺěĺńňč ôŕéëîâĺňĺ íŕ íîâ ä˙ë"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Ęîďčđŕíĺ íŕ %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Čçňđčâŕíĺ íŕ %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Óńňđîéńňâî: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Áóęâŕ íŕ óńňđîéńňâîňî ďîä DOS: %s (ďđîńňî ďđĺäďîëîćĺíčĺ)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Âčä: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Čěĺ: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Íŕ÷ŕëî: ńĺęňîđ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Đŕçěĺđ: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s ńĺęňîđŕ"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Îň öčëčíäúđ %d äî öčëčíäúđ %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Ôîđěŕňčđŕí\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Íĺôîđěŕňčđŕí\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Ěîíňčđŕí\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2128,7 +1995,7 @@ msgstr ""
"Loopback ôŕéë(îâĺ):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2136,27 +2003,27 @@ msgstr ""
"Ä˙ë, ęîéňî ńĺ ńňŕđňčđŕ ďî ďîäđŕçáčđŕíĺ\n"
" (çŕ MS-DOS boot, íĺ çŕ lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Íčâî %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Đŕçěĺđ íŕ ďŕđ÷ĺňî %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-äčńęîâĺ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Čěĺ íŕ loopback ôŕéëŕ: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2168,7 +2035,7 @@ msgstr ""
"Äđŕéâĺđ-ä˙ë, ěîćĺ áč ňđ˙áâŕ\n"
"ňđ˙áâŕ äŕ ăî îńňŕâčňĺ.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2180,64 +2047,64 @@ msgstr ""
"čâčöŕ íŕ ä˙ëŕ ĺ çŕ äâîéíî\n"
"ńňŕđňčđŕíĺ íŕ ńčńňĺěŕňŕ âč.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Đŕçěĺđ: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Ăĺîěĺňđč˙: %s öčëčíäđč, %s ăëŕâč, %s ńĺęňîđč\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Číôîđěŕöč˙: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-äčńęîâĺ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Ňčď íŕ ňŕáëčöŕňŕ ń ä˙ëîâĺ: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "íŕ řčíŕ %d ŕäđĺń %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Îďöčč: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Âčä ôŕéëîâŕ ńčńňĺěŕ: "
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Ďŕđîëŕňŕ ĺ ďđĺęŕëĺíî ďđîńňŕ (ňđ˙áâŕ äŕ áúäĺ äúëăŕ ďîíĺ %d ńčěâîëŕ)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Ďŕđîëčňĺ íŕ ńúâďŕäŕň"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2246,36 +2113,66 @@ msgid "Change type"
msgstr "Ďđîě˙íč ňčďŕ"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Ěîë˙, öúęíĺňĺ íŕ íîńčňĺë˙"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Čäĺíňčôčęŕöč˙"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Číňĺđíĺň"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Ďîňđĺáčňĺëńęî čěĺ"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Ďîňđĺáčňĺëńęî čěĺ"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS äîěĺéí"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "DNS ńúđâúđ"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s ôîđěŕňčđŕíĺ îň %s ďđîâŕëĺíî"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "íĺ çíŕě ęŕę äŕ ôîđěŕňčđŕě %s â ňčď %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck čçëĺçĺ ń čçőîäĺí ęîä %d čëč ńčăíŕë %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "ăđĺřęŕ ďđč äĺěîíňčđŕíĺňî íŕ %s: %s"
@@ -2292,70 +2189,323 @@ msgstr ""
msgid "server"
msgstr "ńúđâúđ"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Íĺ ěîćĺňĺ äŕ čçďîëçâŕňĺ JFS çŕ ä˙ë ďî-ěŕëúę îň 16 ĚÁ"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Íĺ ěîćĺňĺ äŕ číńňŕëčđŕíĺ ReiserFS íŕ ä˙ë ďî-ěŕëúę îň 32 ĚÁ"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Ňî÷ęčňĺ íŕ ěîíňčđŕíĺ ňđ˙áâŕ äŕ çŕďî÷âŕň ń /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Âĺ÷ĺ čěŕ ä˙ë ń ňŕçč ě˙ńňî íŕ ěîíňčđŕíĺ %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Íĺ ěîćĺňĺ äŕ čçďîëçâŕňĺ LVM ëîăč÷ĺńęč ňčď çŕ ě˙ńňî íŕ ěîíňčđŕíĺ %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Ňŕçč äčđĺęňîđč˙ ňđ˙áâŕ äŕ îńňŕíĺ â đŕěęčňĺ íŕ root ôŕéëîâŕňŕ ńčńňĺěŕ."
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Íóćäŕĺňĺ ńĺ îň čńňčíńęŕ ôŕéëîâŕ ńčńňĺěŕ (ext2, reiserfs) çŕ ňŕçč ňî÷ęŕ íŕ "
"ěîíňčđŕíĺ\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Íĺ ěîćĺňĺ äŕ čçďîëçâŕňĺ LVM ëîăč÷ĺńęč ňčď çŕ ě˙ńňî íŕ ěîíňčđŕíĺ %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Í˙ěŕ äîńňŕňú÷íî ě˙ńňî çŕ ŕâňîěŕňč÷íî çŕĺěŕíĺ"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Ăđĺřęŕ ďđč îňâŕđ˙íĺ íŕ %s çŕ çŕďčń: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Ďî˙âč ńĺ ăđĺřęŕ - íĺ ńŕ îňęđčňč âŕëčäíč óńňđîéńňâŕ, âúđőó ęîčňî äŕ áúäŕň "
"ńúçäŕäĺíč íîâč ôŕéëîâč ńčńňĺěč. Ěîë˙ ďđîâĺđĺňĺ ňâúđäč˙ ńč äčńę ńč çŕ "
"ďđč÷číŕňŕ çŕ ňîçč ďđîáëĺě"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Í˙ěŕňĺ íčęŕęâč ä˙ëîâĺ!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Čçďîëçâŕé ŕâňîěŕňč÷íî çŕńč÷ŕíĺ"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Îáů"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Ďŕěĺň (DMA) íŕ ęŕđňŕňŕ"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Ôîđěŕňčđŕíĺ"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Ďđîě˙íč ňčďŕ"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Čçőîä"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Ďîěîů"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Ďîěîů"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Ďîěîů/_Îňíîńíî..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Ěîäóë"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Ďŕěĺň (DMA) íŕ ęŕđňŕňŕ"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Îňęŕç"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "Module"
+msgstr "Ěîäóë"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Îďčńŕíčĺ"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Čäĺíňčôčęŕöč˙"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Čçáĺđĺňĺ ôŕéë"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Gateway óńňđîéńňâî"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 áóňîíŕ"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Çŕńč÷ŕíĺ íŕ äčńęîâĺňĺ"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Âčć őŕđäóĺđíŕňŕ číôîđěŕöč˙"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Ďîęŕćč číôîđěŕöč˙ňŕ"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Íŕńňđîéęŕ íŕ ěčřęŕ"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "çŕńĺ÷ĺí íŕ ďîđň %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Ěîë˙ čç÷ŕęŕéňĺ"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d ńĺęóíäč"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Čçňđčâŕíĺ íŕ ďđčíňĺđŕ \"%s\" ..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Ŕâňîěŕňč÷íî çŕńč÷ŕíĺ"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2369,7 +2519,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2521,9 +2671,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2860,7 +3009,7 @@ msgstr ""
#: ../../help.pm_.c:256
#, fuzzy
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2872,9 +3021,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2946,21 +3094,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2976,9 +3123,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Â ňîçč ěîěĺíň ňđ˙áâŕ čçáĺđĺňĺ ęúäĺ íŕ ňâúđäč˙ ńč äčńęŕ äŕ číńňŕëčđŕňĺ "
"âŕřŕňŕ\n"
@@ -3074,9 +3221,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3273,38 +3419,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3479,11 +3619,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3533,7 +3673,7 @@ msgstr ""
"íĺ ďîçíŕâŕňĺ äîáđĺ GNU/Linux, ňŕęŕ ÷ĺ čçáĺđĺňĺ ňîâŕ, îńâĺí ŕęî íĺ çíŕĺňĺ\n"
"ęŕęâî ďđŕâčňĺ."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3569,7 +3709,7 @@ msgstr ""
"íŕ áóňîíŕ \"Íŕďđĺäíč÷ŕâ\". Ůĺ âč áúäĺ ďđĺäîńňŕâĺí ďúëĺí ńďčńúę ń "
"ďîääúđćŕíčňĺ ęëŕâčŕňóđč."
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3595,7 +3735,7 @@ msgstr ""
"Îňáĺëĺćĺňĺ, ÷ĺ ěîăŕň äŕ áúäŕň číńňŕëčđŕíč í˙ęîëęî ĺçčęŕ. Âĺäíúć čçáđŕí\n"
"í˙ęŕęúâ ëîęŕë, öúęíĺňĺ áóňîíŕ \"OK\", çŕ äŕ ďđîäúëćčňĺ."
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3623,7 +3763,7 @@ msgstr ""
"íŕńňđîéęŕňŕ ĺ äîđŕ. Ŕęî ěčřęŕňŕ íĺ đŕáîňč, ęŕęňî ňđ˙áâŕ, íŕňčńíĺňĺ číňĺđâŕë\n"
"čëč ŃĹ ÂÚĐÍĹŇĹ ęúě \"Îňęŕç\" č čçáĺđĺňĺ ďŕę."
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3631,23 +3771,23 @@ msgstr ""
"Ěîë˙, čçáĺđĺňĺ âĺđíč˙ ďîđň. Íŕďđčěĺđ, ďîđňúň COM1 ďîä Windows ďîä GNU/Linux\n"
"ńĺ íŕđč÷ŕ ttyS0."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3669,7 +3809,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3691,7 +3831,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3699,7 +3839,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3720,7 +3860,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3744,7 +3884,7 @@ msgstr ""
"â ęîéňî ńëó÷ŕé ěîćĺňĺ äŕ čçňđčĺňĺ ńúîňâĺňíčňĺ çŕďčńč. Íî â ňŕęúâ ńëó÷ŕé,\n"
"ůĺ ńĺ íóćäŕĺňĺ îň boot-äčńęĺňŕ, çŕ äŕ ăč ńňŕđňčđŕňĺ !"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3758,29 +3898,28 @@ msgstr ""
"Ŕęî íĺ ńňĺ ńčăóđíč â ňîâŕ, ęîĺňî ďđŕâčňĺ, čçáĺđĺňĺ \"Ďúđâč˙ ńĺęňîđ íŕ\n"
"óńňđîéńňâîňî (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3789,7 +3928,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3814,11 +3953,11 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3828,9 +3967,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3842,7 +3980,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" 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"
@@ -3868,7 +4006,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3895,18 +4033,17 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3914,12 +4051,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3935,7 +4071,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -3946,7 +4082,7 @@ msgstr ""
"áúäŕň çŕăóáĺíč\n"
"č í˙ěŕ äŕ ěîăŕň äŕ ńĺ âúçńňŕíîâ˙ň."
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3965,7 +4101,7 @@ msgstr ""
"Öúęíĺňĺ \"Îňě˙íŕ\", çŕ äŕ îňěĺíčňĺ ňŕçč îďĺđŕöč˙ áĺç çŕăóáŕ äŕ äŕííčňĺ č\n"
"ä˙ëîâĺňĺ ńúůĺńňâóâŕůč íŕ ňîçč ňâúđä äčńę."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3973,12 +4109,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4002,20 +4138,20 @@ msgstr ""
"\n"
"Íŕčńňčíŕ ëč čńęŕňĺ äŕ číńňŕëčđŕňĺ ňĺçč ńúđâúđč ?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "Íĺ ěîćĺňĺ äŕ čçďîëçâŕňĺ broadcast áĺç NIS äîěĺéí"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Ńëîćĺňĺ FAT ôîđěŕňčđŕíŕ äčńęĺňŕ â óńňđîéńňâî %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Ňŕçč äčńęĺňŕ íĺ ĺ ôîđěŕňčđŕíŕ íŕ FAT"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4023,7 +4159,7 @@ msgstr ""
"Çŕ äŕ čçďîëçâŕňĺ çŕďŕçĺí čçáîđ íŕ ďŕęĺňč, ńňŕđňčđŕéňĺ číńňŕëŕöč˙ňŕ ń ``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Ăđĺřęŕ ďđč ÷ĺňĺíĺňî íŕ ôŕéëŕ %s"
@@ -4054,7 +4190,7 @@ msgstr "Ňđ˙áâŕ äŕ čěŕňĺ swap-ä˙ë"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -4062,59 +4198,59 @@ msgstr ""
"\n"
"Äŕ ďđîäúëćŕ ëč âńĺ ďŕę ?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Ňđ˙áâŕ äŕ čěŕňĺ FAT ä˙ë ěîíňčđŕí â /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Čçďîëçâŕé ńâîáîäíîňî ě˙ńňî"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Í˙ěŕ äîńňŕňú÷íî ě˙ńňî çŕ ńúçäŕâŕíĺ íŕ íîâ ä˙ë"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Čçďîçâŕíĺ íŕ ńúůĺńňâóâŕů ä˙ë"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Í˙ěŕ ä˙ë, ęîéňî ěîăŕ äŕ čçďîëçâŕě"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Čçďîëçâŕé çŕ Windows ä˙ëúň çŕ loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Ęîé ä˙ë čńęŕňĺ äŕ čçďîëçâŕňĺ çŕ Linux4Win ?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Čçáĺđĺňĺ ăîëĺěčíčňĺ"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Ăîëĺěčíŕ íŕ root-ä˙ëŕ â MB: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Ăîëĺěčíŕ íŕ swap-ä˙ëŕ â MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Čçďîëçâŕé ńâîáîäíîňî ě˙ńňî íŕ Windows ä˙ëŕ"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Ęîé ä˙ë ćĺëŕĺňĺ äŕ ďđîěĺíčňĺ?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Čç÷čńë˙âŕě ăđŕíčöčňĺ íŕ Windows ôŕéëîâŕňŕ ńčńňĺěŕ"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4123,12 +4259,15 @@ msgstr ""
"Íĺ âúçěîćíîńň çŕ đŕáîňŕ ń âŕřč˙ FAT ä˙ë, \n"
"ďîđŕäč ďîëó÷ĺíŕňŕ ăđĺřęŕ: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+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 ä˙ë ĺ ěíîăî ôđŕăěĺíňčđŕí, ěîë˙ ďúđâî ńňŕđňčđŕéňĺ ''defrag''"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -4149,54 +4288,54 @@ msgstr ""
"ďîâňîđĺňĺ číńňŕëŕöčŕ˙ňŕ. Áč áčëî äîáđĺ äŕ íŕďđŕâčňĺ ŕđőčâ íŕ äŕííčňĺ ńč.\n"
"Ęîăŕňî ńňĺ ńčăóđíč, íŕňčńíĺňĺ ÎĘ."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Ęîëęî čńęŕňĺ äŕ îńňŕâčňĺ çŕ windows?"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "ä˙ë %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Íĺóńďĺříî ďđĺđŕçäĺë˙íĺ íŕ FAT: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Í˙ěŕ FAT ä˙ëîâĺ çŕ ńě˙íŕ íŕ ăîëĺěčíŕňŕ čëč çŕ čçďîëçâŕíĺ ęŕňî loopback (čëč "
"í˙ěŕ äîńňŕňú÷íî ě˙ńňî íŕ äčńęŕ)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Čçňđčé öĺëč˙ äčńę"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Ďđĺěŕőíč Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "čěŕňĺ ďîâĺ÷ĺ îň ĺäčí ňâúđäč äčńęîâĺ, ęîé äŕ čçďîëçâŕě çŕ číńňŕëŕöč˙ňŕ?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "ÂŃČ×ĘČ ńúůĺńňâóâŕůč ä˙ëîâĺ č äŕííčňe âúđőó ň˙ő íŕ %s ůĺ áúäŕň çŕăóáĺíč"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Ęëčĺíňńęî đŕçäĺë˙íĺ íŕ äčńęŕ"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Čçďîëçâŕé fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4205,11 +4344,11 @@ msgstr ""
"Ńĺăŕ ěîćĺňĺ äŕ đŕçäĺëčňĺ %s.\n"
"Ęîăŕňî ńňĺ ăîňîâč, íĺ çŕáđŕâ˙éňĺ äŕ çŕďčřĺňĺ čçďîëçâŕéęč `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Í˙ěŕ äîńňŕňú÷íî ńâîáîäíî ě˙ńňî íŕ ä˙ëŕ"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Íĺ ěîăŕ äŕ íŕěĺđ˙ íčęŕęâî ě˙ńňî çŕ číńňŕëŕöč˙"
@@ -4217,16 +4356,16 @@ msgstr "Íĺ ěîăŕ äŕ íŕěĺđ˙ íčęŕęâî ě˙ńňî çŕ číńňŕëŕöč˙"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Ďîěîůíčęúň çŕ đŕçäĺëčíĺ íŕ ä˙ëîâĺ íŕ DrakX íŕěĺđč ńëĺäíčňĺ đĺřĺíč˙:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Íĺóńďĺříî đŕçäĺë˙íĺ íŕ: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Âęëţ÷âŕě ěđĺćŕňŕ"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Čçęëţ÷âŕíĺ íŕ ěđĺćŕňŕ"
@@ -4238,12 +4377,12 @@ msgstr ""
"Ďî˙âč ńĺ ăđĺřęŕ, íî íĺ çíŕě ęŕę äŕ ńĺ ńďđŕâ˙ ń íĺ˙ äĺëčęŕňíî.\n"
"Ěîćĺňĺ äŕ ďđîäúëćčňĺ íŕ ńâîé đčńę."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Äóáëčđŕé ňî÷ęŕňŕ íŕ ěîíňčđŕíĺ %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4255,12 +4394,12 @@ msgstr ""
"Ďđîâĺđĺňĺ ęîěďŕęň äčńęŕ íŕ číńňŕëčđŕíč˙ ęîěďţňúđ čçďîëçâŕéęč \"rpm -qpl "
"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Äîáđĺ äîřëč â %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Í˙ěŕ ôëîďč óńňđîéńňâî"
@@ -4270,9 +4409,9 @@ msgstr "Í˙ěŕ ôëîďč óńňđîéńňâî"
msgid "Entering step `%s'\n"
msgstr "Íŕâëčçŕě â ĺňŕď `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4282,200 +4421,155 @@ msgstr ""
"Çŕöĺëňŕ,\n"
"íŕňčńíĺňĺ 'F1', ęîăŕňî ńňŕđňčđŕňĺ îň CDROM č âúâĺäĺňĺ 'ňĺüň'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Ęëŕń číńňŕëŕöč˙"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Ěîë˙, čçáĺđĺňĺ ĺäčí îň ńëĺäíčňĺ ęëŕńîâĺ íŕ číńňŕëŕöč˙:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Îáůŕňŕ ăîëĺěčíŕ íŕ ăđóďčňĺ, ęîčňî ńňĺ ěŕđęčđŕëč, ĺ îęîëî %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Ŕęî čńęŕňĺ äŕ číńňŕëčđŕňĺ ďî-ěŕëęî îň ňŕçč ăîëĺěčíŕ,\n"
-"čçáĺđĺňĺ ďđîöĺíň ďŕęĺňč, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ.\n"
-"\n"
-"Ďđč íčńúę ďđîöĺíň ůĺ ńĺ číńňŕëčđŕň ńŕěî íŕé-âŕćíčňĺ ďŕęĺňč;\n"
-"ďđč 100%% ůĺ číńňŕëčđŕň âńč÷ęč ěŕđęčđŕíč ďŕęĺňč."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Čěŕňĺ ě˙ńňî íŕ äčńęŕ ńč ńŕěî çŕ %d%% îň ňĺçč ďŕęĺňč.\n"
-"\n"
-"Ŕęî čńęŕňĺ äŕ číńňŕëčđŕňĺ ďî-ěŕëęî îň ňîâŕ,\n"
-"čçáĺđĺňĺ ďđîöĺíň îň ďŕęĺňčňĺ, ęîčňî číńęŕňĺ äŕ číńňŕëčđŕňĺ.\n"
-"Ďđč íčńúę ďđîöĺíň ůĺ ńĺ číńňŕëčđŕň ńŕěî íŕé-âŕćíčňĺ ďŕęĺňč;\n"
-"ďđč %d%% ůĺ číńňŕëčđŕň âńč÷ęč čçáđŕíč ďŕęĺňč."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Ůĺ čěŕňĺ âúçěîćíîńňňŕ äŕ čçáĺđĺňĺ ďî-ňî÷íî ďđč ńëĺäâŕůč˙ ĺňŕď."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Ďđîöĺíň ďŕęĺňč çŕ číńňŕëčđŕíĺ"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Čçáîđ íŕ ăđóďŕ ďŕęĺňč"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Čçáčđŕíĺ íŕ ďŕęĺňč ĺäčí ďî ĺäčí"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Îáůŕ ăîëĺěčíŕ: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Ëîř ďŕęĺň"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Čěĺ: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Âĺđńč˙: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Ăîëĺěčíŕ: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Âŕćíîńň: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Íĺ ěîćĺňĺ äŕ îńňŕâčňĺ ďŕęĺňŕ íĺěŕđęčđŕí, çŕůîňî í˙ěŕňĺ ě˙ńňî äŕ ăî "
"číńňŕëčđŕňĺ"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Ńëĺäíčňĺ ďŕęĺňč ůĺ áúäŕň číńňŕëčđŕíč"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Ńëĺäíčňĺ ďŕęĺňč ůĺ áúäŕň ďđĺěŕőíŕňč"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Íĺ ěîćĺňĺ äŕ îňáĺëĺćĺňĺ/äĺîňáĺëĺćĺňĺ ňîçč ďŕęĺň"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Ňîâŕ ĺ íóćĺí ďŕęĺň, íĺ ěîćĺ äŕ áúäĺ íĺěŕđęčđŕí"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Íĺ ěîćĺňĺ äŕ îńňŕâčňĺ ňîçč ďŕęĺň íĺěŕđęčđŕí. Ňîé âĺ÷ĺ ĺ číńňŕëčđŕí"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Ňîçč ďŕęĺň ňđ˙áâŕ äŕ áúäĺ îáíîâĺí\n"
"Ńčăóđíč ëč ńňĺ, ÷ĺ čńęŕňĺ äŕ ăî čçęëţ÷čňĺ ?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Íĺ ěîćĺňĺ äŕ čçęëţ÷čňĺ ňîçč ďŕęĺň. Ňîé ňđ˙áâŕ äŕ áúäĺ îáíîâĺí"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Ďîęŕćč ŕâňîěŕňč÷íî îňáĺë˙çŕíčňĺ ďŕęĺňč"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Číńňŕëčđŕé"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Çŕđĺäč/Çŕďŕçč íŕ äčńęĺňŕ"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "Îáíîâ˙âŕíĺ íŕ čçáîđŕ íŕ ďŕęĺňč"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "Ěčěčíŕëíŕ číńňŕëŕöč˙"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Čçáĺđĺňĺ ďŕęĺňčňĺ, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Číńňŕëčđŕě"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Ďđĺńě˙ňŕíĺ"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Îńňŕâŕůî âđĺěĺ "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Ěîë˙, čç÷ŕęŕéňĺ, ďîäăîňâ˙íĺ íŕ číńňŕëŕöč˙ňŕ"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d ďŕęĺňŕ"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Číńňŕëčđŕíĺ íŕ ďŕęĺňŕ %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Ďđčĺěč"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Îňęŕćč"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4491,17 +4585,17 @@ msgstr ""
"Ŕęî ăî í˙ěŕňĺ, íŕňčńíĺňĺ Îňě˙íŕ, çŕ äŕ čçáĺăíĺňĺ číńňŕëčđŕíĺňî îň ňîçč CD-"
"ROM."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Äŕ ďđîäúëćŕ ëč âńĺ ďŕę ?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Ďî˙âč ńĺ ăđĺřęŕ ďđč ďîđú÷âŕíĺňî íŕ ďŕęĺňčňĺ:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Ďî˙âč ńĺ ăđĺřęŕ ďđč číńňŕëčđŕíĺ íŕ ďŕęĺňčňĺ:"
@@ -4575,11 +4669,11 @@ msgstr "Ďî˙âč ńĺ ăđĺřęŕ"
msgid "Do you really want to leave the installation?"
msgstr "Íŕčńňčíŕ ëč čńęŕňĺ äŕ ďđĺěŕőíĺňĺ ďđčíňĺđŕ \"%s\" ?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Ëčöĺíçčîíĺí äîăîâîđ"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4594,7 +4688,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -4818,113 +4912,117 @@ msgstr ""
"íĺăîâč˙ îđčăčíŕë íŕ\n"
"ŕíăëčéńęč.\n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Ęëŕâčŕňóđŕ"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Ěîë˙, čçáĺđĺňĺ ďîäđĺćäŕíĺ íŕ ęëŕâčŕňóđŕňŕ."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Ĺňî ďúëĺí ńďčńúę íŕ äîńňđúďíčňĺ ęëŕâčŕňóđč"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Ęŕęúâ ęëŕń číńňŕëŕöč˙ ćĺëŕĺňĺ ?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Číńňŕëčđŕé/Îáíîâč"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Ňîâŕ íîâŕ číńňŕëŕöč˙ ëč ĺ čëč îáíîâ˙âŕíĺ ?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Ďđĺďîđú÷čňĺëíŕ"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Ĺęńďĺđňíŕ"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade"
msgstr "Îáíîâ˙âŕíĺ"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr "Îáíîâ˙âŕíĺ íŕ čçáîđŕ íŕ ďŕęĺňč"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Ěîë˙, čçáĺđĺňĺ ňčď íŕ ěčřęŕňŕ."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Ďîđň íŕ ěčřęŕňŕ"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Ěîë˙, čçáĺđĺňĺ ęúě ęîé ńĺđčĺí ďîđň ĺ ńâúđçŕíŕ ěčřęŕňŕ âč."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Čěčňŕöč˙ íŕ áóňîíč"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Čěčňŕöč˙ íŕ 2 áóňîíŕ"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Čěčňŕöč˙ íŕ 3 áóňîíŕ"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Íŕńňđîéęŕ íŕ PCMCIA ęŕđňčňĺ ..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Íŕńňđîéęŕ íŕ IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "í˙ěŕ ä˙ëîâĺ íŕ đŕçďîëîćĺíčĺ"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Ďđĺňúđńâŕíĺ íŕ ä˙ëîâĺňĺ çŕ íŕěčđŕíĺ íŕ ňî÷ęč íŕ ěîíňčđŕíĺ"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Čçáĺđĺňĺ ěĺńňŕ çŕ ěîíňčđŕíĺ"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4935,7 +5033,7 @@ msgstr ""
"Äđóăî đĺřĺíčĺ ĺ äŕ çŕáđŕíčňĺ íŕ DrakX ďîďđŕâ˙ ňŕáëčöŕňŕ ń ä˙ëîâĺ.\n"
"(ăđĺřęŕňŕ ĺ %s)\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4943,7 +5041,7 @@ msgstr ""
"DiskDrake íĺ óńď˙ äŕ đŕç÷ĺňĺ ďđŕâčëíî ňŕáëčöŕňŕ íŕ ä˙ëîâĺňĺ.\n"
"Ďđîäúëćčňĺ íŕ ńîáńňâĺí đčńę !"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -4952,75 +5050,78 @@ msgstr ""
"çŕ äŕ ńňŕđňčđŕňĺ ńčńňĺěŕňŕ ńč, ůĺ ňđ˙áâŕ äŕ ńúçäŕäĺňĺ ńňŕđňčđŕůî ďîëĺ â "
"DiskDrake"
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr "Íĺ ĺ íŕěĺđĺí ăëŕâĺí ä˙ë çŕ íŕäăđŕćäŕíĺ"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Root ä˙ë"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Ęîé ĺ root-ä˙ëúň (/) íŕ ńčńňĺěŕňŕ âč ?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Íŕëŕăŕ ńĺ đŕ đĺńňŕđňčđŕňĺ, ďđĺäč ěîäčôčęŕöččňĺ äŕ ďđĺäčçâčęŕň ĺôĺęň"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Čçáĺđĺňĺ ä˙ëîâĺňĺ, ęîčňî čńęŕňĺ äŕ ôîđěŕňčđŕňĺ"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Ďđîâĺđęŕ çŕ ëîřč ńĺęňîđč ?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Ôîđěŕňčđŕíĺ íŕ ä˙ëowe"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Ńúçäŕâŕíĺ č ôîđěŕňčđŕíĺ íŕ ôŕéëŕ %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Í˙ěŕ äîńňŕňú÷íî swap çŕ ďđčęëţ÷âŕíĺ íŕ číńňŕëŕöč˙ňŕ, ěîë˙ äîáŕâĺňĺ ěŕëęî"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Ňúđń˙ íŕëč÷íč ďŕęĺňč"
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "Ňúđń˙ íŕëč÷íč ďŕęĺňč"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Ňúđń˙ ďŕęĺňč çŕ îáíîâ˙âŕíĺ"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Íĺ ěîćĺňĺ äŕ îńňŕâčňĺ ňîçč ďŕęĺň íĺěŕđęčđŕí. Ňîé âĺ÷ĺ ĺ číńňŕëčđŕí"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Ńčńňĺěŕňŕ âč í˙ěŕ äîńňŕňú÷íî ě˙ńňî çŕ číńňŕëŕöč˙ čëč îáíîâ˙âŕíĺ (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Ďúëíŕ (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Ěčíčěŕëíŕ (%d Mb)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Ďđĺďîđú÷čňĺëíŕ (%dMb)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5028,55 +5129,55 @@ msgstr ""
"Ěîćĺ čçáĺđĺňĺ çŕđĺćäŕíĺ čëč çŕďčń íŕ čçáîđŕ íŕ ďŕęĺňč íŕ ôëîďč.\n"
"Ôîđěŕňúň ĺ ńúůč˙ň ęŕňî auto_install ăĺíĺđčđŕíčňĺ äčńęĺňč."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Çŕđĺäč îň äčńęĺňŕ"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Çŕđĺćäŕíĺ îň äčńęĺňŕ"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Čçáîđ íŕ ďŕęĺňč"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "Ńëîćĺňĺ äčńęĺňŕ ńúäúđćŕůŕ čçáîđ íŕ ďŕęĺňč"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Çŕďŕçč íŕ äčńęĺňŕ"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Čçáđŕíŕňŕ ăîëĺěčíŕ ĺ ďî-ăîë˙ěŕ îň äîńňúďíîňî ďđîńňđŕíńňâî"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
#, fuzzy
msgid "Type of install"
msgstr "Čçáĺđĺňĺ ďŕęĺňč çŕ číńňŕëčđŕíĺ"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
#, fuzzy
msgid "With X"
msgstr "Ĺäčí ěîěĺíň"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5086,16 +5187,16 @@ msgstr ""
"Ŕęî í˙ěŕňĺ íčňî ĺäíî îň ňĺçč CD-ňŕ, íŕňčńíĺňĺ Îňě˙íŕ.\n"
"Ŕęî âč ëčďńâŕň í˙ęîč CD-ňŕ, ěŕőíĺňĺ ăč, č íŕňčńíĺňĺ Ok. "
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM îçŕăëŕâĺí \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Ďîäăîňâ˙ě číńňŕëŕöč˙ňŕ"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -5104,23 +5205,23 @@ msgstr ""
"Číńňŕëčđŕě ďŕęĺň %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Ńëĺä číńňŕëŕöčîííŕ íŕńňđîéęŕ"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Ńëîćĺňĺ ńňŕđňčđŕůŕňŕ äčńęĺňŕ â óńňđîéńňâî %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Ńëîćĺňĺ äčńęĺňŕ çŕ îáíîâ˙âŕíĺ íŕ ěîäóëč â óńňđîéńňâî %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5184,159 +5285,190 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Ńâúđçâŕíĺ ń îăëĺäŕëíč˙ ńúđâúđ çŕ ďîëó÷ŕâŕíĺ íŕ ńďčńúęŕ ń ďŕęĺňčňĺ"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Čçáĺđĺňĺ îăëĺäŕëĺí ńúđâúđ,îň ęîéňî äŕ ďîëó÷čňĺ ďŕęĺňčňĺ"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Ńâúđçâŕíĺ ń îăëĺäŕëíč˙ ńúđâúđ çŕ ďîëó÷ŕâŕíĺ íŕ ńďčńúęŕ ń ďŕęĺňčňĺ"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Ęî˙ ĺ âđĺěĺâŕňŕ âč çîíŕ ?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Őŕäđóĺđíč˙ň âč ÷ŕńîâíčę ĺ íŕńňđîĺí ďî GMT"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Ŕâňîěŕňč÷íŕ ńčíőđîíčçŕöč˙ íŕ âđĺěĺňî (čçďîëçâŕ NTP)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "NTP ńúđâúđ"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Îňäŕëĺ÷ĺí CUPS ńúđâúđ"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Í˙ěŕ ďđčíňĺđ"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Čěŕňĺ ëč äđóă(č) ?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Îáîáůĺíčĺ"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Ěčřęŕ"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "×ŕńîâŕ çîíŕ"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Ďđčíňĺđ"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "ISDN ęŕđňŕ"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Çâóęîâŕ ęŕđňŕ"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV ęŕđňŕ"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Ďđĺěŕőíč Windows(TM)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Ëîęŕëíč ôŕéëîâĺ"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Âúâĺäĺňĺ ďŕđîëŕ çŕ root"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Áĺç ďŕđîëŕ"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr "Ďŕđîëŕňŕ ĺ ďđĺęŕëĺíî ďđîńňŕ (ňđ˙áâŕ äŕ áúäĺ äúëăŕ ďîíĺ %d ńčěâîëŕ)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Čäĺíňčôčęŕöč˙"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "LDAP ŕóňîđčçŕöč˙"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "LDAP Áŕçîâ dn"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "LDAP ńúđâúđ"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "NIS ŕóňîđčçŕöč˙"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS äîěĺéí"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS ńúđâúđ"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "LDAP ŕóňîđčçŕöč˙"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "NIS äîěĺéí"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NTP ńúđâúđ"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -5365,19 +5497,19 @@ msgstr ""
"Ŕęî čńęŕňĺ äŕ ńúçäŕäĺňĺ bootdisk çŕ âŕřŕňŕ ńčńňĺěŕ, ďîńňŕâĺňĺ äčńęĺňŕ â\n"
"ďúđâîňî óńňđîéńňâî č íŕňčńíĺňĺ \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Ďúđâî ôëîďč óńňđîéńňâî"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Âňîđî ôëîďč óńňđîéńňâî"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Ďđĺńęî÷č"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5403,7 +5535,7 @@ msgstr ""
"ńëó÷ŕč íŕ ńđčâ. Čńęŕňĺ ëč äŕ ńúçäŕě bootdisk çŕ ńčńňĺěŕňŕ âč ?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5412,28 +5544,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Ńúćŕë˙âŕě í˙ěŕ ôëîďč"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Čçáĺđĺňĺ ôëîďč äđŕéâ,ęúäĺňî äŕ íŕďđŕâčňĺ ńňŕđňčđŕůŕ äčńęĺňŕ"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Ńëîćĺňĺ äčńęĺňŕ â óńňđîéńňâî %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Ńúçäŕâŕíĺ íŕ ńňŕđňčđŕůŕ äčńęĺňŕ"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Ďîäăîňîâęŕ íŕ bootloader"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5445,11 +5577,11 @@ msgstr ""
"Číńňŕëŕöč˙ňŕ ůĺ ďđîäúëćč, íî ůĺ ňđ˙áâŕ\n"
"äŕ čďîëçâŕňĺ BootX, çŕ äŕ ńňŕđňčđŕňĺ ěŕřčíŕňŕ ńč"
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Čńęŕňĺ ëč äŕ čçďîëçâŕňĺ aboot ?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5457,15 +5589,15 @@ msgstr ""
"Ăđĺřęŕ ďđč číńňŕëčđŕíĺ íŕ aboot, \n"
"äŕ ńĺ îďčňŕě ëč äŕ ďđîäúëćŕ číńňŕëŕöč˙ňŕ äîđč, ŕęî ňîâŕ óíčćňîćč ďúđâč˙ ä˙ë ?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Číńňŕëčđŕíĺ íŕ bootloader"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Číńňŕëŕöč˙ňŕ íŕ bootloader ďđîâŕëĺíŕ. Ďî˙âč ńĺ ńëĺäíŕňŕ ăđĺřęŕ:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5482,18 +5614,17 @@ msgstr ""
" Ńëĺä ęîĺňî íŕďčřĺňĺ: shut-down\n"
"Ďđč ńëĺäâŕůîňî đĺńňŕđňčđŕíĺ áč ňđ˙áâŕëî äŕ âčäĺňĺ ďîäńęŕçęŕňŕ."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Ńëîćĺňĺ ďđŕçíŕ äčńęĺňŕ â óńňđîéńňâî %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Ďîäăîňâ˙ě äčńęĺňŕ ń ŕâňîěŕňč÷íŕ číńňŕëŕöč˙"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5503,7 +5634,8 @@ msgstr ""
"\n"
"Íŕčńňčíŕ ëč čńęŕňĺ äŕ čçëĺçĺňĺ ńĺăŕ ?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5514,7 +5646,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5528,17 +5660,21 @@ msgstr ""
"ńĺ ęîíńóëňčđŕéňĺ ń Errata, íŕ ŕäđĺń : \n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Číôîđěŕöč˙ çŕ íŕńňđîéâŕíĺ íŕ ńčńňĺěŕňŕ âč ěîćĺňĺ äŕ íŕěĺđčňĺ â\n"
"ńëĺäčíńňŕëŕöčîííŕňŕ ăëŕâŕ îň Official Mandrake Linux User's Guide."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Ďîäăîňâč äčńęĺňŕ çŕ ŕâňîěŕňč÷íŕ číńňŕëŕöč˙"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5552,15 +5688,15 @@ msgstr ""
"\n"
"Ěîćĺ áč čńęŕňĺ äŕ ďîâňîđčňĺ číńňŕëŕöč˙ňŕ.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Ŕâňîěŕňčçčđŕí"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Ďîâňîđč"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Çŕďŕçč čçáîđ íŕ ďŕęĺňč"
@@ -5587,414 +5723,398 @@ msgstr ""
msgid "Choose a file"
msgstr "Čçáĺđĺňĺ ôŕéë"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Íŕďđĺäíč÷ŕâ"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Ěîë˙ čç÷ŕęŕéňĺ"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Číôîđěŕöč˙"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Đŕçřčđč äúđâîňî"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Čç÷čńňč äúđâîňî"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Ďđĺâęëţ÷âŕíĺ ěĺćäó íîđěŕëíî č ńîđňčđŕíĺ ďî ăđóďč"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Ëîř čçáîđ, îďčňŕéňĺ îňíîâî\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Âŕřč˙ň čçáîđ ? (ďî ďîäđŕçáčđŕíĺ ĺ %s)"
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Âŕřč˙ň čçáîđ ? (ďî ďîäđŕçáčđŕíĺ ĺ %s)"
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Îďöčč: %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr "Čńęŕňĺ ëč äŕ čçďîëçâŕňĺ aboot ?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Âŕřč˙ň čçáîđ ? (ďî ďîäđŕçáčđŕíĺ ĺ %s)"
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "×ĺřęŕ (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Íĺěńęŕ"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Äâîđŕę"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Čńďŕíńęŕ"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Ôčíëŕíäńęŕ"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Ôđĺíńęŕ"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Íîđâĺćęŕ"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Ďîëńęŕ"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Đóńęŕ"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Řâĺäńęŕ"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "UĘ ęëŕâčŕňóđŕ"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "US ęëŕâčŕňóđŕ"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Ŕëáŕíńęŕ"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Ŕđěĺíńęŕ (ńňŕđŕ)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Ŕđěĺíńęŕ (ďčřĺůŕ ěŕřčíŕ)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Ŕđěĺíńęŕ (ôîíĺňč÷ĺí)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Ŕçĺđáŕéäćŕíńęŕ (ëŕňčíčöŕ)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Áĺëăčéńęŕ"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Ŕđěĺíńęŕ (ôîíĺňč÷ĺí)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Áúëăŕđńęŕ"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Áđŕçčëńęŕ (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Áĺëŕđóńęŕ"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Řâĺéöŕđńęŕ (íĺěńęŕ íŕđĺäáŕ)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Řâĺéöŕđńęŕ (ôđĺíńęč íŕđĺäáŕ)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "×ĺřęŕ (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Íĺěńęŕ (áĺç íĺđŕáîňĺůč ęëŕâčřč)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Äŕňńęŕ"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Äâîđŕę (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Äâîđŕę (Íîđâĺćęŕ)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Äâîđŕę (US)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Ĺńňîíńęŕ"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Ăđóçčíńęŕ (\"Đóńęŕ\" íŕđĺäáŕ)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Ăđóçčíńęŕ (\"Ëŕňčíńęŕ\" íŕđĺäáŕ)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Ăđúöęŕ"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Óíăŕđńęŕ"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Őúđâŕňńęŕ"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Čçđŕĺëńęŕ"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Čçđŕĺëńęŕ (ôîíĺňč÷íŕ)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Čđŕíńęŕ"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Čńëŕíäńęŕ"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Čňŕëčŕíńęŕ"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "ßďîíńęŕ 106 ęëŕâčřŕ"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Ęîđĺéńęŕ ęëŕâčŕňóđŕ"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Ëŕňčíîŕěĺđčęŕíńęŕ"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Ëčňâčéńęŕ AZERTY (ńňŕđŕ)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Ëčňâčéńęŕ AZERTY (íîâŕ)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Ëčňâčéńęŕ \"÷čńëîâŕ đĺäčöŕ\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Ëčňâčéńęŕ \"ôîíĺňč÷ĺí\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "Ëŕňâčéńęŕ"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Ěŕęĺäîíńęŕ"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Őîëŕíäńęŕ"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Ďîëńęŕ (QWERTY íŕđĺäáŕ)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Ďîëńęŕ (QWERTZ íŕđĺäáŕ)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Ďîđňóăŕëńęŕ"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Ęŕíŕäńęŕ (Ęâĺáĺę)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Đóěúíńęŕ (qwertz)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Đóěúíńęŕ (qwerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Đóńęŕ (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Ńëîâĺíńęŕ"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Ńëîâŕřęŕ (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Ńëîâŕřęŕ (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "Ńđúáńęŕ (ęčđčëčöŕ)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Ňŕáëčöŕ"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Ňŕéâŕíńęŕ ęëŕâčŕňóđŕ"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Ňŕäćčęčńňŕíńęŕ ęëŕâčŕňóđŕ"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Ňóđńęŕ (ňđŕäčöčîíĺí \"F\" ěîäĺë)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Ňóđńęŕ (ěîäĺđĺí \"Q\" ěîäĺë)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Óęđŕčíńęŕ"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US ęëŕâčŕňóđŕ (ěĺćäóíŕđîäíŕ)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Âčĺňíŕěńęŕ \"÷čńëîâŕ đĺäčöŕ\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Ţăîńëŕâńęŕ (ëŕňčíčöŕ)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -6007,7 +6127,31 @@ msgstr "\"Îěŕăüîńŕí ęđúă\" îň ěîíňčđŕíč˙: %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Ďúđâî ďđĺěŕőíč ëîăč÷íčňĺ ä˙ëîâî\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Ňĺëĺôîíĺí íîěĺđ"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Ôîđěŕňčđŕíĺ íŕ ä˙ëîâĺ"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -6048,10 +6192,6 @@ msgstr "1 áóňîí"
msgid "Generic 2 Button Mouse"
msgstr "Îáčęíîâĺííŕ 2-áóňîííŕ ěčřęŕ"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Îáů"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Wheel"
@@ -6116,38 +6256,54 @@ msgstr "í˙ěŕ"
msgid "No mouse"
msgstr "Áĺç ěčřęŕ"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Ěîë˙, ďđîáâŕéňĺ ěčřęŕňŕ ńč"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Çŕ äŕ ŕęňčâčđŕňĺ ěčřęŕňŕ ńč,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "ÁÓŇÍĹŇĹ ŇÎĎ×ĹŇÎ !"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Çŕâúđřč"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Ńëĺäâŕů ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Ďđĺäčřĺí"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Âńč÷ęî ďđŕâčëíî ëč ĺ ?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Číôîđěŕöč˙"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Đŕçřčđč äúđâîňî"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Čç÷čńňč äúđâîňî"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Ďđĺâęëţ÷âŕíĺ ěĺćäó íîđěŕëíî č ńîđňčđŕíĺ ďî ăđóďč"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Ńâúđćč ńĺ ęúě Číňĺđíĺň"
@@ -6194,7 +6350,7 @@ msgstr ""
"Íĺ áĺřĺ íŕěĺđĺí ěđĺćîâ ŕäŕďňĺđ â ńčńňĺěŕňŕ âč.\n"
"Íĺ ěîćĺňĺ äŕ íŕńňđîčňĺ ňŕęúâ âčä âđúçęŕ."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Čçáĺđĺňĺ ěđĺćîâ číňĺđôĺéń"
@@ -6207,7 +6363,7 @@ msgstr "Ěîë˙, čçáĺđĺňĺ ęîé ěđĺćîâ ŕäŕďňĺđ äŕ čçďîëçâŕě çŕ âđúçęŕ ęúě Číňĺđíĺň"
msgid "no network card found"
msgstr "íĺ ĺ îňęđčňŕ ěđĺćîâŕ ęŕđňŕ"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Íŕńňîéęŕ íŕ ěđĺćŕňŕ"
@@ -6223,15 +6379,15 @@ msgstr ""
"Host čěĺňî ňđ˙áâŕ äŕ áóäĺ íŕďúëíî ęâŕëčôčöčđŕíî čěĺ,\n"
"ęŕňî ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Čěĺ íŕ őîńň:"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Ěŕăüîńíčę çŕ íŕńňđîéęŕ íŕ ěđĺćŕňŕ"
@@ -6286,7 +6442,7 @@ msgstr "Íŕńňđîéęŕ íŕ IDSN"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Ďîńî÷ĺňĺ äîńňŕâ÷čęŕ ńč.\n"
" Ŕęî íĺ ĺ â ńďčńúęŕ, čçáĺđĺňĺ Unlisted"
@@ -6305,14 +6461,14 @@ msgstr "Ďđîňîęîë çŕ îńňŕíŕëč˙ ńâ˙ň"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Ďđîňîęîë çŕ îńňŕíŕëč˙ ńâ˙ň\n"
" áĺç D-Ęŕíŕë (íŕĺňŕ ëčíč˙)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Ęŕęúâ ďđîňîęîë ćĺëŕĺňĺ äŕ ďđîěĺíčňĺ ?"
#: ../../network/isdn.pm_.c:199
@@ -6336,7 +6492,8 @@ 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"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Ŕęî čěŕňĺ ISA ęŕđňŕ, ńňîéíîńňčňĺ íŕ ńëĺäâŕůč˙ ĺęđŕí ňđ˙áâŕ äŕ ńŕ âĺđíč.\n"
@@ -6352,13 +6509,13 @@ msgid "Continue"
msgstr "Íŕňŕňúę"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Ęî˙ ĺ ISDN ęŕđňŕňŕ âč ?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Îňęđčňŕ ĺ ISDN PCI ęŕđňŕ, íî ń íĺďîçíŕň ňčď. Ěîë˙ čçáĺđĺňĺ í˙ęî˙ PCI ęŕđňŕ "
"îň ńëĺäâŕůč˙ň ĺęđŕí."
@@ -6375,47 +6532,47 @@ msgstr "Ěîë˙, čçáĺđĺňĺ ńĺđčĺí ďîđň ęúě ęîéňî ńâúđçŕí ěîäĺěúň âč."
msgid "Dialup options"
msgstr "Îďöčč çŕ čçáčđŕíĺ ďî ňĺëĺôîí"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Čěĺ íŕ âđúçęŕňŕ"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Ňĺëĺôîíĺí íîěĺđ"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Ďîňđĺáčňĺëńęî čěĺ"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Áŕçčđŕíŕ íŕ ńęđčďň"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Áŕçčđŕíŕ íŕ ňĺđěčíŕë"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Čěĺ íŕ äîěĺéíŕ"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Ďúđâč DNS ńúđâúđ (ďî čçáîđ)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Âňîđč DNS ńúđâúđ (ďî čçáîđ)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6423,7 +6580,7 @@ msgstr ""
"\n"
"Ěîćĺňĺ äŕ ńĺ îňâúđćĺňĺ čëč äŕ ďđĺíŕńňđîčňĺ âđúçęŕňŕ."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6431,11 +6588,11 @@ msgstr ""
"\n"
"Ěîćĺňĺ äŕ ďđĺíŕńňđîčňĺ âđúçęŕňŕ."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Â ěîěĺíňŕ ńňĺ ńâúđçŕíč ęúě Číňĺđíĺň"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6443,33 +6600,33 @@ msgstr ""
"\n"
"Ěîćĺňĺ äŕ ńĺ ńâúđćĺňĺ ęúě Číňĺđíĺň čëč äŕ ďđĺíŕńňđîčňĺ âđúçęŕňŕ."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Â ěîěĺíňŕ íĺ ńňĺ ńâúđçŕíč ęúě Číňĺđíĺň"
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Ńâúđćč"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Îňâúđćč"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "Â ěîěĺíňŕ íŕńňđîéâŕě ěđĺćŕňŕ"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Číňĺđíĺň âđúçęŕ č íŕńňđîéęŕ"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Ńĺăŕ ůĺ íŕńňđîčě %s âđúçęŕňŕ."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6487,12 +6644,12 @@ msgstr ""
"\n"
"Íŕňčńíĺňĺ OK, çŕ äŕ ďđîäúëćčňĺ."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Íŕńňđîéęŕ íŕ ěđĺćŕňŕ"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6503,9 +6660,9 @@ msgstr ""
"Öúęíĺňĺ Ok, çŕ äŕ çŕďŕçčňĺ íŕńňđîéęŕňŕ, čëč Îňě˙íŕ, çŕ äŕ ďđĺíŕńňîčňĺ "
"Číňĺđíĺň č ěđĺćîâŕňŕ ńč âđúçęŕ.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"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"
@@ -6515,66 +6672,72 @@ msgstr ""
"Âčĺ ńňĺ íŕ ďúň äŕ íŕńňđîčňĺ Číňĺđíĺň/ěđĺćîâŕňŕ ńč âđúçęŕ.\n"
"Ŕęî íĺ čńęŕňĺ äŕ čçďîëçâŕňĺ ŕâňîěŕňč÷íî çŕńč÷ŕíĺ, čçęëţ÷ĺňĺ ęóňčéęŕňŕ.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Čçáĺđĺňĺ ďđîôčë çŕ íŕńňđîéęŕ"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Čçďîëçâŕé ŕâňîěŕňč÷íî çŕńč÷ŕíĺ"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Đŕçřčđĺíč ôóíęčöčč"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Îňęđčâŕíĺ íŕ óńňđîéńňâŕ ..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Îáčęíîâĺíŕ ěîäĺěíŕ âđúçęŕ"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "çŕńĺ÷ĺí íŕ ďîđň %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN âđúçęŕ"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "çŕńĺ÷ĺíŕ %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "ADSL âđúçęŕ"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "çŕńĺ÷ĺí íŕ číňĺđôĺéń %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Ęŕáĺëíŕ âđúçęŕ"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "çŕńĺ÷ĺíŕ ĺ ęŕáĺëíŕ âđúçęŕ"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "LAN âđúçęŕ"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "ethernet ęŕđňč çŕńĺ÷ĺíč"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Čçáĺđĺňĺ âđúçęŕňŕ, ęîéňî čńęŕňĺ äŕ čçďîëçâŕňĺ"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6584,23 +6747,23 @@ msgstr ""
"Čçáĺđĺňĺ ňîçč, ęîéňî čńęŕňĺ äŕ čçďîëçâŕňĺ.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Číňĺđíĺň âđúçęŕ"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Čńęŕňĺ ëč äŕ ńňŕđňčđŕňĺ âđúçęŕňŕ ńč ďđč çŕđĺćäŕíĺ ?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Íŕńňđîéęŕ íŕ ěđĺćŕňŕ"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr "Ěđĺćŕňŕ ňđ˙áâŕ äŕ áúäĺ đĺńňŕđňčđŕíŕ"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6611,7 +6774,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6621,7 +6784,7 @@ msgstr ""
"\n"
"Íŕńňđîéęčňĺ ůĺ áúäŕň ďđčëîćĺíč ęúě ńčńňĺěŕňŕ âč.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6629,16 +6792,16 @@ msgstr ""
"Ńëĺä ęŕňî ńňŕíĺ ňîâŕ, ďđĺďîđú÷âŕěĺ âč äŕ đĺńňŕđňčđŕňĺ X\n"
"ńđĺäŕňŕ ńč, çŕ äŕ čçáĺăíĺňĺ ďđîáëĺěč ńúń ńě˙íŕňŕ čěĺňî íŕ őîńňŕ."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"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."
@@ -6647,7 +6810,7 @@ msgstr ""
"Ďđîńňî ďđčĺěĺňĺ, çŕ äŕ îńňŕâčňĺ óńňđîéńňâîňî íŕńňđîĺíî.\n"
"Ďîďđŕâęŕňŕ íŕ ďîëĺňŕňŕ ďî-äîëó ůĺ ďđĺçŕďčřĺ ňŕçč íŕńňđîéęŕ."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6657,38 +6820,43 @@ msgstr ""
"Âń˙ęî óńňđîéńňâî ňđ˙áâŕ äŕ áúäĺ âúâĺäĺíî ęŕňî IP ŕäđĺń\n"
"ń ňî÷ęîâî-äĺńĺňč÷íî îçíŕ÷ĺíčĺ (íŕďđčěĺđ, 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Íŕńňđîéęŕ íŕ ěđĺćîâîňî óńňđîéńňâî %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (äđŕéâĺđ %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP ŕäđĺń"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Ěđĺćîâŕ ěŕńęŕ"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Ŕâňîěŕňč÷ĺí IP ŕäđĺń"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Ďóńíŕň ďđč ńňŕđňčđŕíĺ"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP ŕäđĺńúň ňđ˙áâŕ äŕ áúäĺ âúâ ôîđěŕň 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6700,64 +6868,64 @@ msgstr ""
"ęŕňî ``mybox.mylab.myco.com''.\n"
"Ěîćĺňĺ ńúůî äŕ âúâĺäĺňĺ IP ŕäđĺńŕ íŕ Âŕřč˙ gateway, ŕęî čěŕňĺ ňŕęúâ"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS ńúđâúđ"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Gateway óńňđîéńňâî"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Íŕńňđîéęŕ íŕ proxy"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Ďđîńëĺä˙âŕíĺ íŕ ID íŕ ěđĺćîâŕňŕ ęŕđňŕ (ďîëĺçíî ďđč ëŕďňîďč)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Proxy-ńúđâúđŕ ňđ˙áâŕ äŕ ĺ http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Proxy-ńúđâúđŕ ňđ˙áâŕ äŕ ĺ ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Íŕńňđîéęŕ íŕ Číňĺđíĺň"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Čńęŕňĺ ëč ńĺăŕ äŕ îďčňŕňĺ âđúçęŕ ęúě Číňĺđíĺň ?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Čçďđîáâŕíĺ íŕ âđúçęŕňŕ..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Ńčńňĺěŕňŕ â ěîěĺíňŕ ĺ ńâúđçŕíŕ ęúě Číňĺđíĺň."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Çŕ âŕřŕ ńčăóđíîńň, ńĺăŕ ň˙ ůĺ áúäĺňĺ îňâúđçŕíŕ."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6765,111 +6933,116 @@ msgstr ""
"Ńčńňĺěŕňŕ íĺ čçăëĺćäŕ ńâúđçŕíŕ ęúě Číňĺđíĺň.\n"
"Îďčňŕéňĺ ńĺ äŕ ďđĺíŕńňđîčňĺ âđúçęŕňŕ."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Íŕńňđîéęŕ íŕ âđúçęŕňŕ"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Ěîë˙, ďîďúëíĺňĺ čëč ďđîâĺđĺňĺ ďîëĺňî ďî-äîëó"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ íŕ ęŕđňŕňŕ"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Ďŕěĺň (DMA) íŕ ęŕđňŕňŕ"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "IO íŕ ęŕđňŕňŕ"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "IO_0 íŕ ęŕđňŕňŕ"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "IO_1 íŕ ęŕđňŕňŕ"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Ëč÷íč˙ âč ňĺëĺôîíĺí íîěĺđ"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Čěĺ íŕ äîńňŕâ÷čęŕ (íŕďđ. provider.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Ňĺëĺôîíĺí íîěĺđ íŕ äîńňŕâ÷čęŕ"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "1-âč DNS íŕ äîńňŕâ÷čęŕ (ďî ćĺëŕíčĺ)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "2-đč DNS íŕ äîńňŕâ÷čęŕ (ďî ćĺëŕíčĺ)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Čçáĺđĺňĺ ńňđŕíŕňŕ ńč"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Đĺćčě íŕ íŕáčđŕíĺ"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Ńęîđîńň íŕ âđúçęŕňŕ"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "Timeout íŕ âđúçęŕňŕ (â ńĺę)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Čěĺ íŕ ŕęŕóíňŕ (ďîňĺáčňĺëńęî čěĺ)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Ďŕđîëŕ íŕ ŕęŕóíňŕ"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "ěîíňčđŕíĺňî íĺ óńď˙: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Đŕçřčđĺíč ä˙ëîâĺ íĺ ńĺ ďîääúđćŕň íŕ ňŕçč ďëŕňôîđěŕ"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Čěŕňĺ ďđŕçíčíŕ â ňŕáëčöŕňŕ ń ä˙ëîâĺňĺ, íî íĺ ěîăŕ äŕ ˙ čçďîëçâŕě.\n"
"Ĺäčíńňâĺíč˙ň íŕ÷čí ĺ äŕ ďđĺěĺńňčňĺ ăëŕâíčňĺ ńč ä˙ëîâĺ, çŕ äŕ čěŕňĺ ďđŕçíî "
"ě˙ńňî ńëĺä extended-ä˙ëîâĺňĺ"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Âúçńňŕíîâ˙âŕíĺňî îň ôŕéëŕ %s íĺ óńď˙: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Ëîř backup-ôŕéë"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Ăđĺřęŕ ďđč çŕďčń âúâ ôŕéëŕ %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6880,188 +7053,188 @@ msgstr ""
"Ňîâŕ çíŕ÷č, ÷ĺ ďčńŕíĺňî íŕ ęŕęâîňî č áčëî ďî äčńęŕ ůĺ ďđĺâđúůŕ\n"
"ďđîčçâîëíî â áîęëóę"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "íóćĺí"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "âŕćĺí"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "ěíîăî äîáúđ"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "äîáúđ"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "ńňŕâŕ"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Îáůŕ Unix Ďđčíňĺđíŕ Ńčńňĺěŕ"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR Íîâî ďîęîëĺíčĺ"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Ëčíĺĺí Ďđčíňĺđĺí Äĺěîí"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Ďĺ÷ŕňŕé, Áĺç Îďŕřęŕ"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Ëîęŕëĺí ďđčíňĺđ"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Îňäŕëĺ÷ĺí ďđčíňĺđ"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Ďđčíňĺđ íŕ îňäŕëĺ÷ĺí CUPS ńúđâúđ"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Ďđčíňĺđ íŕ îňäŕëĺ÷ĺí LPD ńúđâúđ"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Ěđĺćîâ ďđčíňĺđ (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Ďđčíňĺđ íŕ SMB/Windows 95/98/NT ńúđâúđ"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Ďđčíňĺđ íŕ NetWare ńúđâúđ"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Âúâĺäĺňĺ URI íŕ ďĺ÷ŕňŕůî óńňđîéńňâî"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "Ďđĺęŕđŕé đŕáîňŕňŕ ďđĺç ęîěŕíäŕ"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Íĺčçâĺńňĺí ěîäĺë"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr "Ëîęŕëĺí ďđčíňĺđ"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr "Îňäŕëĺ÷ĺí ďđčíňĺđ"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Ăđĺřęŕ ďđč çŕďčń âúâ ôŕéëŕ %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(íŕ %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(íŕ ňŕçč ěŕřčíŕ)"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP íŕ CUPS ńúđâúđŕ"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Ďî ďîäđŕçáčđŕíĺ)"
@@ -7085,12 +7258,12 @@ msgstr ""
"ňóę; ňĺçč ďđčíňĺđč ůĺ áúäŕň çŕńĺ÷ĺíč ŕâňîěŕňč÷íî. Ěîë˙,\n"
"čçáĺđĺňĺ \"Ďđčíňĺđ íŕ îňäŕëĺ÷ĺí CUPS ńúđâúđ\" â ňîçč ńëó÷ŕé."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "Íŕńňđîéęŕ"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "Îňäŕëĺ÷ĺí CUPS ńúđâúđ"
@@ -7140,7 +7313,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP ŕäđĺńúň ňđ˙áâŕ äŕ áúäĺ âúâ ôîđěŕň 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "Íîěĺđúň íŕ ďîđňŕ ňđ˙áâŕ äŕ ĺ ö˙ëî ÷čńëî !"
@@ -7148,7 +7321,7 @@ msgstr "Íîěĺđúň íŕ ďîđňŕ ňđ˙áâŕ äŕ ĺ ö˙ëî ÷čńëî !"
msgid "CUPS server IP"
msgstr "IP íŕ CUPS ńúđâúđŕ"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Ďîđň"
@@ -7156,21 +7329,13 @@ msgstr "Ďîđň"
msgid "Automatic CUPS configuration"
msgstr "Ŕâňîěŕňč÷íŕ íŕńňđîéęŕ íŕ CUPS"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Çŕńč÷ŕíĺ íŕ óńňđîéńňâŕ ..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Ňĺńňâŕíĺ ďîđňîâĺňĺ"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "Äîáŕâč ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7183,14 +7348,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr "Ëîęŕëĺí ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7208,12 +7373,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "Îňäŕëĺ÷ĺí ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7227,11 +7392,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7241,35 +7406,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "Čçďîëçâŕé ŕâňîěŕňč÷íî çŕńč÷ŕíĺ"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "Čěĺ íŕ îňäŕëĺ÷ĺí ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Ňĺńňâŕíĺ ďîđňîâĺňĺ"
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "çŕńĺ÷ĺíŕ %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
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, ..., "
@@ -7277,43 +7446,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Âúâĺäĺňĺ URI íŕ ďĺ÷ŕňŕůî óńňđîéńňâî"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr "Ëîęŕëĺí ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7321,7 +7490,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7329,72 +7498,82 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Ěîë˙, čçáĺđĺňĺ ńĺđčĺí ďîđň ęúě ęîéňî ńâúđçŕí ěîäĺěúň âč."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Âúâĺäĺňĺ URI íŕ ďĺ÷ŕňŕůî óńňđîéńňâî"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "Íŕńňđîéęŕ íŕ öâĺňîâĺ"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "Číńňŕëčđŕíĺ íŕ ďŕęĺňč ..."
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
+msgstr "Číńňŕëčđŕíĺ íŕ ďŕęĺňč ..."
+
+#: ../../printerdrake.pm_.c:524
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing mtools packages..."
msgstr "Číńňŕëčđŕíĺ íŕ ďŕęĺňč ..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
#, fuzzy
-msgid "Making printer port available for CUPS ..."
+msgid "Making printer port available for CUPS..."
msgstr "×ĺňĺíĺ íŕ áŕçŕňŕ äŕííč îň ďđčíňĺđč ..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr "×ĺňĺíĺ íŕ áŕçŕňŕ äŕííč îň ďđčíňĺđč ..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Îďöčč íŕ îňäŕëĺ÷ĺí lpd-ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7404,27 +7583,27 @@ msgstr ""
"äŕ ďđĺäîńňŕâčňĺ čěĺíŕňŕ íŕ őîńňŕ íŕ ďđčíňĺđíč˙ ńúđâúđ č\n"
"čěĺňî íŕ ďđčíňĺđŕ íŕ ňîçč ńúđâúđ."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Čěĺ íŕ îňäŕëĺ÷ĺí őîńň"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Čěĺ íŕ îňäŕëĺ÷ĺí ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "Ëčďńâŕ čěĺ íŕ čěĺ íŕ őîńň !"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "Ëčďńâŕ čěĺ íŕ îňäŕëĺ÷ĺí ďđčíňĺđ !"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Íŕńňđîéęč íŕ SMB (Windows 9x/NT) ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7438,35 +7617,35 @@ msgstr ""
"ďđčíňĺđŕ, äî ęîéňî čńęŕňĺ äîńňúď č ďîäőîä˙ůî čěĺí, ďŕđîëŕ č číôîđěŕöč˙\n"
"çŕ đŕáîňíŕňŕ ăđóďŕ."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "Őîńň íŕ SMB ńúđâúđ"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP íŕ SMB ńúđâúđ:"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Îáůî čěĺ"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Đŕáîňíŕ ăđóďŕ"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "Ňđ˙áâŕ äŕ áúäŕň çŕäŕäĺíč č čěĺňî č IP ŕäđĺńŕ íŕ ńúđâúđŕ !"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "Ëčďńâŕ čěĺ íŕ SAMBA share !"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7490,7 +7669,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7499,7 +7678,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7507,11 +7686,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Îďöčč çŕ NetWare ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7522,28 +7701,28 @@ msgstr ""
"Çŕ äŕ ďĺ÷ŕňčňĺ íŕ NetWare ďđčíňĺđ ,ňđ˙áâŕ äŕ çíŕĺňĺ čěĺî ěó č âúçěîćíî\n"
"ŕäđĺńŕ íŕ ńúđâúđŕ, ęŕęňî č čěĺňî íŕ îďŕřęŕňŕ,ďîňđĺáčňĺëńęîňî čěĺ,ďŕđîëŕ."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Ńúđâúđ íŕ ďđčíňĺđŕ"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Čěĺ íŕ ďĺ÷ŕňíŕňŕ îďŕřęŕňŕ"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "Ëčďńâŕ čěĺ íŕ NCP ńúđâúđ !"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "Ëčďńâŕ čěĺ íŕ NCP îďŕřęŕ !"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Îďöčč íŕ Socket ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
@@ -7557,19 +7736,19 @@ msgstr ""
"íŕ äđóăč ńúđâúđč ěîćĺ äŕ âŕđčđŕ. Âčćňĺ đúęîâîńňâîňî íŕ\n"
"őŕđäóĺđŕ ńč."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Čěĺ íŕ őîńň íŕ ďđčíňĺđŕ"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "Ëčďńâŕ čěĺ íŕ őîńň íŕ ďđčíňĺđa !"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Ďĺ÷ŕňŕůî óńňđîéńňâî URI"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
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 "
@@ -7579,11 +7758,11 @@ msgstr ""
"čçďúëíč čëč CUPS čëč Foomatic ńďĺöčôčęŕöččňĺ. Îňáĺëĺćĺňĺ, ÷ĺ íĺ âńč÷ęč "
"ňčďîâĺ URI ńĺ ďîääđúđćŕň îň spooler-čňĺ."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "Ňđ˙áâŕ äŕ áúäĺ âúâĺäĺí âŕëčäĺí URI !"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
#, fuzzy
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
@@ -7593,28 +7772,24 @@ msgstr ""
"Ďîëĺňŕňŕ Îďčńŕíčĺ č Ěĺńňîďîëîćĺ íĺ ňđ˙áâŕ äŕ áúäŕň\n"
"ďîďúëâŕíč. Čěŕ ęîěĺíňŕđč çŕ ďîňđĺáčňĺëčňĺ."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Čěĺ íŕ ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Îďčńŕíčĺ"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Ěĺńňîďîëîćĺíčĺ"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr "Ďîäăîňâ˙íĺ íŕ áŕçŕňŕ äŕííč îň ďđčíňĺđč ..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "Čěĺ íŕ îňäŕëĺ÷ĺí ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7629,26 +7804,26 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "Âńč÷ęî ďđŕâčëíî ëč ĺ ?"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "Čěĺ íŕ îňäŕëĺ÷ĺí ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Čçáîđ ěîäĺë íŕ ďđčíňĺđŕ"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Ęŕęúâ ěîäĺë ďđčíňĺđ čěŕňĺ ?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7657,17 +7832,17 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "Íŕńňđîéęč íŕ OKI Winprinter"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7677,11 +7852,11 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "Íŕńňđîéęŕ íŕ Lexmark inkjet"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
#, fuzzy
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
@@ -7694,7 +7869,7 @@ msgstr ""
"ďđčíňĺđíč ěŕřčíč. Ěîë˙, ńâúđćĺňĺ ďđčíňĺđŕ ńč íŕ ëîęŕëĺí ďîđň\n"
"čëč ăî íŕńňđîéňĺ íŕ ěŕřčíŕňŕ, ęúě ęî˙ňî ĺ ńâúđçŕí."
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7707,7 +7882,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
#, fuzzy
msgid ""
"Printer default settings\n"
@@ -7723,22 +7898,22 @@ msgstr ""
"Îňáĺëĺćĺňĺ, ÷ĺ ďđč ěíîăî âčńîęî ęŕ÷ĺńňî íŕ čçőîäŕ íŕ\n"
"ďđčíňĺđŕ, ňîé ěîćĺ çíŕ÷čňĺëíî äŕ ńĺ çŕáŕâč."
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Íŕńňđîéęŕňŕ %s ňđ˙áâŕ äŕ ĺ ö˙ëî ÷čńëî !"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "Íŕńňđîéęŕňŕ %s ňđ˙áâŕ äŕ ĺ ÷čńëî !"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "Îďöč˙ňŕ %s ĺ čçâúí ăđŕíčöčňĺ !"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7747,11 +7922,11 @@ msgstr ""
"Čńęŕňĺ ëč äŕ íŕńňđîčňĺ ňîçč ďđčíňĺđ (\"%s\")\n"
"ęŕňî ďđčíňĺđ ďî ďîäđŕçáčđŕíĺ ?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "Ňĺńňîâč ńňđŕíčöč"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
#, fuzzy
msgid ""
"Please select the test pages you want to print.\n"
@@ -7764,40 +7939,40 @@ msgstr ""
"âđĺěĺ äŕ ńĺ čçďĺ÷ŕňŕ č íŕ ëŕçĺđíč ďđčíňĺđč ń ěŕëęî ďŕěĺň ěîćĺ âúîáůĺ\n"
"äŕ íĺ čçëĺçĺ.  ďîâĺ÷ĺňî ńëó÷ŕč ĺ äîńňŕňú÷íŕ ńňŕíäŕđňíŕ ňĺńňîâŕ ńňđŕíčöŕ."
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "Áĺç ňĺńňîâč ńňđŕíčöč"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Ďĺ÷ŕň"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "Ńňŕíäŕđňíŕ ňĺńňîâŕ ńňđŕíčöŕ"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr "Ŕëňĺđíŕňčâíŕ ňĺńňîâŕ ńňđŕíčöŕ (Ďčńěî)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "Ŕëňĺđíŕňčâíŕ ňĺńňîâŕ ńňđŕíčöŕ (Ŕ4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "Ňĺńňîâŕ ńňđŕíčöŕ ńúń ńíčěęŕ"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "Îňďĺ÷ŕňâŕíĺ íŕ ňĺńňîâč ńňđŕíčöč"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Îňďĺ÷ŕňâŕíĺ íŕ ňĺńňîâ(ŕňŕ/čňĺ) ńňđŕíčö(ŕ/č) ..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7812,7 +7987,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -7820,15 +7995,15 @@ msgstr ""
"Ňĺńňîâčňĺ ńňđŕíčöč ńŕ čçďđŕňĺíč ęúě ďđčíňĺđíŕ.\n"
"Ěîćĺ äŕ îňíĺěĺ ěŕëęî âđĺěĺ ďđĺäč ďđčíňĺđŕ äŕ çŕďî÷íĺ.\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr "Ďđîđŕáîňč ëč ęŕęňî ňđ˙áâŕ ?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr ""
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7841,7 +8016,7 @@ msgstr ""
"<file>\" čëč \"kprinter <file>\". Ăđŕôč÷íčňĺ číńňđóěĺíňč âč ďîçâîë˙âŕň äŕ "
"čçáčđŕňĺ ďđčíňĺđŕ č äŕ ďîďđŕâ˙ňĺ ëĺńíî íŕńňđîéęčňĺ íŕ îďöččňĺ.\n"
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
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 "
@@ -7851,8 +8026,8 @@ msgstr ""
"ďĺ÷ŕňíčňĺ äčŕëîçč â ěíîƒî ďđčëîćĺíč˙. Íî ň˘ę íĺ ďîńňŕâ˙éňĺ čěĺňî íŕ ôŕéëŕ, "
"çŕůîňî ňî ńĺ ďîäŕâŕ îň ďđčëîćĺíčĺňî.\n"
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7865,23 +8040,23 @@ msgstr ""
"çŕ îďđĺäĺëĺíŕ đŕáîňŕ íŕ ďđčíňĺđŕ. Ďđîńňî äîáŕâĺňĺ öĺëŕíčňĺ íŕńňđîéęč ęúě "
"ęîěŕíäíč˙ đĺä, íŕďđ. \"%s <file>\". "
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, fuzzy, 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\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
"Çŕ äŕ âčäčňĺ ńďčńúę íŕ äîńňúďíčňĺ îďöčč çŕ ňĺęóůč˙ ďđčíňĺđ, čëč ďđî÷ĺňĺňĺ "
"ńďčńúęŕ ďîęŕçŕí ďî-äîëó čëč öúęíĺňĺ íŕ áóňîíŕ \"Ńďčńúę ń îďöčč çŕ ďĺ÷ŕň\".\n"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -7890,8 +8065,8 @@ msgstr ""
"Çŕ äŕ čçďĺ÷ŕňŕňĺ ôŕéë îň ęîěŕíäíč˙ đĺä (ňĺđěčíŕëĺí ďđîçîđĺö) čçďîëçâŕéňĺ "
"ęîěŕíäŕňŕ \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -7901,7 +8076,7 @@ msgstr ""
"ďĺ÷ŕňíčňĺ äčŕëîçč â ěíîăî ďđčëîćĺíč˙. Íî ňóę íĺ ďîńňŕâ˙éňĺ čěĺňî íŕ ôŕéëŕ, "
"çŕůîňî ňî ńĺ ďîäŕâŕ îň ďđčëîćĺíčĺňî.\n"
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
#, fuzzy
msgid ""
"To get a list of the options available for the current printer click on the "
@@ -7911,7 +8086,7 @@ msgstr ""
"\"Ńďčńúę ń îďöčč çŕ ďĺ÷ŕň\".\n"
"\n"
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -7920,7 +8095,7 @@ msgstr ""
"Çŕ äŕ îňďĺ÷ŕňŕňĺ ôŕéë îň ęîěŕíäíč˙ đĺä (ňĺđěčíŕëĺí ďđîçîđĺö), čçďîëçâŕéňĺ "
"ęîěŕíäŕňŕ \"%s <file>\" čëč \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7930,7 +8105,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7943,29 +8118,40 @@ msgstr ""
"íŕńňđîéęč çŕ îďđĺäĺëĺíŕ đŕáîňŕ íŕ ďđčíňĺđŕ. Ďđîńňî äîáŕâĺňĺ čńęŕíčňĺ "
"íŕńňđîéęč ęúě ęîěŕíäíč˙ đĺä, íŕďđ. \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Çŕňâîđč"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Ďĺ÷ŕňŕíĺ íŕ ďđčíňĺđ \"%s\""
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Ďĺ÷ŕňŕíĺ íŕ ďđčíňĺđ \"%s\""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Ďĺ÷ŕňŕíĺ íŕ ďđčíňĺđ \"%s\""
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Ďĺ÷ŕňŕíĺ íŕ ďđčíňĺđ \"%s\""
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Çŕňâîđč"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "Ńďčńúę ń ďđčíňĺđíč îďöčč"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7973,36 +8159,36 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr "×ĺňĺíĺ íŕ äŕííč îň ďđčíňĺđŕ ..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "Ďđĺíîń íŕ íŕńňđîéęŕ íŕ ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, fuzzy, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8018,7 +8204,7 @@ msgstr ""
"ďđĺőâúđë˙ň.\n"
"Íĺ âńč÷ęč îďŕřęč ěîăŕň äŕ áúäŕň ďđĺőâúđëĺíč ďî ńëĺäíčňĺ ďđč÷číč:\n"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
#, fuzzy
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
@@ -8027,7 +8213,7 @@ msgstr ""
"CUPS íĺ ďîääúđćŕ ďđčíňĺđč íŕ Novell ńúđâúđč čëč ďđčíňĺđč\n"
"čçďđŕůŕůč äŕííč âúâ ńâîáîäíî-čçăđŕäĺíŕ ęîěŕíäŕ.\n"
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
#, fuzzy
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
@@ -8036,11 +8222,11 @@ msgstr ""
"PDQ ďîääúđćŕ ńŕěî ëîęŕëíč ďđčíňĺđč, îňäŕëĺ÷ĺíč LPD ďđčíňĺđč\n"
"č Socket/TCP ďđčíňĺđč.\n"
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD č LPRng íĺ ďîääúđćŕ IPP ďđčíňĺđč.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
#, fuzzy
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
@@ -8049,7 +8235,7 @@ msgstr ""
"Ęŕňî äîďúëíĺíčĺ, îďŕřęčňĺ íĺ ńúçäŕäĺíč ń ňŕçč ďđîăđŕěŕ\n"
"čëč \"foomatic-configure\" íĺ ěîăŕň äŕ áúäŕň ďđĺőâúđë˙íč."
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
#, fuzzy
msgid ""
"\n"
@@ -8061,7 +8247,7 @@ msgstr ""
"îň ďđîčçâîäčňĺëčňĺ čě čëč ń îđčăčíŕëíč CUPS äđŕéâĺđč íĺ\n"
"ěîăŕň äŕ áúäŕň ďđĺőâúđë˙íč."
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8071,15 +8257,15 @@ msgstr ""
"Îňáĺëĺćĺňĺ ďđčíňĺđčňĺ, ęîčňî čńęŕňĺ äŕ ďđĺőâúđëčňĺ č öúęíĺňĺ\n"
"\"Ďđĺőâúđëč\"."
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr "Íĺ ďđĺőâúđë˙é ďđčíňĺđč"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr "Ďđĺőâúđëč"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8090,11 +8276,11 @@ msgstr ""
"Öúęíĺňĺ \"Ďđĺőâúđëč\", çŕ äŕ ăî ďđĺçŕďčřĺňĺ.\n"
"Ěîćĺňĺ ńúůî ňŕęŕ äŕ íŕďčřĺňĺ íîâî čěĺ čëč äŕ ďđîďóńíňĺ ďđčíňĺđŕ."
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Čěĺňî íŕ ďđčíňĺđŕ ňđ˙áâŕ äŕ ńúäúđćŕ ńŕěî áóęâč, ÷čńëŕ č ďîä÷ĺđňŕâęŕ"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8103,16 +8289,16 @@ msgstr ""
"Ďđčíňĺđúň \"%s\" âĺ÷ĺ ńúůĺńňâóâŕ,\n"
"íŕčńňčíŕ ëč čńęŕňĺ äŕ ďđĺçŕďčřĺňĺ íŕńňđîéęŕňŕ ?"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Íîâî čěĺ íŕ ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr "Ďđĺőâúđë˙íĺ íŕ %s ..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, fuzzy, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8122,29 +8308,29 @@ msgstr ""
"Čńęŕňĺ ëč äŕ ăî îńňŕâčňĺ ďî ďîäđŕçáčđŕíĺ â íîâŕňŕ\n"
"ďđčíňĺđíŕ ńčńňĺěŕ %s ?"
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr "Îďđĺńí˙âŕíĺ íŕ äŕííčňĺ îň ďđčíňĺđŕ ..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr "Íŕńňđîéęŕ íŕ îňäŕëĺ÷ĺí ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "Ńňŕđňčđŕíĺ ěđĺćŕňŕ ...."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr "Â ěîěĺíňŕ íŕńňđîéâŕě ěđĺćŕňŕ"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "Ôóíęöčîíŕëíîńňňŕ íŕ ěđĺćŕňŕ íĺ ĺ íŕńňđîĺíŕ"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8152,11 +8338,11 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr "Ďđîäúëćč áĺç íŕńňîéęŕ íŕ ěđĺćŕňŕ"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8166,7 +8352,7 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
#, fuzzy
msgid ""
"The network access was not running and could not be started. Please check "
@@ -8178,24 +8364,24 @@ msgstr ""
"ńč. Ňîăŕâŕ îďčňŕéňĺ äŕ íŕńňđîčňĺ îňäŕëĺ÷ĺíč˙ ďđčíňĺđ\n"
"îňíîâî."
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr "Đĺńňŕđňčđŕíĺ íŕ ďđčíňĺđíŕňŕ ńčńňĺěŕ"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "âčńîęî"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr "ďŕđŕíîč÷íî"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Číńňŕëčđŕíĺ íŕ ďđčíňĺđíŕňŕ ńčńňĺěŕ â %s íčâî íŕ ńčăóđíîńň"
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8210,11 +8396,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr "Ńňŕđňčđŕíĺ íŕ ďđčíňĺđíŕňŕ ńčńňĺěŕ ďđč ńňŕđňčđŕíĺ"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8228,66 +8414,66 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr "Ďđîâĺđęŕ íŕ číńňŕëčđŕíč˙ ńîôňóĺđ..."
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr "Čçňđčâŕíĺ íŕ LPRng..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr "Čçňđčâŕíĺ íŕ LPD..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "Čçáĺđĺňĺ ďđčíňĺđĺí spooler"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "Ęî˙ ďđčíňĺđíŕ ńčńňĺěŕ (spooler) čçęŕňĺ äŕ čçďîëçâŕňĺ ?"
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2310
+#, fuzzy, c-format
+msgid "Configuring printer \"%s\"..."
msgstr "Íŕńňđîéęŕ íŕ ďđčíňĺđŕ \"%s\" ..."
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr "Číńňŕëčđŕíĺ íŕ ďŕęĺňč ..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Îďöčč íŕ ďđčíňĺđŕ"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr "Ďîäăîňâ˙íĺ íŕ PinterDrake ..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Íŕńňđîéęŕ íŕ ďđčíňĺđŕ \"%s\" ..."
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "Čńęŕňĺ ëč äŕ íŕńňđîčňĺ ďĺ÷ŕňŕ ?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr "Ďĺ÷ŕňíŕ ńčńňĺěŕ: "
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "Printerdrake"
msgstr "Ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8300,7 +8486,7 @@ msgstr ""
"čëč çŕ äŕ ďîëó÷čňĺ číôîđěŕöč˙ çŕ íĺăî, čëč\n"
"âúđőó \"Äîáŕâč Ďđčíňĺđ\", çŕ äŕ äîáŕâčňĺ íîâ ďđčíňĺđ."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8312,29 +8498,33 @@ msgstr ""
"čëč çŕ äŕ ďîëó÷čňĺ číôîđěŕöč˙ çŕ íĺăî, čëč\n"
"âúđőó \"Äîáŕâč Ďđčíňĺđ\", çŕ äŕ äîáŕâčňĺ íîâ ďđčíňĺđ."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Íŕńňîéęŕ íŕ ěđĺćŕňŕ"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Íîđěŕëĺí đĺćčě"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Čçőîä"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr "Čńęŕňĺ ëč äŕ íŕńňđîčňĺ äđóă ďđčíňĺđ ?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "Ďîďđŕâč íŕńňđîéęčňĺ íŕ ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
@@ -8343,103 +8533,103 @@ msgstr ""
"Ďđčíňĺđ %s: %s %s\n"
"Ęŕęâî čńęŕňĺ äŕ ďîďđŕâčňĺ ďî ňîçč ďđčíňĺđ ?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr "Äŕâŕé !"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "Ňčď íŕ âđúçęŕňŕ ęúě ďđčíňĺđŕ"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "Čěĺ íŕ ďđčíňĺđŕ, îďčńŕíčĺ, ěĺńňîďîëîćĺíčĺ"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr "Ďđîčçâîäčňĺë íŕ ďđčíňĺđŕ, ěîäĺë, äđŕéâĺđ"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr "Ďđîčçâîäčňĺë íŕ ďđčíňĺđŕ, ěîäĺë"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr "Îďđĺäĺëč ňîçč ďđčíňĺđ çŕ ďîëçâŕíĺ ďî ďîäđŕçáčđŕíĺ"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr "Îňďĺ÷ŕňâŕíĺ íŕ ňĺńňîâč ńňđŕíčöč"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "Čńęŕňĺ ëč äŕ íŕńňđîčňĺ äđóă ďđčíňĺđ ?"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "Ďđĺěŕőâŕíĺ íŕ ďđčíňĺđŕ"
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2857
+#, fuzzy, c-format
+msgid "Removing old printer \"%s\"..."
msgstr "Čçňđčâŕíĺ íŕ ńňŕđ ďđčíňĺđ \"%s\" ..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Ďđčíňĺđ ďî ďîäđŕçáčđŕíĺ"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Ďđčíňĺđúň \"%s\" âĺ÷ĺ ĺ îďđĺäĺëĺí çŕ ďîëçâŕíĺ ďî ďîäđŕçáčđŕíĺ."
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Íŕčńňčíŕ ëč čńęŕňĺ äŕ ďđĺěŕőíĺňĺ ďđčíňĺđŕ \"%s\" ?"
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2909
+#, fuzzy, c-format
+msgid "Removing printer \"%s\"..."
msgstr "Čçňđčâŕíĺ íŕ ďđčíňĺđŕ \"%s\" ..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -8524,24 +8714,61 @@ msgstr "Ďŕđîëčňĺ íŕ ńúâďŕäŕň. Îďčňŕéňĺ ďŕę !"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Íĺ ěîăŕ äŕ ďđčáŕâ˙ ä˙ë ęúě _ôîđěŕňčđŕí_ RAID md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Ôŕéëúň %s íĺ ěîćĺ äŕ áúäĺ çŕďčńŕí"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid ďđîďŕäíŕ"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid ďđîďŕäíŕ (ěîćĺ áč raidtools ëčďńâŕň ?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Í˙ěŕ äîńňŕňú÷íî ä˙ëîâĺ çŕ RAID íčâî %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Ňîâŕ íčâî ńĺ čçďîëçâŕ ń âíčěŕíčĺ. Ňîâŕ ęŕđŕ ńčńňĺěŕňŕ âč ďî-ëĺńíŕ çŕ\n"
+"óďîňđĺáŕ, íî ĺ ďî-÷óâńňâčňĺëíî: íĺ ňđ˙áâŕ äŕ áúäĺ čçďîëçâŕíŕ íŕ ěŕřčíč\n"
+"ńâúđçŕíč ń äđóăč čëč ďî Číňĺđíĺň. Í˙ěŕ äîńňúď ń ďŕđîëč."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+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 ""
+"Ń ňîâŕ íčâî íŕ ńčăóđíîńň, ďîëçâŕíĺňî íŕ ńčńňĺěŕňŕ ęŕňî ńúđâúđ ńňŕâŕ "
+"âúçěîćíî.\n"
+"Ńčăóđíîńňňŕ ńĺăŕ ĺ äîńňŕňú÷íî ăîë˙ěŕ äŕ ńĺ čçďîëçâŕ ńčńňĺěŕňŕ ęŕňî\n"
+"ńúđâúđ ďđčĺěŕů âđúçęč îň ěíîăî ęëčĺíňč. "
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Íŕńňđîéęŕ íŕ ëîęŕëíŕ ěđĺćŕ"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Îďöčč"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Ďóńíč ALSA (Advanced Linux Sound Architecture) çâóęîâŕňŕ ńčńňĺěŕ"
@@ -8597,7 +8824,7 @@ msgstr ""
"HardDrake ďđŕâč ďđîáč íŕ őŕđäóĺđŕ, č ĺâĺíňóŕëíî íŕńňđîéâŕ\n"
"íîâ/ďđîěĺíĺí őŕđäóĺđ."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8675,7 +8902,7 @@ msgstr ""
"Linux Virtual Server ńĺ čçďîëçâŕ çŕ čçăđŕćäŕíĺ íŕ âčńîęîďđîčçâîäčňĺëĺí\n"
"č äîáđĺ äîńňúďĺí ńúđâúđ."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -8752,7 +8979,7 @@ msgstr ""
"NFS č NIS. portmap ńúđâúđŕ ňđ˙áâŕ äŕ ĺ ďóńíŕň íŕ ěŕřčíč, ęîčňî đŕáîň˙ň ęŕňî\n"
"ńúđâúđ çŕ ďđîňîęîëč, ęîčňî ńĺ íóćäŕ˙ň äŕ čçďîëçâŕň RPC ěĺőŕíčçúě."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -8848,7 +9075,7 @@ msgstr "Číňĺđíĺň"
msgid "File sharing"
msgstr "Ďîäĺë˙íĺ íŕ ôŕéëîâĺ"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "Ńčńňĺěŕ"
@@ -8967,6 +9194,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Ęîíňđîëĺí öĺíňúđ"
@@ -9070,6 +9298,15 @@ msgstr ""
msgid "Installing packages..."
msgstr "Číńňŕëčđŕíĺ íŕ ďŕęĺňč ..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Ěîë˙ čçëĺçňĺ îň ńĺńč˙ňŕ č čçďîëçâŕéňĺ Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Ěîë˙ âëĺçňĺ îňíîâî â %s, çŕ äŕ ŕęňčâčđŕňĺ ďđîěĺíčňĺ"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -9078,6 +9315,161 @@ msgstr ""
"Íĺ ěîăŕ äŕ đŕç÷ĺňŕ ňŕáëčöŕňŕ íŕ ä˙ëîâĺňĺ, ďđĺęŕëĺíî ĺ ďîâđĺäĺíŕ :(\n"
"Ůĺ ńĺ îďčňŕě äŕ ďđîäúëćŕ äŕ đŕç÷čńňâŕě ëîřčňĺ ä˙ëîâĺ"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Ďđĺíîń íŕ íŕńňđîéęŕ íŕ ďđčíňĺđ"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Ńúđâúđ Áŕçč-äŕííč"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Ńúđâúđ Áŕçč-äŕííč"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS ńúđâúđ"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS ńúđâúđ"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Äîáŕâč ďîňđĺáčňĺë"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP ęëčĺíň"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#, fuzzy
+msgid "Help"
+msgstr "/_Ďîěîů"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Íĺ ńâúđçŕí"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Čçňđčé"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Čçáĺđĺňĺ ôŕéë"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Äîáŕâč ďîňđĺáčňĺë"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "DHCP ęëčĺíň"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Íŕńňđîéęŕ ..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "ďđĺíŕńňđîéęŕ"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Ńëîćĺňĺ ńňŕđňčđŕůŕňŕ äčńęĺňŕ â óńňđîéńňâî %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Í˙ěŕ ôëîďč óńňđîéńňâî"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "Ăđĺřęŕ !"
@@ -9118,6 +9510,11 @@ msgstr ""
"Ěîë˙, čçáĺđĺňĺ çŕ âń˙ęŕ ńňúďęŕ, äŕëč ůĺ ńĺ ďđĺčăđŕĺ ęŕňî ďđč číńňŕëŕöč˙ňŕ, "
"čëč ůĺ áúäĺ đú÷íŕ"
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Ďîäăîňâ˙ě äčńęĺňŕ ń ŕâňîěŕňč÷íŕ číńňŕëŕöč˙"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -9126,12 +9523,12 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Ďîçäđŕâëĺíč˙ !"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9139,36 +9536,29 @@ msgstr ""
"Äčńęĺňŕňŕ ĺ óńďĺříî ńúçäŕäĺíŕ.\n"
"Ńĺăŕ ěîćĺňĺ äŕ ďđĺčăđŕĺňĺ číńňŕëŕöč˙ňŕ."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "Číńňŕëčđŕé"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "Äîáŕâ˙íĺ íŕ ďîňđĺáčňĺë"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "Äŕ ďđĺěŕőíŕ ëč loopback ôŕéëŕ ?"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9176,15 +9566,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9192,710 +9574,773 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Ëîř backup-ôŕéë"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "Ëîř backup-ôŕéë"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "Ëîř backup-ôŕéë"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#, c-format
+msgid ""
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "Ăđĺřęŕ ďđč ÷ĺňĺíĺňî íŕ ôŕéëŕ %s"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "Čçáîđ íŕ ďŕęĺňč"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Ěîë˙, čçáĺđĺňĺ ďŕęĺňčňĺ, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "Čçňđčâŕíĺ íŕ îďŕřęŕňŕ"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Ďđĺěŕőíč Windows(TM)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr "Ďîňđĺáčňĺëńęî čěĺ"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Ëîř backup-ôŕéë"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Ěîë˙, ďđîáâŕéňĺ ěčřęŕňŕ ńč"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "Ěîë˙, îďčňŕéňĺ îňíîâî"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "Ěîë˙, îďčňŕéňĺ îňíîâî"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "îůĺ âĺäíúć ďŕđîëŕ"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "LAN âđúçęŕ"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Čçáĺđĺňĺ âđúçęŕ ęúě ďđčíňĺđŕ"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Ěîë˙, čçáĺđĺňĺ ďîäđĺćäŕíĺ íŕ ęëŕâčŕňóđŕňŕ."
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Ěîë˙, öúęíĺňĺ íŕ íîńčňĺë˙"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr "Ěîë˙, čçáĺđĺňĺ ďŕęĺňčňĺ, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "Ëîř backup-ôŕéë"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Ěîë˙, čçáĺđĺňĺ ďŕęĺňčňĺ, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ."
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "Ěîë˙, ďđîáâŕéňĺ ěčřęŕňŕ ńč"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "Ëîř backup-ôŕéë"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "Ěđĺćîâ číňĺđôĺéń"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Âčä"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "Ďîňđĺáčňĺëńęî čěĺ"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Ěîë˙, čçáĺđĺňĺ ďŕęĺňčňĺ, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ."
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Ěîë˙, čçáĺđĺňĺ čçďîëçâŕí ĺçčę."
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Čńęŕňĺ ëč îďňčěčçŕöč˙ íŕ äčńęîâĺňĺ ?"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Čńęŕňĺ ëč îďňčěčçŕöč˙ íŕ äčńęîâĺňĺ ?"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
#, fuzzy
msgid "What"
msgstr "Ĺäčí ěîěĺíň"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr "Wheel"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr "Wheel"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "Îďöčč íŕ ěîäóëŕ:"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Íŕńňđîéęŕ íŕ ěđĺćŕňŕ"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Ěîë˙, čçáĺđĺňĺ ďŕęĺňčňĺ, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ."
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Ěîë˙, čçáĺđĺňĺ ďŕęĺňčňĺ, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ."
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "Ôŕéëîâč ńčńňĺěč"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Óńňđîéńňâî íŕ ěčřęŕňŕ: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1983
+#, c-format
+msgid ""
+"\n"
+"- Save via %s on host : %s\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Îďöčč"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Ěîë˙, čçáĺđĺňĺ ńĺđčĺí ďîđň ęúě ęîéňî ńâúđçŕí ěîäĺěúň âč."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "Íŕńňđîéęŕ íŕ ěđĺćŕňŕ"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "Ëîř backup-ôŕéë"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "Ěîë˙, čçáĺđĺňĺ ňčď íŕ ěčřęŕňŕ."
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Ëîř backup-ôŕéë"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Ěîë˙, ďđîáâŕéňĺ ěčřęŕňŕ ńč"
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "LAN âđúçęŕ"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Čçáĺđĺňĺ âđúçęŕ ęúě ďđčíňĺđŕ"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Âúçńňŕíîâč îň äčńęĺňŕ"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "Ěîë˙, čçáĺđĺňĺ ňčď íŕ ěčřęŕňŕ."
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "Äđóăŕ"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "Číńňŕëčđŕíĺ íŕ ńčńňĺěŕňŕ"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "Âúçńňŕíîâč îň ôŕéë"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "Âúçńňŕíîâč îň ôŕéë"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "Ęëčĺíňńęŕ"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/_Ďîěîů"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
#, fuzzy
msgid "Previous"
msgstr "<- Ďđĺäčřĺí"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr "Ńúńňî˙íčĺ"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "Ëîř backup-ôŕéë"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr "Âúçńňŕíîâč îň ôŕéë"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr "Ňĺęńň"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "Ďŕęĺňč çŕ číńňŕëčđŕíĺ"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Ńëĺäíčňĺ ďŕęĺňč ůĺ áúäŕň číńňŕëčđŕíč"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "Ěîë˙, čçáĺđĺňĺ čçďîëçâŕí ĺçčę."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "Ěîë˙, čçáĺđĺňĺ čçďîëçâŕí ĺçčę."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "Ěîë˙, čçáĺđĺňĺ čçďîëçâŕí ĺçčę."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "Ëîř backup-ôŕéë"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "Ëîř backup-ôŕéë"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "Ëîř backup-ôŕéë"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "Çŕďŕçč âúâ ôŕéë"
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "Ěîë˙, ďđîáâŕéňĺ ěčřęŕňŕ ńč"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr "Ěîë˙, čçáĺđĺňĺ ďŕęĺňčňĺ, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Íŕńňđîéęŕ íŕ ěđĺćŕňŕ"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "Íŕńňđîéęŕ íŕ ěđĺćŕňŕ"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "Íŕńňđîéęŕ"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "Íŕńňđîéęŕ íŕ ëîęŕëíŕ ěđĺćŕ"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "Ôŕéëîâč ńčńňĺěč"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9927,7 +10372,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9936,7 +10381,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9977,7 +10422,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -10005,12 +10450,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10027,7 +10477,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -10067,7 +10517,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -10078,7 +10528,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10091,7 +10541,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -10135,105 +10585,531 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Číńňŕëŕöč˙ňŕ íŕ %s ďđîâŕëĺíŕ. Ďî˙âč ńĺ ńëĺäíŕňŕ ăđĺřęŕ:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Ęîíçîëíč číńňđóěĺíňč"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "Ęîíňđîëĺí öĺíňúđ"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "çŕäúëćčňĺëĺí"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Ěčřęŕ"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Îňäŕëĺ÷ĺí ďđčíňĺđ"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Îáůî čěĺ"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Ďđčíňĺđ"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Ěŕăüîńíčę çŕ íŕńňđîéęŕ íŕ ěđĺćŕňŕ"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Čäĺíňčôčęŕöč˙"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Čçáîđ íŕ ďŕęĺňč"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Ěîë˙ čç÷ŕęŕéňĺ"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Čçőîä îň číńňŕëŕöčîííŕňŕ ďđîăđŕěŕ"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "ďîđň"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Ěîćĺňĺ äŕ čçáĺđĺňĺ äđóăč ĺçčöč, ęîčňî ůĺ áúäŕň íŕëčöĺ ńëĺäčíńňŕëŕöč˙ňŕ"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Íŕńňđîéęŕ íŕ ěđĺćŕňŕ (%d ŕäŕďňĺđŕ)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Ďđîôčë: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Čçňđîé ďđîôčë ..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Ďđîôčë çŕ čçňđčâŕíĺ:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Íîâ ďđîôčë ..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Čěĺ íŕ ńúçäŕâŕíč˙ ďđîôčë (íîâč˙ň ďđîôčë ńĺ ńúçäŕâŕ ęŕňî ęîďčĺ íŕ ňĺęóůč˙):"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Čěĺ íŕ őîńň:"
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Číňĺđíĺň äîńňúď"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Ňčď: "
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Gateway:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Číňĺđôĺéń:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Ńúńňî˙íčĺ:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Íŕńňđîéęŕ íŕ Číňĺđíĺň äîńňúďŕ ..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "Íŕńňđîéęŕ íŕ LAN"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Äđŕéâĺđ"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Číňĺđôĺéń"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Ďđîňîęîë"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Ńúńňî˙íčĺ"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Íŕńňîéęŕ íŕ ëîęŕëíŕ ěđĺćŕ ..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "Öúęíĺňĺ ňóę, çŕ äŕ ńňŕđňčđŕňĺ ěŕăüîńíčęŕ ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Ěŕăüîńíčę..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Ďđčëîćč"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Ěîë˙, ďî÷ŕęŕéňĺ ... Ďđčëŕăŕíĺ íŕ íŕńňđîéęčňĺ"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Ńâúđçŕí"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Íĺ ńâúđçŕí"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Ńâúđçâŕíĺ ..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Îňâúđçâŕíĺ ..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Í˙ěŕňĺ íŕńňđîĺí číňĺđôĺéń.\n"
+"Íŕńňđîéňĺ ăč ďđĺäč ňîâŕ, ęŕňî öúęíĺňĺ íŕ 'Íŕńňđîéęŕ'"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "Íŕńňđîéęŕ íŕ ëîęŕëíŕ ěđĺćŕ"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Ŕäŕďňĺđ %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Ńňŕđňčđŕů ďđîňîęîë"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Ďóńíŕň ďđč ńňŕđňčđŕíĺ"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP ęëčĺíň"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "ŕęňčâčđŕé ńĺăŕ"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "äĺŕęňčâčđŕé ńĺăŕ"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Í˙ěŕňĺ Internet âđúçęŕ.\n"
+"Ńúçäŕéňĺ ňŕęŕâŕ, ęŕňî öúęíĺňĺ íŕ 'Íŕńňđîé'"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Íŕńňđîéęŕ íŕ Číňĺđíĺň âđúçęŕ"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Íŕńňđîéęŕ íŕ Číňĺđíĺň âđúçęŕ"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Ňčď íŕ âđúçęŕňŕ: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Ďŕđŕěĺňđč"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Gateway"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Ethernet ęŕđňŕ"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP ęëčĺíň"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "čçďîëçâŕíĺ: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Čěĺ íŕ ěîäóë"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Ăîëĺěčíŕ"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "ńúäŕâŕíĺ íŕ ńňŕđňčđŕůŕ äčńęĺňŕ"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "ďî ďîäđŕáčđŕíĺ"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Ăđĺřęŕ DrakFloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "âĺđńč˙ íŕ ˙äđîňî"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Îńíîâíî"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Äîďúëíčňĺëíč"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrd äîďúëíčňĺëíč ŕđăóěĺíňč"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Äîáŕâč ěîäóëŕ"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "ďđčíóäčňĺëíî"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "ŕęî ĺ íóćíî"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "áĺç scsi ěîäóëč"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "áĺç raid ěîäóëč"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Ďđĺěŕőíč ěîäóëŕ"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Đĺçóëňŕň"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Ńúçäŕé äčńęúň"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Ďđîâĺđĺňĺ čěŕňĺ ëč äčńęĺňŕ â óńňđîéńňâîňî %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"Í˙ěŕ äčńęĺňŕ â óńňîéńňâîňî %s.\n"
+"Ěîë˙ ďîńňŕâĺňĺ äčńęĺňŕ."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Íĺ ěîćĺ äŕ ńĺ đŕáîňč ń: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Íĺěîćĺ äŕ ńĺ çŕňâîđč ďđŕâčëíî mkbootdisk: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "%s íĺ ĺ íŕěĺđĺíî"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr "Ăîňîâî"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
#, fuzzy
msgid "Fonts copy"
msgstr "Ôîđěŕňčđŕé äčńęĺňŕňŕ"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "Ďîäăîňâ˙ě číńňŕëŕöč˙ňŕ"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
#, fuzzy
msgid "Restart XFS"
msgstr "ńňŕđňčđŕé ăî"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "îăđŕíč÷č"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10242,123 +11118,122 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "Ôîđěŕňčđŕíĺ íŕ ä˙ëîâĺ"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
#, fuzzy
msgid "Uninstall Fonts"
msgstr "Äĺčíńňŕëčđŕě ďŕęĺňŕ"
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Íŕńňđîéęŕ íŕ ëîęŕëíŕ ěđĺćŕ"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr "Ě˙ńňî íŕ ěîíňčđŕíĺ"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Čçáĺđĺňĺ ä˙ëîâĺňĺ, ęîčňî čńęŕňĺ äŕ ôîđěŕňčđŕňĺ"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "Îôčń"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr "Îňęŕç"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr "Ďđčíňĺđ"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "Číńňŕëčđŕíĺ íŕ ńčńňĺěŕňŕ"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "Čçáĺđĺňĺ ôŕéë"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "Ďđĺěŕőâŕíĺ íŕ ďđčíňĺđŕ"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
#, fuzzy
msgid "Initials tests"
msgstr "Ńňŕđňîâî ńúîáůĺíčĺ"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr "Í˙ěŕňĺ ěđĺćîâ ŕäŕďňĺđ!"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "Číńňŕëčđŕé"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr "Í˙ěŕňĺ ěđĺćîâ ŕäŕďňĺđ!"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "Čçőîä îň číńňŕëŕöčîííŕňŕ ďđîăđŕěŕ"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Ńďîäĺë˙íĺ íŕ âđúçęŕňŕ ń Číňĺđíĺň"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Ńďîäĺë˙íĺňî íŕ âđúçęŕňŕ ęúě Číňĺđíĺň ĺ âĺ÷ĺ ŕęňčâčđŕíî"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10370,31 +11245,31 @@ msgstr ""
"\n"
"Ęŕęâî čńęŕňĺ äŕ íŕďđŕâčňĺ ?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "čçęëţ÷č"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "îńňŕâč"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "ďđĺíŕńňđîéęŕ"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Čçęëţ÷âŕíĺ íŕ ńúđâúđč ..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Ńďîäĺë˙íĺňî íŕ Číňĺđíĺň âđúçęŕňŕ â ěîěĺíňŕ ĺ čçęëţ÷ĺíî."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Ńďîäĺë˙íĺňî íŕ Číňĺđíĺň âđúçęŕňŕ ĺ čçęëţ÷ĺíî."
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10406,19 +11281,19 @@ msgstr ""
"\n"
"Ęŕęâî čńęŕňĺ äŕ íŕďđŕâčňĺ ?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "âęëţ÷č"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Âęëţ÷âŕíĺ íŕ ńúđâúđč ..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Ńďîäĺë˙íĺňî íŕ Číňĺđíĺň â ěîěĺíňŕ ĺ âęëţ÷ĺíî."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10434,21 +11309,21 @@ msgstr ""
"Îňáĺëĺćĺňĺ: ňđ˙áâŕ âč îňäĺëĺí çŕ ňîâŕ ěđĺćîâ ŕäŕďňĺđ, çŕ äŕ óńňŕíîâčňĺ "
"âúňđĺříŕňŕ ńč ěđĺćŕ (LAN)."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Číňĺđôĺéń %s (čçďîëçâŕů ěîäóë %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Číňĺđôĺéń %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Í˙ěŕňĺ ěđĺćîâ ŕäŕďňĺđ!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10456,11 +11331,11 @@ msgstr ""
"Â ńčńňĺěŕňŕ íĺ ĺ îňęđčň ethernet ěđĺćîâ ŕäŕďňĺđ. Ěîë˙, ńňŕđňčđŕéňĺ "
"číńňđóěĺíňŕ çŕ íŕńňđîéęŕ íŕ őŕđäóĺđ."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Ěđĺćîâ číňĺđôĺéń"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10475,19 +11350,19 @@ msgstr ""
"\n"
"Ńě˙ňŕě äŕ óńňŕíîâ˙ ëîęŕëíŕňŕ âč ěđĺćŕ íŕ ňîçč ŕäŕďňĺđ."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Ěîë˙ čçáĺđĺňĺ ęîé ěđĺćîâ ŕäŕďňĺđ äŕ áúäĺ âęëţ÷ĺí ęúě ëîęŕëíŕňŕ âč ěđĺćŕ."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "Ôóíęöčîíŕëíîńňňŕ íŕ ěđĺćŕňŕ íĺ ĺ íŕńňđîĺíŕ"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10497,17 +11372,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Ŕâňîěŕňč÷íŕ íŕńňđîéęŕ íŕ CUPS"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "Ďîďđŕâč íŕńňđîéęčňĺ íŕ ďđčíňĺđ"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10518,7 +11393,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
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 C-Class Network that "
@@ -10530,33 +11405,33 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP íŕ CUPS ńúđâúđŕ"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Âúçěîćĺí ęîíôčęň ń ŕäđĺńčňĺ â LAN ń íŕńňđîéęŕňŕ íŕ %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Îňęđčňŕ ĺ íŕńňđîéęŕ íŕ Çŕůčňíŕ Ńňĺíŕ !"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10564,21 +11439,21 @@ msgstr ""
"Âíčěŕíčĺ ! Îňęđčňŕ ĺ íŕńňđîéęŕ íŕ Çŕůčňíŕ Ńňĺíŕ. Ěîćĺ äŕ ńĺ íŕëîćč í˙ęŕęâŕ "
"đú÷íŕ ďîďđŕâęŕ ńëĺä číńňŕëŕöč˙ňŕ."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Íŕńňđîéęŕ ..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Íŕńňđîéâŕůč ńęđčďňîâĺ, číńňŕëčđŕíĺ íŕ ńîôňóĺđ, ńňŕđňčđŕíĺ íŕ ńúđâúđč..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Ďđîáëĺěč ń číńňŕëčđŕíĺňî íŕ ďŕęĺňŕ %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10588,23 +11463,23 @@ msgstr ""
"Ńĺăŕ ěîćĺňĺ äŕ ńďîäĺëčňĺ Číňĺđíĺň âđúçęŕňŕ ńč ń äđóăč ęîěďţňđč â ëîęŕëíŕňŕ "
"âč ěđĺćŕ čçďîëçâŕéęč ŕâňîěŕňč÷íŕ ěđĺćîâŕ íŕńňđîéęŕ (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "Óńňŕíîâęŕňŕ âĺ÷ĺ ĺ íŕďđŕâĺíŕ, íî â ěîěĺíňŕ ĺ čçęëţ÷ĺíŕ."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Óńňŕíîâęŕňŕ âĺ÷ĺ ĺ íŕďđŕâĺíŕ č â ěîěĺíňŕ ĺ âęëţ÷ĺíŕ."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Í˙ěŕ íŕńňđîéâŕíî ńďîäĺë˙íĺ íŕ Číňĺđíĺň âđúçęŕňŕ."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Íŕńňđîéęŕ íŕ ńďîäĺë˙íĺňî íŕ Číňĺđíĺň âđúçęŕňŕ"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10619,211 +11494,6 @@ msgstr ""
"\n"
"Öúęíĺňĺ ``Íŕńňđîé'', ŕęî čńęŕňĺ äŕ ńňŕđňčđŕíĺ óńňŕíîâ˙âŕůč˙ ěŕăüîńíčę."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Íŕńňđîéęŕ íŕ ěđĺćŕňŕ (%d ŕäŕďňĺđŕ)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Ďđîôčë: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Čçňđîé ďđîôčë ..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Ďđîôčë çŕ čçňđčâŕíĺ:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Íîâ ďđîôčë ..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Čěĺ íŕ ńúçäŕâŕíč˙ ďđîôčë (íîâč˙ň ďđîôčë ńĺ ńúçäŕâŕ ęŕňî ęîďčĺ íŕ ňĺęóůč˙):"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Čěĺ íŕ őîńň:"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Číňĺđíĺň äîńňúď"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Ňčď: "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Číňĺđôĺéń:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Ńúńňî˙íčĺ:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Íŕńňđîéęŕ íŕ Číňĺđíĺň äîńňúďŕ ..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Íŕńňđîéęŕ íŕ LAN"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Äđŕéâĺđ"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Číňĺđôĺéń"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Ďđîňîęîë"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Ńúńňî˙íčĺ"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Íŕńňîéęŕ íŕ ëîęŕëíŕ ěđĺćŕ ..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Öúęíĺňĺ ňóę, çŕ äŕ ńňŕđňčđŕňĺ ěŕăüîńíčęŕ ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Ěŕăüîńíčę..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Ďđčëîćč"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Ěîë˙, ďî÷ŕęŕéňĺ ... Ďđčëŕăŕíĺ íŕ íŕńňđîéęčňĺ"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Ńâúđçŕí"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Íĺ ńâúđçŕí"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Ńâúđçâŕíĺ ..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Îňâúđçâŕíĺ ..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Í˙ěŕňĺ íŕńňđîĺí číňĺđôĺéń.\n"
-"Íŕńňđîéňĺ ăč ďđĺäč ňîâŕ, ęŕňî öúęíĺňĺ íŕ 'Íŕńňđîéęŕ'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Íŕńňđîéęŕ íŕ ëîęŕëíŕ ěđĺćŕ"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Ŕäŕďňĺđ %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Ńňŕđňčđŕů ďđîňîęîë"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Ďóńíŕň ďđč ńňŕđňčđŕíĺ"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP ęëčĺíň"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "ŕęňčâčđŕé ńĺăŕ"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "äĺŕęňčâčđŕé ńĺăŕ"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Í˙ěŕňĺ Internet âđúçęŕ.\n"
-"Ńúçäŕéňĺ ňŕęŕâŕ, ęŕňî öúęíĺňĺ íŕ 'Íŕńňđîé'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Íŕńňđîéęŕ íŕ Číňĺđíĺň âđúçęŕ"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Íŕńňđîéęŕ íŕ Číňĺđíĺň âđúçęŕ"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Ňčď íŕ âđúçęŕňŕ: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Ďŕđŕěĺňđč"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernet ęŕđňŕ"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP ęëčĺíň"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Čçáĺđĺňĺ íčâî íŕ ńčăóđíîńň"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Ęîíňđîëĺí öĺíňúđ"
@@ -10832,94 +11502,130 @@ msgstr "Ęîíňđîëĺí öĺíňúđ"
msgid "Choose the tool you want to use"
msgstr "Čçáĺđĺňĺ číńňđóěĺíňŕ, ęîéňî čńęŕňĺ äŕ čçďîëçâŕňĺ"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\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 ""
+
+#: ../../standalone/drakxtv_.c:72
#, fuzzy
msgid "Canada (cable)"
msgstr "Ęŕíŕäńęŕ (Ęâĺáĺę)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "East Europe"
msgstr "Ĺâđîďŕ"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Ôđŕíöč˙"
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr "Čńëŕíäńęŕ"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "West Europe"
msgstr "Ĺâđîďŕ"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr "ńĺđčéíŕ"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Ďî˙âč ńĺ ăđĺřęŕ ďđč číńňŕëčđŕíĺ íŕ ďŕęĺňčňĺ:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10965,7 +11671,7 @@ msgstr "Íĺ ěîăŕ äŕ ďóńíŕ îáíîâ˙âŕíĺňî !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "ëîăäđĺéę"
@@ -10979,7 +11685,7 @@ msgstr "/Ôŕéë/_Íîâ"
#: ../../standalone/logdrake_.c:102
msgid "<control>N"
-msgstr "<ęîíňđîë>N"
+msgstr "<control>N"
#: ../../standalone/logdrake_.c:103
msgid "/File/_Open"
@@ -10987,7 +11693,7 @@ msgstr "/Ôŕéë/_Îňâîđč"
#: ../../standalone/logdrake_.c:103
msgid "<control>O"
-msgstr "<ęîíňđîë>O"
+msgstr "<control>O"
#: ../../standalone/logdrake_.c:104
msgid "/File/_Save"
@@ -10995,11 +11701,11 @@ msgstr "/Ôŕéë/_Çŕďčń"
#: ../../standalone/logdrake_.c:104
msgid "<control>S"
-msgstr "<ęîíňđîë>S"
+msgstr "<control>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
-msgstr "/Ôŕéë/Çŕďčřč _Ęŕňî"
+msgstr "/Ôŕéë/Çŕďčń _ęŕňî"
#: ../../standalone/logdrake_.c:106
msgid "/File/-"
@@ -11013,13 +11719,9 @@ msgstr "/_Îďöčč"
msgid "/Options/Test"
msgstr "/Îďöčč/Ňĺńň"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Ďîěîů"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
-msgstr "/Ďîěîů/_Çŕ..."
+msgstr "/Ďîěîů/_Îňíîńíî..."
#: ../../standalone/logdrake_.c:118
msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
@@ -11080,7 +11782,7 @@ msgstr "Ęŕëĺíäŕđ"
msgid "Content of the file"
msgstr "Ńúäúđćŕíčĺ íŕ ôŕéëŕ"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -11089,12 +11791,12 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr "ěîë˙ čç÷ŕęŕéňĺ, ďđŕâ˙ đŕçáîđ íŕ ôŕéë: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "Íŕńňđîéęŕ íŕ LILO/Grub"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
#, fuzzy
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
@@ -11106,69 +11808,98 @@ msgstr ""
"Ňóę ůĺ ěîćĺňĺ äŕ óńňŕíîâčňĺ âŕřčňĺ HTTP č FTP proxy\n"
"ńúń čëč áĺç ďîňđĺáčňĺëńęî čěĺ č ďŕđîëŕ\n"
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache č Pro-ftpd"
-
#: ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid "sshd"
-msgstr "shadow"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Čěĺ íŕ äîěĺéíŕ"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "Čçëĺç"
+msgid "Ftp Server"
+msgstr "NIS ńúđâúđ"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Postfix ďîůĺíńęč ńúđâúđ, Inn íîâčíŕđńęč ńúđâúđ"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS ńúđâúđ"
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "NIS ńúđâúđ"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Óńëóăč"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Ńúđâúđ íŕ ďđčíňĺđŕ"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "číňĺđĺńĺí"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "Ôîđěŕňčđŕíĺ"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "Íŕńňđîéęŕ íŕ öâĺňîâĺ"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Çŕďŕçč ęŕňî..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Ěîë˙, čçáĺđĺňĺ ňčď íŕ ěčřęŕňŕ."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "íĺ ĺ íŕěĺđĺí serial_usb\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Äŕ ńčěóëčđŕě ëč ňđĺňč áóňîí ?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "×ĺňĺíĺ íŕ äŕííč îň ďđčíňĺđŕ ..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "Çŕńč÷ŕíĺ íŕ óńňđîéńňâŕ ..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -11212,6 +11943,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "Íŕńňđîéęŕ íŕ Çŕůčňíŕ Ńňĺíŕ"
@@ -11615,10 +12358,6 @@ msgid "Multimedia - Sound"
msgstr "Ěóňčěĺäč˙ - Çâóę"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Číńňđóěĺíňč"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Äîęóěĺíňŕöč˙"
@@ -11723,10 +12462,6 @@ msgstr ""
"tin..) č çŕ îáčęŕë˙íĺ čç Ěđĺćŕňŕ"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Ŕđőčâčđŕřč, ĺěóëŕöč˙, íŕáëţäĺíčĺ"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Ëč÷íč ôčíŕíńč"
@@ -11773,2126 +12508,218 @@ msgstr "Ěóëňčěĺäč˙ - îďč÷ŕíĺ íŕ CD"
msgid "Scientific Workstation"
msgstr "Íŕó÷íŕ đŕáîňíŕ ńňŕíöč˙"
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Îňęŕç"
-
-#, fuzzy
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#~ msgid ""
-#~ "Can't access kernel modules corresponding to your kernel (file %s is "
-#~ "missing)"
-#~ msgstr ""
-#~ "Íĺ ěîăŕ äŕ îńúůĺńňâ˙ äîńňúď äî ěîäóëčňĺ íŕ ˙äđîňî ńúîňâĺňńâŕůč íŕ ˙äđîňî "
-#~ "âč (ôŕéëúň %s ëčďńâŕ)"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#~ msgid "None"
-#~ msgstr "Íčęŕęúâ"
-
-#~ msgid "Choose a default printer!"
-#~ msgstr "Čçáĺđĺňĺ ďđčíňĺđ ďî ďîäđŕçáčđŕíĺ"
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "fsck čçëĺçĺ ń čçőîäĺí ęîä %d čëč ńčăíŕë %d"
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Ďđčëŕăŕíĺ/Ďđĺďđî÷čň íŕ ďđčíňĺđčňĺ"
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Čäĺíňčôčęŕöč˙ íŕ ăđŕôč÷íŕňŕ ęŕđňŕ: %s\n"
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Ńĺăŕ ěîćĺňĺ äŕ ďîäŕäĺňĺ îďöččňĺ ěó ęúě ěîäóëŕ %s."
+#~ msgid "Choose options for server"
+#~ msgstr "Čçáĺđĺňĺ îďöčč çŕ ńúđâúđŕ"
-#~ msgid "mount failed"
-#~ msgstr "ěîíňčđŕíĺňî íĺ óńď˙"
+#~ msgid "Monitor not configured"
+#~ msgstr "Ěîíčňîđúň íĺ ĺ íŕńňđîĺí"
-#~ msgid "Low"
-#~ msgstr "Ńëŕáî"
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Ăđŕôč÷íŕňŕ ęŕđňŕ âńĺ îůĺ íĺ ĺ íŕńňđîĺíŕ"
-#~ msgid "Medium"
-#~ msgstr "Ńđĺäĺíî"
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Îůĺ íĺ ĺ čçáđŕíŕ đŕçäĺëčňĺëíŕ ńďîńîáíîńň"
#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Í˙ęîč ďîäîáđĺíč˙ çŕ ňîâŕ íčâî íŕ ńčăóđíîńň. Ăëŕâíîňî ĺ, ÷ĺ čěŕ ďîâĺ÷ĺ\n"
-#~ "ďđĺäóďđĺćäĺíč˙ č ďđîâĺđęč çŕ ńčăóđíîńň."
-
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr "Ěóëňčěĺäč˙"
-
-#~ msgid "Boot mode"
-#~ msgstr "Đĺćčě íŕ ńňŕđňčđŕíĺ"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Ĺęńďĺđňíŕ"
-
-#, fuzzy
-#~ 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\n"
#~ "\n"
+#~ "try to change some parameters"
#~ msgstr ""
-#~ "Çŕ äŕ âčäčňĺ ńďčńúę íŕ äîńňúďíčňĺ îďöčč çŕ ňĺęóůč˙ ďđčíňĺđ, čëč ďđî÷ĺňĺňĺ "
-#~ "ńďčńúęŕ ďîęŕçŕí ďî-äîëó čëč öúęíĺňĺ íŕ áóňîíŕ \"Ńďčńúę ń îďöčč çŕ ďĺ÷ŕň"
-#~ "\".\n"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "GNU/Linux đŕáîňč ń âđĺěĺ ďî GMT (Âđĺěĺ ďî Ăđčíóč÷)\n"
-#~ "č ăî ďđĺâĺćäŕ â ëîęŕëíî âđĺěĺ â çŕâčńčěîńň îň çîíŕňŕ, ęî˙ňî ńňĺ čçáđŕëč."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "Ńâúđćč ńĺ ęúě Číňĺđíĺň"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Îňâúđćč ńĺ îň Číňĺđíĺň"
-
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Íŕńňđîéęŕ íŕ ěđĺćîâŕňŕ âđúçęŕ (LAN čëč Číňĺđíĺň)"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Íŕ ęîé äčńę čńęŕňĺ äŕ ăî ďđĺěĺńňčňĺ ?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Ěîë˙, čçáĺđĺňĺ ďŕęĺňčňĺ, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ."
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Číôîđěŕöč˙"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Gnome đŕáîňíŕ ńňŕíöč˙"
-
-#~ msgid "authentification"
-#~ msgstr "óäîńňîâĺđ˙âŕíĺ"
-
-#~ msgid "user"
-#~ msgstr "ďîňđĺáčňĺë"
-
-#, fuzzy
-#~ msgid ""
-#~ "Apache is a World Wide Web server. It is used to serve HTML files and "
-#~ "CGI."
-#~ msgstr ""
-#~ "Apache ĺ World Wide Web (WWW) ńúđâúđ. Ňîé ńëóćč äŕ îáđŕáîňâŕ íŕ HTML "
-#~ "ôŕéëîâĺ\n"
-#~ "č CGI."
-
-#~ msgid ""
-#~ "named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
-#~ "host names to IP addresses."
-#~ msgstr ""
-#~ "named (BIND) ĺ Domain Name Server (DNS), ęîéňî ńĺ čçďîëçâŕ äŕ ďđĺâúđíĺ\n"
-#~ "čěĺňî íŕ őîńňŕ äî IP ŕäđĺń."
-
-#, fuzzy
-#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
#~ "\n"
-#~ msgstr "Ěîë˙, čçáĺđĺňĺ ňčď íŕ ěčřęŕňŕ."
+#~ "îďčňŕéňĺ ńĺ äŕ ďđîěĺíčňĺ í˙ęîč ďŕđŕěĺňđč"
-#~ msgid "Scanning available nfs shared resource"
-#~ msgstr "Ňúđńĺíĺ íŕ äîńňúďíč NFS ńďîäĺëĺíč đĺńóđńč"
+#~ msgid "An error occurred:"
+#~ msgstr "Ďî˙âč ńĺ ăđĺřęŕ:"
-#~ msgid "Scanning available nfs shared resource of server %s"
-#~ msgstr "Ňúđńĺíĺ çŕ äîńňúďíč NFS đĺńóđńč íŕ ńúđâúđ %s"
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Čçőîä äî %d ńĺęóíäč"
-#~ msgid "Scanning available samba shared resource"
-#~ msgstr "Ńęŕíčđŕíĺ íŕ äîńňúďíčňĺ SAMBA ďîäĺëĺíč đĺńóđńč"
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Âĺđíč ëč ńŕ íŕńňđîéęčňĺ ?"
-#~ msgid "Scanning available samba shared resource of server %s"
-#~ msgstr "Ńęŕíčđŕíĺ íŕ äîńňúďíčňĺ SAMBA ďîäĺëĺíč đĺńóđńč íŕ ńúđâúđ %s"
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Ďî˙âč ńĺ ăđĺřęŕ, îďčňŕéňĺ ńĺ äŕ ďđîěĺíčňĺ í˙ęîč ďŕđŕěĺňđč"
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "Čçőîä"
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 ńúđâúđ: %s"
-#~ msgid "Removable media"
-#~ msgstr "Ńěĺí˙ĺě íîńčňĺë"
+#~ msgid "Show all"
+#~ msgstr "Ďîęŕćč âńč÷ęč"
-#~ msgid "Active"
-#~ msgstr "Ŕęňčâčđŕé"
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Ďîäăîňîâęŕ çŕ íŕńňđîéâŕíĺ íŕ X-Window"
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "Íĺ"
+#~ msgid "What do you want to do?"
+#~ msgstr "Ęŕęâî čńęŕňĺ äŕ íŕďđŕâčňĺ?"
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "Ďđčíňĺđ îň ěîäĺëŕ \"%s\", ĺ íŕěĺđĺí íŕ "
+#~ msgid "Change Monitor"
+#~ msgstr "Ďđîěĺíĺňĺ ěîíčňîđŕ"
-#~ msgid "Local Printer Device"
-#~ msgstr "Ëîęŕëíî ďĺ÷ŕňŕůî óńňđîéńňâî"
+#~ msgid "Change Graphics card"
+#~ msgstr "Ďđîěĺíĺňĺ ăđŕôč÷íŕňŕ ęŕđňŕ"
-#~ msgid "Printer Device"
-#~ msgstr "Ďĺ÷ŕňŕůî óńňđîéńňâî"
+#~ msgid "Change Server options"
+#~ msgstr "Ďđîěĺíĺňĺ îďöččňĺ íŕ ńúđâúđŕ"
-#~ msgid "Device/file name missing!"
-#~ msgstr "Ëčďńâŕ čěĺ íŕ óńňđîéńňâî/ôŕéë !"
+#~ msgid "Change Resolution"
+#~ msgstr "Ďđîěĺíĺňĺ đŕçäĺëčňĺëíŕňŕ ńďîńîáíîńň"
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Ďđčíňĺđ(č) íŕ îňäŕëĺ÷ĺí(č) CUPS ńúđâúđ(č)"
+#~ msgid "Show information"
+#~ msgstr "Ďîęŕćč číôîđěŕöč˙ňŕ"
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "Ďđčíňĺđ(č) íŕ îňäŕëĺ÷ĺí(č) ńúđâúđ(č)"
+#~ msgid "Test again"
+#~ msgstr "Ňĺńňâŕé îňíîâî"
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
+#~ msgid "Setting security level"
+#~ msgstr "Čçáĺđĺňĺ íčâî íŕ ńčăóđíîńň"
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Ńčńňĺěŕ"
+#~ msgid "Graphics card"
+#~ msgstr "Ăđŕôč÷íŕ ęŕđňŕ"
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "Äđóăŕ"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Ěîë˙, čçáĺđĺňĺ ďîäđĺćäŕíĺ íŕ ęëŕâčŕňóđŕňŕ."
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Ěîë˙, öúęíĺňĺ íŕ íîńčňĺë˙"
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Âčä: "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Ëîř backup-ôŕéë"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "Íŕńňđîéęŕ íŕ Ő"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Ďĺ÷ŕňŕůî óńňđîéńňâî"
+#~ msgid "Select a graphics card"
+#~ msgstr "Čçáĺđĺňĺ ăđŕôč÷íŕ ęŕđňŕ"
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Îňě˙íŕ"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "Ok"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Çŕňâîđč"
-
-#~ msgid "Starting your connection..."
-#~ msgstr "Ńňŕđňčđŕíĺ íŕ âđúçęŕňŕ ...."
-
-#~ msgid "Closing your connection..."
-#~ msgstr "Çŕňâŕđ˙íĺ íŕ âđúçęŕňŕ âč ..."
-
-#~ msgid ""
-#~ "The connection is not closed.\n"
-#~ "Try to do it manually by running\n"
-#~ "/etc/sysconfig/network-scripts/net_cnx_down\n"
-#~ "in root."
-#~ msgstr ""
-#~ "Âđúçęŕňŕ íĺ ĺ çŕňâîđĺíŕ.\n"
-#~ "Îďčňŕéňĺ ńĺ äŕ ăî íŕďđŕâčňĺ đú÷íî, ęŕňî ńňŕđňčđŕňĺ\n"
-#~ "/etc/sysconfig/network-scripts/net_cnx_down\n"
-#~ "ęŕňî root."
-
-#~ msgid "The system is now disconnected."
-#~ msgstr "Ńčńňĺěŕňŕ â ěîěĺíňŕ íĺ ĺ ńâúđçŕíŕ."
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Čçáĺđĺňĺ ăîëĺěčíŕňŕ, ęî˙ňî čńęŕňĺ äŕ číńňŕëčđŕňĺ"
-
-#~ msgid "Total size: "
-#~ msgstr "Îáůŕ ăîëĺěčíŕ: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Ěîë˙, čç÷ŕęŕéňĺ, "
-
-#~ msgid "Total time "
-#~ msgstr "Îáůŕ ďđîäúëćčňĺëíîńň "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "Äŕ čçďîëçâŕě ëč ńĺăŕříŕňŕ íŕńňđîéęŕ íŕ X11 ?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
+#~ msgid "Warning: testing this graphics card may freeze your computer"
#~ msgstr ""
-#~ "Ęúäĺ ĺ ńâúđçŕí âŕřč˙ ďđčíňĺđ \n"
-#~ "(çŕáĺëĺćęŕ: /dev/lp0 ĺ ĺęâčâŕëĺíňíî íŕ LPT1) ?\n"
+#~ "Âíčěŕíčĺ: ňĺńňâŕíĺňî íŕ ňŕçč ăđŕôč÷íŕ ęŕđňŕ ěîćĺ äŕ \"çŕěđŕçč\" ęîěďţňúđŕ "
+#~ "âč"
-#~ msgid "%s"
-#~ msgstr "%s"
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Standard VGA, 640x480 íŕ 60 Hz"
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr "Âíčěŕíčĺ, ěđĺćîâč˙ň ŕäŕďňĺđ âĺ÷ĺ ĺ íŕńňđîĺí. Ůĺ ăî ďđĺíŕńňđî˙."
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 íŕ 56 Hz"
-#~ msgid "New"
-#~ msgstr "Íîâ"
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514-ńúâěĺńňčě, 1024x768 íŕ 87 Hz interlaced (í˙ěŕ 800x600)"
-#~ msgid "Remote"
-#~ msgstr "Îňäŕëĺ÷ĺí"
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 íŕ 87 Hz interlaced, 800x600 íŕ 56 Hz"
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr ""
-#~ "Ěîë˙, öúęíĺňĺ íŕ áóňîíŕ ďî-ăîđĺ\n"
-#~ "\n"
-#~ "Čëč čçďîëçâŕéňĺ \"Íîâ\""
-
-#~ msgid "Use \"New\""
-#~ msgstr "Čçďîëçâŕéňĺ \"Íîâ\""
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Extended Super VGA, 800x600 íŕ 60 Hz, 640x480 íŕ 72 Hz"
-#~ msgid "If the list above doesn't contain the wanted entry, enter it here:"
-#~ msgstr "Ŕęî ńďčńúęúň ďî-ăîđĺ íĺ ńúäúđćŕ čńęŕíč˙ ĺëĺěĺíň, âúâĺäĺňĺ ăî ňóę:"
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Non-Interlaced SVGA, 1024x768 íŕ 60 Hz, 800x600 íŕ 72 Hz"
-#~ msgid "Shared resource"
-#~ msgstr "Ďîäĺëĺíč đĺńóđńč"
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "Âčńîęî÷ĺńňîňĺí SVGA, 1024x768 íŕ 70 Hz"
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "..... (%s), áúäĺňĺ ďî-ňî÷ĺí\n"
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Ěíîăî÷ĺńňîňĺí ěîíčňîđ, ęîéňî äîńňčăŕ 1280x1024 íŕ 60 Hz"
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (ďî ďîäđŕçáčđŕíĺ ĺ %s)"
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Ěíîăî÷ĺńňîňĺí ěîíčňîđ, ęîéňî äîńňčăŕ 1280x1024 íŕ 74 Hz"
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "Âŕřč˙ň čçáîđ ? (ďî ďîäđŕçáčđŕíĺ %s, âúâĺäĺňĺ 'none' çŕ íčęîé)"
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Ěíîăî÷ĺńňîňĺí ěîíčňîđ, ęîéňî äîńňčăŕ 1280x1024 íŕ 76 Hz"
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "íĺ ěîăŕ äŕ îňâîđ˙ /etc/sysconfig/autologin çŕ ÷ĺňĺíĺ: %s"
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Ěîíčňîđ, ęîéňî äîńňčăŕ 1600x1200 íŕ 70 Hz"
-#~ msgid "Do you want to restart the network"
-#~ msgstr "Čńęŕňĺ ëč äŕ đĺńňŕđňčđŕě ěđĺćŕňŕ ?"
-
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "Ńúăëŕńíč ëč ńňĺ ?"
-
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Íŕ ďúň ńúě äŕ đĺńňŕđňčđŕě ěđĺćîâîňî óńňđîéńňâî:\n"
-
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr ""
-#~ "Íŕ ďúň ńúě äŕ đĺńňŕđňčđŕě ěđĺćîâîňî óńňđîéńňâî %s. Ńúăëŕńíč ëč ńňĺ ?"
-
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Îńâĺí ŕęî íĺ ńňĺ ńčăóđíč â îáđŕňíîňî, îáčęíîâĺíč˙ čçáîđ ĺ \"/dev/hda\"\n"
-#~ "(ďúđâč âîäĺůî IDE äčńę) čëč \"/dev/sda\" (ďúđâč SCSI äčńę)."
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Ěîíčňîđ, ęîéňî äîńňčăŕ 1600x1200 íŕ 76 Hz"
#~ msgid ""
-#~ "The following printers are configured.\n"
-#~ "You can add some more or modify the existing ones."
-#~ msgstr ""
-#~ "Ńëĺäíčňĺ ďđčíňĺđč ńŕ íŕńňđîĺíč.\n"
-#~ "Ěîćĺňĺ äîáŕâčňĺ îůĺ čëč äŕ ďđîěĺíčňĺ ńúůĺńňâóâŕůčňĺ."
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Îáůŕňŕ ăîëĺěčíŕ íŕ ăđóďčňĺ, ęîčňî ńňĺ ěŕđęčđŕëč, ĺ îęîëî %d MB.\n"
#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
#~ "\n"
-#~ "If you continue, I will shut down your %s environnement"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
+#~ "Ŕęî čńęŕňĺ äŕ číńňŕëčđŕňĺ ďî-ěŕëęî îň ňŕçč ăîëĺěčíŕ,\n"
+#~ "čçáĺđĺňĺ ďđîöĺíň ďŕęĺňč, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ.\n"
#~ "\n"
-#~ "Ŕęî ďđîäúëćčňĺ, ůĺ ńďđŕ %s ńđĺäŕňŕ âč"
+#~ "Ďđč íčńúę ďđîöĺíň ůĺ ńĺ číńňŕëčđŕň ńŕěî íŕé-âŕćíčňĺ ďŕęĺňč;\n"
+#~ "ďđč 100%% ůĺ číńňŕëčđŕň âńč÷ęč ěŕđęčđŕíč ďŕęĺňč."
#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
#~ "\n"
-#~ "Warning:\n"
-#~ "Applying the changes while running may crash your X environnement."
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
#~ msgstr ""
+#~ "Čěŕňĺ ě˙ńňî íŕ äčńęŕ ńč ńŕěî çŕ %d%% îň ňĺçč ďŕęĺňč.\n"
#~ "\n"
-#~ "Âíčěŕíčĺ:\n"
-#~ "Ďđčëŕăŕéęč íŕ ďđîěĺíčĺ ďî âđĺěĺ íŕ đŕáîňŕ ěîćĺ äŕ ńúńčďĺ X ńđĺäŕňŕ âč."
-
-#~ msgid "%s is already in use"
-#~ msgstr "Ĺňčęĺňúň %s ńĺ čçďîëçâŕ âĺ÷ĺ"
-
-#~ msgid "(may cause data corruption)"
-#~ msgstr "(ěîćĺ äŕ ďđč÷číč çŕăóáŕ íŕ äŕííč)"
-
-#~ msgid "A command line must be entered!"
-#~ msgstr "Ňđ˙áâŕ äŕ âúâĺäĺňĺ ęîěŕíäĺí đĺä !"
+#~ "Ŕęî čńęŕňĺ äŕ číńňŕëčđŕňĺ ďî-ěŕëęî îň ňîâŕ,\n"
+#~ "čçáĺđĺňĺ ďđîöĺíň îň ďŕęĺňčňĺ, ęîčňî číńęŕňĺ äŕ číńňŕëčđŕňĺ.\n"
+#~ "Ďđč íčńúę ďđîöĺíň ůĺ ńĺ číńňŕëčđŕň ńŕěî íŕé-âŕćíčňĺ ďŕęĺňč;\n"
+#~ "ďđč %d%% ůĺ číńňŕëčđŕň âńč÷ęč čçáđŕíč ďŕęĺňč."
-#~ msgid "ADSL configuration"
-#~ msgstr "Íŕńňđîéęŕ íŕ ADSL"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Ůĺ čěŕňĺ âúçěîćíîńňňŕ äŕ čçáĺđĺňĺ ďî-ňî÷íî ďđč ńëĺäâŕůč˙ ĺňŕď."
-#~ msgid "Adapter"
-#~ msgstr "Ŕäŕďňĺđ"
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Ďđîöĺíň ďŕęĺňč çŕ číńňŕëčđŕíĺ"
-#~ msgid "Add location of packages"
-#~ msgstr "Äîáŕâč ě˙ńňî íŕ ďŕęĺňčňĺ"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Čçáĺđĺňĺ íčâî íŕ ńčăóđíîńň"
-#~ msgid "After formatting all partitions,"
-#~ msgstr "Ńëĺä ôîđěŕňčđŕíĺ íŕ âńč÷ęč ä˙ëîâĺ,"
+#~ msgid "hide expert mode"
+#~ msgstr "áĺç đŕçřčđĺíč ôóíęčöčč"
-#~ msgid "Alcatel modem"
-#~ msgstr "Ěîäĺě Alcatel"
+#~ msgid "show expert mode"
+#~ msgstr "ńúń đŕçřčđĺíč ôóíęčöčč"
#~ msgid ""
-#~ "Are you sure you are an expert? \n"
-#~ "You will be allowed to make powerful but dangerous things here.\n"
-#~ "\n"
-#~ "You will be asked questions such as: ``Use shadow file for passwords?'',\n"
-#~ "are you ready to answer that kind of questions?"
+#~ "If '%s' is a removable peripheral,\n"
+#~ " verify that a media is inserted."
#~ msgstr ""
-#~ "Ńčăóđíč ëč ńňĺ, ÷ĺ ńňĺ ĺęńďĺđň ?\n"
-#~ "Ňóę ůĺ âč áúäŕň ďîçâîëĺíč ěîůíč, íî îďŕńíč íĺůŕ.\n"
-#~ "Ŕęî Âč áúäĺ çŕäŕäĺí âúďđîń: ``Use shadow file for passwords?'',\n"
-#~ "ůĺ ěîćĺňĺ ëč äŕ ăî đŕáĺđĺňĺ č îňăîâîđčňĺ?"
-
-#~ msgid "Auto install floppy"
-#~ msgstr "Ŕâňîěŕňč÷íî číńňŕëčđŕíĺ îň ôëîďč"
-
-#~ msgid "Automatic dependencies"
-#~ msgstr "Ŕâňîěŕňč÷íč çŕâčńčěîńňč"
-
-#~ msgid "Available packages"
-#~ msgstr "Íŕëč÷íč ďŕęĺňč"
+#~ "Ŕęî '%s' ĺ ďđĺíîńčěŕ ďĺđčôĺđč˙,\n"
+#~ " ďđîâĺđĺňĺ äŕëč íîńčňĺë˙ ĺ ďîńňŕâĺí"
#~ msgid ""
-#~ "Be carefull, having numlock enabled causes a lot of keystrokes to\n"
-#~ "give digits instead of normal letters (eg: pressing `p' gives `6')"
+#~ "WARNING! This will format '%s'.\n"
+#~ "All data will be erased on the peripheral '%s'.\n"
+#~ "If you want to continue, press OK. "
#~ msgstr ""
-#~ "Âíčěŕíčĺ, ŕęî ĺ âęëţ÷ĺí numlock ěîćĺ äŕ äîâĺäĺ äî čçâĺćäŕíĺňî íŕ\n"
-#~ "÷čńëŕ âěĺńňî áóęâč (íŕďđčěĺđ: íŕňčńęŕéęč 'p' äŕâŕ '6')"
+#~ "ÂÍČĚŔÍČĹ! Ňŕęŕ ůĺ ôîđěŕňčđŕňĺ '%s'.\n"
+#~ "Âńč÷ęč äŕííč â íîńčňĺë˙ '%s' ůĺ áúäŕň čçňđčňč.\n"
+#~ "Ŕęî čńęŕňĺ äŕ ďđîäúëćčňĺ, íŕňčńíĺňĺ ÎĘ. "
-#~ msgid "Boot style configuration"
-#~ msgstr "Íŕńňđîéęŕ íŕ íŕ÷číŕ íŕ ńňŕđňčđŕíĺ"
+#~ msgid "unknown"
+#~ msgstr "íĺďîçíŕňî"
-#~ msgid "CUPS starting"
-#~ msgstr "Ńňŕđňčđŕíĺ íŕ CUPS"
-
-#~ msgid "Can't use supermount in high security level"
-#~ msgstr "Íĺ ěîćĺ äŕ čçďîëçâŕňĺ supermount ďđč âčńîęî íčâî íŕ ńčăóđíîńň"
+#~ msgid "Select a module or write his name:"
+#~ msgstr "Čçáĺđĺňĺ ěîäóë čëč íŕďčřĺňĺ čěĺňî ěó:"
#~ msgid "Category"
#~ msgstr "Ęŕňĺăîđč˙"
-#~ msgid ""
-#~ "Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and "
-#~ "file transfer tools"
-#~ msgstr ""
-#~ "×ŕň (IRC čëč ěîěĺíňíč ńúîáůĺíč˙) ďđîăđŕěč ęŕňî xchat, licq, gaim č "
-#~ "číńňđóěĺíňč çŕ ňđŕíńôĺđ íŕ ôŕéëîâĺ"
-
-#~ msgid "Checking dependencies"
-#~ msgstr "Ďđîâĺđ˙âŕě çŕâčńčěîńňčňĺ"
-
-#~ msgid "Choice"
-#~ msgstr "Čçáîđ"
-
-#~ msgid "Choose"
-#~ msgstr "Čçáĺđč"
-
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr "Čçáĺđĺňĺ ĺçčęúň íŕ ęëŕâčŕňóđŕňŕ âč îň ńďčńúęŕ ďî-äîëó"
-
-#~ msgid "Collapse all"
-#~ msgstr "Čç÷čńňč âńč÷ęî"
-
-#~ msgid "Color depth options"
-#~ msgstr "Îďöčč çŕ äúëáî÷číŕ íŕ öâĺňŕ"
-
-#~ msgid "Command line"
-#~ msgstr "Ęîěŕíäĺí đĺä"
-
-#~ msgid "Communication facilities"
-#~ msgstr "Číńňđóěĺíňč çŕ ęîěóíčęŕöč˙"
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "Ńúäúđćŕíčĺňî íŕ íŕńňđîéâŕůč˙ ôŕéë íĺ ěîćĺ äŕ áúäĺ đŕçáđŕíî."
-
-#~ msgid "Configuration de Lilo/Grub"
-#~ msgstr "Íŕńňđîéęŕ íŕ Lilo/Grub"
-
-#~ msgid "Configure LILO/GRUB"
-#~ msgstr "Íŕńňđîéęŕ íŕ LILO/GRUB"
-
-#~ msgid "Configure local network"
-#~ msgstr "Íŕńňîéęŕ íŕ ëîęŕëíŕňŕ ěđĺćŕ"
-
-#~ msgid "Configure the Internet connection / Configure local Network"
-#~ msgstr "Íŕńňđîéęŕ íŕ Číňĺđíĺň âđúçęŕňŕ / Íŕńňđîéęŕ íŕ ëîęŕëíŕňŕ ěđĺćŕ"
-
-#~ msgid "Configure timezone"
-#~ msgstr "Íŕńňđîéęŕ íŕ ÷ŕńîâŕ çîíŕ"
-
-#~ msgid "Configure..."
-#~ msgstr "Íŕńňđîé ..."
-
-#~ msgid "Confirm Password"
-#~ msgstr "Ďîňâúđćäĺíčĺ íŕ ďŕđîëŕňŕ"
-
-#~ msgid "Connecting to Internet "
-#~ msgstr "Ńâúđçâŕíĺ ęúě Číňĺđíĺň "
-
-#~ msgid "Connection Time: "
-#~ msgstr "Âđĺěĺ íŕ âđúçęŕňŕ: "
-
-#~ msgid "Connection complete."
-#~ msgstr "Ńâđúçâŕíĺňî čçâúđřĺíî."
-
-#~ msgid ""
-#~ "Connection failed.\n"
-#~ "Verify your configuration in the Mandrake Control Center."
-#~ msgstr ""
-#~ "Ńâúđçâŕíĺňî íĺ óńď˙.\n"
-#~ "Ďđîâĺđĺňĺ íŕńňđîéęŕňŕ â Mandrake Control Center."
-
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "Timeout íŕ âđúçęŕňŕ (â ńĺę) [ áĺňŕ, íĺ ĺ âęŕđŕíî ]"
-
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Íĺ ěîćŕő äŕ îďđĺäĺë˙ \"%s\" çŕ ďîëçâŕíĺ ďî ďîäđŕçáčđŕíĺ !"
-
-#~ msgid "Create a boot floppy"
-#~ msgstr "Ńúçäŕâŕíĺ íŕ boot-äčńęĺňŕ"
-
-#~ msgid ""
-#~ "Creating a boot disk is strongly recommended. If you can't\n"
-#~ "boot your computer, it's the only way to rescue your system without\n"
-#~ "reinstalling it."
-#~ msgstr ""
-#~ "Ńúçäŕâŕíĺňî íŕ boot äčńęĺňŕ ĺ ńčëíî ďđĺďîđú÷čňĺëíî. Ŕęî íĺ\n"
-#~ "ěîćĺňĺ äŕ ńňŕđňčđŕňĺ ęîěďţňúđŕ ńč, ňîâŕ ĺ ĺäčíńňâĺíč˙ íŕ÷čí äŕ\n"
-#~ "ńďŕńčňĺ ńčńňĺěŕňŕ áĺç ďđĺčíńňŕëŕöč˙."
-
-#~ msgid "Customized"
-#~ msgstr "Ńďĺöčŕëčçčđŕíŕ"
-
-#~ msgid "Czech (Programmers)"
-#~ msgstr "×ĺřęŕ (Ďđîăđŕěčńňč)"
-
-#~ msgid "DNS/DHCP "
-#~ msgstr "Ńúđâúđ, DNS/DHCP "
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "DSL (čëč ADSL) âđúçęŕ"
-
-#~ msgid "Databases clients and servers (mysql and postgresql)"
-#~ msgstr "Ęëčĺíňč č ńúđâúđ íŕ áŕçč äŕííč (MySQL č PostgreSQL)"
-
-#~ msgid "Default Runlevel"
-#~ msgstr "Runlevel ďî ďîäđŕçáčđŕíĺ"
-
-#~ msgid "Development C/C++"
-#~ msgstr "Đŕçđŕáîňęŕ íŕ C/C++"
-
-#~ msgid "Development, Database"
-#~ msgstr "Đŕçđŕáîňęŕ, Áŕçč-äŕííč"
-
-#~ msgid "Development, Integrated Environment"
-#~ msgstr "Đŕçđŕáîňęŕ, Číňĺăđčđŕíŕ ńđĺäŕ"
-
-#~ msgid "Development, Standard tools"
-#~ msgstr "Đŕçđŕáîňęŕ, Ńňŕíäŕđňíč číńňđóěĺíňč"
-
-#~ msgid "Directory"
-#~ msgstr "Äčđĺęňîđč˙"
-
-#~ msgid "Disable"
-#~ msgstr "Čçęëţ÷č"
-
-#~ msgid "Disable Internet Connection"
-#~ msgstr "Čçęëţ÷âŕíĺ íŕ Číňĺđíĺň âđúçęŕ"
-
-#~ msgid "Disable network"
-#~ msgstr "Čçęëţ÷âŕíĺ íŕ ěđĺćŕňŕ"
-
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "Îňâúđçâŕíĺ îň Číňĺđíĺň "
-
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "Îňâúđçâŕíĺňî îň Číňĺđíĺň čçâúđřĺíî."
-
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "Îňâúđçâŕíĺňî îň Číňĺđíĺň íĺ óńď˙."
-
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr ""
-#~ "Čńęŕňĺ ëč äŕ ńúçäŕě ŕâňîěŕňč÷íî číńňŕëčđŕůŕ äčńęĺňŕ çŕ Linux đĺďëčęŕöč˙?"
-
-#~ msgid "ECI modem"
-#~ msgstr "Ěîäĺě ECI"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "Čçęŕđâŕíĺ ńňđŕíčöŕňŕ ńëĺä ďĺ÷ŕň ?"
-
-#~ msgid "Enable"
-#~ msgstr "Âęëţ÷č"
-
-#~ msgid "Enable network"
-#~ msgstr "Âęëţ÷âŕíĺ íŕ ěđĺćŕňŕ"
-
-#~ msgid "Enable num lock at startup"
-#~ msgstr "Çŕäĺéńňâŕíĺ Num Lock-ŕ ďđč çŕđĺćäŕíĺ"
-
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a\n"
-#~ "name (often lp) and a spool directory associated with it. What\n"
-#~ "name and directory should be used for this queue and how is the printer "
-#~ "connected?"
-#~ msgstr ""
-#~ "Âń˙ęŕ îďŕřęŕ çŕ ďĺ÷ŕň (ęúäĺňî ńĺ íŕńî÷âŕň đŕáîňčňĺ çŕ ďĺ÷ŕň) ńĺ íóćäŕĺ\n"
-#~ "îň čěĺ (îáčęíîâĺíî lp) č spool-äčđĺęňîđč˙ ńâúđçâŕíŕ ń íĺ˙. Ęîĺ\n"
-#~ "čěĺ íŕ äčđĺęňîđč˙ äŕ áúäĺ čçďîëçâŕíî çŕ ňŕçč îďŕřęŕ č ęŕę ńĺ ńâúđçŕí "
-#~ "ďđčíňĺđŕ ?"
-
-#~ msgid ""
-#~ "Every printer need a name (for example lp).\n"
-#~ "Other parameters such as the description of the printer or its location\n"
-#~ "can be defined. What name should be used for this printer and\n"
-#~ "how is the printer connected?"
-#~ msgstr ""
-#~ "Âńĺęč ďđčíňĺđ ńĺ íóćäŕĺ îň čěĺ (íŕďđčěĺđ, \"lp\").\n"
-#~ "Äđóăč ďŕđŕěĺňđč ęŕňî îďčńŕíčĺ íŕ ďđčíňĺđŕ čëč ěĺńňîďîëîćĺíčĺňî ěó ěîăŕň "
-#~ "äŕ\n"
-#~ "áúäŕň îďđĺäĺëĺíč. Ęŕęâî čěĺ äŕ áúäĺ čçďîëçâŕíî çŕ ňîçč ďđčíňĺđ č\n"
-#~ "ęŕę ĺ ńâúđçŕí ňîé ?"
-
-#~ msgid "Expand all"
-#~ msgstr "Đŕçřčđč âńč÷ęî"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "Äîďúëíčňĺëíč GhostScript îďöčč"
-
-#~ msgid "Extra Text options"
-#~ msgstr "Äîďúëíčňĺëíč îďöčč çŕ ňĺęńň"
-
-#~ msgid "File/Print/Samba"
-#~ msgstr "Ńúđâúđ, Ôŕéëîâ/Ďđčíňĺđĺí/Samba"
-
-#~ msgid "Find Package"
-#~ msgstr "Íŕěĺđč ďŕęĺň"
-
-#~ msgid "Find Package containing file"
-#~ msgstr "Íŕěĺđč ďŕęĺň ńúäúđćŕů ôŕéë"
-
-#~ msgid "Finding leaves"
-#~ msgstr "Íŕěčđŕíĺ íŕ ëčńňŕňŕ"
-
-#~ msgid "Finding leaves takes some time"
-#~ msgstr "Íŕěčđŕíĺňî íŕ ëčńňŕ îňíĺěŕ ěŕëęî âđĺěĺ"
-
-#~ msgid "First DNS Server"
-#~ msgstr "Ďúđâč DNS ńúđâúđ"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "Ďîďđŕâęŕ íŕ stair-stepping ňĺęńň ?"
-
-#~ msgid ""
-#~ "For FTP and HTTP, you need to give the location for hdlist\n"
-#~ "It must be relative to the URL above"
-#~ msgstr ""
-#~ "Çŕ FTP č HTTP, ůĺ ňđ˙áâŕ äŕ äŕäĺňĺ ě˙ńňî çŕ hdlist\n"
-#~ "Ňî ňđ˙áâŕ äŕ ďđčëč÷ŕ íŕ URL-ňî îňăîđĺ"
-
-#~ msgid "Format all"
-#~ msgstr "Ôîđěŕňčđŕé âńč÷ęî"
-
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these types "
-#~ "requires\n"
-#~ "a different setup.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select \"Local\n"
-#~ "printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine, select\n"
-#~ "\"Remote printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Microsoft Windows "
-#~ "machine\n"
-#~ "(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
-#~ msgstr ""
-#~ "GNU/Linux ěîćĺ äŕ ďîääúđćŕ í˙ęîëęî ňčďŕ ďđčíňĺđč. Âńĺęč îň ňĺçč ňčďîâĺ\n"
-#~ "čçčńęâŕ đŕçëč÷íŕ óńňŕíîâęŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ŕęî ďđčíňĺđúň ĺ ôčçč÷ĺńęč ńâúđçŕí ęúě ęîěďţňúđŕ âč, čçáĺđĺňĺ \"Ëîęŕëĺí\n"
-#~ "ďđčíňĺđ\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Ŕęî čńęŕňĺ äîńňúď äî ďđčíňĺđ íŕěčđŕů ńĺ íŕ îňäŕëĺ÷ĺíŕ Unix ěŕřčíŕ, "
-#~ "čçáĺđĺňĺ\n"
-#~ "\"Îňäŕëĺ÷ĺí ďđčíňĺđ\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Ŕęî čńęŕňĺ äîńňúď äî ďđčíňĺđ íŕěčđŕů ńĺ íŕ îňäŕëĺ÷ĺíŕ Microsoft Windows "
-#~ "ěŕřčíŕ\n"
-#~ "(čëč íŕ Unix ěŕřčíŕ čçďîëçâŕůŕ SMB ďđîňîęîë), čçáĺđĺňĺ \"SMB/Windows "
-#~ "95/98/NT\"."
-
-#~ msgid "Give a name (eg: `extra', `commercial')"
-#~ msgstr "Äŕéňĺ čěĺ (íŕďđ.: `extra', `commercial')"
-
-#~ msgid "Gnome"
-#~ msgstr "Gnome"
-
-#~ msgid "Going to remove entry %s"
-#~ msgstr "Ďđĺěŕőâŕíĺ íŕ çŕďčńŕ %s"
-
-#~ msgid "Graphics Manipulation"
-#~ msgstr "Îáđŕáîňęŕ íŕ ăđŕôčęŕ"
-
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr "Ęŕę čńęŕňĺ äŕ ńĺ ńâúđćĺňĺ ęúě Číňĺđíĺň ?"
-
-#~ msgid "I have found an ISDN Card:\n"
-#~ msgstr "Íŕěĺđĺő ISDN ęŕđňŕ:\n"
-
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ "Ŕęî íĺůî íĺ ĺ íŕđĺä ń íŕńňđîéęŕňŕ íŕ X, čçďîëçâŕéňĺ ňĺçč îďöčč çŕ\n"
-#~ "ďđŕâčëíŕ íŕńňđîéęŕ íŕ X Window ńčńňĺěŕňŕ."
-
-#~ msgid ""
-#~ "If you are not sure if informations above are\n"
-#~ "correct or if you don't know or are not sure what to enter, the correct\n"
-#~ "informations can be obtained from your Internet Service Provider. If you "
-#~ "do not\n"
-#~ "enter the DNS (name server) information here, this information will be "
-#~ "obtained\n"
-#~ "from your Internet Service Provider at connection time."
-#~ msgstr ""
-#~ "Ŕęî íĺ ńňĺ ńčăóđíč äŕëč číôîđěŕöč˙ňŕ ďî-ăîđĺ ĺ â˙đíŕ\n"
-#~ "čëč ŕęî íĺ çíŕĺňĺ čëč íĺ ńňĺ ńčăóđíč ęŕęâî äŕ âúâĺäĺňĺ, â˙đíŕ číôîđěŕöč˙\n"
-#~ "ěîćĺ äŕ áúäĺ âçĺňŕ îň Číňĺđíĺň äîńňŕâ÷čęŕ âč. Ŕęî íĺ âúâĺäĺňĺ číôîđěŕöč˙ "
-#~ "çŕ\n"
-#~ "DNS (name server), ň˙ ůĺ áúäĺ âçĺňŕ îň Číňĺđíĺň äîńňŕâ÷čęŕ âč ďî âđĺěĺ "
-#~ "íŕ\n"
-#~ "ńâúđçâŕíĺ."
-
-#~ msgid ""
-#~ "If you have all the CDs in the list above, click Ok. If you have\n"
-#~ "none of those CDs, click Cancel. If only some CDs are missing, unselect "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "Ŕęî čěŕňĺ âńč÷ęč CD-ňŕ îň ńďčńúęŕ ďî-ăîđĺ, íŕňčńíĺňĺ Ok. Ŕęî í˙ěŕňĺ\n"
-#~ "íčňî ĺäíî îň ňĺçč CD-ňŕ, íŕňčńíĺňĺ Îňě˙íŕ. Ŕęî âč ëčďńâŕň í˙ęîč CD-ňŕ, "
-#~ "čçęëţ÷ĺňĺ ăč,\n"
-#~ "č íŕňčńíĺňĺ Ok."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "Ŕęî ďđĺäďî÷čňŕňĺ äŕ čçďîëçâŕňĺ ăđŕôč÷íî âëčçŕíĺ, čçáĺđĺňĺ \"Äŕ\". Â\n"
-#~ "ďđîňčâĺí ńëó÷ŕé, čçáĺđĺňĺ \"Íĺ\"."
-
-#~ msgid ""
-#~ "If you will use proxies, please configure them now. If you don't know if\n"
-#~ "you should use proxies, ask your network administrator or your ISP."
-#~ msgstr ""
-#~ "Ŕęî ůĺ čçďîëçâŕňĺ proxy ńúđâúđč, ěîë˙, íŕńňđîéňĺ ăč ńĺăŕ. Ŕęî íĺçíŕĺňĺ,\n"
-#~ "ďîďčňŕéňĺ ěđĺćîâč˙ ŕäěčíčńňđŕňîđ čëč Číňĺđíĺň äîńňŕâ÷čęŕ ńč."
-
-#~ msgid ""
-#~ "If you wish other languages (than the one you choose at\n"
-#~ "beginning of installation) will be available after installation, please "
-#~ "chose\n"
-#~ "them in list above. If you want select all, you just need to select \"All"
-#~ "\"."
-#~ msgstr ""
-#~ "Ŕęî čńęŕňĺ äđóăč ĺçčöč (îńâĺí ňîçč, ęîéňî čçáđŕőňĺ ďđĺäč\n"
-#~ "íŕ÷ŕëîňî íŕ číńňŕëŕöč˙ňŕ), ęîčňî äŕ áúäŕň äîńňúďíč ńëĺä číńňŕëŕöč˙ňŕ, "
-#~ "ěîë˙, čçáĺđĺňĺ\n"
-#~ "ăč îň ńďčńúęŕ ďî-ăîđĺ. Ŕęî čńęŕňĺ äŕ ăč čçáĺđĺňĺ âńč÷ęč, ďđîńňî čçáĺđĺňĺ "
-#~ "\"Âńč÷ęč\"."
-
-#~ msgid ""
-#~ "If you wish to be able to print, please choose one printing system "
-#~ "between\n"
-#~ "CUPS and LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS is a new, powerful and flexible printing system for Unix systems "
-#~ "(CUPS\n"
-#~ "means \"Common Unix Printing System\"). It is the default printing system "
-#~ "in\n"
-#~ "Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR is the old printing system used in previous Mandrake Linux "
-#~ "distributions.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you don't have printer, click on \"None\"."
-#~ msgstr ""
-#~ "Ŕęî čńęŕňĺ äŕ ěîćĺňĺ äŕ ďĺ÷ŕňŕňĺ, ěîë˙, čçáĺđĺňĺ ńčńňĺěŕ çŕ ďĺ÷ŕň "
-#~ "čçěĺćäó\n"
-#~ "CUPS č LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS ĺ íîâŕ, ěîůíŕ č ăúâęŕâŕ ńčńňĺěŕ çŕ ďĺ÷ŕň çŕ Unix ńčńňĺěč (CUPS\n"
-#~ "ďđîčçëčçŕ îň \"Îáůŕ Unix Ďŕ÷ŕňíŕ Ńčńňĺěŕ\"). Ňîâŕ ĺ ńčńňĺěŕňŕ çŕ ďĺ÷ŕň ďî "
-#~ "ďîäđŕçáčđŕíĺ â\n"
-#~ "Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR ĺ ńňŕđŕňŕ ńčńňĺěŕ çŕ ďĺ÷ŕň, čçďîëçâŕíŕ ďđĺäčříčňĺ Mandrake Linux "
-#~ "äčńňđčáóöčč.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ŕęî í˙ěŕňĺ ďđčíňĺđ, öúęíĺňĺ \"Íčęŕęúâ\"."
-
-#~ msgid ""
-#~ "If you wish to connect your computer to the Internet or\n"
-#~ "to a local network please choose the correct option. Please turn on your "
-#~ "device\n"
-#~ "before choosing the correct option to let DrakX detect it automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you do not have any connection to the Internet or a local network, "
-#~ "choose\n"
-#~ "\"Disable networking\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you wish to configure the network later after installation, or if you "
-#~ "have\n"
-#~ "finished to configure your network connection, choose \"Done\"."
-#~ msgstr ""
-#~ "Ŕęî čńęŕňĺ äŕ ńâúđćčňĺ ęîěďţňúđŕ ńč ęúě Číňĺđíĺň čëč ęúě\n"
-#~ "ëîęŕëíŕ ěđĺćŕ, ěîë˙, čçáĺđĺňĺ ďîäőîä˙ůŕňŕ îďöč˙. Ěîë˙, âęëţ÷ĺňĺ "
-#~ "óńňđîéńňâîňî\n"
-#~ "ďđĺäč äŕ čçáĺđĺňĺ ďîäőîä˙ůŕňŕ îďöč˙, çŕ äŕ ďîçâîëčňĺ íŕ DrakX äŕ ăî "
-#~ "çŕńĺ÷ĺ ŕâňîěŕňč÷íî.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ŕęî í˙ěŕňĺ íčęŕęâŕ âđúçęŕ ęúě Číňĺđíĺň čëč ęúě ëîęŕëíŕ ěđĺćŕ, čçáĺđĺňĺ\n"
-#~ "\"Čçęëţ÷âŕíĺ íŕ ěđĺćŕňŕ\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Ŕęî čńęŕňĺ äŕ íŕńňđîčňĺ ěđĺćŕňŕ ďî-ęúńíî, ńëĺä číńňŕëŕöč˙ňŕ, čëč ńňĺ "
-#~ "ďđčęëţ÷čëč ń íŕńňđîéęŕňŕ íŕ ěđĺćŕňŕ, čçáĺđĺňĺ \"Ăîňîâî\"."
-
-#~ msgid ""
-#~ "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
-#~ msgstr ""
-#~ "Ŕęî ADSL ěîäĺěúň âč ĺ Alcatel, čçáĺđĺňĺ Alcatel. Číŕ÷ĺ, čçáĺđĺňĺ ECI."
-
-#~ msgid ""
-#~ "If your modem is an external modem, please turn on it now to let DrakX "
-#~ "detect it automatically."
-#~ msgstr ""
-#~ "Ŕęî ěîäĺěúň âč ĺ âúířĺí, ěîćĺ, âęëţ÷ĺňĺ ăî ńĺăŕ, çŕ äŕ ďîçâîëčňĺ íŕ DrakX "
-#~ "äŕ ăî çŕńĺ÷ĺ ŕâňîěŕňč÷íî."
-
-#~ msgid ""
-#~ "If your network uses the LDAP (or NIS) protocol for authentication, "
-#~ "select\n"
-#~ "\"LDAP\" (or \"NIS\") as authentication. If you don't know, ask your "
-#~ "network\n"
-#~ "administrator.\n"
-#~ "\n"
-#~ "If your computer is not connected to any administrated network, you may "
-#~ "want to\n"
-#~ "choose \"Local files\" for authentication."
-#~ msgstr ""
-#~ "Ŕęî ěđĺćŕňŕ âč čçďîëçâŕ LDAP (čëč NIS) ďîđîňęîë çŕ ŕóňîđčçŕöč˙, čçáĺđĺňĺ\n"
-#~ "\"LDAP\" (čëč \"NIS\") çŕ ŕóňîđčçŕöč˙. Ŕęî íĺ çíŕĺňĺ, ďîďčňŕéňĺ ěđĺćîâč˙ "
-#~ "ńč\n"
-#~ "ŕäěčíčńňđŕňîđ.\n"
-#~ "\n"
-#~ "Ŕęî ęîěďţňúđúň âč íĺ ĺ ńâúđçŕí ęúě ŕäěčíčńňđčđŕíŕ ěđĺćŕ, ěîćĺ áč ůĺ "
-#~ "čńęŕňĺ\n"
-#~ "äŕ čçáĺđĺňĺ \"Ëîęŕëíč ôŕéëîâĺ\" çŕ ŕóňîđčçŕöč˙."
-
-#~ msgid ""
-#~ "If your network uses NIS, select \"Use NIS\". If you don't know, ask "
-#~ "your\n"
-#~ "network administrator."
-#~ msgstr ""
-#~ "Ŕęî ěđĺćŕňŕ âč čçďîëçâŕ NIS, čçáĺđĺňĺ \"Čçďîëçâŕé NIS\". Ŕęî íĺ çíŕĺňĺ,\n"
-#~ "ďîďčňŕéňĺ ěđĺćîâč˙ ŕäěčíčńňđŕňîđ."
-
-#~ msgid "In which country are you located ?"
-#~ msgstr "Â ęî˙ ńňđŕíŕ ńĺ íŕěčđŕňĺ ?"
-
-#~ msgid "Installed packages"
-#~ msgstr "Číńňŕëčđŕíč ďŕęĺňč"
-
-#~ msgid "Internet Tools"
-#~ msgstr "Číňĺđíĺň Číńňđóěĺíňč"
-
-#~ msgid "Internet/Network access"
-#~ msgstr "Číňĺđíĺň/Ěđĺćîâ äîńňúď"
-
-#~ msgid "KDE"
-#~ msgstr "KDE"
-
-#~ msgid "KDE, QT, Gnome, GTK+"
-#~ msgstr "KDE, QT, Gnome, GTK+"
-
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <number>: use the corresponding text mode.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories\n"
-#~ "stored in \"/tmp\" when you boot your system, select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the\n"
-#~ "BIOS about the amount of RAM present in your computer. As consequence, "
-#~ "Linux may\n"
-#~ "fail to detect your amount of RAM correctly. If this is the case, you "
-#~ "can\n"
-#~ "specify the correct amount or RAM here. Please note that a difference of "
-#~ "2 or 4\n"
-#~ "MB between detected memory and memory present in your system is normal."
-#~ msgstr ""
-#~ "Ăëŕâíčňĺ îďöčč íŕ LILO č GRUB ńŕ:\n"
-#~ " - Boot óńňđîéńňâî: Îďđĺäĺë˙ čěĺňî íŕ óńňđîéńňâîňî (ň.ĺ. ä˙ë îň őŕđä\n"
-#~ "äčńęŕ), ęîéňî ńúäúđćŕ boot ńĺęňîđŕ. Čçáĺđĺňĺ \"/dev/hda\", îńâĺí ŕęî íĺ\n"
-#~ "ńňĺ ńčăóđíč â äđóăî.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Čç÷ŕęâŕíĺ ďđĺäč ńňŕđňčđŕíĺ íŕ ďîäđŕçáčđŕůč˙ ńĺ îáđŕç: Îďđĺäĺë˙ "
-#~ "äĺńĺňčňĺ\n"
-#~ "îň ńĺęóíäŕňŕ, ęîčňî çŕđĺćäŕůŕ ďđîăđŕěŕ äŕ čç÷ŕęŕ ďđĺäč ďóńęŕíĺňî íŕ "
-#~ "ďúđâč˙\n"
-#~ "îáđŕç. Ďîëĺçíî ĺ çŕ ńčńňĺěč, ęîčňî ńňŕđňčđŕň îň äčńęŕ âĺäíŕăŕ ńëĺä "
-#~ "âęëţ÷âŕíĺ\n"
-#~ "íŕ ęëŕâčŕňóđŕňŕ. Çŕđĺćäŕůŕňŕ ďđîăđŕěŕ íĺ ÷ŕęŕ, ŕęî \"delay\" ĺ\n"
-#~ "ďđîďóńíŕň čëč ĺ íóëŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Âčäĺî đĺćčě: Ňîâŕ îďđĺäĺë˙ ňĺęńňîâč˙ VGA đĺćčě, ęîéňî äŕ áúäĺ čçáđŕí\n"
-#~ "ďđč íŕ÷ŕëíî çŕđĺćäŕíĺ. Âúçěîćíč ńŕ ńëĺäíčňĺ ńňîéíîńňč:\n"
-#~ " * normal: čçáčđŕ îáčęíîâĺí 80x25 ňĺęńňîâ đĺćčě.\n"
-#~ "\n"
-#~ " * <number>: čçďîëçâŕ ńúîňâĺňíč˙ ňĺęńňîâ đĺćčě.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Ďî÷čńňâŕíĺ íŕ \"/tmp\" ďđč çŕđĺćäŕíĺ: ŕęî čńęŕňĺ äŕ ńĺ čçňđčâŕň "
-#~ "âńč÷ęč\n"
-#~ "ôŕéëîâĺ č äčđĺęňîđčč ńúőđŕí˙âŕíč â \"/tmp\", ęîăŕňî çŕđĺćäŕňĺ ńčńňĺěŕňŕ "
-#~ "ńč,\n"
-#~ "čçáĺđĺňĺ ňŕçč îďöč˙.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Ňî÷íî RAM, ŕęî ĺ íóćíî: çŕ ńúćŕëĺíčĺ, í˙ěŕ ńňŕíäŕđňĺí ěĺňîä, äŕ ńĺ\n"
-#~ "ďîďčňŕ BIOS çŕ îáĺěŕ íŕ RAM â ęîěďţňúđŕ. Ęŕňî ďîńëĺäńňâčĺ, GNU/Linux "
-#~ "ěîćĺ\n"
-#~ "äŕ íĺ óńďĺĺ äŕ çŕńĺ÷ĺ ďđŕâčëíî îáĺěŕ íŕ RAM. Ŕęî ĺ ňŕęúâ ńëó÷ŕ˙, ňóę\n"
-#~ "ěîćĺňĺ äŕ çŕäŕäĺňĺ ňî÷íč˙ îáĺě íŕ RAM. Ěîë˙, îňáĺëĺćĺňĺ ÷ĺ îň 2 čëč 4 MB\n"
-#~ "ěĺćäó çŕńĺ÷ĺíŕňŕ č ďđčńúńňâŕůŕňŕ RAM ĺ íîđěŕëíŕ."
-
-#~ msgid ""
-#~ "Local networking has already been configured.\n"
-#~ "Do you want to:"
-#~ msgstr ""
-#~ "Ëîęŕëíŕňŕ ěđĺćŕ âĺ÷ĺ ĺ íŕńňđîĺíŕ.\n"
-#~ "Čńęŕňĺ ëč äŕ:"
-
-#~ msgid "MD5"
-#~ msgstr "MD5"
-
-#~ msgid "Miscellaneous"
-#~ msgstr "Äîďúëíčňĺëíč"
-
-#~ msgid "Miscellaneous questions"
-#~ msgstr "Äîďúëíčňĺëíč âúďđîńč"
-
-#~ msgid "Modify printer"
-#~ msgstr "Ďîďđŕâč ďđčíňĺđ"
-
-#~ msgid "Name of queue"
-#~ msgstr "Čěĺ íŕ îďŕřęŕ"
-
-#~ msgid "Name of the profile to create:"
-#~ msgstr "Čěĺ íŕ ńúçäŕâŕíč˙ ďđîôčë:"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Network Monitoring"
-#~ msgstr "Íŕáëţäŕâŕíĺ íŕ ěđĺćŕňŕ"
-
-#~ msgid "Network adaptater 1 (eth0):"
-#~ msgstr "Ěđĺćîâ ďđčíňĺđ 1 (eth0):"
-
-#~ msgid "No cdrom available (nothing in /mnt/cdrom)"
-#~ msgstr "Í˙ěŕ CDROM (í˙ěŕ íčůî â /mnt/cdrom)"
-
-#~ msgid "No match"
-#~ msgstr "Í˙ěŕ ńúâďŕäĺíč˙"
-
-#~ msgid ""
-#~ "No modem has been detected. Please select the serial port on which it is "
-#~ "plugged.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, the first serial port (called \"COM1\" under Microsoft\n"
-#~ "Windows) is called \"ttyS0\" under Linux."
-#~ msgstr ""
-#~ "Íĺ áĺřĺ îňęđčň ěîäĺě. Ěîë˙, ďîńî÷ĺňĺ ńĺđčéíč˙ ďîđň, ęúě ęîéňî ĺ ńâúđçŕí.\n"
-#~ "\n"
-#~ "\n"
-#~ "Çŕ číôîđěŕöč˙, ďúđâč˙ň ńĺđčĺí ďîđň (íŕđč÷ŕí \"COM1\" ďîä Microsoft\n"
-#~ "Windows) ńĺ íŕđč÷ŕ \"ttyS0\" ďîä Linux."
-
-#~ msgid "No more match"
-#~ msgstr "Í˙ěŕ ďîâĺ÷ĺ ńúâďŕäĺíč˙"
-
-#~ msgid ""
-#~ "Now it's time to configure the X Window System, which is the\n"
-#~ "core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "Ńĺăŕ ĺ âđĺěĺ äŕ íŕńňđîčňĺ X Window System, ęî˙ňî ĺ ˙äđîňî íŕ \n"
-#~ "GNU/Linux GUI (Ăđŕôč÷ĺí Ďîđĺáčňĺëńęč Číňĺđôĺéń). Çŕ ňŕçč öĺë ňđ˙áâŕ äŕ\n"
-#~ "íŕńňđîčňĺ âčäĺîęŕđňŕňŕ č ěîíčňîđŕ ńč. Ďî-ăîë˙ěŕňŕ ÷ŕńň îň ńňúďęčňĺ ńŕ\n"
-#~ "ŕâňîěŕňčçčđŕíč, ňŕęŕ ÷ĺ đŕáîňŕňŕ âč ěîćĺ áč ůĺ ńĺ ńúńňîč ńŕěî îň "
-#~ "ďđîâĺđęŕ\n"
-#~ "ęŕęâî ĺ íŕďđŕâĺíî č ďđčĺěŕíĺňî íŕ íŕńňđîéęčňĺ :)\n"
-#~ "\n"
-#~ "\n"
-#~ "Ęîăŕňî íŕńňđîéęŕňŕ çŕâúđřč, X ůĺ áúäĺ ńňŕđňčđŕí (îńâĺí ŕęî íĺ óęŕćĺňĺ íŕ\n"
-#~ "DrakX äŕ íĺ ăî ďđŕâč), çŕ äŕ ďđîâĺđčňĺ äŕëč íŕńňđîéęčňĺ âč óńňđîéâŕň. "
-#~ "Ŕęî\n"
-#~ "íĺ âč óńňđîéâŕň, ěîćĺňĺ äŕ ńĺ âđúůŕňĺ č äŕ ăč ďđîěĺí˙ňĺ, ęîëęîňî ďúňč âč\n"
-#~ "ĺ íĺîáőîäčěî."
-
-#~ msgid ""
-#~ "Now that your Internet connection is configured,\n"
-#~ "your computer can be configured to share its Internet connection.\n"
-#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
-#~ "(LAN).\n"
-#~ "\n"
-#~ "Would you like to setup the Internet Connection Sharing?\n"
-#~ msgstr ""
-#~ "Ńĺăŕ, ńëĺä ęŕňî Číňĺđíĺň âđúçęŕňŕ âč ĺ íŕńňđîĺíŕ,\n"
-#~ "ęîěďţňúđúň âč ěîćĺ äŕ áúäĺ íŕńňđîĺí íŕ ńďîäĺë˙ Číňĺđíĺň âđúçęŕňŕ ńč.\n"
-#~ "Îňáĺëĺćĺňĺ: çŕ ňîâŕ âč ňđ˙áâŕ óńňŕíîâĺí îňäĺëĺí ěđĺćîâ ŕäŕďňĺđ, çŕ äŕ "
-#~ "óńňŕíîâčňĺ âúňđĺříŕňŕ ńč ěđĺćŕ (LAN).\n"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Áđîé ńňđŕíčöč çŕ čçőîäíč ńňđŕíčöč"
-
-#~ msgid "Opening your connection..."
-#~ msgstr "Îňâŕđ˙íĺ íŕ âđúçęŕňŕ âč ..."
-
-#~ msgid "Other countries"
-#~ msgstr "Äđóăč ńňđŕíč"
-
-#~ msgid "Package"
-#~ msgstr "Ďŕęĺňŕ"
-
-#~ msgid "Paper Size"
-#~ msgstr "Đŕçěĺđ íŕ őŕđňč˙ňŕ"
-
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr "Čçáĺđĺňĺ ďđĺäďî÷čňŕí ĺçčę çŕ číńňŕëŕöč˙ č ńčńňĺěíî čçďîëçâŕíĺ."
-
-#~ msgid ""
-#~ "Please select the right options according to your printer.\n"
-#~ "Please see its documentation if you don't know what choose here.\n"
-#~ "\n"
-#~ "\n"
-#~ "You will be able to test your configuration in next step and you will be "
-#~ "able to modify it if it doesn't work as you want."
-#~ msgstr ""
-#~ "Ěîë˙, čçáĺđĺňĺ ďîäőîä˙ůč çŕ ďđčíňĺđŕ âč íŕńňîéęč.\n"
-#~ "Ěîë˙, ďîăëĺäíĺňĺ äîęóěĺíňŕöč˙ňŕ, ŕęî íĺ çíŕĺňĺ ęŕęâî äŕ čçáĺđĺňĺ ňóę.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ůĺ ěîćĺňĺ äŕ čçďđîáâŕňĺ íŕńňđîéęŕňŕ â ńëĺäâŕůŕňŕ ńňúďęŕ č äŕ ˙ ńěĺíčňĺ, "
-#~ "ŕęî íĺ đŕáîňč ęŕęňî ňđ˙áâŕ."
-
-#~ msgid "Please submit the following information"
-#~ msgstr "Ěîë˙, čçďđŕňĺňĺ ńëĺäíŕňŕ číôîđěŕöč˙"
-
-#~ msgid "Please turn on your modem and choose the correct one."
-#~ msgstr "Ěîë˙, âęëţ÷ĺňĺ ěîäĺěŕ ńč č čçáĺđĺňĺ ďîäőîä˙ůč˙."
-
-#~ msgid ""
-#~ "Please turn on your printer before continuing to let DrakX detect it.\n"
-#~ "\n"
-#~ "You have to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of printer: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you must have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer a more meaningful name, you "
-#~ "have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Description: this is optional but can be useful if several printers "
-#~ "are connected to your computer or if you allow\n"
-#~ " other computers to access to this printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Location: if you want to put some information on your\n"
-#~ " printer location, put it here (you are free to write what\n"
-#~ " you want, for example \"2nd floor\").\n"
-#~ msgstr ""
-#~ "Ěîë˙, âęëţ÷ĺňĺ ďđčíňĺđŕ ńč ďđĺäč äŕ ďđîäúëćčňĺ, çŕ äŕ ďîçâîëčňĺ íŕ DrakX "
-#~ "äŕ\n"
-#~ "ăî çŕńĺ÷ĺ.\n"
-#~ "\n"
-#~ "Ňđ˙áâŕ äŕ âúâĺäĺňĺ í˙ęŕęâŕ číôîđěŕöč˙ ňóę.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Čěĺ íŕ ďđčíňĺđ: ďî ďîäđŕçáčđŕíĺ, ďĺ÷ŕňíč˙ spooler čçďîëçâŕ \"lp\" "
-#~ "ęŕňî čěĺ íŕ ďđčíňĺđ. Ňŕęŕ ÷ĺ ňđ˙áâŕ äŕ čěŕňĺ\n"
-#~ "ďđčíňĺđ íŕđĺ÷ĺí \"lp\".\n"
-#~ " Ŕęî čěŕňĺ ńŕěî ĺäčí ďđčíňĺđ, ěîćĺňĺ äŕ čçďîëçâŕňĺ í˙ęîëęî čěĺíŕ çŕ "
-#~ "íĺăî. Ňđ˙áâŕ ńŕěî äŕ ăč îňäĺëčňĺ ń pipe\n"
-#~ " ńčěâîëŕ (\"|\"). Ňŕęŕ ÷ĺ, ŕęî ďđĺäďî÷čňŕňĺ ďî-ńěčńëĺíî čěĺ, ěîćĺňĺ "
-#~ "äŕ ăî ńëîćčňĺ ďúđâî, íŕďđ. \"My printer|lp\".\n"
-#~ " Ďđčíňĺđúň ńúäúđćŕů \"lp\" â čěĺňî(ŕňŕ) ńč ůĺ ńĺ ďîëçâŕ ďî "
-#~ "ďîäđŕçáčđŕíĺ.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Îďčńŕíčĺ: Ňîâŕ ĺ íĺçŕäúëćčňĺëíî, íî ěîćĺ äŕ ĺ ďîëĺçíî, ŕęî čěŕ "
-#~ "í˙ęîëęî ďđčíňĺđŕ ńâúđçŕíč ęúě ęîěďţňúđŕ âč čëč ŕęî\n"
-#~ " đŕçđĺřŕâŕňĺ äîńňúď äî íĺăî íŕ äđóăč ęîěďţňđč.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Ěĺńňîďîëîćĺíčĺ: ŕęî čńęŕňĺ äŕ äŕäĺňĺ číôîđěŕöč˙ çŕ ěĺńňîďîëîćĺíčĺňî\n"
-#~ " íŕ ďđčíňĺđŕ ńč, íŕďđŕâĺňĺ ăî ňóę (ěîćĺňĺ äŕ íŕďčřĺňĺ ęŕęâîňî ńč "
-#~ "čńęŕňĺ,\n"
-#~ " íŕďđčěĺđ \"2-đč ĺňŕć\").\n"
-
-#~ msgid "Press next to continue."
-#~ msgstr "Íŕňčńíĺňĺ Ńëĺäâŕů, çŕ äŕ ďđîäúëćčňĺ."
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "Ďĺ÷ŕňŕé ňĺęńňŕ ęŕňî PostScript ?"
-
-#~ msgid "Profile "
-#~ msgstr "Ďđîôčë "
-
-#~ msgid "Provider dns 1"
-#~ msgstr "1-âč DNS íŕ äîńňŕâ÷čęŕ"
-
-#~ msgid "Provider dns 2"
-#~ msgstr "2-đč DNS íŕ äîńňŕâ÷čęŕ"
+#~ msgid "preload module"
+#~ msgstr "ďîäăîňîâęŕ íŕ ěîäóëŕ"
-#~ msgid "Python, Perl, libraries, tools"
-#~ msgstr "Python, Perl, áčáëčîňĺęč, číńňđóěĺíňč"
+#~ msgid "click on a category"
+#~ msgstr "ęëčęíĺňĺ âúđőó ęŕňĺăîđč˙"
-#~ msgid "Receiving Speed:"
-#~ msgstr "Ńęîđîńň íŕ ďđčĺěŕíĺ: "
+#~ msgid "Remove"
+#~ msgstr "Ďđĺěŕőíč"
-#~ msgid "Reconfigure using wizard..."
-#~ msgstr "Ďđĺíŕńňđîé čçďîëçâŕéęč ěŕăüîńíčę ..."
+#~ msgid "Tool for boot disk creation"
+#~ msgstr "Číńňđóěĺíň çŕ ńúäŕâŕíĺ íŕ ńňŕđňčđŕůŕ äčńęĺňŕ"
-#~ msgid "Regexp"
-#~ msgstr "Regexp"
-
-#~ msgid "Reload"
-#~ msgstr "Ďđĺçŕđĺćäŕíĺ"
-
-#~ msgid "Remote queue"
-#~ msgstr "Îňäŕëĺ÷ĺíî čěĺ íŕ îďŕřęŕ"
-
-#~ msgid "Remote queue name missing!"
-#~ msgstr "Ëčďńâŕ čěĺ íŕ îďŕřęŕňŕ !"
-
-#~ msgid "Reverse page order"
-#~ msgstr "Îáúđíč đĺäŕ íŕ ńňđŕíčöčňĺ"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "Äĺńĺí/Ë˙â úăúë â ňî÷ęč (1/72 íŕ čí÷)"
-
-#~ msgid ""
-#~ "SILO is a bootloader for SPARC: it is able to boot\n"
-#~ "either GNU/Linux or any other operating system present on your computer.\n"
-#~ "Normally, these other operating systems are correctly detected and\n"
-#~ "installed. If this is not the case, you can add an entry by hand in this\n"
-#~ "screen. Be careful as to choose the correct parameters.\n"
-#~ "\n"
-#~ "\n"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "anyone, in which case you can delete the corresponding entries. But\n"
-#~ "in this case, you will need a boot disk in order to boot them!"
-#~ msgstr ""
-#~ "SILO ĺ bootloader çŕ SPARC: ňoé ěîćĺ äŕ ńňŕđňčđŕ\n"
-#~ "GNU/Linux čëč ęî˙ äŕ ĺ äđóăŕ îďĺđŕöčîííŕ ńčńňĺěŕ, ńúůĺńňâóâŕůŕ íŕ "
-#~ "ęîěďţňúđŕ âč.\n"
-#~ "Îáčęíîâĺííî, ňĺçč äđóăč îďĺđŕöčîííč ńčńňĺěŕ ńĺ çŕńč÷ŕň č číńňŕëčđŕň\n"
-#~ "ďđŕâčëíî. Ŕęî ňîâŕ íĺ ńňŕâŕ ďđč âŕń, ěîćĺňĺ äŕ äîáŕâ˙ňĺ çŕďčńč íŕ đúęŕ â\n"
-#~ "ňîçč ĺęđŕí. Ăëĺäŕéňĺ äŕ čçáĺđĺňĺ âĺđíč ďŕđŕěĺňđč.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ěîćĺ äŕ íĺ čńęŕňĺ äŕ äŕâŕňĺ äîńňúď äî ňĺçč îďĺđŕöčîííč ńčńňĺěč íŕ íčęîé,\n"
-#~ "â ęîéňî ńëó÷ŕé ěîćĺňĺ äŕ čçňđčĺňĺ ńúîňâĺňíčňĺ çŕďčńč. Íî â ňŕęúâ ńëó÷ŕé,\n"
-#~ "ůĺ ńĺ íóćäŕĺňĺ îň boot-äčńęĺňŕ, çŕ äŕ ăč ńňŕđňčđŕňĺ !"
-
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ "Ăëŕâíčňĺ îďöčč íŕ SILO ńŕ:\n"
-#~ " - bootloader číńňŕëŕöč˙: ďîęŕçâŕ, ęúäĺňî čńęŕňĺ äŕ ďîńňŕâčňĺ "
-#~ "číôîđěŕöč˙ňŕ\n"
-#~ "íĺîáőîäčěŕ çŕ ńňŕđňčđŕíĺňî íŕ GNU/Linux. Îńâĺí ŕęî íĺ çíŕĺňĺ ňî÷íî ęŕęâî\n"
-#~ "ďđŕâčňĺ, čçáĺđĺňĺ \"Ďúđâč ńĺęňîđ íŕ óńňđîéńňâîňî (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Čç÷ŕęâŕíĺ ďđĺäč ńňŕđňčđŕíĺ íŕ ďîäđŕçáčđŕůč˙ ńĺ îáđŕç: Îďđĺäĺë˙ "
-#~ "äĺńĺňčňĺ\n"
-#~ "îň ńĺęóíäŕňŕ, ęîčňî çŕđĺćäŕůŕ ďđîăđŕěŕ äŕ čç÷ŕęŕ ďđĺäč ďóńęŕíĺňî íŕ "
-#~ "ďúđâč˙\n"
-#~ "îáđŕç. Ďîëĺçíî ĺ çŕ ńčńňĺěč, ęîčňî ńňŕđňčđŕň îň äčńęŕ âĺäíŕăŕ ńëĺä ęŕňî\n"
-#~ "ńĺ âęëţ÷č ęëŕâčŕňóđŕňŕ. Çŕđĺćäŕůŕňŕ ďđîăđŕěŕ íĺ ÷ŕęŕ, ŕęî \"delay\" ĺ\n"
-#~ "ďđîďóńíŕň čëč ĺ íóëŕ."
-
-#~ msgid "Sciences"
-#~ msgstr "Íŕóęč"
-
-#~ msgid "Scientific applications"
-#~ msgstr "Íŕó÷íč ďđčëîćĺíč˙"
-
-#~ msgid "Search"
-#~ msgstr "Ňúđńč"
-
-#~ msgid "Second DNS Server"
-#~ msgstr "Âňîđč DNS ńúđâúđ"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Čçáĺđĺňĺ âđúçęŕ ęúě îňäŕëĺ÷ĺíč˙ ďđčíňĺđ"
-
-#~ msgid "Select the size you want to install"
-#~ msgstr "Čçáĺđĺňĺ đŕçěĺđŕ, ęîéňî čńęŕňĺ äŕ číńňŕëčđŕě"
-
-#~ msgid ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!"
-#~ msgstr ""
-#~ "Čçáĺđĺňĺ:\n"
-#~ "\n"
-#~ " - Ńďĺöčŕëčçčđŕíŕ: Ŕęî ńňĺ äîńňŕňú÷íî çŕďîçíŕň ń GNU/Linux, ůĺ ěîćĺňĺ äŕ "
-#~ "čçáĺđĺňĺ\n"
-#~ " ăëŕâíîňî ďđĺäíŕçíŕ÷ĺíčĺ íŕ ěŕřčíŕňŕ ńč. Âčćňĺ ďî-äîëó çŕ "
-#~ "ďîäđîáíîńňč.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Ĺęńďĺđňíŕ: Ňîâŕ ďđĺäďîëŕăŕ, ÷ĺ ńňĺ íŕ \"ňč\" ń GNU/Linux č čńęŕňĺ äŕ\n"
-#~ " íŕďđŕâčňĺ âčńîęî ńďĺöčŕëčçčđŕíŕ číńňŕëŕöč˙. Ęŕęňî č â "
-#~ "\"Ńďĺöčŕëčçčđŕíč˙\"\n"
-#~ " číńňŕëŕöčîíĺí ęëŕń, ůĺ ěîćĺňĺ äŕ čçáĺđĺňĺ óďîňđĺáŕňŕ íŕ ńčńňĺěŕňŕ "
-#~ "ńč.\n"
-#~ " Íî ěîë˙, ěîë˙, ÍĹ ČÇÁČĐŔÉŇĹ ŇÎÂŔ, ÎŃÂĹÍ ŔĘÎ ÍĹ ÇÍŔĹŇĹ ĘŔĘÂÎ ĎĐŔÂČŇĹ!"
-
-#~ msgid "Selected size %d%s"
-#~ msgstr "Čçáĺđĺňĺ ăîëĺěčíŕ %d%s"
-
-#~ msgid "Sending Speed:"
-#~ msgstr "Ńęîđîńň íŕ čçďđŕůŕíĺ: "
-
-#~ msgid "Show only leaves"
-#~ msgstr "Ďîęŕćč ńŕěî ëčńňŕňŕ"
-
-#~ msgid "Slovakian (Programmers)"
-#~ msgstr "Ńëîâŕřęŕ (Ďđîăđŕěčńňč)"
-
-#~ msgid "Sorry, the mail configuration is not yet implemented. Be patient."
-#~ msgstr ""
-#~ "Ńúćĺë˙âŕě, íŕńňđîéęŕňŕ íŕ ďîůŕňŕ îůĺ íĺ ĺ âúâĺäĺíŕ. Áúäĺňĺ ňúđďĺëčâč."
-
-#~ msgid "Sort by"
-#~ msgstr "Ńîđňčđŕé ďî"
-
-#~ msgid "Spool directory"
-#~ msgstr "Spool-äčđĺęňîđč˙"
-
-#~ msgid "Spooler: "
-#~ msgstr "Spooler: "
-
-#~ msgid "Statistics"
-#~ msgstr "Ńňŕňčńňčęč"
-
-#~ msgid "Test the mouse here."
-#~ msgstr "Čçďđîáâŕéňĺ ěčřęŕňŕ ńč ňóę."
-
-#~ msgid ""
-#~ "The Mandrake Linux spreads among several CDROMs. It may be that drakX "
-#~ "has\n"
-#~ "selected packages on another CDROM than the installation CDROM, and when "
-#~ "it\n"
-#~ "needs that you put another one into the drive, it will eject the current "
-#~ "CDROM\n"
-#~ "and ask you for another one."
-#~ msgstr ""
-#~ "Mandrake Linux ĺ đŕçďîëîćĺí íŕ í˙ęîëęî CDROM-ŕ. Ěîćĺ äŕ ńĺ îęŕćĺ, ÷ĺ "
-#~ "DrakX\n"
-#~ "ĺ čçáđŕë ďŕęĺňč íŕ CDROM, đŕçëč÷ĺí îň číńňŕëŕöčîííč˙ CDROM, č, ęîăŕňî ěó\n"
-#~ "ďîňđ˙áâŕ äŕ ăî ńëîćčňĺ â óńňđîéńňâîňî, ňîé ůĺ čçęŕđŕ ňĺęóůč˙ CDROM č ůĺ "
-#~ "âč\n"
-#~ "ďîčńęŕ äđóă."
-
-#~ msgid "The following packages are going to be uninstalled"
-#~ msgstr "Ńëĺäíčňĺ ďŕęĺňč ůĺ áúäŕň äĺčíńňŕëčđŕíč"
-
-#~ msgid "This startup script try to load your modules for your usb mouse."
-#~ msgstr "Ňîçč ńňŕđňîâ ńęđčďň ńĺ îďčňâŕ äŕ çŕđĺäč ěîäóëč usb ěčřęŕňŕ âč."
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ msgstr ""
-#~ "Çŕ ďî-ńčăóđíŕ ńčńňĺěŕ, ňđ˙áâŕ äŕ čçáĺđĺňĺ \"Čçďîëçâŕé shadow ôŕéë\"\n"
-#~ "č \"Čçďîëçâŕé MD5 ďŕđîëč\"."
-
-#~ msgid "Toggle between Installed and Available"
-#~ msgstr "Ďđĺâęëţ÷âŕíĺ ěĺćäó Číńňŕëčđŕí č Íŕëč÷ĺí"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "Ăîđĺí/Äîëĺí úăúë â ňî÷ęč (1/72 íŕ čí÷)"
-
-#~ msgid "Tree"
-#~ msgstr "Äúđâî"
-
-#~ msgid "Try to find a modem?"
-#~ msgstr "Äŕ ńĺ îďčňŕě ëč äŕ îňęđč˙ ěîäĺě ?"
-
-#~ msgid "URL of the directory containing the RPMs"
-#~ msgstr "URL íŕ äčđĺęňîđč˙ňŕ ńúäúđćŕůŕ RPM"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "Îďöčč çŕ Uniprint äđŕéâĺđ"
-
-#~ msgid "Unrecognized config file"
-#~ msgstr "Íĺđŕçďîçíŕň íŕńňđîéâŕů ôŕéë"
-
-#~ msgid "Update location"
-#~ msgstr "Îáíîâč ě˙ńňîňî"
-
-#~ msgid "Updating the RPMs base"
-#~ msgstr "Îáíîâ˙âŕíĺ íŕ RPM áŕçŕňŕ"
-
-#~ msgid "Use MD5 passwords"
-#~ msgstr "Čçďîëçâŕé MD5 ďŕđîëč"
-
-#~ msgid "Use diskdrake"
-#~ msgstr "Čçďîëçâŕé diskdrake"
-
-#~ msgid "Use shadow file"
-#~ msgstr "Čçďîëçâŕé shadow ôŕéë"
-
-#~ msgid ""
-#~ "Welcome to The Network Configuration Wizard.\n"
-#~ "Which components do you want to configure?\n"
-#~ msgstr ""
-#~ "Äîáđĺ äîřëč â Ěŕăüîńíčęŕ çŕ ěđĺćîâŕ íŕńňđîéęŕ.\n"
-#~ "Ęîč ęîěďîíĺíňč čńęŕňĺ äŕ íŕńňđîčňĺ ?\n"
-
-#~ msgid "What are looking for?"
-#~ msgstr "Ęŕęâî ňúđń˙ň?"
-
-#~ msgid "What is your system used for?"
-#~ msgstr "Çŕ ęŕęâî ńĺ óďîňđĺá˙âŕ ńčńňĺěŕňŕ âč ?"
-
-#~ msgid "Which bootloader(s) do you want to use?"
-#~ msgstr "Ęŕęâŕ ďđîăđŕěŕ çŕ íŕ÷ŕëíî çŕđĺćäŕíĺ čńęŕňĺ äŕ čçďîëçâŕňĺ?"
-
-#~ msgid "Which file are you looking for?"
-#~ msgstr "Ęîé ôŕéë ňúđńčňĺ?"
-
-#~ msgid "Which package are looking for"
-#~ msgstr "Ęîé ďŕęĺň ňúđń˙ň"
-
-#~ msgid "Which serial port is your mouse connected to?"
-#~ msgstr "Ęúě ęîé ńĺđčĺí ďîđň ĺ ńâúđçŕíŕ ěčřęŕňŕ âč ?"
-
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ "Ń îňäŕëĺ÷ĺí CUPS ńúđâúđ, íĺ âč ńĺ íŕëŕăŕ äŕ íŕńňđîéâŕňĺ ęŕęúâňî\n"
-#~ "č äŕ áčëî ďđčíňĺđ ňóę; ďđčíňĺđčňĺ ńŕěč ůĺ áúäŕň çŕńĺ÷ĺíč,\n"
-#~ "îńâĺí ŕęî í˙ěŕňĺ ńúđâúđ íŕ äđóăŕ ěđĺćŕ; â ďîńëĺäíč˙ ńëó÷ŕé,\n"
-#~ "ůĺ ňđ˙áâŕ äŕ ďđĺäîńňŕâčňĺ IP ŕäđĺń č ĺâĺíňóŕëíî ďîđň íŕ\n"
-#~ "CUPS ńúđâúđŕ."
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "Çŕďčřč /etc/fstab"
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "Äŕ, îňďĺ÷ŕňŕé ASCII ňĺńňîâŕ ńňđŕíčöŕ"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "Äŕ, îňďĺ÷ŕňŕé PostScript ňĺńňîâŕ ńňđŕíčöŕ"
-
-#~ msgid ""
-#~ "You can choose a security level for your system. Please refer to the "
-#~ "manual for complete\n"
-#~ " information. Basically, if you don't know what to choose, keep the "
-#~ "default option.\n"
-#~ msgstr ""
-#~ "Ěîćĺňĺ äŕ čçáĺđĺňĺ íčâî íŕ ńčăóđíîńň íŕ ńčńňĺěŕňŕ ńč. Ěîë˙, îáúđíĺňĺ ńĺ "
-#~ "ęúě đúęîâîäńňâîňî çŕ\n"
-#~ "číôîđěŕöč˙. Íŕęđŕňęî, ŕęî íĺ çíŕĺňĺ ęŕęâî äŕ čçáĺđĺňĺ, îńňŕâĺňĺ ňîâŕ ďî "
-#~ "ďîäđŕçáčđŕíĺ.\n"
-
-#~ msgid ""
-#~ "You can configure a local printer (connected to your computer) or remote\n"
-#~ "printer (accessible via a Unix, Netware or Microsoft Windows network)."
-#~ msgstr ""
-#~ "Ěîćĺňĺ äŕ íŕńňđîčňĺ ëîęŕëĺí ďđčíňĺđ (ńâúđçŕí ęúě ěŕřčíŕňŕ âč) čëč "
-#~ "îňäŕëĺ÷ĺí\n"
-#~ "ďđčíňĺđ (äîńňúďĺí ÷đĺç Unix, Netware čëč Microsoft Windows ěđĺćŕ)."
-
-#~ msgid ""
-#~ "You can install cryptographic package if your internet connection has "
-#~ "been\n"
-#~ "set up correctly. First choose a mirror where you wish to download "
-#~ "packages and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "Ěîćĺňĺ äŕ číńňŕëčđŕňĺ ęđčďňîăđŕôńęč ďŕęĺňč, ŕęî Číňĺđíĺň âđúçęŕňŕ âč ĺ\n"
-#~ "íŕňđîĺíŕ ęŕęňî ňđ˙áâŕ. Ďúđâî čçáĺđĺňĺ îăëĺäŕëĺí ńŕéň, îň ęúäĺňî čçęŕňĺ äŕ "
-#~ "čçňĺăë˙ňĺ\n"
-#~ "ďŕęĺňč, ńëĺä ňîâŕ ěŕđęčđŕéňĺ ďŕęĺňčňĺ çŕ číńňŕëčđŕíĺ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Îňáĺëĺćĺňĺ, ÷ĺ ňđ˙áâŕ äŕ čçáĺđĺňĺ îăëĺäŕëĺí ńŕéň č ęđčďňîăđŕôńęč ďŕęĺňč,\n"
-#~ "ńúîáđŕçíî âŕřĺňî çŕęîíîäŕňĺëńňâî."
-
-#~ msgid ""
-#~ "You can now choose individually all the packages you\n"
-#~ "wish to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can expand or collapse the tree by clicking on options in the left "
-#~ "corner of\n"
-#~ "the packages window.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you prefer to see packages sorted in alphabetic order, click on the "
-#~ "icon\n"
-#~ "\"Toggle flat and group sorted\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want not to be warned on dependencies, click on \"Automatic\n"
-#~ "dependencies\". If you do this, note that unselecting one package may "
-#~ "silently\n"
-#~ "unselect several other packages which depend on it."
-#~ msgstr ""
-#~ "Ńĺăŕ ěîćĺňĺ äŕ čçáĺđĺňĺ ďîîňäĺëíî âńč÷ęč ďŕęĺňč, ęîčňî\n"
-#~ "čńęŕňĺ äŕ číńňŕëčđŕňĺ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ěîćĺňĺ äŕ đŕçřčđčňĺ čëč ńâčĺňĺ äúđâîňî, ęŕňî öúęíĺňĺ íŕ îďöččňĺ â ëĺâč˙ "
-#~ "úăúë\n"
-#~ "íŕ ďđîçîđĺöŕ ń ďŕęĺňčňĺ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ŕęî ďđĺäďî÷čňŕňĺ äŕ âčäčňĺ ďŕęĺňčňĺ ďîäđĺäĺíč â ŕçáó÷ĺí đĺä, öúęíĺňĺ íŕ\n"
-#~ "čęîíŕňŕ \"Ďđĺâęëţ÷âŕíĺ ěĺćäó íĺńîđňčđŕíč č ńîđňčđŕíč ďî ăđóďč\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Ŕęî íĺ čńęŕňĺ äŕ áúäĺňĺ ďđĺäóďđĺćäŕâŕíč çŕ çŕâčńčěîńňč, öúęíĺňĺ "
-#~ "\"Ŕâňîěŕňč÷íč çŕâčńčěîńňč\".\n"
-#~ "Ŕęî íŕďđŕâčňĺ ňîâŕ, îňáĺëĺćĺňĺ ÷ĺ čçęëţ÷âŕíĺňî íŕ ĺäčí ďŕęĺň ěîćĺ "
-#~ "ňčőîěúëęîě\n"
-#~ "äŕ čçęëţ÷č í˙ęîč äđóăč ďŕęĺňč, ęîčňî çŕâčń˙ň îň íĺăî."
-
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "Ńĺăŕ ěîćĺňĺ äŕ âúâĺäĺňĺ root ďŕđîëŕňŕ íŕ Mandrake Linux ńčńňĺěŕňŕ.\n"
-#~ "Ďŕđîëŕňŕ ňđ˙áâŕ äŕ áúäĺ âúâĺäĺäŕ äâŕ ďúňč çŕ ďđîâĺđęŕ, ÷ĺ ďŕđîëčňĺ ńŕ "
-#~ "čäĺíňč÷íč.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root ĺ ńčńňĺěíč˙ň ŕäěčíčńňđŕňîđ čëč ĺäčíńňâĺíč˙ ďîňđĺáčňĺë, íŕ ęîéňî ĺ "
-#~ "ďîçâîëĺíî\n"
-#~ "äŕ ďîďđŕâ˙ íŕńňđîéâŕůčňĺ ôŕéëîâĺ. Çŕňîâŕ čçáĺđĺňĺ ďŕđîëŕňŕ âíčěŕňĺëíî.\n"
-#~ "Íĺďîçâîëĺíŕ óďîňđĺáŕ íŕ root ŕęŕóíňŕ ěîćĺ äŕ áúäĺ čçęëęţ÷čňĺëíî îďŕńíî çŕ "
-#~ "öĺëîńňňŕ\n"
-#~ "íŕ ńčńňĺěŕňŕ, äŕííčňĺ č č äđóăčňĺ ńčńňĺěč ńâúđçŕíč ęúě íĺ˙.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ďŕđîëŕňŕ ňđ˙áâŕ äŕ ĺ ńěĺńčöŕ îň ŕçáó÷íč ńčěâîëč č äŕ ĺ äúëăŕ íŕé-ěŕëęî 8\n"
-#~ "ńčěâîëŕ. Íčęîăŕ íĺ ňđ˙áâŕ äŕ ńč ˙ çŕďčńâŕňĺ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Íĺ ďđŕâĺňĺ ďŕđîëŕňŕ ďđĺęŕëĺíî äúëăŕ čëč ńëîćíŕ, âúďđĺęč ňîâŕ: ňđ˙áâŕ äŕ "
-#~ "ěîćĺňĺ\n"
-#~ "äŕ ˙ çŕďîěíčňĺ áĺç ěíîăî óńčëč˙."
-
-#~ msgid ""
-#~ "You can now select some miscellaneous options for your system.\n"
-#~ "\n"
-#~ "* Use hard drive optimizations: this option can improve hard disk "
-#~ "performance but is only for advanced users. Some buggy\n"
-#~ " chipsets can ruin your data, so beware. Note that the kernel has a "
-#~ "builtin blacklist of drives and chipsets, but if\n"
-#~ " you want to avoid bad surprises, leave this option unset.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Choose security level: you can choose a security level for your system. "
-#~ "Please refer to the manual for complete\n"
-#~ " information. Basically, if you don't know what to choose, keep the "
-#~ "default option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the BIOS about the amount of RAM present in\n"
-#~ " your computer. As consequence, Linux may fail to detect your amount of "
-#~ "RAM correctly. If this is the case, you can\n"
-#~ " specify the correct amount or RAM here. Please note that a difference "
-#~ "of 2 or 4 MB between detected memory and memory\n"
-#~ " present in your system is normal.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Removable media automounting: if you would prefer not to manually mount "
-#~ "removable media (CD-Rom, floppy, Zip, etc.) by\n"
-#~ " typing \"mount\" and \"umount\", select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories stored in \"/tmp\" when you boot your system,\n"
-#~ " select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Enable num lock at startup: if you want NumLock key enabled after "
-#~ "booting, select this option. Please note that you\n"
-#~ " should not enable this option on laptops and that NumLock may or may "
-#~ "not work under X."
-#~ msgstr ""
-#~ "Ńĺăŕ ěîćĺňĺ äŕ čçáĺđĺňĺ í˙ęîč äîďúëíčňĺëíč îďöčč çŕ ńčńňĺěŕňŕ ńč.\n"
-#~ "\n"
-#~ "* Čçďîëçâŕíĺ îďňčěčçŕöčč çŕ ňâúđäč˙ äčńę: ňŕçč îďöč˙ ěîćĺ äŕ ďîäîáđč "
-#~ "đŕáîňŕňŕ íŕ ňâúđäč˙ âč äčńęŕ, íî ĺ ńŕěî çŕ íŕďđĺäíŕëč\n"
-#~ " ďîňĺđĺáčňĺëč: í˙ęîč íĺäîä˙ëŕíč ÷čďńĺňč ěîăŕň äŕ ńúńčď˙ň äŕííčňĺ âč, "
-#~ "ňŕęŕ ÷ĺ âíčěŕâŕéňĺ. Îňáĺëĺćĺňĺ, ÷ĺ ˙äđîňî čěŕ\n"
-#~ " âăđŕäĺí ÷ĺđĺí ńďčńúę îň óńňđîéńňâŕ č ÷čďńĺňč, íî, ŕęî čńęŕňĺ äŕ "
-#~ "čçáĺăíĺňĺ ëîřč čçíĺíŕäč, îńňŕâĺňĺ ňŕçč îďöč˙ čçęëţ÷ĺíŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Čçáĺđĺňĺ íčâî íŕ ńčăóđíîńň: ěîćĺňĺ äŕ čçáĺđĺňĺ íčâî íŕ ńčăóđíîńň çŕ "
-#~ "ńčńňĺěŕňŕ\n"
-#~ " ńč. Ěîë˙, îáúđíĺňĺ ńĺ ęúě đúęîâîäńňâîňî çŕ ďúëíŕ číôîđěŕöč˙. Ďđîńňî, "
-#~ "ŕęî\n"
-#~ " íĺ çíŕĺňĺ ęŕęâî äŕ čçáĺđĺňĺ, îńňŕâĺňĺ ňîâŕ ďî ďîäđŕçáčđŕíĺ.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Ňî÷íî RAM, ŕęî ĺ íóćíî: çŕ ńúćŕëĺíčĺ, í˙ěŕ ńňŕíäŕđňĺí ěĺňîä, äŕ ńĺ "
-#~ "ďîďčňŕ BIOS çŕ îáĺěŕ íŕ RAM â ęîěďţňúđŕ. Ęŕňî\n"
-#~ " ďîńëĺäńňâčĺ, GNU/Linux ěîćĺ äŕ íĺ óńďĺĺ äŕ çŕńĺ÷ĺ ďđŕâčëíî îáĺěŕ íŕ "
-#~ "RAM. Ŕęî ĺ ňŕęúâ ńëó÷ŕ˙, ňóę ěîćĺňĺ äŕ\n"
-#~ " çŕäŕäĺňĺ ňî÷íč˙ îáĺě íŕ RAM. Ěîë˙, îňáĺëĺćĺňĺ ÷ĺ îň 2 čëč 4 MB ěĺćäó "
-#~ "çŕńĺ÷ĺíŕňŕ č ďđčńúńňâŕůŕňŕ RAM ĺ íîđěŕëíŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Ŕâňîěŕňč÷íî ěîíňčđŕíĺ íŕ ďđĺíîńčěč óńňđîéńňâŕ: ŕęî ďđĺäďî÷čňŕňĺ äŕ íĺ "
-#~ "ěîíňčđŕňĺ đú÷íî ďđĺíîńčěč óńňđîéńňâŕ (CD-ROM,\n"
-#~ " ôëîďč, Zip č ň.í.) ďčřĺéęč \"mount\" č \"umount\", čçáĺđĺňĺ ňŕçč "
-#~ "îďöč˙.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Ďî÷čńňâŕíĺ íŕ \"/tmp\" ďđč çŕđĺćäŕíĺ: ŕęî čńęŕňĺ äŕ ńĺ čçňđčâŕň âńč÷ęč "
-#~ "ôŕéëîâĺ č äčđĺęňîđčč ńúőđŕí˙âŕíč â \"/tmp\",\n"
-#~ " ęîăŕňî çŕđĺćäŕňĺ ńčńňĺěŕňŕ ńč, čçáĺđĺňĺ ňŕçč îďöč˙.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Âęëţ÷âŕíĺ íŕ NumLock ďđč çŕđĺćäŕíĺ: ŕęî čńęŕňĺ äŕ ńĺ âęëţ÷âŕ NumLock "
-#~ "ďđč ńňŕđňčđŕíĺ, čçáĺđĺňĺ ňŕçč îďöč˙. Ěîë˙, îňáĺëĺćĺňĺ ÷ĺ\n"
-#~ " íĺ ňđ˙áâŕ äŕ âęëţ÷âŕňĺ ňŕçč îďöč˙ ďđč ëŕďňîďč č ÷ĺ ěîćĺ č äŕ íĺ đŕáîňč "
-#~ "ďîä X)."
-
-#~ msgid "You can now select your timezone according to where you live."
-#~ msgstr "Ńĺăŕ ěîćĺňĺ äŕ ďîńî÷čňĺ âđĺěĺâŕňŕ çîíŕ ńďđ˙ěî ěĺńňîćčâĺĺíĺňî ńč."
-
-#~ msgid ""
-#~ "You can now test your mouse. Use buttons and wheel to verify\n"
-#~ "if settings are good. If not, you can click on \"Cancel\" to choose "
-#~ "another\n"
-#~ "driver."
-#~ msgstr ""
-#~ "Ńĺăŕ ěîćĺňĺ äŕ čçďđîáâŕňĺ ěčřęŕňŕ ńč. Čçďîëçâŕéňĺ áóňîíŕ č ňîď÷ĺňî, çŕ "
-#~ "äŕ\n"
-#~ "ďđîâĺđčňĺ äŕëč íŕńňđîéęčňĺ ńŕ íŕđĺä. Ŕęî íĺ, ěîćĺňĺ äŕ öúęíĺňĺ \"Îňě˙íŕ"
-#~ "\",\n"
-#~ "çŕ äŕ čçáĺđĺňĺ äđóă äđŕéâĺđ."
-
-#~ msgid ""
-#~ "You can now test your mouse. Use buttons and wheel to verify\n"
-#~ "if settings are good. If not, you can click on \"Cancel\" to choose "
-#~ "another\n"
-#~ "driver.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you are installing on an Apple machine with a 1-button mouse, you "
-#~ "will\n"
-#~ "be given the opportunity to define some keyboard keys to emulate the 2nd\n"
-#~ "and 3rd mouse buttons. This will allow you to be able to access the "
-#~ "full\n"
-#~ "functionality of the mouse in both the Linux console and the X Window "
-#~ "GUI.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you have an ADB mouse, please select USB, as the Linux kernel will "
-#~ "take\n"
-#~ "care of mapping your mouse hardware correctly."
-#~ msgstr ""
-#~ "Ńĺăŕ ěîćĺňĺ äŕ čçďđîáâŕňĺ ěčřęŕňŕ ńč. Čçďîëçâŕéňĺ áóňîíčňĺ č ęîëĺëöĺňî, "
-#~ "çŕ\n"
-#~ "äŕ ďđîâĺđčäŕ äŕëč íŕńňđîéęčňĺ ńŕ íŕđĺä. Ŕęî íĺ ńŕ, öúęíĺňĺ íŕ \"Îňęŕç\", "
-#~ "çŕ\n"
-#~ "äŕ čçáĺđĺňĺ äđóă äđŕéâĺđ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ŕęî číńňŕëčđŕňĺ íŕ Apple ěŕřčíŕ ń ĺäíîáóňîííŕ ěčřęŕ, ůĺ čěŕňĺ âúçěîćíîńň "
-#~ "äŕ\n"
-#~ "îďđĺäĺëčňĺ ęëŕâčřč îň ęëŕâčŕňóđŕňŕ, äŕ ńčěóëčđŕň 2-đč č 3-ňč áóňîí íŕ\n"
-#~ "ěčřęŕňŕ. Ňîâŕ ůĺ âč äŕäĺ äîńňúď äî ďúëíŕňŕ ôóíęöčîíŕëíîńň íŕ ěčřęŕňŕ â "
-#~ "Linux\n"
-#~ "ęîíçîëŕňŕ, č â X Windows GUI.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ŕęî čěŕňĺ ADB ěčřęŕ, ěîë˙, čçáĺđĺňĺ USB, ňúé ęŕňî Linux ˙äđîňî ůĺ ńĺ "
-#~ "ďîăđčćč\n"
-#~ "äŕ čçďîëçâŕ ěčřęŕňŕ ęŕęňî ňđ˙áâŕ."
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr "Ěîćĺňĺ äŕ îďđĺäĺëčňĺ íŕďđŕâî URI çŕ äîńňúď äî ďđčíňĺđŕ ń CUPS."
-
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Ńĺăŕ ěîćĺňĺ äŕ íŕńňđîčňĺ ěđĺćîâîňî ńč óńňđîéńňâî.\n"
-#~ "\n"
-#~ " * IP ŕäđĺń: ŕęî íĺ çíŕĺňĺ čëč íĺ ńňĺ ńčăóđíč ęŕęâî äŕ âúâĺäĺňĺ, "
-#~ "ďîďčňŕéňĺ ěđĺćîâčĺ ńč ŕäěčíčńňđŕňîđ.\n"
-#~ " Íĺ ňđ˙áâŕ äŕ âúâĺćäŕňĺ IP ŕäđĺń, ŕęî čçáĺđĺňĺ îďöč˙ňŕ \"Ŕâňîěŕňč÷íî IP"
-#~ "\", ďî-äîëó.\n"
-#~ "\n"
-#~ " * Ěđĺćîâŕ ěŕńęŕ: \"255.255.255.0\" îáčęíîâĺííî ĺ äîáúđ čçáîđ. Ŕęî íĺ "
-#~ "çíŕĺňĺ čëč íĺ ńňĺ ńčăóđíč ęŕęâî äŕ âúâĺäĺňĺ, ďîďčňŕéňĺ ěđĺćîâč˙ ńč "
-#~ "ŕäěčíčńňđŕňîđ.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Ŕâňîěŕňč÷íî IP: Ŕęî ěđĺćŕňŕ âč čçďîëçâŕ BOOTP čëč DHCP ďđîňîęîë, "
-#~ "čçáĺđĺňĺ ňŕçč îďöč˙. Ŕęî ĺ čçáĺđŕíŕ, íĺ ńĺ íóćäŕĺňĺ\n"
-#~ " îň ńňîéíîńň çŕ \"IP ŕäđĺń\". Ŕęî íĺ çíŕĺňĺ čëč íĺ ńňĺ ńčăóđíč ęŕęâî "
-#~ "ňđ˙áâŕ äŕ âúâĺäĺňĺ, ďîďčňŕéňĺ ěđĺćîâč˙ ńč ŕäěčíčńňđŕňîđ."
-
-#~ msgid ""
-#~ "You may now create one or more \"regular\" user account(s), as\n"
-#~ "opposed to the \"privileged\" user account, root. You can create\n"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "Ńĺăŕ ěîćĺňĺ äŕ ńúçäŕäĺňĺ ĺäčí čëč ďîâĺ÷ĺ \"îáčęíîâĺíč\" ďîňđĺáčňĺëńęč\n"
-#~ "ŕęŕóíňč, ęŕňî ďđîňčâîďîëîćíîńň íŕ \"ďđčâčëĺăčđîâŕíč˙\" ďîňđĺáčňĺëńęč\n"
-#~ "ŕęŕóíň \"root\". Ěîćĺňĺ äŕ ńúçäŕäĺňĺ ďî ĺäčí čëč ďîâĺ÷ĺ çŕ âńĺęč, ęîéňî\n"
-#~ "áčőňĺ čńęŕëč äŕ ďîëçâŕ ęîěďţňúđŕ âč. Îňáĺëĺćĺňĺ ÷ĺ âńĺęč ŕęŕóíň ůĺ čěŕ\n"
-#~ "ńâîčňĺ ďđĺäďî÷čňŕíč˙ (ăđŕôč÷íŕ ńđĺäŕ, ďđîăđŕěíč íŕńňđîéęč č ň.í.)\n"
-#~ "č äŕ íŕńňđîč ńâî˙ňŕ \"Home\" äčđĺęňîđč˙, ęúäĺňî äŕ çŕďčńâŕ ňĺçč\n"
-#~ "ńâîč ďđĺäďî÷čňŕíč˙.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ďúđâî ńúçäŕéňĺ ŕęŕóíň çŕ ńĺáĺ ńč. Äŕćĺ č äŕ ńňĺ ĺäčíńňâĺíč˙ň ďîňđĺáčňĺë,\n"
-#~ "čçďîëçâŕíĺňî íŕ ŕäěčíčńňđŕňîđńęč˙ ŕęŕóíň çŕ âńĺęčäíĺâíŕ óďîňđĺáŕ ĺ "
-#~ "îďŕńíî.\n"
-#~ "\n"
-#~ "\n"
-#~ "Çŕňîâŕ âëčçŕéňĺ ń ďîňđĺáčňĺëńęč˙ ńč ŕęŕóíň â ńčńňĺěŕňŕ č, ńŕěî ŕęî âč ńĺ\n"
-#~ "íŕëîćč, čçďîëçâŕéňĺ ŕäěčíčńňđŕňîđńęč˙ ŕęŕóíň."
-
-#~ msgid ""
-#~ "You may now enter dialup options. If you don't know\n"
-#~ "or are not sure what to enter, the correct informations can be obtained "
-#~ "from\n"
-#~ "your Internet Service Provider. If you do not enter the DNS (name "
-#~ "server)\n"
-#~ "information here, this information will be obtained from your Internet "
-#~ "Service\n"
-#~ "Provider at connection time."
-#~ msgstr ""
-#~ "Ńĺăŕ ěîćĺňĺ äŕ âúâĺäĺňĺ dialup îďöččňĺ. Ŕęî íĺ çíŕĺňĺ\n"
-#~ "čëč íĺ ńňĺ ńčăóđíč ęŕęâî äŕ âúâĺäĺňĺ, ďîäőîä˙ůŕ číôîđěŕöč˙ ěîćĺ äŕ áúäĺ "
-#~ "âçĺňŕ\n"
-#~ "îň Číňĺđíĺň äîńňŕâ÷čęŕ âč. Ŕęî íĺ âúâĺäĺňĺ číôîđěŕöč˙ çŕ DNS (name "
-#~ "server)\n"
-#~ "ňóę, ňŕçč číôîđěŕöč˙ ůĺ áúäĺ âçĺňŕ Číňĺđíĺň äîńňŕâ÷čęŕ âč ďî âđĺěĺ íŕ\n"
-#~ "ńâúđçâŕíĺ."
-
-#~ msgid ""
-#~ "You may now enter dialup options. If you're not sure what to enter, the\n"
-#~ "correct information can be obtained from your ISP."
-#~ msgstr ""
-#~ "Ńĺăŕ ěîćĺňĺ äŕ âúâĺäĺňĺ îďöččňĺ çŕ íŕáčđŕíĺ. Ŕęî íĺ ńňĺ ńčăóđíč,\n"
-#~ "ďđŕâčëíŕ číôîđěŕöč˙ ěîćĺňĺ äŕ ďîëó÷čňĺ îň Číňĺđíĺň äîńňŕâ÷čęŕ ńč."
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, ask your network administrator."
-#~ msgstr ""
-#~ "Ńĺăŕ ěîćĺňĺ äŕ âúâĺäĺňĺ čěĺňî íŕ őîńňŕ ńč. Ŕęî íĺ çíŕĺňĺ\n"
-#~ "čëč íĺ ńňĺ ńčăóđíč ęŕęâî äŕ âúâĺäĺňĺ, ďîďčňŕéňĺ ěđĺćîâč˙ ńč ŕäěčíčńňđŕňîđ."
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, leave blank."
-#~ msgstr ""
-#~ "Ńĺăŕ ěîćĺňĺ äŕ âúâĺäĺňĺ čěĺňî íŕ őîńňŕ ńč, ŕęî ňđ˙áâŕ. Ŕęî\n"
-#~ "íĺ çíŕĺňĺ čëč íĺ ńňĺ ńčăóđíč ęŕęâî äŕ âúâĺäĺňĺ, îńňŕâĺňĺ ăî ďđŕçíî."
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, the correct informations can "
-#~ "be\n"
-#~ "obtained from your Internet Service Provider."
-#~ msgstr ""
-#~ "Ńĺăŕ ěîćĺňĺ äŕ âúâĺäĺňĺ čěĺňî íŕ őîńňŕ ńč, ŕęî âč ňđ˙áâŕ. Ŕęî íĺ\n"
-#~ "çíŕĺňĺ čëč íĺ ńňĺ ńčăóđíč ęŕęâî ňđ˙áâŕ äŕ âúâĺäĺňĺ, ń ďđŕâčëíŕ "
-#~ "číôîđěŕöč˙\n"
-#~ "ěîćĺňĺ äŕ ńĺ ńäîáčĺňĺ îň Číňĺđíĺň äîńňŕâ÷čęŕ ńč."
-
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "Ńĺăŕ ěîćĺňĺ ńŕ ěŕđęčđŕňĺ ăđóďŕ ďŕęĺňč, ęî˙ňî čńęŕňĺ äŕ\n"
-#~ "číńňŕëčđŕňĺ čëč îáíîâčňĺ.\n"
-#~ "\n"
-#~ "DrakX ůĺ ďđîâĺđč äŕëč čěŕňĺ äîńňŕňú÷íî ě˙ńňî çŕ číńňŕëčđŕíĺňî čě. Ŕęî "
-#~ "í˙ěŕňĺ,\n"
-#~ "ňîé ůĺ âč ďđĺäóďđĺäč çŕ ňîâŕ. Ŕęî čńęŕňĺ äŕ ďđîäúëćčňĺ âúďđĺęč ňîâŕ, ůĺ "
-#~ "ďđîäúëćč\n"
-#~ "číńňŕëŕöč˙ňŕ íŕ âńč÷ęč ěŕđęčđŕíč ăđóďč, íî ůĺ ďđîďóńíĺ ďî-ěŕëîâŕćíčňĺ "
-#~ "ďŕęĺňč.\n"
-#~ "Â äúíîňî íŕ ńďčńúęŕ ěîćĺňĺ äŕ ěŕđęčđŕňĺ îďöč˙ňŕ \"Číäčâčäóŕëĺí čçáîđ íŕ "
-#~ "ďŕęĺňč\";\n"
-#~ "â ňîçč ńëó÷ŕé, ůĺ ňđ˙áâŕ äŕ îáőîäčňĺ ďîâĺ÷ĺ îň 1000 ďŕęĺňŕ ..."
-
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "\t* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ "\t at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "\t* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ "\t will then have a complete collection of software installed in order "
-#~ "to compile, debug and format source code,\n"
-#~ "\t or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "\t* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ "\t SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ "\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "Ńĺăŕ ňđ˙áâŕ äŕ îďđĺäĺëčňĺ ďđĺäíŕçíŕ÷ĺíčĺňî íŕ ěŕřčíŕňŕ ńč. Âúçěîćíîńňčňĺ "
-#~ "ńŕ:\n"
-#~ "\n"
-#~ "\t* Đŕáîňíŕ ńňŕíöč˙: ňîâŕ ĺ čäĺŕëíč˙ čçáîđ, ŕęî âúçíŕěĺđ˙âŕňĺ äŕ "
-#~ "čçďîëçâŕňĺ ěŕřčíŕňŕ ńč ăëŕâíî çŕ ĺćĺäíĺâíŕ óďîňđĺáŕ â\n"
-#~ "\t îôčńŕ čëč ó äîěŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ "\t* Đŕçđŕáîňęŕ: ŕęî âúçíŕěĺđ˙âŕňĺ äŕ čçďîëçâŕňĺ ěŕřčíŕňŕ ńč ăëŕâíî çŕ "
-#~ "đŕçđŕáîňęŕ íŕ ńîôóĺđ, ňîâŕ ĺ äîáúđ čçáîđ.\n"
-#~ "\t Ňîăŕâŕ ůĺ čěŕňĺ číńňŕëčđŕí ďúëĺí íŕáîđ îň ńîôňóĺđ, çŕ äŕ ęîěďčëčđŕňĺ, "
-#~ "îňęđčâŕňĺ áúăîâĺ č ôîđěŕňčđŕňĺ čçőîäĺí ęîä,\n"
-#~ "\t čëč äŕ ńúçäŕâŕňĺ ńîôóĺđíč ďŕęĺňč.\n"
-#~ "\n"
-#~ "\n"
-#~ "\t* Ńúđâúđ: ŕęî âúçíŕěĺđ˙âŕňĺ äŕ čçďîëçâŕňĺ ňŕçč ěŕřčíŕ çŕ ńúđâúđ, ňîâŕ ĺ "
-#~ "äîáđč˙ň čçáîđ. Âęëţ÷âŕ ôŕéëîâ ńúđâúđ\n"
-#~ "\t (NFS čëč SMB), ńúđâúđ çŕ ďĺ÷ŕň (Unix-ńęč čëč Microsoft Windows-ńęč), "
-#~ "ńúđâúđ çŕ ŕóňîđčçŕöč˙ (NIS), ńúđâúđ çŕ\n"
-#~ "\t áŕçč-äŕííč č ň.í.. Ęŕňî ňŕęúâ, íĺ î÷ŕęâŕéňĺ číńňŕëčđŕíč ęŕęâčňî č äŕ "
-#~ "ĺ řŕđčíčč (KDE, GNOME, č ň.í.)."
-
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "Ńĺăŕ ňđ˙áâŕ äŕ îďđĺäĺëčňĺ ďđĺäíŕçíŕ÷ĺíčĺňî íŕ ěŕřčíŕňŕ ńč. Âúçěîćíîńňčňĺ "
-#~ "ńŕ:\n"
-#~ "\n"
-#~ "* Đŕáîňíŕ ńňŕíöč˙: ňîâŕ ĺ čäĺŕëíč˙ čçáîđ, ŕęî âúçíŕěĺđ˙âŕňĺ äŕ čçďîëçâŕňĺ "
-#~ "ěŕřčíŕňŕ ńč ăëŕâíî çŕ ĺćĺäíĺâíŕ óďîňđĺáŕ â\n"
-#~ " îôčńŕ čëč ó äîěŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Đŕçđŕáîňęŕ: ŕęî âúçíŕěĺđ˙âŕňĺ äŕ čçďîëçâŕňĺ ěŕřčíŕňŕ ńč ăëŕâíî çŕ "
-#~ "đŕçđŕáîňęŕ íŕ ńîôóĺđ, ňîâŕ ĺ äîáúđ čçáîđ.\n"
-#~ " Ňîăŕâŕ ůĺ čěŕňĺ číńňŕëčđŕí ďúëĺí íŕáîđ îň ńîôňóĺđ, çŕ äŕ ęîěďčëčđŕňĺ, "
-#~ "îňęđčâŕňĺ áúăîâĺ č ôîđěŕňčđŕňĺ čçőîäĺí ęîä,\n"
-#~ " čëč äŕ ńúçäŕâŕňĺ ńîôóĺđíč ďŕęĺňč.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Ńúđâúđ: ŕęî âúçíŕěĺđ˙âŕňĺ äŕ čçďîëçâŕňĺ ňŕçč ěŕřčíŕ çŕ ńúđâúđ, ňîâŕ ĺ "
-#~ "äîáđč˙ň čçáîđ. Âęëţ÷âŕ ôŕéëîâ ńúđâúđ\n"
-#~ " (NFS čëč SMB), ńúđâúđ çŕ ďĺ÷ŕň (Unix-ńęč čëč Microsoft Windows-ńęč), "
-#~ "ńúđâúđ çŕ ŕóňîđčçŕöč˙ (NIS), ńúđâúđ çŕ\n"
-#~ " áŕçč-äŕííč č ň.í.. Ęŕňî ňŕęúâ, íĺ î÷ŕęâŕéňĺ číńňŕëčđŕíč ęŕęâčňî č äŕ ĺ "
-#~ "řŕđčíčč (KDE, GNOME, č ň.í.)."
-
-#~ msgid "You must now select your printer in the above list."
-#~ msgstr "Ńĺăŕ ěîćĺňĺ äŕ čçáĺđĺňĺ ďđčíňĺđ îň ńďčńúęŕ ďî-ăîđĺ."
-
-#~ msgid ""
-#~ "You need to accept the terms of the above license to continue "
-#~ "installation.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Accept\" if you agree with its terms.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Refuse\" if you disagree with its terms. Installation "
-#~ "will end without modifying your current\n"
-#~ "configuration."
-#~ msgstr ""
-#~ "Ňđ˙áâŕ äŕ ďđčĺěĺňĺ óńëîâč˙ňŕ íŕ ëčöĺíçŕ ďî-ăîđĺ, çŕ äŕ ďđîäúëćč "
-#~ "číńňŕëŕöč˙ňŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Öúęíĺňĺ \"Ďđčĺěč\", ŕęî ńňĺ ńúăëŕńíč ń óńëîâč˙ňŕ ěó.\n"
-#~ "\n"
-#~ "\n"
-#~ "Öúęíĺňĺ \"Îňęŕćč\", ŕęî íĺ ńňĺ ńúăëŕńíč ń óńëîâč˙ňŕ ěó. Číńňŕëŕöč˙ňŕ ůĺ "
-#~ "ďđčęëţ÷č áĺç ďđîě˙íŕ íŕ íŕńňî˙ůŕňŕ\n"
-#~ "íŕńňđîéęŕ."
-
-#~ msgid ""
-#~ "You need to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of queue: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you need have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer to have a more meaningful "
-#~ "name, you have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ " \n"
-#~ " * Spool directory: it is in this directory that printing jobs are "
-#~ "stored. Keep the default choice\n"
-#~ " if you don't know what to use\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printer Connection: If your printer is physically connected to your "
-#~ "computer, select \"Local printer\".\n"
-#~ " If you want to access a printer located on a remote Unix machine, "
-#~ "select \"Remote lpd printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to access a printer located on a remote Microsoft "
-#~ "Windows machine (or on Unix machine using SMB\n"
-#~ " protocol), select \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to acces a printer located on NetWare network, select "
-#~ "\"NetWare\".\n"
-#~ msgstr ""
-#~ "Ňđ˙áâŕ äŕ âúâĺäĺňĺ í˙ęŕęâŕ číôîđěŕöč˙ ňóę.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Čěĺ íŕ ďđčíňĺđ: ďî ďîäđŕçáčđŕíĺ, ďĺ÷ŕňíč˙ spooler čçďîëçâŕ \"lp\" "
-#~ "ęŕňî čěĺ íŕ ďđčíňĺđ. Ňŕęŕ ÷ĺ ňđ˙áâŕ äŕ čěŕňĺ\n"
-#~ "ďđčíňĺđ íŕđĺ÷ĺí \"lp\".\n"
-#~ " Ŕęî čěŕňĺ ńŕěî ĺäčí ďđčíňĺđ, ěîćĺňĺ äŕ čçďîëçâŕňĺ í˙ęîëęî čěĺíŕ çŕ "
-#~ "íĺăî. Ďđîńňî ňđ˙áâŕ äŕ ăč îňäĺëčňĺ ń pipe\n"
-#~ " ńčěâîëŕ (\"|\"). Ňŕęŕ ÷ĺ, ŕęî ďđĺäďî÷čňŕňĺ ďî-ńěčńëĺíî čěĺ, ěîćĺňĺ "
-#~ "äŕ ăî ńëîćčňĺ ďúđâî, íŕďđ. \"My printer|lp\".\n"
-#~ " Ďđčíňĺđúň ńúäúđćŕů \"lp\" â čěĺňî(ŕňŕ) ńč, ůĺ ńĺ ďîëçâŕ ďî "
-#~ "ďîäđŕçáčđŕíĺ.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Spool äčđĺęňîđč˙: ňîâŕ ĺ äčđĺęňîđč˙ňŕ, ęúäĺňî ńĺ ńúőđŕí˙âŕň đŕáîňčňĺ "
-#~ "çŕ ďĺ÷ŕň. Îńňŕâĺňĺ ńňîéíîńňňŕ\n"
-#~ " ďî ďîäđŕçáčđŕíĺ, îńâĺí ŕęî íĺ çíŕĺňĺ ęŕęâî äŕ čçďîëçâŕňĺ\n"
-#~ "\n"
-#~ "\n"
-#~ " * Âđúçęŕ ęúě ďđčíňĺđ: Ŕęî ďđčíňĺđúň âč ĺ ôčçč÷ĺńęč ńâúđçŕí ęúě "
-#~ "ęîěďţňúđŕ âč, čçáĺđĺňĺ \"Ëîęŕëĺí ďđčíňĺđ\".\n"
-#~ " Ŕęî čńęŕňĺ äîńňúď äî ďđčíňĺđ íŕěčđŕů ńĺ íŕ îňäŕëĺ÷ĺíŕ Unix ěŕřčíŕ, "
-#~ "čçáĺđĺňĺ \"Îňäŕëĺ÷ĺí LPD ďđčíňĺđ\".\n"
-#~ "\n"
-#~ "\n"
-#~ " Ŕęî čńęŕňĺ äîńňúď äî ďđčíňĺđ íŕěčđŕů ńĺ íŕ îňäŕëĺ÷ĺíŕ Microsoft "
-#~ "Windows ěŕřčíŕ (čëč íŕ Unix ěŕřčíŕ ďîëçâŕůŕ SMB\n"
-#~ " ďđîňîęîë), čçáĺđĺňĺ \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " Ŕęî čńęŕňĺ äîńňúď äî ďđčíňĺđ íŕěčđŕů ńĺ íŕ NetWare ěđĺćŕ, čçáĺđĺňĺ "
-#~ "\"NetWare\".\n"
-
-#~ msgid ""
-#~ "Your printer has not been detected. Please enter the name of the device "
-#~ "on\n"
-#~ "which it is connected.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, most printers are connected on the first parallel port. "
-#~ "This\n"
-#~ "one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
-#~ "Windows."
-#~ msgstr ""
-#~ "Ďđčíňĺđúň âč áĺřĺ çŕńĺ÷ĺí. Ěîë˙, âúâĺäĺňĺ čěĺňî íŕ óńňđîéńňâîňî, íŕ "
-#~ "ęîĺňî\n"
-#~ "ĺ ńâúđçŕí.\n"
-#~ "\n"
-#~ "\n"
-#~ "Çŕ číôîđěŕöč˙, ďîâĺ÷ĺňî ďđčíňĺđč ńŕ ńâúđçŕíč íŕ ďúđâč˙ ďŕđŕëĺëĺí ďîđň. "
-#~ "Ňîçč\n"
-#~ "ńĺ íŕđč÷ŕ \"/dev/lp0\" ďîä GNU/Linux č \"LPT1\" ďîä Microsoft Windows."
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
-#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
-#~ msgstr ""
-#~ "Ńčńňĺěŕňŕ âč ůĺ ńĺ đĺńňŕđňčđŕ.\n"
-#~ "\n"
-#~ "Ńëĺä ęŕňî đĺńňŕđňčđŕ, âŕřŕňŕ íîâŕ Mandrake Linux ńčńňĺěŕ ůĺ ńĺ çŕđĺäč\n"
-#~ "ŕâňîěŕňč÷íî. Ŕęî čńęŕňĺ äŕ ďóńíĺňĺ äđóăŕ ńúůĺńňâóâŕůŕ îďĺđŕöčîííŕ "
-#~ "ńčńňĺěŕ,\n"
-#~ "ďđî÷ĺňĺňĺ äîďúëíčňĺëíčňĺ číńňđóęöčč."
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "âńč÷ęč äŕííč âúđőó ň˙ő ůĺ áúäŕň çŕăóáĺíč"
-
-#~ msgid ""
-#~ "beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
-#~ "If you want to be root, you have to login as a user and then use \"su\".\n"
-#~ "More generally, do not expect to use your machine for anything but as a "
-#~ "server.\n"
-#~ "You have been warned."
-#~ msgstr ""
-#~ "âíčěŕíčĺ: Â ŇÎÂŔ ÍČÂÎ ÍŔ ŃČĂÓĐÍÎŃŇ, ROOT ÂËČÇŔÍĹŇÎ ÍŔ ĘÎÍÇÎËŔŇŔ ÍĹ Ĺ "
-#~ "ĎÎÇÂÎËĹÍÎ !\n"
-#~ "Ŕęî čńęŕňĺ äŕ ńňĺ root, ňđ˙áâŕ äŕ âëĺçĺňĺ ęŕňî ďîňđĺáčňĺë č ňîăŕâŕ äŕ "
-#~ "čçďîëçâŕňĺ \"su\".\n"
-#~ "Ęŕňî ö˙ëî, íĺ î÷ŕęâŕéňĺ äŕ čçďîëçâŕňĺ ěŕřčíŕňŕ ńč çŕ íĺůî äđóăî, îńâĺí çŕ "
-#~ "ńúđâúđ.Á˙őňĺ ďđĺäóďđĺäĺí."
-
-#~ msgid "cannot fork: "
-#~ msgstr "íĺ ěîăŕ äŕ ńĺ îňäĺë˙: "
-
-#~ msgid "default"
-#~ msgstr "ďî ďîäđŕçáčđŕíĺ"
-
-#~ msgid "don't use pppoe"
-#~ msgstr "íĺ čçďîëçâŕé PPPOE"
-
-#~ msgid "gMonitor"
-#~ msgstr "gMonitor"
-
-#~ msgid "horizontal nice looking aurora"
-#~ msgstr "Őîđčçîíňŕëíŕ äîáđĺ-čçăëĺćäŕůŕ aurora"
-
-#~ msgid "i18n (important)"
-#~ msgstr "i18n (âŕćĺí)"
-
-#~ msgid "i18n (nice)"
-#~ msgstr "i18n (äîáúđ)"
-
-#~ msgid "i18n (very nice)"
-#~ msgstr "i18n (ěíîăî äîáúđ)"
-
-#~ msgid "loopback"
-#~ msgstr "loopback"
-
-#~ msgid "not connected"
-#~ msgstr "íĺ ńâúđçŕí"
-
-#~ msgid "received: "
-#~ msgstr "ďîëó÷ĺíč: "
-
-#~ msgid ""
-#~ "rpmdrake is currently in ``low memory'' mode.\n"
-#~ "I'm going to relaunch rpmdrake to allow searching files"
-#~ msgstr ""
-#~ "rpmdrake ĺ â đĺćčě íŕ ``ěŕëęî ďŕěĺň''.\n"
-#~ "Ůĺ ďóńíŕ îňíîâî rpmdrake, çŕ äŕ đŕçđĺřŕ ňúđńĺíĺňî íŕ ôŕéëîâĺ"
+#~ msgid "Show expert mode"
+#~ msgstr "Ńúń đŕçřčđĺíč ôóíęöčč"
-#~ msgid "sent: "
-#~ msgstr "čçďđŕňĺíč: "
+#~ msgid "modules"
+#~ msgstr "ěîäóëč"
-#~ msgid "using module"
-#~ msgstr "čçďîëçâŕíĺ íŕ ěîäóë"
+#~ msgid "Boot disk maker. Still in early stage.\n"
+#~ msgstr "Ńúńňŕâčňĺë íŕ ńňŕđňčđŕůŕ äčńęĺňŕ. Âńĺ îůĺ â đŕçđŕáîňęŕ.\n"
-#~ msgid "vertical traditional aurora"
-#~ msgstr "Îáčęíîâĺíŕ âĺđňčęŕëíŕ aurora"
+#~ msgid "experts only"
+#~ msgstr "çŕ ĺęńďĺđňč"
-#~ msgid "yellow pages"
-#~ msgstr "ćúëňč ńňđŕíčöč"
+#~ msgid "/File/_Preferences"
+#~ msgstr "/Ôŕéë/_Ďđĺäďî÷čňŕíč˙"
diff --git a/perl-install/share/po/br.po b/perl-install/share/po/br.po
index f210d9039..235ad3a0b 100644
--- a/perl-install/share/po/br.po
+++ b/perl-install/share/po/br.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX 8.2\n"
-"POT-Creation-Date: 2002-06-13 15:54+0200\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
"PO-Revision-Date: 2002-01-28 22:41GMT\n"
"Last-Translator: Thierry Vignaud <tvignaud@mandrakesoft.com>\n"
"Language-Team: Brezhoneg <ofisk@wanadoo.fr>\n"
@@ -14,96 +14,117 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Configure all heads independently"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 ko"
-#: ../../Xconfigurator.pm_.c:244
-msgid "Use Xinerama extension"
-msgstr "Implijit Xinemara"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 ko"
-#: ../../Xconfigurator.pm_.c:247
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Kefluniadur hep ken kartenn \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 Mo"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 Mo"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 Mo"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 Mo"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 Mo"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 Mo"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 Mo pe vuioc'h"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Dibabit ur servijer X"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "servijer X"
+
+#: ../../Xconfig/card.pm_.c:225
#, fuzzy
msgid "Multi-head configuration"
msgstr "o lenn ar c'hefluniadur"
-#: ../../Xconfigurator.pm_.c:251
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfigurator.pm_.c:262
-msgid "Graphics card"
-msgstr "Kartenn c'hrafek"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Diuzit ment memor ho kartenn c'hrafek"
-#: ../../Xconfigurator.pm_.c:263
-msgid "Select a graphics card"
-msgstr "Diuzit ur gartenn c'hrafek"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "Staliadur XFree86"
-#: ../../Xconfigurator.pm_.c:287
-msgid "Choose a X server"
-msgstr "Dibabit ur servijer X"
+#: ../../Xconfig/card.pm_.c:343
+#, fuzzy
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Pe seurt enmont a vennit ouzhpennaĂą"
-#: ../../Xconfigurator.pm_.c:287
-msgid "X server"
-msgstr "servijer X"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:294
-msgid "Choose a X driver"
-msgstr "Dibabit ur sturier X"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Implijit Xinemara"
-#: ../../Xconfigurator.pm_.c:294
-msgid "X driver"
-msgstr "Sturier X"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Kefluniadur hep ken kartenn \"%s\" (%s)"
-#: ../../Xconfigurator.pm_.c:361 ../../Xconfigurator.pm_.c:367
-#: ../../Xconfigurator.pm_.c:417 ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:364
-#, fuzzy
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Pe seurt enmont a vennit ouzhpennaĂą"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s gant 3D"
-#: ../../Xconfigurator.pm_.c:375
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-#: ../../Xconfigurator.pm_.c:377 ../../Xconfigurator.pm_.c:410
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
-#: ../../Xconfigurator.pm_.c:379 ../../Xconfigurator.pm_.c:412
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s gant 3D"
-
-#: ../../Xconfigurator.pm_.c:387 ../../Xconfigurator.pm_.c:401
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:389 ../../Xconfigurator.pm_.c:403
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr ""
-#: ../../Xconfigurator.pm_.c:398
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -111,31 +132,52 @@ msgid ""
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-#: ../../Xconfigurator.pm_.c:418
-msgid "Xpmac (installation display driver)"
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
-#: ../../Xconfigurator.pm_.c:422
-msgid "XFree configuration"
-msgstr "Staliadur XFree86"
-
-#: ../../Xconfigurator.pm_.c:497
-msgid "Select the memory size of your graphics card"
-msgstr "Diuzit ment memor ho kartenn c'hrafek"
+#: ../../Xconfig/card.pm_.c:445
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:551
-msgid "Choose options for server"
-msgstr "Dibabit dibarzhoĂš ar servijer"
+#: ../../Xconfig/main.pm_.c:60
+#, fuzzy, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr "Derc'hel ar c'hefluniadur IP o ren"
-#: ../../Xconfigurator.pm_.c:575
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Dibabit ur skramm"
-#: ../../Xconfigurator.pm_.c:575
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Skramm"
-#: ../../Xconfigurator.pm_.c:578
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "PersonelaĂą"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Rummel"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Dizober"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -158,230 +200,158 @@ msgstr ""
"a zo en tu-hont da varregezh ho skramm : gallout a rafe gwastaù ho skramm\n"
" M'hoc'h eus douetaĂąs, dibabit ur c'hefluniadur fur."
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Feur freskaat a-led"
-#: ../../Xconfigurator.pm_.c:586
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Feur freskaat a-serzh"
-#: ../../Xconfigurator.pm_.c:623
-msgid "Monitor not configured"
-msgstr "Skramm ket kefluniet"
-
-#: ../../Xconfigurator.pm_.c:626
-msgid "Graphics card not configured yet"
-msgstr "Kartenn c'hrafek ket kefluniet c'hoazh"
-
-#: ../../Xconfigurator.pm_.c:629
-msgid "Resolutions not chosen yet"
-msgstr "SpisterioĂš ket dibabet c'hoazh"
-
-#: ../../Xconfigurator.pm_.c:647
-msgid "Do you want to test the configuration?"
-msgstr "Mennout a rit amprouiĂą ar c'hefluniadur ?"
-
-#: ../../Xconfigurator.pm_.c:651
-#, fuzzy
-msgid "Warning: testing this graphics card may freeze your computer"
-msgstr "Da ziwall : arvarus eo amprouiù ar gartenn c'hrafek-maù"
-
-#: ../../Xconfigurator.pm_.c:654
-msgid "Test of the configuration"
-msgstr "AmprouiĂą ar c'hefluniadur"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 liv (8 bit)"
-#: ../../Xconfigurator.pm_.c:693 ../../Xconfigurator.pm_.c:705
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"klaskit kemmaĂą arventennoĂš 'zo"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 mil liv (15 bit)"
-#: ../../Xconfigurator.pm_.c:693 ../../Xconfigurator.pm_.c:705
-msgid "An error occurred:"
-msgstr "C'hoarvezet eo ur fazi :"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 mil liv (16 bit)"
-#: ../../Xconfigurator.pm_.c:734
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Kuitaat e %d eilenn"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 milion a livioĂš (24 bit)"
-#: ../../Xconfigurator.pm_.c:745
-msgid "Is this the correct setting?"
-msgstr "Ha reizh eo ar c'hefluniadur ?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 miliard a livioĂš (32 bit)"
-#: ../../Xconfigurator.pm_.c:754
-msgid "An error occurred, try to change some parameters"
-msgstr "C'hoarvezet eo ur fazi, klaskit kemmaĂą arventennoĂš 'zo"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "SpisterioĂš"
-#: ../../Xconfigurator.pm_.c:825
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Spister"
-#: ../../Xconfigurator.pm_.c:877
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Dibabit ar spister ha donder al livioĂš"
-#: ../../Xconfigurator.pm_.c:879
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
msgid "Graphics card: %s"
msgstr "Kartenn c'hrafek : %s"
-#: ../../Xconfigurator.pm_.c:880
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Servijer XFree86 : %s"
-
-#: ../../Xconfigurator.pm_.c:894 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-#, fuzzy
-msgid "More"
-msgstr "Dilec'hiaĂą"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "NullaĂą"
-#: ../../Xconfigurator.pm_.c:894 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:701
-#: ../../my_gtk.pm_.c:1034 ../../my_gtk.pm_.c:1056
-#: ../../standalone/drakbackup_.c:2288 ../../standalone/drakbackup_.c:2359
-#: ../../standalone/drakbackup_.c:2375
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Mat eo"
-#: ../../Xconfigurator.pm_.c:896 ../../network/netconnect.pm_.c:173
-#: ../../printerdrake.pm_.c:2473 ../../standalone/drakfloppy_.c:146
-#: ../../standalone/draknet_.c:275 ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Mod mailh"
-
-#: ../../Xconfigurator.pm_.c:897
-msgid "Show all"
-msgstr "Diskouez pep tra"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Mennout a rit amprouiĂą ar c'hefluniadur ?"
-#: ../../Xconfigurator.pm_.c:942
-msgid "Resolutions"
-msgstr "SpisterioĂš"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "AmprouiĂą ar c'hefluniadur"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Reizhadur ar stokellaoueg : %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Seurt logodenn : %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Trobarzhell al logodenn : %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Skramm : %s\n"
-#: ../../Xconfigurator.pm_.c:1516
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "KempredA-led ar skramm : %s\n"
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "FreskA-serzh ar skramm : %s\n"
-#: ../../Xconfigurator.pm_.c:1518
+#: ../../Xconfig/various.pm_.c:33
#, c-format
msgid "Graphics card: %s\n"
msgstr "Kartenn c'hrafek : %s\n"
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Graphics card identification: %s\n"
-msgstr "Anavezoud kartenn c'hrafek : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:34
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "Memor c'hrafek : %s ko\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Donder liv: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Spister: %s\n"
-#: ../../Xconfigurator.pm_.c:1525
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Servijer XFree86 : %s\n"
-#: ../../Xconfigurator.pm_.c:1526
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Sturier XFree86 : %s\n"
-#: ../../Xconfigurator.pm_.c:1544
-msgid "Preparing X-Window configuration"
-msgstr "O prientiĂą kefluniadur X-Window"
-
-#: ../../Xconfigurator.pm_.c:1564
-msgid "What do you want to do?"
-msgstr "Petra a vennit ober ? "
-
-#: ../../Xconfigurator.pm_.c:1569
-msgid "Change Monitor"
-msgstr "KemmaĂą ar skramm"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Graphics card"
-msgstr "KemmaĂą ar gartenn c'hrafek"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Change Server options"
-msgstr "KemmaĂą dibarzhoĂš ar servijer"
-
-#: ../../Xconfigurator.pm_.c:1574
-msgid "Change Resolution"
-msgstr "KemmaĂą ar spister"
-
-#: ../../Xconfigurator.pm_.c:1575
-msgid "Show information"
-msgstr "Diskouez titouroĂš"
-
-#: ../../Xconfigurator.pm_.c:1576
-msgid "Test again"
-msgstr "AmprouiĂą adarre"
-
-#: ../../Xconfigurator.pm_.c:1577 ../../printerdrake.pm_.c:2476
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Kuitaat"
-
-#: ../../Xconfigurator.pm_.c:1585
-#, fuzzy, c-format
-msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
-msgstr "Derc'hel ar c'hefluniadur IP o ren"
-
-#: ../../Xconfigurator.pm_.c:1606
+#: ../../Xconfig/various.pm_.c:51
msgid "Graphical interface at startup"
msgstr "X pa loc'her"
-#: ../../Xconfigurator.pm_.c:1607
+#: ../../Xconfig/various.pm_.c:52
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -390,277 +360,165 @@ msgstr ""
"KefluniaĂą ho urzhiataer evit laĂąsaĂą X ent emgefreek pa loc'ho a c'hellaĂą.\n"
"Mennout a rit laĂąsaĂą X pa adloc'hit ?"
-#: ../../Xconfigurator.pm_.c:1613
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Adereit ouzh %s evit bevaat ar c'hemmoĂš mar plij"
-
-#: ../../Xconfigurator.pm_.c:1628
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Dizereit mar plij ha neuze implijit Ctrl-Alt-WarGil"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 liv (8 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mil liv (15 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mil liv (16 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milion a livioĂš (24 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 miliard a livioĂš (32 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 ko"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 ko"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 Mo pe vuioc'h"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "VGA standard, 640x480 da 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Gour-VGA, 800x600 da 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Kenglotus 8514, 1024x768 da 87 Hz pebeilet (800x600 ebet)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Gour-VGA, 1024x768 da 87 Hz pebeilet, 800x600 da 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Gour-VGA astennet, 800x600 da 60 Hz, 640x480 da 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "G-VGA nann-pebeilet, 1024x768 da 60 Hz, 800x600 da 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "G-VGA talm uhel, 1024x768 da 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Lies-talm a c'hell ober 1280x1024 da 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Lies-talm a c'hell ober 1280x1024 da 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Lies-talm a c'hell ober 1280x1024 da 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Skramm a c'hell ober 1600x1200 da 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Skramm a c'hell ober 1600x1200 da 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Rann gentaĂą ar parzhadur loc'haĂą"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Rann gentaĂą ar bladenn (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "Staliadur SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Pelec'h e mennit staliaĂą ar c'harger loc'haĂą ?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "Staliadur LILO/grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO gant meuziad skrid"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO gant meuziad c'hrafek"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Loc'haĂą abaoe DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "DibarzhoĂš pennaĂą ar c'harger loc'haĂą"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "C'harger loc'haĂą da implijout"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Staliadur c'harger loc'haĂą"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Trobarzhell loc'haĂą"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ne da ket en-dro gant BIOSoĂš kozh)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Fetis"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "fetis"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Mod video"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Gedvezh kent loc'haĂą ar skeudenn dre ziouer"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1087 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:710 ../../printerdrake.pm_.c:808
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Tremenger"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Tremenger (adarre)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Strishaat dibarzhoĂš al linenn urzhiaĂą"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "strishaat"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "SkaraĂą /tmp bep ma loc'her"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Spisait ment ar memor vev diouzh ret (kavet %d Mo)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Aotren lies trolinenn"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Roit ment ar memor vev e Mo"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Didalvout eo ``Strishaat dibarzhoĂš al linenn urzhiaĂą'' hep tremenger"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1143
-#: ../../install_steps_interactive.pm_.c:1082
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Klaskit adarre mar plij"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1082
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "An tremegerioĂš ne glot ket"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr ""
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr ""
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr ""
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr ""
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr ""
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "RK dre ziouer"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -669,7 +527,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -677,75 +535,75 @@ msgstr ""
"Setu da heul an enmontoĂš liesseurt.\n"
"Gallout a rit ouzhpennaĂą lod pe gemmaĂą a re a zo."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:741
-#: ../../standalone/drakbackup_.c:850 ../../standalone/drakfont_.c:790
-#: ../../standalone/drakfont_.c:827
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "OuzhpennaĂą"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Graet"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "KemmaĂą"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Pe seurt enmont a vennit ouzhpennaĂą"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:884
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "ReizhiadoĂš (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "ReizhiadoĂš (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "ReizhiadoĂš (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Skeudenn"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Gwrizienn"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "OuzhpennaĂą"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Lenn-skrivaĂą "
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Taolenn"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Arvarus"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Skridennad"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Dre ziouer"
@@ -778,53 +636,75 @@ msgstr "Ret eo deoc'h kaout ur parzhadur disloaĂą"
msgid "This label is already used"
msgstr "En implij eo ar skridennad-se endeo"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Kavet etrefas %s %s"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Hag un all hoc'h eus ?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Hag un etrefas %s bennak a zo ganeoc'h ?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1033
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Ket"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1033
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Ya"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Gwelet titouroĂš periantel"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "O staliaĂą ur sturier evit kartenn %s %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(mollad %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"BremaĂą e c'hellit pourvezaĂą e zibarzhoĂš d'ar mollad %s.\n"
+"Diouzh ar furmad ``anv=talvoud anv2=talvoud2...'' eo an dibaboĂš.\n"
+"Da skouer, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "DibarzhoÚ ar mollad :"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Pe sturier %s a zlefen amprouiĂą ?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -843,37 +723,15 @@ msgstr ""
"urzhiataer,\n"
"hogen ne raio reuz ebet."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "EmbrouiĂą"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Spisait dibarzhoĂš"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"BremaĂą e c'hellit pourvezaĂą e zibarzhoĂš d'ar mollad %s.\n"
-"Diouzh ar furmad ``anv=talvoud anv2=talvoud2...'' eo an dibaboĂš.\n"
-"Da skouer, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "DibarzhoÚ ar mollad :"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -882,51 +740,56 @@ msgstr ""
"KargaĂą ar mollad %s a zo sac'het.\n"
"Mennout a rit klask adarre gant arventennoĂš all ?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(ouzhpennet %s endeo)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Re eeun eo an tremeger"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Roit un anv arveriad mar plij"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"An anv arveriad a zle bezaĂą ennaĂą lizherennoĂš munut, sifroĂš, `-' ha `_' "
"hepken"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "En implij eo an anv arveriad-se endeo"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "En implij eo an anv arveriad-se endeo"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "OuzhpennaĂą un arveriad"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -935,32 +798,32 @@ msgstr ""
"Skrivit un arveriad\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Aotren an arveriad"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Anv gwirion"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:709
-#: ../../printerdrake.pm_.c:807
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Anv arveriad"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Arlun"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -969,61 +832,57 @@ msgstr ""
"KefluniaĂą ho urzhiataer evit laĂąsaĂą X ent emgefreek pa loc'ho a c'hellaĂą.\n"
"Mennout a rit laĂąsaĂą X pa adloc'hit ?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Dibabit ar arveriad dre ziouer"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
#, fuzzy
msgid "Choose the window manager to run:"
msgstr "Dibabit ar benveg a vennit staliaĂą"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Diuzit ar yezh da implijout, mar plij."
-#: ../../any.pm_.c:851
+#: ../../any.pm_.c:848
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "Gallout a rit dibab yezhoĂš all hag a vo hegerz goude staliaĂą"
-#: ../../any.pm_.c:865 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "An holl"
-#: ../../any.pm_.c:957
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "AotreiĂą an holl dud"
-#: ../../any.pm_.c:957
-msgid "Custom"
-msgstr "PersonelaĂą"
-
-#: ../../any.pm_.c:957
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "N'ev ket lodaĂą"
-#: ../../any.pm_.c:967 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Bremanaet e tle bezaĂą ar pabak-maĂą\n"
"Ha sur oc'h e mennit e ziuzaĂą ?"
-#: ../../any.pm_.c:970
+#: ../../any.pm_.c:986
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:978 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:984
+#: ../../any.pm_.c:1000
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -1032,63 +891,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:998 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:564
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:702 ../../my_gtk.pm_.c:705 ../../my_gtk.pm_.c:1034
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1588
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2279 ../../standalone/drakbackup_.c:2300
-#: ../../standalone/drakbackup_.c:2321 ../../standalone/drakbackup_.c:2339
-#: ../../standalone/drakbackup_.c:2387 ../../standalone/drakbackup_.c:2407
-#: ../../standalone/drakbackup_.c:2426 ../../standalone/drakfloppy_.c:235
-#: ../../standalone/drakfloppy_.c:384 ../../standalone/drakfont_.c:768
-#: ../../standalone/drakgw_.c:598 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:527
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "NullaĂą"
-
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1000
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1037
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Bezit deuet mat, preizherien !"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Paour"
-#: ../../any.pm_.c:1039 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Skouer"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Uhel"
-#: ../../any.pm_.c:1041
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Uhel"
-#: ../../any.pm_.c:1042
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Ankeniet"
-#: ../../any.pm_.c:1045
+#: ../../any.pm_.c:1074
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"
@@ -1098,7 +936,7 @@ msgstr ""
"aesoc'h da implijout, hogen kizidig-tre : arabat e implj evit un ardivink\n"
"kevreet ouzh lod all pe ouzh ar genrouedad. N'eus ket a haeziĂą dre dremenger."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1106,7 +944,7 @@ msgstr ""
"Gweredekaet eo bremaĂą an tremenger, hogen dierbedet eo c'hoazh an implij en "
"ur rouedad"
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1117,13 +955,13 @@ msgstr ""
"evit kevreaĂą evel arval ouzh ar Genrouedad. BremaĂą ez eus gwiriadennoĂš "
"surentez."
-#: ../../any.pm_.c:1050
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1051
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1131,7 +969,7 @@ msgid ""
"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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Gant al live surentez-maĂą e teu posupl implijout ar reizhiad-maĂą evel ur "
"servijer.\n"
@@ -1139,7 +977,7 @@ msgstr ""
"servijer\n"
"o tigemer kevreadennoĂš a-berzh arvaloĂš niverus."
-#: ../../any.pm_.c:1054
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1148,25 +986,21 @@ msgstr ""
"Kemer a reomp arc'hweloĂš al live 4, hogen bremaĂą eo peurserret ar reizhiad.\n"
"Arc'hweloĂš surentez a zo en o muiaĂą"
-#: ../../any.pm_.c:1059
-msgid "Please choose the desired security level."
-msgstr "Dibabit al live surentez"
-
-#: ../../any.pm_.c:1062
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Live surentez"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Implijit libsafe gant ar servijer"
-#: ../../any.pm_.c:1065
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1067
-msgid "Security user (login or email)"
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
msgstr ""
# NOTE: this message will be displayed at boot time; that is
@@ -1175,7 +1009,7 @@ msgstr ""
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:354
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1200,52 +1034,52 @@ 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_.c:910
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Degemer mat e GRUB an dibaber reizhiad oberia¤ !"
#. -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_.c:913
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Implijit ar stokelloĂš %c ha %c evit diuz pe enmont zo war wel"
#. -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_.c:916
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Stokit enkas evit loc'ha¤ ar RK diuzet, 'e' evit aoza¤ an"
#. -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_.c:919
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "urzhiado— kent loc'ha¤, pe 'c' evit ul linenn-urzhia¤."
#. -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_.c:922
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "An enmont war wel a vo loc'het ent emgefreek e %d eilenn."
-#: ../../bootloader.pm_.c:926
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr ""
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1026
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Gorretaol"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1028
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Meuziad LaĂąsaĂą"
-#: ../../bootloader.pm_.c:1047
+#: ../../bootloader.pm_.c:1049
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Pelec'h e mennit staliaĂą ar c'harger loc'haĂą ?"
@@ -1259,7 +1093,8 @@ msgstr "N'ev ket skoazell.\n"
msgid "Boot Style Configuration"
msgstr "Kefluniadur goude staliaĂą"
-#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Restr"
@@ -1269,8 +1104,8 @@ msgstr "/_Restr"
msgid "/File/_Quit"
msgstr "/Restr/_Kuitaat"
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
-#: ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr ""
@@ -1313,8 +1148,8 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Lugerezh ar voullerez"
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1457
-#: ../../standalone/drakbackup_.c:1468 ../../standalone/drakgw_.c:592
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "KefluniaĂą"
@@ -1335,15 +1170,16 @@ msgstr ""
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2431 ../../standalone/drakbackup_.c:3335
-#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:537
-#: ../../standalone/drakfont_.c:658 ../../standalone/drakfont_.c:721
-#: ../../standalone/drakfont_.c:766 ../../standalone/draknet_.c:109
-#: ../../standalone/draknet_.c:141 ../../standalone/draknet_.c:297
-#: ../../standalone/draknet_.c:436 ../../standalone/draknet_.c:522
-#: ../../standalone/draknet_.c:565 ../../standalone/draknet_.c:666
-#: ../../standalone/logdrake_.c:520
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "YA"
@@ -1446,8 +1282,8 @@ msgstr "Amerika"
msgid "Please make a backup of your data first"
msgstr "Gwarezit ho roadoĂš da gentaĂą mar plij"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:899
-#: ../../diskdrake/interactive.pm_.c:908 ../../diskdrake/interactive.pm_.c:962
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Lennit aketus !"
@@ -1461,11 +1297,12 @@ msgstr ""
"rann\n"
"a zo a-walc'h) e deroĂš ar bladenn"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Fazi"
@@ -1473,11 +1310,11 @@ msgstr "Fazi"
msgid "Wizard"
msgstr "Skoazeller"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Dibabit un obererezh"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1490,147 +1327,153 @@ msgstr ""
"(klikit warni, da c'houde klikit war \"AdventaĂą\")"
#
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Klikit war ur parzhadur mar plij"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "MunudoĂš"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
#, fuzzy
msgid "Journalised FS"
msgstr "marc'haĂą sac'het"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "DisloaĂą"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Goullo"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:933
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "All"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Seurt ar reizhiadoÚ restroÚ :"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "KrouiĂą"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Seurt"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Grit kentoc'h gant ``%s''"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Dilemel"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Implijit ``Divarc'haĂą'' da gentaĂą"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Goude kemmaĂą seurt ar parzhadur %s, holl roadoĂš ar parzhadur-se a vo kollet"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Dibabit un parzhadur"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Dibabit un parzhadur all"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Kuitaat"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Tremen er mod mailh"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Tremen er mod boas"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Dizober"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Kenderc'hel evelato ?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Kuitaat hep enrollaĂą"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Kuitaat hep skrivaĂą an daolenn barzhaĂą ?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Mennout a rit amprouiĂą ar c'hefluniadur ?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Ac'hubiĂą ent emgefreek"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "SkaraĂą an holl"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+#, fuzzy
+msgid "More"
+msgstr "Dilec'hiaĂą"
+
+#: ../../diskdrake/interactive.pm_.c:263
#, fuzzy
msgid "Hard drive information"
msgstr "DinoiĂą ar bladenn galet"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Ac'hubet eo an holl barzhadurioĂš kentaĂą renk"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "N'hellan ouzpennaĂą parzhadur ebet ken"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1638,35 +1481,35 @@ msgstr ""
"Evit kaout muioc'h a barzhadurioĂš, lamit unan evit ma c'hellot krouiĂą ur "
"parzhadur astennet mar plij"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr "SkrivaĂą an daolenn barzhaĂą"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr "Taolenn barzhaĂą saveteerezh"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Taolenn barzhaĂą saveteerezh"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr "Taolenn barzhaĂą saveteerezh"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Removable media automounting"
msgstr "Emvarc'haĂą ar skoroĂš lem/laka"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Diuzit ar restr"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1674,11 +1517,11 @@ msgstr ""
"N'eo ket heĂąvel ment an daolenn barzhaĂą gwarezet\n"
"Kenderc'hel memestra ?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Ho evezh"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1686,126 +1529,133 @@ msgstr ""
"Lakait ur bladennig el lenner\n"
"Kollet e vo holl roadoĂš ar bladennig-se"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "O klask assevel an daolenn barzhaĂą"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
#, fuzzy
msgid "Detailed information"
msgstr "Diskouez titouroĂš"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:535
-#: ../../diskdrake/interactive.pm_.c:562 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Poent marc'haĂą"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
#, fuzzy
msgid "Options"
msgstr "Parzhadur"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:629
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "AdventaĂą"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:682
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Dilec'hiaĂą"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "FurmadiĂą"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Marc'haĂą"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "OuzhpennaĂą da RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "OuzhpennaĂą da LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Divarc'haĂą"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Lemel diwar RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Lemel diwar LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "KemmaĂą RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Implij da saveteiĂą"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "KrouiĂą ur parzhadur nevez"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Rann kregiù : "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Ment e Mo : "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:782
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Seurt ar reizhiad restroÚ : "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1042
-#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Poent marc'haù : "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Dibarzh : "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+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/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr "O furmadiĂą ar restr saveteiĂą %s"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "KemmaĂą seurt ar parzhadur"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
#, fuzzy
msgid "Which filesystem do you want?"
msgstr "Pe seurt parzhadur a vennit ?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:533
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Pelec'h e mennit marc'haĂą ar restr saveteiĂą %s ?"
-#: ../../diskdrake/interactive.pm_.c:534 ../../diskdrake/interactive.pm_.c:561
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Pelec'h e mennit marc'haĂą an drobarzhell %s ?"
-#: ../../diskdrake/interactive.pm_.c:540
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1813,128 +1663,135 @@ msgstr ""
"N'hellan ket dizober ar poent marc'haĂą dre m'eo implijet ar parzhadur-se\n"
"evit saveteiĂą. Lamit ar saveteiĂą da gentaĂą"
-#: ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "O jediĂą bevennoĂš ar reizhiad restroĂš FAT"
-#: ../../diskdrake/interactive.pm_.c:585 ../../diskdrake/interactive.pm_.c:644
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Oc'h adventaĂą"
-#: ../../diskdrake/interactive.pm_.c:617
+#: ../../diskdrake/interactive.pm_.c:639
#, fuzzy
msgid "This partition is not resizeable"
msgstr "Pe seurt parzhadur a vennit ?"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Mat e vije gwareziĂą holl roadoĂš ar parzhadur-se"
-#: ../../diskdrake/interactive.pm_.c:624
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Goude adventaĂą ar parzhadur %s e vo kollet holl roadoĂš ar parzhadur-se"
-#: ../../diskdrake/interactive.pm_.c:629
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Dibabit ar ment nevez"
-#: ../../diskdrake/interactive.pm_.c:630
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Ment nevez e Mo : "
-#: ../../diskdrake/interactive.pm_.c:683
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Da beseurt pladenn e mennit dilec'hiaĂą ?"
-#: ../../diskdrake/interactive.pm_.c:684
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Rann"
-#: ../../diskdrake/interactive.pm_.c:685
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Da beseurt rann e mennit dilec'hiaĂą ?"
-#: ../../diskdrake/interactive.pm_.c:688
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "O tilec'hiaĂą"
-#: ../../diskdrake/interactive.pm_.c:688
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "O tilec'hiaĂą ur parzhadur..."
-#: ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Dibabit da be RAID ouzhpennaĂą"
-#: ../../diskdrake/interactive.pm_.c:706 ../../diskdrake/interactive.pm_.c:724
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "nevez"
-#: ../../diskdrake/interactive.pm_.c:722
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Dibabit da be LVM ouzhpennaĂą"
-#: ../../diskdrake/interactive.pm_.c:727
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "Anv LVM?"
-#: ../../diskdrake/interactive.pm_.c:767
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "N'heller ket implijout ar parzhadur-maĂą evit saveteiĂą"
-#: ../../diskdrake/interactive.pm_.c:779
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "SaveteiĂą"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Anv ar restr saveteiù : "
-#: ../../diskdrake/interactive.pm_.c:785
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr "Anv gwirion"
-#: ../../diskdrake/interactive.pm_.c:788
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Restr implijet gant ur saveteiĂą all endeo, dibabit unan all"
-#: ../../diskdrake/interactive.pm_.c:789
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Ar restr a zo endeo. E implijout ?"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "DibarzhoĂš marc'haĂą"
-#: ../../diskdrake/interactive.pm_.c:819
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "A bep sort"
-#: ../../diskdrake/interactive.pm_.c:882 ../../standalone/drakfloppy_.c:104
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "trobarzhell"
-#: ../../diskdrake/interactive.pm_.c:883
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "live"
-#: ../../diskdrake/interactive.pm_.c:884
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "ment diaoz"
-#: ../../diskdrake/interactive.pm_.c:899
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Bezit war evezh : arvarus eo an obererezh-maù."
-#: ../../diskdrake/interactive.pm_.c:914
+#: ../../diskdrake/interactive.pm_.c:937
#, fuzzy
msgid "What type of partitioning?"
msgstr "Peseurt moullerez hoc'h eus ?"
-#: ../../diskdrake/interactive.pm_.c:932
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr ""
+"Bremanaet e tle bezaĂą ar pabak-maĂą\n"
+"Ha sur oc'h e mennit e ziuzaĂą ?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1946,7 +1803,7 @@ msgstr ""
"Pe e implijit LILO ha ne daio ket en-dro, pe ne rit ket ha n'hoc'h eus ket "
"ezhomm a /boot"
-#: ../../diskdrake/interactive.pm_.c:936
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1960,145 +1817,145 @@ msgstr ""
"Ma vennit implijout ar merour loc'haĂą LILO, taolit pled da ouzhpennaĂą ur "
"parzhadur /boot"
-#: ../../diskdrake/interactive.pm_.c:942
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"So be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:962
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "War-nes bezaĂą skrivet war bladenn eo taolenn barzhaĂą an ardivink %s !"
-#: ../../diskdrake/interactive.pm_.c:966
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Ret e vo deoc'h adloc'haĂą a-raok ma talvezo ar c'hemm"
-#: ../../diskdrake/interactive.pm_.c:977
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Goude furmadiĂą ar parzhadur %s, holl roadoĂš ar parzhadur-se a vo kollet"
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "O furmadiĂą"
-#: ../../diskdrake/interactive.pm_.c:980
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "O furmadiĂą ar restr saveteiĂą %s"
-#: ../../diskdrake/interactive.pm_.c:981
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "O furmadiĂą ar parzhadur %s"
-#: ../../diskdrake/interactive.pm_.c:992
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Hide files"
msgstr "mkraid sac'het"
-#: ../../diskdrake/interactive.pm_.c:992
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr "KrouiĂą ur parzhadur nevez"
-#: ../../diskdrake/interactive.pm_.c:993
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr "KrouiĂą ur parzhadur nevez"
-#: ../../diskdrake/interactive.pm_.c:1008
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "AdskrivaĂą %s"
-#: ../../diskdrake/interactive.pm_.c:1012
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr "SpisterioĂš"
-#: ../../diskdrake/interactive.pm_.c:1022
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1043
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Trobarzhell : "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Lizher ar bladenn DOS : %s (diwar varteze hepken)\n"
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1056
-#: ../../diskdrake/interactive.pm_.c:1120
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Seurt : "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Anv: "
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "O kregiù : rann %s\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Ment: %s"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s rann"
-#: ../../diskdrake/interactive.pm_.c:1065
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Kranenn %d da granenn %d\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Furmadet\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Ket furmadet\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Marc'het\n"
-#: ../../diskdrake/interactive.pm_.c:1069
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1071
+#: ../../diskdrake/interactive.pm_.c:1106
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Restr(oÚ) saveteiù : %s\n"
-#: ../../diskdrake/interactive.pm_.c:1072
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2106,27 +1963,27 @@ msgstr ""
"Parzhadur loc'het dre ziouer\n"
" (evit loc'haĂą MS-DOS, ket evit lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1074
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Live %s\n"
-#: ../../diskdrake/interactive.pm_.c:1075
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Ment diaoz %s\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "PladennoĂš RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Anv ar restr saveteiù : %s"
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2134,7 +1991,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1084
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2142,64 +1999,64 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Ment: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Mentoniezh : %s kranenn, %s penn, %s rann\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "TitouroĂš: "
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "PladennoĂš LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1107
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Seurt taolenn barzhaù : %s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "war bus %d Nn %d\n"
-#: ../../diskdrake/interactive.pm_.c:1122
+#: ../../diskdrake/interactive.pm_.c:1157
#, fuzzy, c-format
msgid "Options: %s"
msgstr "Parzhadur"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Seurt ar reizhiad restroÚ : "
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Re eeun eo an tremenger-se (%d arouezenn a zo ret d'an nebeutaĂą)"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "An tremegerioĂš ne glot ket"
-#: ../../diskdrake/interactive.pm_.c:1146
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1147
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2214,33 +2071,63 @@ msgstr "KemmaĂą seurt ar parzhadur"
msgid "Please click on a medium"
msgstr "Klikit war ur parzhadur mar plij"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Dilesadur"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "dedennus"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Anv arveriad"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Anv arveriad"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "Domani NIS"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "Servijer DNS"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "furmadiĂą er seurt %s eus %s a zo sac'het"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "N'ouzon ket penaos furmadiĂą %s er seurt %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "fazi en ur zivarc'haù %s : %s"
@@ -2257,57 +2144,57 @@ msgstr "gant /usr"
msgid "server"
msgstr "servijer"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "PoentoĂš marc'haĂą a rank kregiĂą gant /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Bez' ez eus ur parzhadur e boent marc'haĂą %s endeo\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr ""
-#: ../../fsedit.pm_.c:486
+#: ../../fsedit.pm_.c:500
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr ""
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Fazi en ur zigeriù %s evit skrivaù : %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -2316,10 +2203,262 @@ msgstr ""
"krouiĂą reizhiadoĂš restroĂš nevez warni. Gwiriit abeg ar gudenn-maĂą en ho "
"ardivinkaj mar plij "
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "N'hoc'h eus parzhadur ebet !"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Dilesadur"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Rummel"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Memor kartenn (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "O furmadiĂą"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "KemmaĂą seurt ar parzhadur"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Kuitaat"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "Skoazell"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "Marc'haĂą"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Logodenn"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Memor kartenn (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "NullaĂą"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Logodenn"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+#, fuzzy
+msgid "Description"
+msgstr "Spisait dibarzhoĂš"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Dilesadur"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Diuzit ar restr"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Trobarzhell an dreuzell"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 nozelenn"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "DinoiĂą ar bladenn galet"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Gwelet titouroĂš periantel"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Diskouez titouroĂš"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "KefluniaĂą al logodenn"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "Poent marc'haĂą doubl %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Gortozit mar plij"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d eilenn"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "DibarzhoĂš ar voullerez lpd a-bell"
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "EmbrouiĂą"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2333,7 +2472,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2404,9 +2543,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2597,7 +2735,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2609,9 +2747,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2657,21 +2794,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2687,9 +2823,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
#: ../../help.pm_.c:347
@@ -2710,9 +2846,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -2823,38 +2958,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -2929,11 +3058,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -2957,7 +3086,7 @@ msgid ""
"choose this unless you know what you are doing."
msgstr ""
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -2972,7 +3101,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -2987,7 +3116,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3003,7 +3132,7 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
#, fuzzy
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
@@ -3012,23 +3141,23 @@ msgstr ""
"Diuzit ar porzh a zere mar plij. Da skouer, porzh COM1 dindan MS Windows\n"
"a vez anvet ttyS0 gant Linux."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3050,7 +3179,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3072,7 +3201,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3080,7 +3209,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3101,7 +3230,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
#, fuzzy
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
@@ -3127,7 +3256,7 @@ msgstr ""
"Hogen\n"
"neuze e vo ret deoc'h kaout ur bladennig loc'haĂą evit loc'haĂą anezho."
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
#, fuzzy
msgid ""
"You must indicate where you wish to place the information required to boot\n"
@@ -3143,29 +3272,28 @@ msgstr ""
"Nemet ma ouifec'h resis ar pezh a rit, dibabit \"Rann gentaĂą\n"
"ar bladenn (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3174,7 +3302,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3199,11 +3327,11 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3213,9 +3341,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3227,7 +3354,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" 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"
@@ -3253,7 +3380,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3280,18 +3407,17 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3299,12 +3425,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3320,14 +3445,14 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3338,7 +3463,7 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3346,12 +3471,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3366,26 +3491,26 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "N'hellaĂą ket implijout ar skignaĂą hep domani NIS"
-#: ../../install_any.pm_.c:794
+#: ../../install_any.pm_.c:837
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Lakait ur bladennig el lenner %s"
-#: ../../install_any.pm_.c:798
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:810
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:832 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Fazi en ur lenn ar restr %s"
@@ -3421,81 +3546,81 @@ msgstr ""
"\n"
"Kenderc'hel evelato ?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Ret eo deoc'h kaout ur parzhadur disloaĂą"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
#, fuzzy
msgid "Use free space"
msgstr "Implij da saveteiĂą"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr ""
-#: ../../install_interactive.pm_.c:100
+#: ../../install_interactive.pm_.c:101
#, fuzzy
msgid "Use existing partitions"
msgstr "O furmadiĂą parzhadurioĂš"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
#, fuzzy
msgid "There is no existing partition to use"
msgstr "O klask assevel an daolenn barzhaĂą"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
#, fuzzy
msgid "Use the Windows partition for loopback"
msgstr "Implij da saveteiĂą"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
#, fuzzy
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Pe barzhadur a vennit implijout evit lakaat Linux4Win ?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Dibabit ar mentoĂš"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Ment ar parzhadur gwrizienn e Mo : "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Ment ar parzhadur disloaù e Mo : "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr ""
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
#, fuzzy
msgid "Which partition do you want to resize?"
msgstr "Pe seurt parzhadur a vennit ?"
-#: ../../install_interactive.pm_.c:130
+#: ../../install_interactive.pm_.c:131
#, fuzzy
msgid "Resizing Windows partition"
msgstr "O jediĂą bevennoĂš ar reizhiad restroĂš FAT"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
"the following error occured: %s"
msgstr ""
-#: ../../install_interactive.pm_.c:136
+#: ../../install_interactive.pm_.c:137
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
"installation."
msgstr ""
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -3516,54 +3641,54 @@ msgstr ""
"ar\n"
"parzhadur-se, ha gwareziĂą ho roadoĂš. Pa vezit sur, gwaskit \"Mat eo\""
-#: ../../install_interactive.pm_.c:147
+#: ../../install_interactive.pm_.c:148
#, fuzzy
msgid "Which size do you want to keep for Windows on"
msgstr "Da beseurt rann e mennit dilec'hiaĂą ?"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "parzhadur %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, fuzzy, c-format
msgid "FAT resizing failed: %s"
msgstr "AdventaĂą ent emgefreek sac'het"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Chetan an holl planedenn"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Chetan Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, fuzzy, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Goude adventaĂą ar parzhadur %s e vo kollet holl roadoĂš ar parzhadur-se"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
#, fuzzy
msgid "Custom disk partitioning"
msgstr "O furmadiĂą parzhadurioĂš"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Implijit fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, fuzzy, c-format
msgid ""
"You can now partition %s.\n"
@@ -3572,12 +3697,12 @@ msgstr ""
"Gallout a rit bremaĂą parzhaĂą ho pladenn galet %s\n"
"Pa 'z eo graet, na zisoĂąjit ket enrollaĂą dre implijout `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
#, fuzzy
msgid "You don't have enough free space on your Windows partition"
msgstr "N'hoc'h eus parzhadur windows ebet !"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
#, fuzzy
msgid "I can't find any room for installing"
msgstr "N'hellan ouzpennaĂą parzhadur ebet ken"
@@ -3586,16 +3711,16 @@ msgstr "N'hellan ouzpennaĂą parzhadur ebet ken"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, fuzzy, c-format
msgid "Partitioning failed: %s"
msgstr "Seurt taolenn barzhaù : %s\n"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "O laĂąsaĂą ar rouedad"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "O tizenaouiĂą ar rouedad"
@@ -3607,12 +3732,12 @@ msgstr ""
"Degouezhet ez eus ur fazi, hogen n'ouzon ket e veraĂą naet.\n"
"Kendalc'hit war ho mar."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Poent marc'haĂą doubl %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3620,12 +3745,12 @@ msgid ""
"\"\n"
msgstr ""
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Degemer e %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Lenner pladennig hegerz ebet"
@@ -3635,7 +3760,7 @@ msgstr "Lenner pladennig hegerz ebet"
msgid "Entering step `%s'\n"
msgstr "O kregiĂą gant al lankad `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
@@ -3643,127 +3768,81 @@ msgid ""
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Renkad staliaĂą"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Dibabit unan eus ar renkadoÚ staliaù a-heul mar plij :"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Ment hollek ar strolladoĂš hoc'h eus diuzet a zo war-dro %d Mo.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Ma vennit staliaĂą nebeutoc'h eget ar ment-se,\n"
-"diuzit an dregantad a bakadoĂš a vennit staliaĂą.\n"
-"\n"
-"Un dregantad izel a stalio hepken ar pakadoĂš pouezusaĂą;\n"
-"un dregantad a 100%% a stalio an holl bakadoĂš diuzet."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"N'eus egor war ho pladenn nemet evit %d%% eus ar pakadoĂš-se.\n"
-"\n"
-"Ma vennit staliaĂą nebeutoc'h eget se,\n"
-"diuzit an dregantad a bakadoĂš a vennit staliaĂą.\n"
-"Un dregantad izel a stalio hepken ar pakadoĂš pouezusaĂą;\n"
-"un dregantad a %d%% a stalio kement a bakadoĂš ma 'z eus tu."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Tu vo deoc'h o dibab spisoc'h el lankad a zeu."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Dregantad a bakadoĂš da staliaĂą"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Diuzadenn strollad pakadoĂš"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Diuz pakadoĂš unan hag unan"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:615
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ment hollek : %d / %d Mo"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Pakad siek"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Anv : %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Stumm : %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Ment : %d Ko\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Talvoudegezh : %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
#, fuzzy
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "N'hellit ket andiuz ar pakad-maĂą. Staliet eo endo"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
#, fuzzy
msgid "The following packages are going to be installed"
msgstr "Ar pakadoĂš a-heul a zo war-nes bezaĂą distaliet"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
#, fuzzy
msgid "The following packages are going to be removed"
msgstr "Ar pakadoĂš a-heul a zo war-nes bezaĂą staliet/lamet"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "N'hellit ket diuz/andiuz ar pakad-maĂą"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "HemaĂą a zo ur pakad ret, n'hell ket bezaĂą andiuzet"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "N'hellit ket andiuz ar pakad-maĂą. Staliet eo endo"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -3771,77 +3850,78 @@ msgstr ""
"Bremanaet e tle bezaĂą ar pabak-maĂą\n"
"Ha sur oc'h e mennit e ziuzaĂą ?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "N'hellit ket andiuz ar pakad-maĂą. Ret eo dezhaĂą bezaĂą bremanaet"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "StaliaĂą"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
#, fuzzy
msgid "Load/Save on floppy"
msgstr "EnrollaĂą war bladennig"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
#, fuzzy
msgid "Updating package selection"
msgstr "Diuz pakadoĂš unan hag unan"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
#, fuzzy
msgid "Minimal install"
msgstr "DistaliaĂą"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:525
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Dibabit ar pakadoĂš a vennit staliaĂą"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "O staliaĂą"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "O vrasjediĂą"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Amzer a chom"
-#: ../../install_steps_gtk.pm_.c:528
+#: ../../install_steps_gtk.pm_.c:474
msgid "Please wait, preparing installation..."
msgstr "Gortozit mar plij, o prientiĂą ar staliadur"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d pakad"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "O staliaĂą ar pakad %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:781
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Aotren"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:781
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#, fuzzy
msgid "Refuse"
msgstr "AdventaĂą"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:782
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -3856,17 +3936,17 @@ msgstr ""
"eo da c'houde.\n"
"Ma n'emaĂą ket ganeoc'h gwaskit NullaĂą evit chom hep staliaĂą ar Cd-Rom-se."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:794
-#: ../../install_steps_interactive.pm_.c:798
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Kenderc'hel evelato ?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:794
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Ur fazi a zo bet en ur rummaù pakadoÚ :"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:798
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Ur fazi a zo bet en ur staliaù ar pakadoÚ :"
@@ -3911,11 +3991,11 @@ msgstr "Ur fazi a zo bet"
msgid "Do you really want to leave the installation?"
msgstr "Mennout a rit amprouiĂą ar c'hefluniadur ?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4036,106 +4116,110 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1017
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Stokellaoueg"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Dibabit reizhadur ho stokellaoueg, mar plij."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
#, fuzzy
msgid "Here is the full list of keyboards available"
msgstr "stokellaoueg"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Pe renkad staliaĂą a fell deoc'h ?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "StaliaĂą/Bremanaat"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Hag ur staliadur pe ur bremanadur eo ?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Erbedet"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Mailh"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "Bremanaat"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "Bremanaat pakadoĂš hep ken"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Porzh al logodenn"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Dibabit ar porzh a-steud m'eo luget ho logodenn outaĂą, mar plij."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "O kefluniaĂą kartennoĂš PCMCIA..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "KefluniaĂą IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
+#: ../../install_steps_interactive.pm_.c:337
msgid "No partition available"
msgstr "parzhadur hegerz ebet"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Dibabit at poentoĂš marc'haĂą"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, fuzzy, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -4148,7 +4232,7 @@ msgstr ""
"N'hellaĂą ket lenn ho taolenn barzhaĂą, re vrein eo evidon :(\n"
"Klask a rin kenderc'hel en ur ziverkaĂą ar parzhadurioĂš siek"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4156,120 +4240,137 @@ msgstr ""
"Ne c'hellas ket DiskDrake lenn ent reizh an daolenn barzhaĂą.\n"
"Kendalc'hit war ho mar !"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Parzhadur gwrizienn kavet ebet"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Parzhadur gwrizienn"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Pehini eo parzhadur gwrizienn (/) ho reizhiad ?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Ret eo deoc'h adloc'haĂą evit ma talvezo kemmoĂš an daolenn barzhaĂą"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Dibabit ar parzhadur a vennit furmadiĂą"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "GwiriaĂą ar bloc'hoĂš siek ?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "O furmadiĂą parzhadurioĂš"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "O krouiĂą hag o furmadiĂą ar restr saveteiĂą %s"
-#: ../../install_steps_interactive.pm_.c:467
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Ket a-walc'h a zisloaĂą evit peurstaliaĂą, kreskit anezhaĂą mar plij"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "O klask ar pakadoĂš hegerz"
+
+#: ../../install_steps_interactive.pm_.c:491
msgid "Looking for available packages..."
msgstr "O klask ar pakadoĂš hegerz"
-#: ../../install_steps_interactive.pm_.c:479
+#: ../../install_steps_interactive.pm_.c:495
msgid "Finding packages to upgrade..."
msgstr "O kavout pakadoĂš da vremanaat"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "N'hellit ket andiuz ar pakad-maĂą. Staliet eo endo"
+
+#: ../../install_steps_interactive.pm_.c:516
#, fuzzy, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
"> %d)"
msgstr "Ho reizhiad n'eus ket wa-walc'h a egor evit staliaĂą pe vremanaat"
-#: ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:541
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Assevel adalek ar pladennig"
-#: ../../install_steps_interactive.pm_.c:543
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "AssevelaĂą adalek ar pladennig"
-#: ../../install_steps_interactive.pm_.c:543
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Diuzadenn pakadoĂš"
-#: ../../install_steps_interactive.pm_.c:548
+#: ../../install_steps_interactive.pm_.c:561
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Lakait ur bladennig el lenner %s"
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "EnrollaĂą war bladennig"
-#: ../../install_steps_interactive.pm_.c:628
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:661
#, fuzzy
msgid "Type of install"
msgstr "Dibabit pakadoĂš da staliaĂą"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "Gant X"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:732
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4279,16 +4380,16 @@ msgstr ""
"Ma n'hoc'h eus hini eus ar CDoĂš-se, gwaskit NullaĂą.\n"
"Ma fazi deoc'h lod eus ar CDoĂš, andiuzit anezho ha gwaskit Mat eo."
-#: ../../install_steps_interactive.pm_.c:737
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom skridennet \"%s\""
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "O prientiĂą ar staliadur"
-#: ../../install_steps_interactive.pm_.c:766
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4297,21 +4398,21 @@ msgstr ""
"O staliaĂą ar pakad %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Kefluniadur goude staliaĂą"
-#: ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_interactive.pm_.c:838
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Lakait ur bladennig el lenner %s"
-#: ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_interactive.pm_.c:844
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Lakait ur bladennig gwerc'h el lenner %s"
-#: ../../install_steps_interactive.pm_.c:844
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4383,7 +4484,7 @@ msgstr ""
"Altadena California 91001\n"
"SUA"
-#: ../../install_steps_interactive.pm_.c:883
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4395,153 +4496,182 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:898
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "O taremprediĂą ar melezour evit kaout roll ar pakadoĂš hegerz"
-#: ../../install_steps_interactive.pm_.c:903
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Dibabit ur melezour da dapout ar pakadoĂš diwarnaĂą"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:932
msgid "Contacting the mirror to get the list of available packages..."
msgstr "O taremprediĂą ar melezour evit kaout roll ar pakadoĂš hegerz"
-#: ../../install_steps_interactive.pm_.c:939
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Pe seurt a vo ho takad-eur ?"
-#: ../../install_steps_interactive.pm_.c:944
+#: ../../install_steps_interactive.pm_.c:964
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Ha war GMT eo lakaet ho eurier periantel ?"
-#: ../../install_steps_interactive.pm_.c:945
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:952
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "Servijer NTP"
-#: ../../install_steps_interactive.pm_.c:986
-#: ../../install_steps_interactive.pm_.c:994
+#: ../../install_steps_interactive.pm_.c:1006
+#: ../../install_steps_interactive.pm_.c:1014
#, fuzzy
msgid "Remote CUPS server"
msgstr "Steud a-bell"
-#: ../../install_steps_interactive.pm_.c:987
+#: ../../install_steps_interactive.pm_.c:1007
#, fuzzy
msgid "No printer"
msgstr "Moullerez lec'hel"
-#: ../../install_steps_interactive.pm_.c:1004
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Hag un all hoc'h eus ?"
-#: ../../install_steps_interactive.pm_.c:1006
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1013 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Evit diverriĂą"
-#: ../../install_steps_interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Logodenn"
-#: ../../install_steps_interactive.pm_.c:1018
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Takad-eur"
-#: ../../install_steps_interactive.pm_.c:1019 ../../printerdrake.pm_.c:2279
-#: ../../printerdrake.pm_.c:2357
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Moullerez"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "Kartenn ISDN"
-#: ../../install_steps_interactive.pm_.c:1024
-#: ../../install_steps_interactive.pm_.c:1026
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Kartenn son"
-#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "Kartenn pellwel"
-#: ../../install_steps_interactive.pm_.c:1066
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1067
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1068
#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Windows (FAT32)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "RestroĂš lec'hel"
-#: ../../install_steps_interactive.pm_.c:1077
-#: ../../install_steps_interactive.pm_.c:1078 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "TermeniĂą tremenger root"
-#: ../../install_steps_interactive.pm_.c:1079
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Tremenger ebet"
-#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Re eeun eo an tremenger-se (%d arouezenn a zo ret d'an nebeutaĂą)"
-#: ../../install_steps_interactive.pm_.c:1090 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Dilesadur"
-#: ../../install_steps_interactive.pm_.c:1098
+#: ../../install_steps_interactive.pm_.c:1121
#, fuzzy
msgid "Authentication LDAP"
msgstr "Dilesadur"
-#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "Servijer LDAP"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "Dilesadur NIS"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "Domani NIS"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "Servijer NIS"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Dilesadur"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "TitouroĂš"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "Servijer NTP"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
#, fuzzy
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4571,19 +4701,19 @@ msgstr ""
"evit\n"
"ho reizhiad ?"
-#: ../../install_steps_interactive.pm_.c:1159
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Lenner pladennig kentaĂą"
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Eil lenner pladennig"
-#: ../../install_steps_interactive.pm_.c:1161 ../../printerdrake.pm_.c:1851
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Tremen e-biou"
-#: ../../install_steps_interactive.pm_.c:1166
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4611,7 +4741,7 @@ msgstr ""
"ho reizhiad ?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1172
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -4620,29 +4750,29 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1180
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Ho tigarez, lenner pladennig hegerz ebet"
-#: ../../install_steps_interactive.pm_.c:1184
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Dibabit al lenner pladennig a vennit implijout evit ober ar bladenn loc'haĂą"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Lakait ur bladennig el lenner %s"
-#: ../../install_steps_interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1224
msgid "Creating bootdisk..."
msgstr "O krouiĂą ar bladenn loc'haĂą"
-#: ../../install_steps_interactive.pm_.c:1198
+#: ../../install_steps_interactive.pm_.c:1231
msgid "Preparing bootloader..."
msgstr "O prientiĂą ar c'harger loc'haĂą"
-#: ../../install_steps_interactive.pm_.c:1209
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4650,11 +4780,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Mennout a rit implijout aboot?"
-#: ../../install_steps_interactive.pm_.c:1218
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -4662,16 +4792,16 @@ msgstr ""
"Fazi en ur staliaĂą aboot,\n"
"klask rediaĂą ar staliadur zoken ma tistruj ar parzhadur kentaĂą ?"
-#: ../../install_steps_interactive.pm_.c:1225
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "StaliaĂą ar c'harger loc'haĂą"
-#: ../../install_steps_interactive.pm_.c:1231
+#: ../../install_steps_interactive.pm_.c:1264
#, fuzzy
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Staliadur LILO a zo sac'het. Degouezhet eo ar fazi a heul :"
-#: ../../install_steps_interactive.pm_.c:1239
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4682,17 +4812,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1283
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Lakait ur bladennig gwerc'h el lenner %s"
-#: ../../install_steps_interactive.pm_.c:1287
+#: ../../install_steps_interactive.pm_.c:1310
msgid "Creating auto install floppy..."
msgstr "O krouiĂą ur bladennig staliaĂą emgefreek"
-#: ../../install_steps_interactive.pm_.c:1298
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -4702,7 +4832,8 @@ msgstr ""
"\n"
"Mennout a rit kuitaat da vat bremaĂą ?"
-#: ../../install_steps_interactive.pm_.c:1309
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -4713,7 +4844,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -4727,18 +4858,22 @@ msgstr ""
"sellit ouzh ar meneger fazioĂš hegerz e \n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"TitouroĂš war gefluniaĂą ho reizhiad a zo hegerz e rannbennad Goude\n"
"StaliaĂą Sturier ofisiel an Arveriad Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
#, fuzzy
msgid "Generate auto install floppy"
msgstr "O krouiĂą ur bladennig staliaĂą emgefreek"
-#: ../../install_steps_interactive.pm_.c:1328
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4747,16 +4882,16 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1333
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Emgefreek"
-#: ../../install_steps_interactive.pm_.c:1333
+#: ../../install_steps_interactive.pm_.c:1357
#, fuzzy
msgid "Replay"
msgstr "AdkargaĂą"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1360
#, fuzzy
msgid "Save packages selection"
msgstr "Diuz pakadoĂš unan hag unan"
@@ -4784,411 +4919,407 @@ msgstr ""
msgid "Choose a file"
msgstr "Dibabit ur restr"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Barek"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
#, fuzzy
msgid "Basic"
msgstr "Diazez"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Gortozit mar plij"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Dibab fall, klaskit adarre\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Ho tibab ? (%s dre ziouer)"
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Ho tibab ? (%s dre ziouer)"
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "Nozel `%s': %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
msgid "Do you want to click on this button?"
msgstr "Mennout a rit implijout SILO ?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
msgid " enter `void' for void entry"
msgstr ""
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Ho tibab ? (%s dre ziouer)"
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:197 ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Tchek (QWERTZ)"
-#: ../../keyboard.pm_.c:198 ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Alaman"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:200 ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Spagnol"
-#: ../../keyboard.pm_.c:201 ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finnek"
-#: ../../keyboard.pm_.c:202 ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Gall"
-#: ../../keyboard.pm_.c:203 ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norvegek"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Polonek"
-#: ../../keyboard.pm_.c:205 ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Rusiek"
-#: ../../keyboard.pm_.c:207 ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Svedek"
-#: ../../keyboard.pm_.c:208 ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Stokellaoueg RU"
-#: ../../keyboard.pm_.c:209 ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Stokellaoueg SUA"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Albanian"
msgstr "Ukrainiek"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armeniek (kozh)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armeniek (skriverez)"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armeniek (soniadel)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidjanek (latin)"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgian"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armeniek (soniadel)"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "Bulgarek (BDS)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brasilek (ABNT-2)"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:193
#, fuzzy
msgid "Belarusian"
msgstr "Bulgarek"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Suis (reizhadur alaman)"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Suis (reizhadur gall)"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Tchek (QWERTY)"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Alaman (stokell marv ebet)"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Danek"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norvegek)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Svedek)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estoniek"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Jorjiek (reizhadur \"Rusiek\")"
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Jorjiek (reizhadur \"Latin\")"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Gresian"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Hungarian"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Kroatek"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Israelian"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Israelian (soniadel)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:215
#, fuzzy
msgid "Iranian"
msgstr "Ukrainiek"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islandek"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Italian"
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr ""
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:222
#, fuzzy
msgid "Korean keyboard"
msgstr "Reizhadur Stokellaoueg RU"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Amerikan Latin"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Lituaniek AZERTY (kozh)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Lituaniek AZERTY (nevez)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituaniek QUERTY \"linenn sifroĂš\""
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituaniek QUERTY \"soniadel\""
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:229
#, fuzzy
msgid "Latvian"
msgstr "TitouroĂš"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Makedonia"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Hollandek"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Polonek (reizhadur qwerty)"
-#: ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Polonek (reizhadur qwerty)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugalek"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Kanadian (Kebek)"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Rusiek (Yawerty)"
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:239
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Rusiek (Yawerty)"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Rusiek (Yawerty)"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slovek"
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovakek (QWERTZ)"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovakek (QWERTY)"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:247
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Yougoslaviek (reizhadur latin)"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Taolenn"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Stokellaoueg Thai"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Stokellaoueg Thai"
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turkek (hengounel doare \"F\")"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turkek (arnevez doare \"Q\")"
-#: ../../keyboard.pm_.c:288
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukrainiek"
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Stokellaoueg SUA (etrevroadel)"
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:260
#, fuzzy
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Lituaniek QUERTY \"linenn sifroĂš\""
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Yougoslaviek (latin)"
-#: ../../keyboard.pm_.c:301
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:302
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:303
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:304
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:305
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:306
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:307
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:308
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:309
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5201,7 +5332,31 @@ msgstr "Marc'haĂą kelc'hiek %s\n"
msgid "Remove the logical volumes first\n"
msgstr ""
-#: ../../modules.pm_.c:832
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Niverenn bellgomz"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "FurmadiĂą parzhadurioĂš"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5242,10 +5397,6 @@ msgstr "1 nozelenn"
msgid "Generic 2 Button Mouse"
msgstr "Logodenn rummel 2 nozelenn"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Rummel"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Rodel"
@@ -5310,53 +5461,53 @@ msgstr "ebet"
msgid "No mouse"
msgstr "Logodenn ebet"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
#, fuzzy
msgid "Please test the mouse"
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
#, fuzzy
msgid "To activate the mouse,"
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "FIÑV HO RODELL !"
-#: ../../my_gtk.pm_.c:666
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:701
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Disoc'h"
-#: ../../my_gtk.pm_.c:701 ../../printerdrake.pm_.c:1590
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "A heul ->"
-#: ../../my_gtk.pm_.c:702 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Diaraog"
-#: ../../my_gtk.pm_.c:1034
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Ha reizh eo ?"
-#: ../../my_gtk.pm_.c:1098 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
msgid "Info"
msgstr "TitouroĂš"
-#: ../../my_gtk.pm_.c:1119
+#: ../../my_gtk.pm_.c:1141
msgid "Expand Tree"
msgstr "Astenn ar wezenn"
-#: ../../my_gtk.pm_.c:1120
+#: ../../my_gtk.pm_.c:1142
msgid "Collapse Tree"
msgstr "PlegaĂą ar wezenn"
-#: ../../my_gtk.pm_.c:1121
+#: ../../my_gtk.pm_.c:1143
msgid "Toggle between flat and group sorted"
msgstr "GwintaĂą etre kompez ha rummet dre strollad"
@@ -5401,7 +5552,7 @@ msgid ""
"I cannot set up this connection type."
msgstr ""
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:248
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
#, fuzzy
msgid "Choose the network interface"
msgstr "Dibabit ar ment nevez"
@@ -5438,10 +5589,10 @@ msgid "Host name"
msgstr "Anv an ostiz"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:179
-#: ../../network/netconnect.pm_.c:206 ../../network/netconnect.pm_.c:229
-#: ../../network/netconnect.pm_.c:237
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
#, fuzzy
msgid "Network Configuration Wizard"
msgstr "Kefluniadur ar rouedad"
@@ -5577,103 +5728,103 @@ msgstr "Dibabit ouzh pe borzh a-steud eo luget ho modem, mar plij."
msgid "Dialup options"
msgstr "DibarzhoĂš sifrennaĂą"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Anv ar gevreadenn"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
#, fuzzy
msgid "Phone number"
msgstr "Niverenn bellgomz"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Anv ereaĂą"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Diazezet war ur skrid"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Diazezet war un dermenell"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Anv ar domani"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Servijer DNS kentaĂą (da zilenn)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Eil servijer DNS (da zilenn)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
#, fuzzy
msgid ""
"\n"
"You can reconfigure your connection."
msgstr "KefluniaĂą ur rouedad"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
#, fuzzy
msgid "You are currently connected to internet."
msgstr "Da beseurt pladenn e mennit dilec'hiaĂą ?"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
msgstr "Anv ar gevreadenn"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid "You are not currently connected to Internet."
msgstr "Da beseurt pladenn e mennit dilec'hiaĂą ?"
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Connect"
msgstr "Anv ar gevreadenn"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
#, fuzzy
msgid "Disconnect"
msgstr "Lugerezh ar voullerez"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "KefluniaĂą ur rouedad"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
#, fuzzy
msgid "Internet connection & configuration"
msgstr "Lugerezh ar voullerez"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr "KefluniaĂą ur rouedad"
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, fuzzy, c-format
msgid ""
"\n"
@@ -5685,12 +5836,12 @@ msgid ""
"Press OK to continue."
msgstr "KefluniaĂą ur rouedad"
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:256
-#: ../../network/netconnect.pm_.c:276 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Kefluniadur ar rouedad"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -5698,7 +5849,7 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -5706,100 +5857,106 @@ msgid ""
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:170
#, fuzzy
msgid "Choose the profile to configure"
msgstr "Dibabit ar ment nevez"
-#: ../../network/netconnect.pm_.c:172
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:179 ../../printerdrake.pm_.c:145
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Mod mailh"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "O tinoiĂą trobarzhelloĂš..."
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, fuzzy
msgid "Normal modem connection"
msgstr "KefluniaĂą ur rouedad"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, fuzzy, c-format
msgid "detected on port %s"
msgstr "Poent marc'haĂą doubl %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, fuzzy
msgid "ISDN connection"
msgstr "Lugerezh ar voullerez"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "kavoutet %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy
msgid "ADSL connection"
msgstr "Lugerezh ar voullerez"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "kavoutet war %s"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "Cable connection"
msgstr "Lugerezh ar voullerez"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "cable connection detected"
msgstr "Lugerezh ar voullerez"
-#: ../../network/netconnect.pm_.c:194 ../../network/netconnect.pm_.c:203
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
#, fuzzy
msgid "LAN connection"
msgstr "Lugerezh ar voullerez"
-#: ../../network/netconnect.pm_.c:194 ../../network/netconnect.pm_.c:203
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "kartenn(oĂš) ethernet kavoutet"
-#: ../../network/netconnect.pm_.c:206
+#: ../../network/netconnect.pm_.c:205
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Dibabit ar benveg a vennit staliaĂą"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:231
+#: ../../network/netconnect.pm_.c:230
#, fuzzy
msgid "Internet connection"
msgstr "Lugerezh ar voullerez"
-#: ../../network/netconnect.pm_.c:237
+#: ../../network/netconnect.pm_.c:236
#, fuzzy
msgid "Do you want to start the connection at boot?"
msgstr "Mennout a rit implijout aboot ?"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:250
#, fuzzy
msgid "Network configuration"
msgstr "Kefluniadur ar rouedad"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:256
+#: ../../network/netconnect.pm_.c:255
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -5807,20 +5964,20 @@ msgid ""
"%s"
msgstr "Mennout a rit amprouiĂą ar c'hefluniadur ?"
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:271
+#: ../../network/netconnect.pm_.c:270
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -5855,12 +6012,12 @@ msgstr "O kefluniaĂą an drobarzhell rouedad %s"
msgid " (driver %s)"
msgstr "Servijer XFree86 : %s\n"
-#: ../../network/network.pm_.c:311 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "Chomlec'h IP"
-#: ../../network/network.pm_.c:312 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Maskl rouedad"
@@ -5877,7 +6034,7 @@ msgstr "IP emgefreek"
msgid "Start at boot"
msgstr "KrouiĂą ur bladennig loc'haĂą"
-#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:714
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "Er furmad 1.2.3.4 e tlefe bezaĂą ar chomlec'h IP"
@@ -5941,7 +6098,7 @@ msgstr "KefluniaĂą ar proksioĂš"
msgid "Do you want to try to connect to the Internet now?"
msgstr "Mennout a rit amprouiĂą ar c'hefluniadur ?"
-#: ../../network/tools.pm_.c:46 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
#, fuzzy
msgid "Testing your connection..."
msgstr "KefluniaĂą ur rouedad"
@@ -5971,44 +6128,44 @@ msgstr "KefluniaĂą ar proksioĂš"
msgid "Please fill or check the field below"
msgstr ""
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ kartenn"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Memor kartenn (DMA)"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "IO kartenn"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "IO_0 kartenn"
-#: ../../network/tools.pm_.c:89 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "IO_1 kartenn"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr ""
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr ""
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
#, fuzzy
msgid "Provider phone number"
msgstr "Niverenn bellgomz"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "DibarzhoĂš ar voullerez (da zilenn)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "DibarzhoĂš ar voullerez (da zilenn)"
@@ -6017,27 +6174,28 @@ msgstr "DibarzhoĂš ar voullerez (da zilenn)"
msgid "Choose your country"
msgstr "Dibabit ho stokellaoueg"
-#: ../../network/tools.pm_.c:96 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
#, fuzzy
msgid "Dialing mode"
msgstr "Anv domani"
-#: ../../network/tools.pm_.c:97 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection speed"
msgstr "Anv ar gevreadenn"
-#: ../../network/tools.pm_.c:98 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Anv ar gevreadenn"
-#: ../../network/tools.pm_.c:99 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
#, fuzzy
msgid "Account Login (user name)"
msgstr "Poent marc'haĂą"
-#: ../../network/tools.pm_.c:100 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
#, fuzzy
msgid "Account Password"
msgstr "Tremenger"
@@ -6046,15 +6204,15 @@ msgstr "Tremenger"
msgid "United Kingdom"
msgstr ""
-#: ../../partition_table.pm_.c:600
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "marc'haù sac'het : "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr ""
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -6064,214 +6222,214 @@ msgstr ""
"FiĂąval ar parzhadurioĂš kentaĂą derez evit ma vo an toull stok ouzh ar "
"parzhadurioĂš astennet eo an diskoulm"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Assevel adalek ar restr %s sac'het %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Restr gwareziĂą siek"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Fazi en ur skrivaĂą er restr %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
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 trash"
msgstr ""
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "a rankfec'h kaout"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "a-bouez"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "brav-tre"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "brav"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "marteze"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr ""
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr ""
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Moullerez lec'hel"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
#, fuzzy
msgid "Remote printer"
msgstr "DibarzhoĂš ar voullerez lpd a-bell"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "Steud a-bell"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:736
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "lpd a-bell"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
#, fuzzy
msgid "Network printer (TCP/Socket)"
msgstr "DibarzhoĂš ar voullerez NetWare"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Servijer moullaĂą"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:740
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Trobarzhell ar voullerez"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2733
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "MoullerezioĂš lec'hel"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "Moullerezio* a-bell"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", Mouluriez USB \\/*%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Fazi en ur skrivaĂą er restr %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1138
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(mollad %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP ar servijer SMB"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2394
-#: ../../printerdrake.pm_.c:2405 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2673 ../../printerdrake.pm_.c:2700
-#: ../../printerdrake.pm_.c:2870 ../../printerdrake.pm_.c:2872
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Dre ziouer)"
@@ -6290,12 +6448,12 @@ msgid ""
"printers will be automatically detected."
msgstr ""
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2457
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "Kefluniadur"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2458
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "Steud a-bell"
@@ -6326,7 +6484,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "Er furmad 1.2.3.4 e tlefe bezaĂą ar chomlec'h IP"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:864
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr ""
@@ -6335,7 +6493,7 @@ msgstr ""
msgid "CUPS server IP"
msgstr "IP ar servijer SMB"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:857
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
#, fuzzy
msgid "Port"
msgstr "Paour"
@@ -6345,17 +6503,13 @@ msgstr "Paour"
msgid "Automatic CUPS configuration"
msgstr "Kefluniadur goude staliaĂą"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "AmprouiĂą ar porzhioĂš"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2440
-#: ../../printerdrake.pm_.c:2559
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "Moullerez lec'hel"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6368,13 +6522,13 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Moullerez lec'hel"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6392,12 +6546,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "DibarzhoĂš ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6411,11 +6565,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6425,35 +6579,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "Dilesadur"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "DibarzhoĂš ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "AmprouiĂą ar porzhioĂš"
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "Poent marc'haĂą doubl %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr "Moullerez USB \\/*%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
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, ..., "
@@ -6461,42 +6619,42 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Trobarzhell ar voullerez"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
msgstr "N'ev ket Moullerez lec'hel!\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6504,7 +6662,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6512,72 +6670,81 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Dibabit ouzh pe borzh a-steud eo luget ho modem, mar plij."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Trobarzhell ar voullerez"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "KefluniaĂą ar proksioĂš"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart P100 or 1315 or an "
-"HP LaserJet 2200?"
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "O staliaĂą ar pakad %s"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:485
msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:507
+#: ../../printerdrake.pm_.c:504
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing SANE packages..."
msgstr "O staliaĂą ar pakad %s"
-#: ../../printerdrake.pm_.c:519
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "O staliaĂą pakadoĂš..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:536
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
msgid "Making printer port available for CUPS..."
msgstr ""
-#: ../../printerdrake.pm_.c:546 ../../printerdrake.pm_.c:1020
-#: ../../printerdrake.pm_.c:1134
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
msgid "Reading printer database..."
msgstr ""
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "DibarzhoĂš ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -6587,31 +6754,31 @@ msgstr ""
"pourvezaĂą anv ostiz ar servijer moullaĂą hag anv as steud\n"
"war ar servijer-se ma zlefe bezaĂą kaset an dleadoĂš moullaĂą."
-#: ../../printerdrake.pm_.c:628
+#: ../../printerdrake.pm_.c:650
#, fuzzy
msgid "Remote host name"
msgstr "Anv an ostiz a-bell"
-#: ../../printerdrake.pm_.c:629
+#: ../../printerdrake.pm_.c:651
#, fuzzy
msgid "Remote printer name"
msgstr "DibarzhoĂš ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:632
+#: ../../printerdrake.pm_.c:654
#, fuzzy
msgid "Remote host name missing!"
msgstr "Anv an ostiz a-bell"
-#: ../../printerdrake.pm_.c:636
+#: ../../printerdrake.pm_.c:658
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Anv an ostiz a-bell"
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "DibarzhoĂš moullaĂą SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -6625,35 +6792,35 @@ msgstr ""
"kement hag anv rannet ar voullerez a glaskit tizhout ha ne vern pe\n"
"ditour a anv arveriad, tremenger ha strollad labour en implij."
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "Anv ar servijer SMB"
-#: ../../printerdrake.pm_.c:707
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP ar servijer SMB"
-#: ../../printerdrake.pm_.c:708
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Anv rannet"
-#: ../../printerdrake.pm_.c:711
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Strollad labour"
-#: ../../printerdrake.pm_.c:718
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:722
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:727
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:728
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -6677,7 +6844,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -6686,7 +6853,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -6694,11 +6861,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "DibarzhoĂš ar voullerez NetWare"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -6711,28 +6878,28 @@ msgstr ""
"anv ostiz TCP/IP !) kement hag anv ar steud moullaĂą evit ar voullerez\n"
"a glaskit tizhout ha ne vern pe anv arveriad ha tremenger en implij."
-#: ../../printerdrake.pm_.c:805
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Servijer moullaĂą"
-#: ../../printerdrake.pm_.c:806
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Anv ar steud moullaĂą"
-#: ../../printerdrake.pm_.c:811
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:815
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "DibarzhoĂš ar voullerez NetWare"
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -6740,61 +6907,56 @@ msgid ""
"hardware."
msgstr ""
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Anv ar voullerez"
-#: ../../printerdrake.pm_.c:860
+#: ../../printerdrake.pm_.c:882
#, fuzzy
msgid "Printer host name missing!"
msgstr "DibarzhoĂš ar voullerez"
-#: ../../printerdrake.pm_.c:889 ../../printerdrake.pm_.c:891
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
#, fuzzy
msgid "Printer Device URI"
msgstr "Trobarzhell ar voullerez"
-#: ../../printerdrake.pm_.c:890
+#: ../../printerdrake.pm_.c:912
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 ""
-#: ../../printerdrake.pm_.c:905
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1006
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Anv ar moullerez"
-#: ../../printerdrake.pm_.c:1008
-#, fuzzy
-msgid "Description"
-msgstr "Spisait dibarzhoĂš"
-
-#: ../../printerdrake.pm_.c:1009
+#: ../../printerdrake.pm_.c:1031
#, fuzzy
msgid "Location"
msgstr "TitouroĂš"
-#: ../../printerdrake.pm_.c:1023
+#: ../../printerdrake.pm_.c:1045
msgid "Preparing printer database..."
msgstr ""
-#: ../../printerdrake.pm_.c:1114
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "DibarzhoĂš ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:1115
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -6809,28 +6971,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1120 ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "Ha reizh eo ?"
-#: ../../printerdrake.pm_.c:1121 ../../printerdrake.pm_.c:1122
-#: ../../printerdrake.pm_.c:1125
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "DibarzhoĂš ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1163
#, fuzzy
msgid "Printer model selection"
msgstr "Lugerezh ar voullerez"
-#: ../../printerdrake.pm_.c:1142
+#: ../../printerdrake.pm_.c:1164
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Peseurt moullerez hoc'h eus ?"
-#: ../../printerdrake.pm_.c:1143
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -6839,18 +7001,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1146
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1222
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "KefluniaĂą ar modem"
-#: ../../printerdrake.pm_.c:1223
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -6860,12 +7022,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1266 ../../printerdrake.pm_.c:1293
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "KefluniaĂą ar proksioĂš"
-#: ../../printerdrake.pm_.c:1267
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -6873,7 +7035,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1294
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -6886,7 +7048,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1510
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -6896,34 +7058,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1519
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1523
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1528
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1567
+#: ../../printerdrake.pm_.c:1589
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Ha mennout a rit amprouiĂą moullaĂą skrid ?"
-#: ../../printerdrake.pm_.c:1584
+#: ../../printerdrake.pm_.c:1606
#, fuzzy
msgid "Test pages"
msgstr "AmprouiĂą ar porzhioĂš"
-#: ../../printerdrake.pm_.c:1585
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -6931,45 +7093,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1589
+#: ../../printerdrake.pm_.c:1611
#, fuzzy
msgid "No test pages"
msgstr "Ya, moullit an div bajenn arnod"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1612
#, fuzzy
msgid "Print"
msgstr "Moullerez"
-#: ../../printerdrake.pm_.c:1592
+#: ../../printerdrake.pm_.c:1614
#, fuzzy
msgid "Standard test page"
msgstr "Diorren"
-#: ../../printerdrake.pm_.c:1595
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1620
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "O voullaĂą pajenn(oĂš) skrid..."
-#: ../../printerdrake.pm_.c:1600
+#: ../../printerdrake.pm_.c:1622
#, fuzzy
msgid "Photo test page"
msgstr "O voullaĂą pajenn(oĂš) skrid..."
-#: ../../printerdrake.pm_.c:1604
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "O voullaĂą pajenn(oĂš) skrid..."
-#: ../../printerdrake.pm_.c:1612 ../../printerdrake.pm_.c:1749
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "O voullaĂą pajenn(oĂš) skrid..."
-#: ../../printerdrake.pm_.c:1637
+#: ../../printerdrake.pm_.c:1659
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -6985,7 +7147,7 @@ msgstr ""
"\n"
"Ha mont a ra en-dro reizh ?"
-#: ../../printerdrake.pm_.c:1641
+#: ../../printerdrake.pm_.c:1663
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -6995,16 +7157,16 @@ msgstr ""
"Ur pennadig e c'hell padout a-raok ma loc'hfe a voullerez.\n"
"Ha mont a ra en-dro reizh ?"
-#: ../../printerdrake.pm_.c:1648
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1669 ../../printerdrake.pm_.c:2735
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "Moullerez lec'hel"
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7013,15 +7175,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1689
+#: ../../printerdrake.pm_.c:1720
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 ""
-#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:1708
-#: ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7030,49 +7192,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1695 ../../printerdrake.pm_.c:1734
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, 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\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1698
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1705 ../../printerdrake.pm_.c:1715
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1710 ../../printerdrake.pm_.c:1720
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1727
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7082,7 +7244,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1731
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7091,31 +7253,42 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1740 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:1747 ../../printerdrake.pm_.c:1748
-#: ../../printerdrake.pm_.c:2719 ../../standalone/drakbackup_.c:743
-#: ../../standalone/drakbackup_.c:2448 ../../standalone/drakfont_.c:580
-#: ../../standalone/drakfont_.c:792
-#, fuzzy
-msgid "Close"
-msgstr "Logodenn USB"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "O tizenaouiĂą ar rouedad"
-#: ../../printerdrake.pm_.c:1743 ../../printerdrake.pm_.c:1755
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "O tizenaouiĂą ar rouedad"
-#: ../../printerdrake.pm_.c:1744 ../../printerdrake.pm_.c:1756
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "O tizenaouiĂą ar rouedad"
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "O tizenaouiĂą ar rouedad"
-#: ../../printerdrake.pm_.c:1746
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+#, fuzzy
+msgid "Close"
+msgstr "Logodenn USB"
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "DibarzhoĂš ar voullerez"
-#: ../../printerdrake.pm_.c:1768
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7123,37 +7296,37 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1775
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1797 ../../printerdrake.pm_.c:2224
-#: ../../printerdrake.pm_.c:2488
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
msgid "Reading printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:1817 ../../printerdrake.pm_.c:1845
-#: ../../printerdrake.pm_.c:1880
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
#, fuzzy
msgid "Transfer printer configuration"
msgstr "KefluniaĂą ar proksioĂš"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7163,51 +7336,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1821
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1823
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1827
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1828
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1832
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1833 ../../printerdrake.pm_.c:1850
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1846
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7215,61 +7388,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1854
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1859
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid "New printer name"
msgstr "Moullerez lec'hel"
-#: ../../printerdrake.pm_.c:1870
+#: ../../printerdrake.pm_.c:1915
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1881
+#: ../../printerdrake.pm_.c:1926
#, 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 ""
-#: ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1935
msgid "Refreshing printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:1898 ../../printerdrake.pm_.c:1969
-#: ../../printerdrake.pm_.c:1981
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "KefluniaĂą ar voullerez"
-#: ../../printerdrake.pm_.c:1899
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
msgid "Starting network..."
msgstr "KefluniaĂą ur rouedad"
-#: ../../printerdrake.pm_.c:1933 ../../printerdrake.pm_.c:1937
-#: ../../printerdrake.pm_.c:1939
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr "KefluniaĂą ur rouedad"
-#: ../../printerdrake.pm_.c:1934
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "Skramm ket kefluniet"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7277,12 +7450,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1938
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr "KefluniaĂą ar rouedad"
-#: ../../printerdrake.pm_.c:1971
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7292,34 +7465,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1972
+#: ../../printerdrake.pm_.c:2017
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 ""
-#: ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
msgid "Restarting printing system..."
msgstr "DibarzhoĂš ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:2020
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "Uhel"
-#: ../../printerdrake.pm_.c:2020
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "Ankeniet"
-#: ../../printerdrake.pm_.c:2021
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2022
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7334,11 +7507,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2054
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr ""
-#: ../../printerdrake.pm_.c:2055
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7352,69 +7525,69 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2078 ../../printerdrake.pm_.c:2116
-#: ../../printerdrake.pm_.c:2146 ../../printerdrake.pm_.c:2179
-#: ../../printerdrake.pm_.c:2284
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2120
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2150
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2208
+#: ../../printerdrake.pm_.c:2276
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Diuzit lugerezh ar voullerez"
-#: ../../printerdrake.pm_.c:2209
+#: ../../printerdrake.pm_.c:2277
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Pe seurt parzhadur a vennit ?"
-#: ../../printerdrake.pm_.c:2242
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "KefluniaĂą ar voullerez"
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
msgid "Installing Foomatic..."
msgstr "O staliaĂą ar pakad %s"
-#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2351
-#: ../../printerdrake.pm_.c:2736 ../../printerdrake.pm_.c:2806
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "DibarzhoĂš ar voullerez"
-#: ../../printerdrake.pm_.c:2321
+#: ../../printerdrake.pm_.c:2389
msgid "Preparing PrinterDrake..."
msgstr ""
-#: ../../printerdrake.pm_.c:2338 ../../printerdrake.pm_.c:2893
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "KefluniaĂą ar voullerez"
-#: ../../printerdrake.pm_.c:2358
+#: ../../printerdrake.pm_.c:2426
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Mennout a rit kefluniaĂą ur voullerez ?"
-#: ../../printerdrake.pm_.c:2370
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2418
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "Printerdrake"
msgstr "Moullerez"
-#: ../../printerdrake.pm_.c:2422
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7425,7 +7598,7 @@ msgstr ""
"Setu da heul ar steudadoĂš moullaĂą.\n"
"Gallout a rit ouzhpennaĂą lod pe gemmaĂą a re a zo."
-#: ../../printerdrake.pm_.c:2423
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7435,138 +7608,142 @@ msgstr ""
"Setu da heul ar steudadoĂš moullaĂą.\n"
"Gallout a rit ouzhpennaĂą lod pe gemmaĂą a re a zo."
-#: ../../printerdrake.pm_.c:2449
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2467
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "KefluniaĂą ur rouedad"
-#: ../../printerdrake.pm_.c:2472 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
#, fuzzy
msgid "Normal Mode"
msgstr "Boas"
-#: ../../printerdrake.pm_.c:2628 ../../printerdrake.pm_.c:2678
-#: ../../printerdrake.pm_.c:2887
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Kuitaat"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Mennout a rit amprouiĂą ar c'hefluniadur ?"
-#: ../../printerdrake.pm_.c:2714
+#: ../../printerdrake.pm_.c:2782
#, fuzzy
msgid "Modify printer configuration"
msgstr "KefluniaĂą ar modem"
-#: ../../printerdrake.pm_.c:2716
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Mennout a rit amprouiĂą ar c'hefluniadur ?"
-#: ../../printerdrake.pm_.c:2720
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2780
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
#, fuzzy
msgid "Printer connection type"
msgstr "Lugerezh ar voullerez"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2784
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
#, fuzzy
msgid "Printer name, description, location"
msgstr "Lugerezh ar voullerez"
-#: ../../printerdrake.pm_.c:2728 ../../printerdrake.pm_.c:2799
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2729 ../../printerdrake.pm_.c:2800
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2824
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2833
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
#, fuzzy
msgid "Print test pages"
msgstr "O voullaĂą pajenn(oĂš) skrid..."
-#: ../../printerdrake.pm_.c:2743 ../../printerdrake.pm_.c:2835
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "Mennout a rit amprouiĂą ar c'hefluniadur ?"
-#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2837
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
#, fuzzy
msgid "Remove printer"
msgstr "DibarzhoĂš ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:2789
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "DibarzhoĂš ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:2813
+#: ../../printerdrake.pm_.c:2881
#, fuzzy
msgid "Default printer"
msgstr "Moullerez lec'hel"
-#: ../../printerdrake.pm_.c:2814
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2818 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2827 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2831
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2839
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Mennout a rit amprouiĂą ar c'hefluniadur ?"
-#: ../../printerdrake.pm_.c:2841
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "DibarzhoĂš ar voullerez lpd a-bell"
@@ -7651,24 +7828,62 @@ msgstr "An tremegerioĂš ne glot ket"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "N'hellan ket ouzhpennaĂą ur parzhadur da RAID md%d _furmadet_"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "N'hellan ket skrivaĂą e %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid sac'het"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid sac'het (raidtools a vank emichaĂąs ?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ket a-walc'h a parzhadurioĂš evit RAID live %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+msgid ""
+"This level is to be used with care. It makes your system more easy to use,\n"
+" but very sensitive: it must not be used for a machine "
+"connected to others\n"
+" or to the Internet. There is no password access."
+msgstr ""
+"Ret eo implijout al live-maĂą gant evezh. Ober a ra d'ho reizhiad bezaĂą\n"
+"aesoc'h da implijout, hogen kizidig-tre : arabat e implj evit un ardivink\n"
+"kevreet ouzh lod all pe ouzh ar genrouedad. N'eus ket a haeziĂą dre dremenger."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+"Gant al live surentez-maĂą e teu posupl implijout ar reizhiad-maĂą evel ur "
+"servijer.\n"
+"Uhel a-walc'h eo bremaĂą ar surentez evit implijout ar reizhiad evel ur "
+"servijer\n"
+"o tigemer kevreadennoĂš a-berzh arvaloĂš niverus."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Kefluniadur"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Parzhadur"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -7723,7 +7938,7 @@ msgid ""
"new/changed hardware."
msgstr ""
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:414
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -7791,7 +8006,7 @@ msgid ""
"available server."
msgstr ""
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -7868,7 +8083,7 @@ msgstr ""
"dro\n"
"war ardivinkoĂš anezho servijerien komenadoĂš a implij ar reizhiad RPC."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:417
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -7969,7 +8184,7 @@ msgstr "dedennus"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:923
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "Reizhiad/Diazez"
@@ -8093,6 +8308,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Anv ar gevreadenn"
@@ -8194,6 +8410,15 @@ msgstr ""
msgid "Installing packages..."
msgstr "O staliaĂą pakadoĂš..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Dizereit mar plij ha neuze implijit Ctrl-Alt-WarGil"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Adereit ouzh %s evit bevaat ar c'hemmoĂš mar plij"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8202,6 +8427,159 @@ msgstr ""
"N'hellaĂą ket lenn ho taolenn barzhaĂą, re vrein eo evidon :(\n"
"Klask a rin kenderc'hel en ur ziverkaĂą ar parzhadurioĂš siek"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "KefluniaĂą ar proksioĂš"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "StlennvonioĂš"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "StlennvonioĂš"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "Servijer NIS"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "Servijer NIS"
+
+#: ../../standalone/drakTermServ_.c:234
+#, fuzzy
+msgid "Etherboot Floppy/ISO"
+msgstr "KrouiĂą ur bladennig loc'haĂą"
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "OuzhpennaĂą un arveriad"
+
+#: ../../standalone/drakTermServ_.c:242
+msgid "Add/Del Clients"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Skoazell"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Lugerezh ar voullerez"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Dilemel"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Diuzit ar restr"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "OuzhpennaĂą un arveriad"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+msgid "<-- Del Client"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "KefluniaĂą IDE"
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "KefluniaĂą X"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Lakait ur bladennig el lenner %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Lenner pladennig hegerz ebet"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "Fazi!"
@@ -8255,40 +8633,40 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:548
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Gourc'hemennoĂš!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "StaliaĂą"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "OuzhpennaĂą un arveriad"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "O furmadiĂą ar restr saveteiĂą %s"
-#: ../../standalone/drakbackup_.c:438
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:439
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8296,7 +8674,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:443
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8304,700 +8682,767 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:465
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:544 ../../standalone/drakbackup_.c:591
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:592 ../../standalone/drakbackup_.c:656
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Restr gwareziĂą siek"
-#: ../../standalone/drakbackup_.c:604
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "Restr gwareziĂą siek"
-#: ../../standalone/drakbackup_.c:605
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:655
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "Restr gwareziĂą siek"
-#: ../../standalone/drakbackup_.c:663
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#, c-format
+msgid ""
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-" FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:676
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Fazi en ur lenn ar restr %s"
-#: ../../standalone/drakbackup_.c:717 ../../standalone/drakbackup_.c:728
-#: ../../standalone/drakbackup_.c:739 ../../standalone/drakfont_.c:788
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "Diuzadenn strollad pakadoĂš"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:779
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:780
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:781
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:782
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:783
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:784
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:801
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Dibabit ar pakadoĂš a vennit staliaĂą, mar plij."
-#: ../../standalone/drakbackup_.c:828
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:829 ../../standalone/drakbackup_.c:853
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:851 ../../standalone/drakfont_.c:828
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "Lemel ar steudad"
-#: ../../standalone/drakbackup_.c:889
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:928
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr "Anv arveriad"
-#: ../../standalone/drakbackup_.c:954
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Restr gwareziĂą siek"
-#: ../../standalone/drakbackup_.c:957
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../standalone/drakbackup_.c:962
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "Klaskit adarre mar plij"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "Klaskit adarre mar plij"
-#: ../../standalone/drakbackup_.c:978
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "Tremenger ebet"
-#: ../../standalone/drakbackup_.c:1042 ../../standalone/drakbackup_.c:2038
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Lugerezh ar voullerez"
-
-#: ../../standalone/drakbackup_.c:1049 ../../standalone/drakbackup_.c:2046
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Diuzit lugerezh ar voullerez"
-
-#: ../../standalone/drakbackup_.c:1075 ../../standalone/drakbackup_.c:2879
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1078 ../../standalone/drakbackup_.c:2883
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Dibabit reizhadur ho stokellaoueg, mar plij."
#
-#: ../../standalone/drakbackup_.c:1084 ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Klikit war ur parzhadur mar plij"
-#: ../../standalone/drakbackup_.c:1090 ../../standalone/drakbackup_.c:2901
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1096
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr "Dibabit ar pakadoĂš a vennit staliaĂą, mar plij."
-#: ../../standalone/drakbackup_.c:1102
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1143
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "Restr gwareziĂą siek"
-#: ../../standalone/drakbackup_.c:1146
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1152 ../../standalone/drakbackup_.c:1193
-#: ../../standalone/drakbackup_.c:2003
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Dibabit ar pakadoĂš a vennit staliaĂą, mar plij."
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1185 ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:2009
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "Restr gwareziĂą siek"
-#: ../../standalone/drakbackup_.c:1257
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "Taolenn"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1585
+msgid "CDROM / DVDROM"
+msgstr "CDROM / DVDROM"
+
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1287 ../../standalone/drakbackup_.c:1291
-#: ../../standalone/drakbackup_.c:1295
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Seurt"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1288 ../../standalone/drakbackup_.c:1292
-#: ../../standalone/drakbackup_.c:1295
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1289 ../../standalone/drakbackup_.c:1293
-#: ../../standalone/drakbackup_.c:1295
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1290 ../../standalone/drakbackup_.c:1294
-#: ../../standalone/drakbackup_.c:1295
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1302
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "Anv arveriad"
-#: ../../standalone/drakbackup_.c:1307
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Dibabit ar pakadoĂš a vennit staliaĂą, mar plij."
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Diuzit ar yezh da implijout, mar plij."
-#: ../../standalone/drakbackup_.c:1317
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Implijout gwelladur ar bladenn galet ?"
-
-#: ../../standalone/drakbackup_.c:1319
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Rouedad/Diaouled"
-
-#: ../../standalone/drakbackup_.c:1323
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:1359
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1401
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "Petra"
-#: ../../standalone/drakbackup_.c:1406
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "Pelec'h"
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "Pa"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "DibarzhoÚ ar mollad :"
-#: ../../standalone/drakbackup_.c:1435 ../../standalone/drakbackup_.c:2791
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Kefluniadur ar rouedad"
-#: ../../standalone/drakbackup_.c:1453
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Dibabit ar pakadoĂš a vennit staliaĂą, mar plij."
-#: ../../standalone/drakbackup_.c:1455
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1466
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Dibabit ar pakadoĂš a vennit staliaĂą, mar plij."
-#: ../../standalone/drakbackup_.c:1531
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "KefluniaĂą reizhiadoĂš restroĂš"
-#: ../../standalone/drakbackup_.c:1532
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1535
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1618
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1622
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1624
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1625
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Trobarzhell al logodenn : %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1626
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Parzhadur"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1629
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1631
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1633
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1743
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Dibabit ouzh pe borzh a-steud eo luget ho modem, mar plij."
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1776
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1777
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1876
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "Kefluniadur ar rouedad"
-#: ../../standalone/drakbackup_.c:1894
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1912
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1962
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "Restr gwareziĂą siek"
-#: ../../standalone/drakbackup_.c:1964
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../standalone/drakbackup_.c:1992
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Restr gwareziĂą siek"
-#: ../../standalone/drakbackup_.c:2073
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Dibabit seurt ho logodenn, mar plij."
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "Lugerezh ar voullerez"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Diuzit lugerezh ar voullerez"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Assevel adalek ar pladennig"
-#: ../../standalone/drakbackup_.c:2075
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2133
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../standalone/drakbackup_.c:2135
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "All"
-#: ../../standalone/drakbackup_.c:2141
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "StaliaĂą ar reizhiad"
-#: ../../standalone/drakbackup_.c:2142
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "AdaozaĂą adalek ar restr"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "AdaozaĂą adalek ar restr"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2150
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2215
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "Neuziet"
-#: ../../standalone/drakbackup_.c:2256 ../../standalone/drakbackup_.c:2281
-#: ../../standalone/drakbackup_.c:2302 ../../standalone/drakbackup_.c:2323
-#: ../../standalone/drakbackup_.c:2341 ../../standalone/drakbackup_.c:2373
-#: ../../standalone/drakbackup_.c:2389 ../../standalone/drakbackup_.c:2409
-#: ../../standalone/drakbackup_.c:2428 ../../standalone/drakbackup_.c:2450
-#: ../../standalone/drakfont_.c:578
-msgid "Help"
-msgstr "Skoazell"
-
-#: ../../standalone/drakbackup_.c:2259 ../../standalone/drakbackup_.c:2286
-#: ../../standalone/drakbackup_.c:2305 ../../standalone/drakbackup_.c:2326
-#: ../../standalone/drakbackup_.c:2344 ../../standalone/drakbackup_.c:2392
-#: ../../standalone/drakbackup_.c:2412 ../../standalone/drakbackup_.c:2431
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "Diaraog"
-#: ../../standalone/drakbackup_.c:2261 ../../standalone/drakbackup_.c:2328
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "EnrollaĂą"
-#: ../../standalone/drakbackup_.c:2307
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "Restr gwareziĂą siek"
-#: ../../standalone/drakbackup_.c:2346 ../../standalone/drakbackup_.c:3023
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr "AdaozaĂą adalek ar restr"
-#: ../../standalone/drakbackup_.c:2394 ../../standalone/drakbackup_.c:2414
-#: ../../standalone/drakbackup_.c:2435
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "A heul"
-#: ../../standalone/drakbackup_.c:2468
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2489
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2512
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "Dibabit pakadoĂš da staliaĂą"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Ar pakadoĂš a-heul a zo war-nes bezaĂą distaliet"
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2563
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "Diuzit ar yezh da implijout, mar plij."
-#: ../../standalone/drakbackup_.c:2584
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "Diuzit ar yezh da implijout, mar plij."
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "Diuzit ar yezh da implijout, mar plij."
-#: ../../standalone/drakbackup_.c:2628
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2649
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2729
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "Restr gwareziĂą siek"
-#: ../../standalone/drakbackup_.c:2731
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "Restr gwareziĂą siek"
-#: ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "Restr gwareziĂą siek"
-#: ../../standalone/drakbackup_.c:2735 ../../standalone/drakbackup_.c:2766
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2757
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "EnrollaĂą er restr"
-#: ../../standalone/drakbackup_.c:2831
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../standalone/drakbackup_.c:2907
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2913
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr "Dibabit ar pakadoĂš a vennit staliaĂą, mar plij."
-#: ../../standalone/drakbackup_.c:2979
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Kefluniadur ar rouedad"
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "Kefluniadur ar rouedad"
-#: ../../standalone/drakbackup_.c:3010
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "Kefluniadur"
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "Kefluniadur"
-#: ../../standalone/drakbackup_.c:3018
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "KefluniaĂą reizhiadoĂš restroĂš"
-#: ../../standalone/drakbackup_.c:3043
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3094
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9029,7 +9474,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3124
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9038,7 +9483,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3132
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9079,7 +9524,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3171
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9107,13 +9552,18 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3197 ../../standalone/drakbackup_.c:3272
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
"Copyright (C) 2001 MandrakeSoft gant DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3199 ../../standalone/drakbackup_.c:3274
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -9130,7 +9580,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3213
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9170,7 +9620,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3251
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9181,7 +9631,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9194,7 +9644,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3288
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9238,6 +9688,336 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Staliadur %s a zo sac'het. Degouezhet eo ar fazi a heul :"
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+msgid "Standalone Tools"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "MandrakeConsulting"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "MandrakeStore"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Logodenn"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "DibarzhoĂš ar voullerez lpd a-bell"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Anv rannet"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+#, fuzzy
+msgid "Windows Migration tool"
+msgstr "TitouroĂš"
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Moullerez"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Kefluniadur ar rouedad"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "X11/ArloadoĂš"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Pakad"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Gortozit mar plij"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Dilezel ar staliadur"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "Paour"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Gallout a rit dibab yezhoĂš all hag a vo hegerz goude staliaĂą"
+
+#: ../../standalone/drakconnect_.c:80
+#, fuzzy, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Kefluniadur ar rouedad"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#, fuzzy
+msgid "Profile: "
+msgstr "marc'haù sac'het : "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+#, fuzzy
+msgid "Hostname: "
+msgstr "Anv an ostiz : "
+
+#: ../../standalone/drakconnect_.c:168
+#, fuzzy
+msgid "Internet access"
+msgstr "dedennus"
+
+#: ../../standalone/drakconnect_.c:181
+#, fuzzy
+msgid "Type:"
+msgstr "Seurt : "
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Treuzell : "
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#, fuzzy
+msgid "Interface:"
+msgstr "dedennus"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+#, fuzzy
+msgid "Configure Internet Access..."
+msgstr "KefluniaĂą servijoĂš"
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#, fuzzy
+msgid "LAN configuration"
+msgstr "Kefluniadur"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "Driver"
+msgstr "Servijer"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "Interface"
+msgstr "dedennus"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "State"
+msgstr "Meuziad LaĂąsaĂą"
+
+#: ../../standalone/drakconnect_.c:244
+#, fuzzy
+msgid "Configure Local Area Network..."
+msgstr "KefluniaĂą ur rouedad"
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Skoazeller..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:302
+#, fuzzy
+msgid "Please Wait... Applying the configuration"
+msgstr "AmprouiĂą ar c'hefluniadur"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#, fuzzy
+msgid "Connected"
+msgstr "Anv ar gevreadenn"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#, fuzzy
+msgid "Not connected"
+msgstr "Lugerezh ar voullerez"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:453
+#, fuzzy
+msgid "LAN Configuration"
+msgstr "Kefluniadur"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "activate now"
+msgstr "Bevaat"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "deactivate now"
+msgstr "Bevaat"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:584
+#, fuzzy
+msgid "Internet connection configuration"
+msgstr "Lugerezh ar voullerez"
+
+#: ../../standalone/drakconnect_.c:588
+#, fuzzy
+msgid "Internet Connection Configuration"
+msgstr "Lugerezh ar voullerez"
+
+#: ../../standalone/drakconnect_.c:597
+#, fuzzy
+msgid "Connection type: "
+msgstr "Anv ar gevreadenn"
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Treuzell"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr ""
+
#: ../../standalone/drakfloppy_.c:64
msgid "usage: drakfloppy\n"
msgstr ""
@@ -9355,104 +10135,104 @@ msgid ""
" %s"
msgstr ""
-#: ../../standalone/drakfont_.c:230
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:232
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:254
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "%s ket kavet"
-#: ../../standalone/drakfont_.c:262 ../../standalone/drakfont_.c:304
-#: ../../standalone/drakfont_.c:353 ../../standalone/drakfont_.c:413
-#: ../../standalone/drakfont_.c:422 ../../standalone/drakfont_.c:448
-#: ../../standalone/drakfont_.c:460 ../../standalone/drakfont_.c:473
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr "Graet"
-#: ../../standalone/drakfont_.c:266
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:302
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:305
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:328
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:351
+#: ../../standalone/drakfont_.c:378
#, fuzzy
msgid "Fonts copy"
msgstr "FurmadiĂą ar bladennig"
-#: ../../standalone/drakfont_.c:354
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "O prientiĂą ar staliadur"
-#: ../../standalone/drakfont_.c:358
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:362
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:369 ../../standalone/drakfont_.c:385
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:373 ../../standalone/drakfont_.c:389
-#: ../../standalone/drakfont_.c:409
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:378 ../../standalone/drakfont_.c:393
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:400
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:404
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:417
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr ""
-#: ../../standalone/drakfont_.c:458 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:470
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "strishaat"
-#: ../../standalone/drakfont_.c:477 ../../standalone/drakfont_.c:761
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -9461,124 +10241,119 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:551
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "FurmadiĂą parzhadurioĂš"
-#: ../../standalone/drakfont_.c:566
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:568
+#: ../../standalone/drakfont_.c:669
#, fuzzy
msgid "Uninstall Fonts"
msgstr "O tistaliaĂą ar RPMoĂš"
-#: ../../standalone/drakfont_.c:571
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Kefluniadur"
-
-#: ../../standalone/drakfont_.c:573
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr "Poent marc'haĂą"
-#: ../../standalone/drakfont_.c:740
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Dibabit ar parzhadur a vennit furmadiĂą"
-#: ../../standalone/drakfont_.c:744
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:748
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "Burev"
-#: ../../standalone/drakfont_.c:752
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr ""
-#: ../../standalone/drakfont_.c:756
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr "Moullerez"
-#: ../../standalone/drakfont_.c:793
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:829
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "StaliaĂą ar reizhiad"
-#: ../../standalone/drakfont_.c:859
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:896
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "Diuzit ar restr"
-#: ../../standalone/drakfont_.c:898
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "DibarzhoĂš ar voullerez lpd a-bell"
-#: ../../standalone/drakfont_.c:915 ../../standalone/drakfont_.c:935
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr ""
-#: ../../standalone/drakfont_.c:916
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
msgstr ""
-#: ../../standalone/drakfont_.c:917
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:918
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "StaliaĂą"
-#: ../../standalone/drakfont_.c:936
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
msgstr ""
-#: ../../standalone/drakfont_.c:937
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "Dilezel ar staliadur"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
#, fuzzy
msgid "Internet Connection Sharing"
msgstr "Lugerezh ar voullerez"
-#: ../../standalone/drakgw_.c:122
+#: ../../standalone/drakgw_.c:123
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr ""
-#: ../../standalone/drakgw_.c:135
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -9586,35 +10361,35 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:140
#, fuzzy
msgid "disable"
msgstr "Taolenn"
-#: ../../standalone/drakgw_.c:139 ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr ""
-#: ../../standalone/drakgw_.c:139 ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
#, fuzzy
msgid "reconfigure"
msgstr "KefluniaĂą X"
-#: ../../standalone/drakgw_.c:142
+#: ../../standalone/drakgw_.c:143
#, fuzzy
msgid "Disabling servers..."
msgstr "O tinoiĂą trobarzhelloĂš..."
-#: ../../standalone/drakgw_.c:150
+#: ../../standalone/drakgw_.c:151
#, fuzzy
msgid "Internet connection sharing is now disabled."
msgstr "Lugerezh ar voullerez"
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr ""
-#: ../../standalone/drakgw_.c:160
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -9622,21 +10397,21 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:165
#, fuzzy
msgid "enable"
msgstr "Taolenn"
-#: ../../standalone/drakgw_.c:171
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:176
+#: ../../standalone/drakgw_.c:177
#, fuzzy
msgid "Internet connection sharing is now enabled."
msgstr "Lugerezh ar voullerez"
-#: ../../standalone/drakgw_.c:197
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -9646,31 +10421,31 @@ msgid ""
"(LAN)."
msgstr ""
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr ""
-#: ../../standalone/drakgw_.c:224
+#: ../../standalone/drakgw_.c:225
#, fuzzy, c-format
msgid "Interface %s"
msgstr "dedennus"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr ""
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr ""
-#: ../../standalone/drakgw_.c:240
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -9680,18 +10455,18 @@ msgid ""
"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../standalone/drakgw_.c:249
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "Skramm ket kefluniet"
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -9701,17 +10476,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Kefluniadur goude staliaĂą"
-#: ../../standalone/drakgw_.c:274
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "KefluniaĂą ar modem"
-#: ../../standalone/drakgw_.c:276
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -9722,7 +10497,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:288
+#: ../../standalone/drakgw_.c:289
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 C-Class Network that "
@@ -9734,79 +10509,79 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP ar servijer SMB"
-#: ../../standalone/drakgw_.c:295
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:302
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:313
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
-#: ../../standalone/drakgw_.c:321
+#: ../../standalone/drakgw_.c:322
#, fuzzy
msgid "Firewalling configuration detected!"
msgstr "o lenn ar c'hefluniadur"
-#: ../../standalone/drakgw_.c:322
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
msgstr ""
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:330
#, fuzzy
msgid "Configuring..."
msgstr "KefluniaĂą IDE"
-#: ../../standalone/drakgw_.c:330
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:366
+#: ../../standalone/drakgw_.c:367
#, fuzzy, c-format
msgid "Problems installing package %s"
msgstr "O staliaĂą ar pakad %s"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:570
#, fuzzy
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Lugerezh ar voullerez"
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:575
#, fuzzy
msgid "Internet connection sharing configuration"
msgstr "Lugerezh ar voullerez"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:582
#, fuzzy, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -9816,231 +10591,6 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Lugerezh ar voullerez"
-#: ../../standalone/draknet_.c:80
-#, fuzzy, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Kefluniadur ar rouedad"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-#, fuzzy
-msgid "Profile: "
-msgstr "marc'haù sac'het : "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-#, fuzzy
-msgid "Hostname: "
-msgstr "Anv an ostiz : "
-
-#: ../../standalone/draknet_.c:168
-#, fuzzy
-msgid "Internet access"
-msgstr "dedennus"
-
-#: ../../standalone/draknet_.c:181
-#, fuzzy
-msgid "Type:"
-msgstr "Seurt : "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Treuzell : "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-#, fuzzy
-msgid "Interface:"
-msgstr "dedennus"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-#, fuzzy
-msgid "Configure Internet Access..."
-msgstr "KefluniaĂą servijoĂš"
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-#, fuzzy
-msgid "LAN configuration"
-msgstr "Kefluniadur"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "Driver"
-msgstr "Servijer"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "Interface"
-msgstr "dedennus"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Meuziad LaĂąsaĂą"
-
-#: ../../standalone/draknet_.c:244
-#, fuzzy
-msgid "Configure Local Area Network..."
-msgstr "KefluniaĂą ur rouedad"
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Skoazeller..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr ""
-
-#: ../../standalone/draknet_.c:302
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr "AmprouiĂą ar c'hefluniadur"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Connected"
-msgstr "Anv ar gevreadenn"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Not connected"
-msgstr "Lugerezh ar voullerez"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-#, fuzzy
-msgid "LAN Configuration"
-msgstr "Kefluniadur"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr ""
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr ""
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr ""
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Bevaat"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Bevaat"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-#, fuzzy
-msgid "Internet connection configuration"
-msgstr "Lugerezh ar voullerez"
-
-#: ../../standalone/draknet_.c:588
-#, fuzzy
-msgid "Internet Connection Configuration"
-msgstr "Lugerezh ar voullerez"
-
-#: ../../standalone/draknet_.c:597
-#, fuzzy
-msgid "Connection type: "
-msgstr "Anv ar gevreadenn"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr ""
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Treuzell"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr ""
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr ""
-
-#: ../../standalone/draksec_.c:51
-msgid "Setting security level"
-msgstr "O termeniĂą al live surentez"
-
-#: ../../standalone/draksec_.c:57
-#, fuzzy
-msgid "Setting security user"
-msgstr "O termeniĂą al live surentez"
-
#: ../../standalone/drakxconf_.c:47
#, fuzzy
msgid "Control Center"
@@ -10128,50 +10678,50 @@ msgstr ""
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:113
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:115
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:116
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:120
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:128
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:131
+#: ../../standalone/drakxtv_.c:130
#, fuzzy
msgid "There was an error while scanning for TV channels"
msgstr "Ur fazi a zo bet en ur staliaù ar pakadoÚ :"
-#: ../../standalone/drakxtv_.c:132
+#: ../../standalone/drakxtv_.c:131
msgid "XawTV isn't installed!"
msgstr ""
-#: ../../standalone/drakxtv_.c:135
+#: ../../standalone/drakxtv_.c:134
msgid "Have a nice day!"
msgstr ""
-#: ../../standalone/drakxtv_.c:136
+#: ../../standalone/drakxtv_.c:135
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
-#: ../../standalone/drakxtv_.c:148
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:149
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10220,7 +10770,7 @@ msgstr ""
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:516
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr ""
@@ -10271,10 +10821,6 @@ msgstr "Parzhadur"
msgid "/Options/Test"
msgstr "Parzhadur"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr ""
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr ""
@@ -10350,76 +10896,99 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr "O prientiĂą ar staliadur"
-#: ../../standalone/logdrake_.c:407
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "KefluniaĂą ar proksioĂš"
-#: ../../standalone/logdrake_.c:408
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:416
-msgid "proftpd"
-msgstr "proftpd"
+#: ../../standalone/logdrake_.c:417
+msgid "Apache World Wide Web Server"
+msgstr ""
+
+#: ../../standalone/logdrake_.c:418
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Anv ar domani"
#: ../../standalone/logdrake_.c:419
-msgid "sshd"
-msgstr "sshd"
+#, fuzzy
+msgid "Ftp Server"
+msgstr "Servijer NIS"
#: ../../standalone/logdrake_.c:420
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "StlennvonioĂš"
#: ../../standalone/logdrake_.c:421
-msgid "xinetd"
-msgstr "xinetd"
+#, fuzzy
+msgid "Samba Server"
+msgstr "Servijer NIS"
+
+#: ../../standalone/logdrake_.c:422
+#, fuzzy
+msgid "SSH Server"
+msgstr "Servijer NIS"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "trobarzhell"
#: ../../standalone/logdrake_.c:424
#, fuzzy
+msgid "Xinetd Service"
+msgstr "Servijer moullaĂą"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "dedennus"
-#: ../../standalone/logdrake_.c:425
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:435
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "O furmadiĂą"
-#: ../../standalone/logdrake_.c:436
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:449
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "KefluniaĂą ar proksioĂš"
-#: ../../standalone/logdrake_.c:450
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:493
+#: ../../standalone/logdrake_.c:503
#, fuzzy
msgid "Save as.."
msgstr "Meuziad LaĂąsaĂą"
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "serial_usb kavet ebet\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Kendarvan an trede nozelenn ?"
@@ -10476,6 +11045,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
#, fuzzy
msgid "Firewalling Configuration"
@@ -10982,120 +11563,207 @@ msgstr "Liesvedia"
msgid "Scientific Workstation"
msgstr "TitouroĂš"
-#~ msgid "Complete (%dMB)"
-#~ msgstr "Boas (%dMo)"
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Anavezoud kartenn c'hrafek : %s\n"
-#~ msgid "Minimum (%dMB)"
-#~ msgstr "BihanaĂą (%d Mo)"
+#~ msgid "Choose options for server"
+#~ msgstr "Dibabit dibarzhoĂš ar servijer"
-#~ msgid "Recommended (%dMB)"
-#~ msgstr "Erbedet (%dMo)"
+#~ msgid "Monitor not configured"
+#~ msgstr "Skramm ket kefluniet"
-#~ msgid "CDROM / DVDROM"
-#~ msgstr "CDROM / DVDROM"
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Kartenn c'hrafek ket kefluniet c'hoazh"
-#, fuzzy
-#~ msgid "Utilities"
-#~ msgstr "MavegoĂš/Skrid"
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "SpisterioĂš ket dibabet c'hoazh"
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Marc'haĂą"
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "klaskit kemmaĂą arventennoĂš 'zo"
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
+#~ msgid "An error occurred:"
+#~ msgstr "C'hoarvezet eo ur fazi :"
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Kuitaat e %d eilenn"
-#~ msgid "None"
-#~ msgstr "Ebet"
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Ha reizh eo ar c'hefluniadur ?"
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Dibabit ar ment nevez"
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "C'hoarvezet eo ur fazi, klaskit kemmaĂą arventennoĂš 'zo"
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "DibarzhoĂš ar voullerez lpd a-bell"
+#~ msgid "XFree86 server: %s"
+#~ msgstr "Servijer XFree86 : %s"
-#~ msgid "You may now provide options to module %s."
-#~ msgstr "BremaĂą e c'hellit pourvezaĂą e zibarzhoĂš d'ar mollad %s"
+#~ msgid "Show all"
+#~ msgstr "Diskouez pep tra"
-#~ msgid "mount failed"
-#~ msgstr "marc'haĂą sac'het"
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "O prientiĂą kefluniadur X-Window"
-#~ msgid "Low"
-#~ msgstr "Izel"
+#~ msgid "What do you want to do?"
+#~ msgstr "Petra a vennit ober ? "
-#~ msgid "Medium"
-#~ msgstr "Etre"
+#~ msgid "Change Monitor"
+#~ msgstr "KemmaĂą ar skramm"
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Nebeut a wellaenoĂš evit al live surentez-maĂą, an hini pouezusaĂą eo bezaĂą\n"
-#~ "muioc'h a evezhiadennoĂš hag a wiriadennoĂš surentez."
+#~ msgid "Change Graphics card"
+#~ msgstr "KemmaĂą ar gartenn c'hrafek"
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr "Liesvedia"
+#~ msgid "Change Server options"
+#~ msgstr "KemmaĂą dibarzhoĂš ar servijer"
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Mailh"
+#~ msgid "Change Resolution"
+#~ msgstr "KemmaĂą ar spister"
+
+#~ msgid "Show information"
+#~ msgstr "Diskouez titouroĂš"
+
+#~ msgid "Test again"
+#~ msgstr "AmprouiĂą adarre"
+
+#~ msgid "proftpd"
+#~ msgstr "proftpd"
+
+#~ msgid "sshd"
+#~ msgstr "sshd"
+
+#~ msgid "webmin"
+#~ msgstr "webmin"
+
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
+
+#~ msgid "Setting security level"
+#~ msgstr "O termeniĂą al live surentez"
+
+#~ msgid "Graphics card"
+#~ msgstr "Kartenn c'hrafek"
+
+#~ msgid "Select a graphics card"
+#~ msgstr "Diuzit ur gartenn c'hrafek"
+
+#~ msgid "Choose a X driver"
+#~ msgstr "Dibabit ur sturier X"
+
+#~ msgid "X driver"
+#~ msgstr "Sturier X"
+
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "VGA standard, 640x480 da 60 Hz"
+
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Gour-VGA, 800x600 da 56 Hz"
+
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "Kenglotus 8514, 1024x768 da 87 Hz pebeilet (800x600 ebet)"
+
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Gour-VGA, 1024x768 da 87 Hz pebeilet, 800x600 da 56 Hz"
+
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Gour-VGA astennet, 800x600 da 60 Hz, 640x480 da 72 Hz"
+
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "G-VGA nann-pebeilet, 1024x768 da 60 Hz, 800x600 da 72 Hz"
+
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "G-VGA talm uhel, 1024x768 da 70 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Lies-talm a c'hell ober 1280x1024 da 60 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Lies-talm a c'hell ober 1280x1024 da 74 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Lies-talm a c'hell ober 1280x1024 da 76 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Skramm a c'hell ober 1600x1200 da 70 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Skramm a c'hell ober 1600x1200 da 76 Hz"
+
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Ment hollek ar strolladoĂš hoc'h eus diuzet a zo war-dro %d Mo.\n"
-#, fuzzy
#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
-#~ "BremaĂą e c'hellit diuz ho takad-eur diouzh al lec'h ma chomit ennaĂą.\n"
+#~ "Ma vennit staliaĂą nebeutoc'h eget ar ment-se,\n"
+#~ "diuzit an dregantad a bakadoĂš a vennit staliaĂą.\n"
+#~ "\n"
+#~ "Un dregantad izel a stalio hepken ar pakadoĂš pouezusaĂą;\n"
+#~ "un dregantad a 100%% a stalio an holl bakadoĂš diuzet."
+
+#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
+#~ msgstr ""
+#~ "N'eus egor war ho pladenn nemet evit %d%% eus ar pakadoĂš-se.\n"
#~ "\n"
-#~ "Linux a vera an eur e GMT pe \"Greenwich Mean Time\" hag e amdreiĂą a ra\n"
-#~ "en eur lec'hel hervez an takad-eur hoc'h eus diuzet."
+#~ "Ma vennit staliaĂą nebeutoc'h eget se,\n"
+#~ "diuzit an dregantad a bakadoĂš a vennit staliaĂą.\n"
+#~ "Un dregantad izel a stalio hepken ar pakadoĂš pouezusaĂą;\n"
+#~ "un dregantad a %d%% a stalio kement a bakadoĂš ma 'z eus tu."
-#, fuzzy
-#~ msgid "Connect to Internet"
-#~ msgstr "Anv ar gevreadenn"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Tu vo deoc'h o dibab spisoc'h el lankad a zeu."
-#, fuzzy
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Anv ar gevreadenn"
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Dregantad a bakadoĂš da staliaĂą"
-#, fuzzy
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "KefluniaĂą ur rouedad"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Dibabit al live surentez"
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Da beseurt pladenn e mennit dilec'hiaĂą ?"
+#~ msgid "Complete (%dMB)"
+#~ msgstr "Boas (%dMo)"
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Dibabit ar pakadoĂš a vennit staliaĂą, mar plij."
+#~ msgid "Minimum (%dMB)"
+#~ msgstr "BihanaĂą (%d Mo)"
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "TitouroĂš"
+#~ msgid "Recommended (%dMB)"
+#~ msgstr "Erbedet (%dMo)"
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "TitouroĂš"
+#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
+#~ msgstr "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#, fuzzy
-#~ msgid "user"
-#~ msgstr "Anv arveriad"
+#~ msgid "None"
+#~ msgstr "Ebet"
+
+#~ msgid "You may now provide options to module %s."
+#~ msgstr "BremaĂą e c'hellit pourvezaĂą e zibarzhoĂš d'ar mollad %s"
+
+#~ msgid "mount failed"
+#~ msgstr "marc'haĂą sac'het"
+
+#~ msgid "Low"
+#~ msgstr "Izel"
+
+#~ msgid "Medium"
+#~ msgstr "Etre"
-#, fuzzy
#~ msgid ""
-#~ "Apache is a World Wide Web server. It is used to serve HTML files and "
-#~ "CGI."
+#~ "Few improvements for this security level, the main one is that there are\n"
+#~ "more security warnings and checks."
#~ msgstr ""
-#~ "Ur servijer evit ar Gwiad Bedel eo Apache. Implijet e vez evit servijaĂą\n"
-#~ "restroĂš HTML ha CGI."
+#~ "Nebeut a wellaenoĂš evit al live surentez-maĂą, an hini pouezusaĂą eo bezaĂą\n"
+#~ "muioc'h a evezhiadennoĂš hag a wiriadennoĂš surentez."
#~ msgid ""
#~ "named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
@@ -11104,12 +11772,6 @@ msgstr "TitouroĂš"
#~ "named (BIND) a zo ur Servijer AnvioĂš Domani (DNS) a zo implijet evit\n"
#~ "amdreiĂą anvioĂš ostiz e chomlec'hioĂš IP."
-#, fuzzy
-#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
-#~ "\n"
-#~ msgstr "Dibabit seurt ho logodenn, mar plij."
-
#~ msgid "Active"
#~ msgstr "Bevaat"
@@ -11188,143 +11850,6 @@ msgstr "TitouroĂš"
#~ " Hogen mar plij, NA ZIBABIT KET SE NEMET MA OUZIT PEZH EMAOC'H OC'H "
#~ "OBER !"
-#, fuzzy
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "\t* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ "\t at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "\t* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ "\t will then have a complete collection of software installed in order "
-#~ "to compile, debug and format source code,\n"
-#~ "\t or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "\t* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ "\t SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ "\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "An dibaboĂš liessek evit implij ho ardivink (en ur c'houlakaat neuze hoc'h "
-#~ "eus\n"
-#~ "dibabet pe \"Neuziet\" pe \"Mailh\" da renkad staliaĂą) a zo evel a-"
-#~ "heul :\n"
-#~ "\n"
-#~ " - Boas : dibabit se ma 'z oc'h mennet da implijout ho ardivink dreist-"
-#~ "holl\n"
-#~ " evit un implij pemdeziek (labour burev, aozerezh grafikoĂš hag all). "
-#~ "Na\n"
-#~ " c'hortozit ket e vije staliaet nep kempuner, maveg diorren h.a.\n"
-#~ "\n"
-#~ " - Diorren : evel m'hen diskouez an anv. Dibabit se ma 'z oc'h mennet "
-#~ "da\n"
-#~ " implijout ho ardivink dreist-holl evit diorren meziantoĂš. Neuze ho po "
-#~ "un\n"
-#~ " heuliad klok a meziantoĂš staliet a-benn kempunaĂą, dizraenaĂą ha "
-#~ "furmadiĂą\n"
-#~ " kod tarzh, pe grouiĂą pakadoĂš meziantel.\n"
-#~ "\n"
-#~ " - Servijer : dibabit se m'eo gouestlet an ardivink a stalhit Mandrake "
-#~ "Linux\n"
-#~ " warnaĂą da vezaĂą impliet evel servijer. ur servijer restroĂš (NFS pe "
-#~ "SMB),\n"
-#~ " ur servijer moullaĂą (moullaĂą diouzh komenad Unix lp (line printer) pe "
-#~ "zoare\n"
-#~ " Windows SMB), ur servijer dilesadur (NIS), ur servijer stlennvon hag "
-#~ "all.\n"
-#~ " Da heul, na c'hortozit staliadur tamm kinkladur ebet (KDE, "
-#~ "GNOME...).\n"
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "Gallout a rit bremaĂą diuz ar strollad pakadoĂš a vennit\n"
-#~ "staliaĂą pe vremanaat.\n"
-#~ "\n"
-#~ "DrakX a glasko neuze hag-eĂą hoc'h eus egor a-walc'h evit staliaĂą an holl "
-#~ "anezho.\n"
-#~ "Ma n'hoc'h eus ket, e kemenno deoc'h. Ma vennit kenderc'hel evelato, e "
-#~ "seveno staliadur\n"
-#~ "an holl strolladoĂš diuzet hogen e laosko pakadoĂš 'zo dezho nebeutoc'h a\n"
-#~ "dalvoudegezh. E traoĂą ar roll e c'hellit diuz an dibarzh\n"
-#~ "\"Diuz pakadoĂš unan hag unan\" ; en degouezh-se e vo ret deoc'h furchal\n"
-#~ "a-dreuz tremen 1000 pakad..."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, the correct informations can "
-#~ "be\n"
-#~ "obtained from your Internet Service Provider."
-#~ msgstr ""
-#~ "Gallout a rit bremaĂą skrivaĂą dibarzhoĂš sifrennaĂą. Ma n'oc'h ket sur "
-#~ "petra\n"
-#~ "skrivaĂą, an titouroĂš reizh ho po digant ho PMG."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Skrivit :\n"
-#~ "\n"
-#~ " - Chomlec'h IP : m'eo dianav deoc'h, goulennit digant merour ho "
-#~ "rouedad.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Rouedmaskl : \"255.255.255.0\" a zo peurvuiaù un dibab mat. M'hoc'h "
-#~ "eus\n"
-#~ "douetaĂąs, goulennit digant merour ho rouedad.\n"
-#~ "\n"
-#~ "\n"
-#~ " - IP emgefreek : Ma ra ho rouedad gant ar c'homenad bootp pe dhcp, "
-#~ "diuzit \n"
-#~ "an dibarzh-se. Ma vez diuzet, n'eus ezhomm talvoud ebet er \"Chomlec'h IP"
-#~ "\".\n"
-#~ "M'hoc'h eus douetaĂąs, goulennit digant merour ho rouedad.\n"
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, ask your network administrator."
-#~ msgstr ""
-#~ "Ma implij ho rouedad NIS, diuzit \"Implijout NIS\". Ma ne ouzit ket, "
-#~ "goulennit\n"
-#~ "digant merour ho rouedad."
-
#~ msgid ""
#~ "You may now enter dialup options. If you're not sure what to enter, the\n"
#~ "correct information can be obtained from your ISP."
@@ -11341,26 +11866,6 @@ msgstr "TitouroĂš"
#~ "hag\n"
#~ "e rankit implijout proksioĂš, goulennit digant merour ho rouedad pe ho PMG."
-#, fuzzy
-#~ msgid ""
-#~ "You can install cryptographic package if your internet connection has "
-#~ "been\n"
-#~ "set up correctly. First choose a mirror where you wish to download "
-#~ "packages and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "StaliaĂą pakadoĂš rinegouriezh a c'hellit m'eo bet kefluniet reizh ho\n"
-#~ "kevreadenn ouzh ar Genrouedad. Dibabit da gentaĂą ur melezour a vennit "
-#~ "ezkargaĂą\n"
-#~ "pakadoĂš diwarnaĂą ha da c'houde diuzit ar pakadoĂš da staliaĂą.\n"
-#~ "\n"
-#~ "Taolit evezh e rankit diuz ar melezour hag ar rinegouriezh hervez al\n"
-#~ "lezennoĂš o ren du-se."
-
#~ msgid ""
#~ "You may now create one or more \"regular\" user account(s), as\n"
#~ "opposed to the \"privileged\" user account, root. You can create\n"
@@ -11406,92 +11911,6 @@ msgstr "TitouroĂš"
#~ "gont arveriad ho po krouet amaĂą, hag ereaĂą evel root evit kefridioĂš a\n"
#~ "vererezh ha trezerc'hel hepken."
-#, fuzzy
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <number>: use the corresponding text mode.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories\n"
-#~ "stored in \"/tmp\" when you boot your system, select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the\n"
-#~ "BIOS about the amount of RAM present in your computer. As consequence, "
-#~ "Linux may\n"
-#~ "fail to detect your amount of RAM correctly. If this is the case, you "
-#~ "can\n"
-#~ "specify the correct amount or RAM here. Please note that a difference of "
-#~ "2 or 4\n"
-#~ "MB between detected memory and memory present in your system is normal."
-#~ msgstr ""
-#~ "Setu dibaboÚ pennaù LILO ha grub :\n"
-#~ " - Trobarzhell loc'haù : a dermen anv an drobarzhell (da sk. parzhadur\n"
-#~ "ur bladenn galet) a zo enni ar rann loc'haĂą. Nemet ma ouifec'h a-zevri\n"
-#~ "ez eo disheĂąvel, dibabit \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Gedvezh a-raok loc'haù ar skeudenn dre ziouer : a spisa an niver a\n"
-#~ "zekvet eilennoĂš a rankfe gortoz ar c'harger loc'haĂą kent loc'haĂą ar "
-#~ "skeudenn\n"
-#~ "gentaĂą. Talvoudus eo war reizhiadoĂš a loc'h diouzhtu adalek ar bladenn "
-#~ "galet\n"
-#~ "goude bezaĂą enaouet ar stokellaoueg. Ne gortoz ket ar c'harger loc'haĂą "
-#~ "m'eo\n"
-#~ "disoĂąjet \"gedvezh\" pe dermenet da mann.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Mod video : a spisa ar mod skrid VGA a rankfe bezaù diuzet pa "
-#~ "loc'her.\n"
-#~ "An talvoudoÚ a heul a zo hegerz :\n"
-#~ " * boas : a ziuz ar mod skrid 80x25 boas.\n"
-#~ " * <niver> : a implij ar mod skrid a zegouezh."
-
-#, fuzzy
-#~ msgid ""
-#~ "Now it's time to configure the X Window System, which is the\n"
-#~ "core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "BremaĂą eo poent kefluniaĂą ar reizhiad X Window, a zo kraonienn\n"
-#~ "EGA (Etrefas Grafikel Arveriad) Linux. Evit ar c'hefridi-se, ret eo\n"
-#~ "deoc'h kefluniaĂą ho kartenn grafek hag ho skramm. Emgefreek eo ar bras\n"
-#~ "eus al lankadoĂš-se, evelato, neuze gwiriaĂą pezh a zo bet graet hag\n"
-#~ "asantiĂą d'ar c'hefluniadur a zlefe bezaĂą ho labour :)\n"
-#~ "\n"
-#~ "\n"
-#~ "Pa 'z eo graet ar c'hefluniaĂą, laĂąset e vo X (nemet ma c'houlennit\n"
-#~ "digant DrakX chom hep hen ober) e seurt ma c'hellit gwiriaĂą ha\n"
-#~ "sellet ha plijet oc'h gant an dibarzhoĂš. Ma n'oc'h ket, e c'hellit\n"
-#~ "mont war gil hag o c'hemmaĂą, ken lies gwech ha ma karot."
-
#~ msgid ""
#~ "If something is wrong in X configuration, use these options to correctly\n"
#~ "configure the X Window System."
@@ -11630,9 +12049,6 @@ msgstr "TitouroĂš"
#~ msgid "Configure LILO/GRUB"
#~ msgstr "KefluniaĂą LILO/GRUB"
-#~ msgid "Create a boot floppy"
-#~ msgstr "KrouiĂą ur bladennig loc'haĂą"
-
#~ msgid "Choice"
#~ msgstr "Dibab"
@@ -11693,9 +12109,6 @@ msgstr "TitouroĂš"
#~ msgid "Use MD5 passwords"
#~ msgstr "Implijout tremegerioĂš MD5"
-#~ msgid "Package"
-#~ msgstr "Pakad"
-
#~ msgid "Tree"
#~ msgstr "Gwezenn"
@@ -12235,9 +12648,6 @@ msgstr "TitouroĂš"
#~ msgid "X11/Amusements"
#~ msgstr "X11/Dudi"
-#~ msgid "X11/Applications"
-#~ msgstr "X11/ArloadoĂš"
-
#~ msgid "X11/Applications/Internet"
#~ msgstr "X11/ArloadoĂš/Kenrouedad"
diff --git a/perl-install/share/po/bs.po b/perl-install/share/po/bs.po
index c406f3c6f..4ee25be49 100644
--- a/perl-install/share/po/bs.po
+++ b/perl-install/share/po/bs.po
@@ -1,37 +1,67 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR Free Software Foundation, Inc.
-# Vedran Ljubovic <vljubovic@smartnet.ba>, 2001
+# Copyright (C) 2001. Free Software Foundation, Inc.
+# Amila Akagić <bono@lugbih.org>, 06. 2001.
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-02-28 20:49GMT\n"
-"Last-Translator: Vedran Ljubovic <vljubovic@smartnet.ba>\n"
-"Language-Team: Bosnian <prijevodi@lugbih.org>\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2001-08-21 17:14GMT\n"
+"Last-Translator: Amila Akagić <bono@lugbih.org>\n"
+"Language-Team: Bosnian <lokal-subscribe@lugbih.org>\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 0.9.5\n"
+"X-Generator: KBabel 0.9.1\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "KonfiguriĹĄi sve glave odvojeno"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Koristi Xinerama ekstenziju"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "KonfiguriĹĄi samo karticu \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB ili viĹĄe"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Izaberite X server"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X server"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Multi-head konfiguracija"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -39,41 +69,44 @@ msgstr ""
"VaĹĄ sistem podrĹžava konfiguraciju viĹĄe glava.\n"
"Šta želite učiniti?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Grafička karta"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Izaberite veličinu memorije vaše grafičke karte"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Izaberite grafičku kartu"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "XFree konfiguracija"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Izaberite X server"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Koju konfiguraciju XFree Ĺželite imati?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X server"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "KonfiguriĹĄi sve glave odvojeno"
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Izaberite X drajver"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Koristi Xinerama ekstenziju"
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "X drajver"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "KonfiguriĹĄi samo karticu \"%s\" (%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Koju konfiguraciju XFree Ĺželite imati?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s sa 3D hardverskim ubrzanjem"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -82,32 +115,17 @@ msgstr ""
"VaĹĄa kartica moĹže imati podrĹĄku za 3D hardversko ubrzanje ali samo sa\n"
"XFree %s. VaĹĄu karticu podrĹžava XFree %s koji moĹže imati bolju podrĹĄku za 2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "VaĹĄa kartica moĹže imati podrĹĄku za 3D hardversko ubrzanje sa XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s sa 3D hardverskim ubrzanjem"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"VaĹĄa kartica moĹže imati podrĹĄku za 3D hardversko ubrzanje sa XFree %s,\n"
-"PAŽNJA OVO JE EKSPERIMENTALNA PODRŠKA I MOŽE ZALEDITI VAŠ RAČUNAR."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s sa EKSPERIMENTALNIM 3D hardverskim ubrzanjem"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -118,31 +136,58 @@ msgstr ""
"PAŽNJA OVO JE EKSPERIMENTALNA PODRŠKA I MOŽE ZALEDITI VAŠ RAČUNAR.\n"
"VaĹĄu karticu podrĹžava XFree %s koji moĹže imati bolju podrĹĄku za 2D."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"VaĹĄa kartica moĹže imati podrĹĄku za 3D hardversko ubrzanje sa XFree %s,\n"
+"PAŽNJA OVO JE EKSPERIMENTALNA PODRŠKA I MOŽE ZALEDITI VAŠ RAČUNAR."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installation display driver)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree konfiguracija"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Izaberite veličinu memorije vaše grafičke karte"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Izaberite opcije za server"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"ZadrĹžati izmjene?\n"
+"Trenutna konfiguracija je:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Izaberite monitor"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Ručno izaberi"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "OpĹĄti"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "PoniĹĄti"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -163,510 +208,325 @@ msgstr ""
"raspon izvan mogućnosti vašeg monitora: time možete oštetiti monitor.\n"
" Ako niste sigurni, izaberite najmanju opciju."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Brzina horizontalnog osvjeĹžavanja"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Brzina vertiaklnog osvjeĹžavanja"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor nije konfigurisan"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Grafička karta još uvijek nije konfigurisana"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Rezolucije joĹĄ nisu odabrane"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Želite li testirati konfiguraciju?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Upozorenje: testiranje ove grafičke karte može zalediti računar"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Testiranje konfiguracije"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 boja (8 bita)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"probajte izmjeniti neke parametre"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 hiljada boja (15 bita)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "DoĹĄlo je do greĹĄke"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 hiljada boja (16 bita)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "NapuĹĄtam za %d sekundi"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 miliona boja (24 bita)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Da li je ovo ispravna vrijednost?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 milijarde boja (32 bita)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "DoĹĄlo je do greĹĄke, probajte izmjeniti neke parametre"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Rezolucije"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Rezolucija"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Izaberite rezoluciju i dubinu boja"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Grafička karta: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 server: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "JoĹĄ"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Odustani"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Ekspertni mod"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "PrikaĹži sve"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Želite li testirati konfiguraciju?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Rezolucije"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Testiranje konfiguracije"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Raspored tastature: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Tip miĹĄa: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Uređaj miša: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Monitor HorizSync: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Monitor VertRefresh: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Grafička karta: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Identifikacija grafičke karte: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Grafička memorija: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Dubina boja: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Rezolucija: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 server: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 drajver: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Pripremam X-Window konfiguraciju"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Šta želite učiniti?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Izmjena Monitora"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Izmjena Grafičke kartice"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Izmjena Server opcija"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Izmjena Rezolucije"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "PrikaĹži informacije"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Testiraj ponovo"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Izlaz"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"ZadrĹžati izmjene?\n"
-"Trenutna konfiguracija je:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X u startanju"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Mogu podesiti vaš računar da automatski pokrene X nakon boota.\n"
"Želite li da se X pokrene kada bootate?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Molimo ponovo se prijavite na %s radi aktiviranja izmjena"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Molimo izvrĹĄite logout i zatim koristitite Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 boja (8 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 hiljada boja (15 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 hiljada boja (16 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 miliona boja (24 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 milijarde boja (32 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB ili viĹĄe"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standardna VGA, 640x480 na 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 na 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 Kompatibilna, 1024x768 na 87 Hz sa preplitanjem (bez 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 na 87 Hz sa preplitanjem, 800x600 na 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Extended Super VGA, 800x600 na 60 Hz, 640x480 na 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Non-Interlaced SVGA, 1024x768 na 60 Hz, 800x600 na 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "High Frequency SVGA, 1024x768 na 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frequency koja može postići 1280x1024 na 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frequency koja može postići 1280x1024 na 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frequency koja može postići 1280x1024 na 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor koji može postići 1600x1200 na 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor koji može postići 1600x1200 na 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Prvi sektor boot particije"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Prvi sektor diska (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "SILO instalacija"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Gdje Ĺželite smjestiti bootloader?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "LILO/grub instalacija"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO sa tekstualnim menijem"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO sa grafičkim menijem"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Bootanje iz DOS/Windowsa (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Glavne opcije bootloadera"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Bootloader koji ćete koristiti"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Bootloader instalacija"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Boot uređaj"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ne radi na starim BIOSima)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Kompaktno"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "kompaktno"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Video mod"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Čekanje prije bootanja default preslike"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Ĺ ifra"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Ĺ ifra (ponovo)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Ograniči opcije komandne linije"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "ograniči"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Čisti /tmp prilikom svakog boota"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Precizna veličina RAMa ako je potrebno (pronađeno %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Omogući više profila"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Navedite veličinu rama u MB"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Opcija ``Ograniči opcije komandne linije'' je beskorisna bez šifre"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Molimo pokuĹĄajte ponovo"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Ĺ ifre se ne poklapaju"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Init Poruka"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Otvori čekanje firmware-a"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Kernel Boot Timeout"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Omogući boot sa CDa?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Omogući boot sa OFa?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Default OS?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -675,83 +535,83 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Navedene su razne stavke.\n"
"Možete dodati nove ili promjeniti postojeće."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Dodaj"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Gotovo"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Izmjeni"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Koju vrstu stavke Ĺželite dodati?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Ostali OSi (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Ostali OSi (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Ostali OSi (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Preslika"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Append"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Čitaj-piši"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabela"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Nesigurno"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Labela"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Default"
@@ -783,53 +643,77 @@ msgstr "Morate navesti root particiju"
msgid "This label is already used"
msgstr "Ova labela je već u upotrebi"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Pronađeno %s %s interfejsa"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Imate li neki drugi?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Imate li ijedan %s interfejs?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Ne"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Da"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Pogledaj hardware info"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instaliram drajver za %s karticu %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
+#: ../../any.pm_.c:697
+#, fuzzy, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+"Sada moĹžete navesti opcije za modul %s.\n"
+"Obratite paĹžnju da adrese trebate unositi sa prefiksom 0x kao npr. '0x123'"
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Sada moĹžete navesti opcije za modul %s. Opcije su u formatu ``ime=vrijednost "
+"ime2=vrijednost2 ...''.\n"
+"Na primjer, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Opcije modula"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Koji %s drajver ću pokušati?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -846,39 +730,15 @@ msgstr ""
"informacije koje mu trebaju? Povremeno, ispitivanje može zaglaviti računar,\n"
"ali ne bi trebalo izazvati nikakvu ĹĄtetu."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Ispitivanje"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Navedi opcije"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"Sada moĹžete navesti opcije za modul %s.\n"
-"Obratite paĹžnju da adrese trebate unositi sa prefiksom 0x kao npr. '0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Sada moĹžete navesti opcije za modul %s. Opcije su u formatu ``ime=vrijednost "
-"ime2=vrijednost2 ...''.\n"
-"Na primjer, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Opcije modula"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -887,49 +747,54 @@ msgstr ""
"Učitavanje modula %s nije uspjelo.\n"
"Želite li probati opet sa drugim parametrima?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "pristup X programima"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "pristup rpm alatima"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "dozvoli \"su\""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "pristup administrativnim datotekama"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(već dodan %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Ova ĹĄifra je previĹĄe jednostavna"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Molimo navedite korisničko ime"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Korisničko ime smije sadržati samo mala slova, brojeve, `-' i `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Ovo korisničko ime je već dodano"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Ovo korisničko ime je već dodano"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Dodaj korisnika"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -938,32 +803,32 @@ msgstr ""
"Unesite korisnika\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Prihvati korisnika"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Pravo ime"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Korisničko ime"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Ikona"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -971,87 +836,67 @@ msgstr ""
"Mogu podesiti vaš računar da automatski prijavi jednog korisnika.\n"
"Želite li koristiti ovu mogućnost?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Izaberite default korisnika:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Izaberite window manager koji će se pokretati:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Molimo izaberite jezik koji ćete koristiti."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr "Možete izabrati i druge jezike koji će biti dostupni nakon instalacije"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Svi"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Dozvoli svim korisnicima"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Ručno izaberi"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "Bez dijeljenja"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Paket %s treba biti instaliran. Da li ga Ĺželite instalirati?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Možete eksportovati koristeći NFS ili Sambu. Koji želite"
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Nedostaje obavezan paket %s"
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Odustani"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr "Pokreni userdrake"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -1059,31 +904,31 @@ msgstr ""
"Dijeljenje po-korisniku koristi grupu \"fileshare\". \n"
"Možete dodavati korisnike u ovu grupu pomoću userdrake-a."
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "DobrodoĹĄli u Crackers"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "LoĹĄ"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Standard"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Visok"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
msgstr "ViĹĄi"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoičan"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1093,7 +938,7 @@ msgstr ""
"ali vrlo osjetljivim: ne smije biti korišten za računar koji je spojen na\n"
"druge ili na Internet. Nema pristupa ĹĄifrom."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1101,7 +946,7 @@ msgstr ""
"Šifra je sada aktivirana, ali korištenje za mrežni računar još nije "
"preporučeno."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1109,7 +954,7 @@ msgstr ""
"Ovo je standardna sigurnost koja je preporučena za računar koji će biti "
"koriĹĄten za spajanje na Internet kao klijent."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1117,13 +962,14 @@ msgstr ""
"Već postoje određena ograničenja, a više automatskih provjera se pokreće "
"svaku noć."
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Sa ovim sigurnosnim nivoom, postaje moguće koristiti ovaj sistem kao "
"server.\n"
@@ -1132,34 +978,34 @@ msgstr ""
"konekcije sa mnogo klijenata. Napomena: ako je vaš računar samo klijent na "
"Internetu, moĹžda je bolje da izaberete niĹži nivo."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Baziran na prethodnom nivou, ali sada je sistem potpuno zatvoren.\n"
"Sigurnosne osobine na maksimumu."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Izaberite nivo sigurnosti"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Nivo sigurnosti"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Koristi libsafe za servere"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Biblioteka koja brani od napada \"buffer overflow\" i \"format string\"."
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1176,52 +1022,52 @@ 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_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Dobro doĹĄli u GRUB izbornik operativnog sistema!"
#. -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_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Koristite tipke %c i %c za izbor jedne od stavki."
#. -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_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Pritisnite enter za bootanje izabranog OSa, 'e' za editovanje"
#. -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_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "komandi prije bootanja, ili 'c' za komandnu liniju."
#. -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_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Osvjetljene stavke će biti bootane automatski za %d sekundi."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "nema dovoljno prostora u /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Ne moĹžete instalirati bootloader na %s particiju\n"
@@ -1234,17 +1080,21 @@ msgstr "pomoć još nije implementirana.\n"
msgid "Boot Style Configuration"
msgstr "Konfiguracija stila boota"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Datoteka"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Datoteka/_Izlaz"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
-msgstr "<control>I"
+msgstr "<control>Q"
#: ../../bootlook.pm_.c:91
msgid "NewStyle Categorizing Monitor"
@@ -1277,14 +1127,14 @@ msgstr "Yaboot mod"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Trenutno koristite %s kao boot manager.\n"
"Kliknite na Konfiguriši kako bi se pokrenuo čarobnjak za podešavanje."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "KonfiguriĹĄi"
@@ -1294,7 +1144,7 @@ msgid "System mode"
msgstr "Sistem mod"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Pokreni X-Window sistem na startu"
#: ../../bootlook.pm_.c:148
@@ -1305,16 +1155,18 @@ msgstr "Ne, ne Ĺželim da se autologiram"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Da, Ĺželim da se autologiram sa ovim (korisnik, desktop)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
-msgstr "OK"
+msgstr "U redu"
#: ../../bootlook.pm_.c:229
#, c-format
@@ -1360,7 +1212,7 @@ msgstr "Ne mogu napraviti screenshot prije particioniranja"
msgid "Screenshots will be available after install in %s"
msgstr "Screenshotovi će biti dostupni nakon što instalirate u %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Francuska"
@@ -1368,7 +1220,7 @@ msgstr "Francuska"
msgid "Costa Rica"
msgstr "Kostarika"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Belgija"
@@ -1392,11 +1244,12 @@ msgstr "NorveĹĄka"
msgid "Sweden"
msgstr "Ĺ vedska"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Nizozemska"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "Italija"
@@ -1404,7 +1257,7 @@ msgstr "Italija"
msgid "Austria"
msgstr "Austrija"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "SAD"
@@ -1412,8 +1265,8 @@ msgstr "SAD"
msgid "Please make a backup of your data first"
msgstr "Molimo najprije napravite backup vaĹĄih podataka"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Pročitajte pažljivo!"
@@ -1427,11 +1280,12 @@ msgstr ""
"(2048 sektora je dovoljno)\n"
"na početku diska"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "GreĹĄka"
@@ -1439,11 +1293,11 @@ msgstr "GreĹĄka"
msgid "Wizard"
msgstr "Čarobnjak"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Izaberi akciju"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1455,77 +1309,77 @@ msgstr ""
"Predlažem da najprije promjenite veličinu te particije\n"
"(kliknite na nju, zatim na \"Promjeni veličinu\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Molimo kliknite na particiju"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Detalji"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "Journalised FS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Prazno"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Ostalo"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Tipovi file sistema:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Kreiraj"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tip"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Koristite ``%s'' umjesto toga"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "ObriĹĄi"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Najprije koristite ``Demontiraj''"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1533,67 +1387,72 @@ msgstr ""
"Nakon promjene tipa particije %s, svi podaci na ovoj particiji će biti "
"izgubljeni"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Izaberi particiju"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Izaberi drugu particiju"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Izlaz"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Prebaci u ekspertni mod"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Prebaci u normalni mod"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "PoniĹĄti"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Svejedno nastavljate?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Izlaz bez spaĹĄavanja"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Izlazite bez pisanja tabele particija?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "Želite li spasiti izmjene /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Auto alokacija"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "ObriĹĄi sve"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "JoĹĄ"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "Informacije o hard disku"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Sve primarne particije su u upotrebi"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Ne mogu dodati viĹĄe particija"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1601,31 +1460,31 @@ msgstr ""
"Da biste imali joĹĄ particija, molimo pobriĹĄite jednu kako bi se mogla "
"kreirati extended particija"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "Snimi tabelu particija"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "Vrati tabelu particija"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Spasi tabelu particija"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "Ponovo učitaj tabelu particija"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "Automatsko montiranje izmjenjivog medija"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Izaberite datoteku"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1633,11 +1492,11 @@ msgstr ""
"Backup tabela particija nema istu veličinu\n"
"Ipak nastavljate?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Upozorenje"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1645,122 +1504,129 @@ msgstr ""
"Ubacite disketu u jedinicu\n"
"Svi podaci na toj disketi će biti izgubljeni"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "PokuĹĄavam da spasim tabelu particija"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Detaljne informacije"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Tačka montiranja"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opcije"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Promjeni veličinu"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "PremjeĹĄtanje"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formatiraj"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Montiraj"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Dodaj na RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Dodaj na LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Demontiraj"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Ukloni sa RAIDa"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Ukloni sa LVMa"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Modificiraj RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Koristi za loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Napravi novu particiju"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Početni sektor: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Veličina u MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Tip datotečnog sistema: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Tačka montiranja: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Preference: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+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/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "Ukloniti loopback datoteku?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Izmjena tipa particije"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Koji datotečni sistem želite?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Prebacujem sa ext2 na ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Gdje Ĺželite montirati loopback datoteku %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Gdje želite montirati uređaj %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1769,126 +1635,131 @@ msgstr ""
"loopback.\n"
"Najprije uklonite loopback"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Izračunavam granice FAT filesistema"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Mijenjam veličinu"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Ovoj particiji ne možete mijenjati veličinu"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Svi podaci na toj particiji bi trebali biti backupovani"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Nakon promjene veličine particije %s, svi podaci na njoj će biti izgubljeni"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Izaberite novu veličinu"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Nova veličina u MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Na koji disk je Ĺželite premjestiti?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Na koji sektor je Ĺželite premjestiti?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "PremjeĹĄtam"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "PremjeĹĄtam particiju..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Izaberite postojeći RAID na koji ćete dodati"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "novi"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Izaberite postojeći LVM na koji ćete dodati"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "Naziv LVMa?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Ova particija se ne moĹže koristiti za loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Naziv loopback datoteke: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Dajte naziv datoteke"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Datoteku već koristi drugi loopback, izaberite drugo ime"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Datoteka već postoji. Želite li je koristiti?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Opcije montiranja"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Razni"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
-msgstr "uređaj"
+msgstr "Uređaj"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "nivo"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "veličina chunka"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Budite oprezni: ova operacija je opasna"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Koju vrstu particioniranja?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Paket %s treba biti instaliran. Da li ga Ĺželite instalirati?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1900,7 +1771,7 @@ msgstr ""
"Ili ćete koristiti LILO i stvar neće raditi, ili nećete koristiti LILO pa "
"vam ne treba ni /boot"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1912,7 +1783,7 @@ msgstr ""
"1024og cilindra hard diska, tako da nemate /boot particiju.\n"
"Ako planirate koristiti LILO boot manager, pazite da dodate /boot particiju"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1922,132 +1793,132 @@ msgstr ""
"Nijedan bootloader nije u mogućnosti da rukuje sa ovim bez /boot particije.\n"
"Pazite da dodate /boot particiju"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Tabela particija za uređaj %s će biti zapisana na disk!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Biće potrebno da rebootate prije nego što izmjene mogu stupiti na snagu"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Nakon formatiranja particije %s, svi podaci na toj particiji će biti "
"izgubljeni"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Formatiram"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatiram loopback datoteku %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Formatiram particiju %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Sakrij datoteke"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Prebaci datoteke na novu particiju"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"Direktorij %s već sadrži neke podatke\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "PremjeĹĄtam datoteke na novu particiju"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Kopiram %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Uklanjam %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "particija %s je od sada poznata kao %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Uređaj: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS slovo uređaja: %s (pretpostavka)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Tip: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Ime: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Početak: sector %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Veličina: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sektora"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cilindar %d do %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Formatirana\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Nije formatirana\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Montirana\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2056,7 +1927,7 @@ msgstr ""
"Loopback datoteka(e):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2064,27 +1935,27 @@ msgstr ""
"Particija koja se boota po defaultu\n"
" (za MS-DOS boot, ne za lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Nivo %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Veličina chunka %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-diskovi %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Naziv loopback datoteke: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2096,7 +1967,7 @@ msgstr ""
"particija Driver particija, vjerovatno\n"
"biste je trebali ostaviti na miru.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2108,63 +1979,63 @@ msgstr ""
"particija je za\n"
"dvojni boot vaĹĄeg sistema.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Veličina: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrija: %s cilindara, %s glava, %s sektora\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-diskovi %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tip tabele particija: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "na busu %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Opcije: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "Ključ za kodiranje datotečnog sistema"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "Izaberite vaš ključ za kodiranje datotečnog sistema"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Ova ĹĄifra je previĹĄe jednostavna (mora biti duga najmanje %d karaktera)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "Ĺ ifre se ne poklapaju"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "Ĺ ifra"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "Ĺ ifra (joĹĄ jednom)"
@@ -2173,35 +2044,65 @@ msgid "Change type"
msgstr "Promjeni tip"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Molimo kliknite na medij"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Autentikacija"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Internet"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Korisničko ime"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Korisničko ime"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS domen"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "TraĹži servere"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatiranje %s nije uspjelo"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ne znam kako formatirati %s tipa %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "montiranje particije %s u direktoriju %s nije uspjelo"
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck nije uspio, izlazni kod %d ili signal %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "greĹĄka u demontiranju %s: %s"
@@ -2218,68 +2119,322 @@ msgstr "sa /usr"
msgid "server"
msgstr "server"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Ne moĹžete koristiti JFS za particije manje od 16MB"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Ne moĹžete koristiti ReiserFS za particije manje od 32MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Tačke montiranja moraju počinjati sa /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Već postoji particija sa tačkom montiranja %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Ne možete koristiti LVM logički volumen za tačku montiranja %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Ovaj direktorij treba ostati unutar korijenskog file sistema"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Potreban vam je pravi file sistem (ext2, reiserfs) za ovu tačku montiranja\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Ne možete koristiti kriptovani datotečni sistem za tačku montiranja %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "Nema dovoljno prostora za auto-alokaciju"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr "Nemam ĹĄta da radim"
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "GreĹĄka u otvaranju %s za pisanje: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Došlo je do greške - nije pronađen nijedan ispravan uređaj na kojem se mogu "
"kreirati novi file sistemi. Molimo provjerite vaš hardware i pronađite uzrok "
"greĹĄke"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Nemate nijednu particiju!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Koristi auto prepoznavanje"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "OpĹĄti"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Memorija kartice (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "postavka opterećenja"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Promjeni tip"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Izlaz"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Pomoć"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Pomoć"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Pomoć/_O programu..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "MiĹĄ"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Memorija kartice (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Odustani"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "MiĹĄ"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Opis"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Autentikacija"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Izaberite datoteku"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Gateway uređaj"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 dugmeta"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Prepoznavanje hard diska"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Pogledaj hardware info"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "PrikaĹži informacije"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "PodeĹĄavanje miĹĄa"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "detektovan na portu %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Molimo sačekajte"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d sekundi"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Uklanjam štampač \"%s\" ..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Ispitivanje"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2293,7 +2448,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2320,7 +2475,7 @@ msgstr ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2424,9 +2579,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2475,9 +2629,8 @@ msgstr ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if the machine is to be used for programming, choose "
"the\n"
@@ -2775,7 +2928,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2787,9 +2940,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2812,9 +2964,8 @@ msgstr ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2859,21 +3010,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2889,9 +3039,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Na ovom mjestu trebate izabrati gdje Ĺželite instalirati Linux Mandrake\n"
"operativni sistem na vašem hard disku. Ako je disk prazan ili ako postojeći\n"
@@ -2987,9 +3137,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3183,38 +3332,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3259,10 +3402,9 @@ msgstr ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step.\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step.\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk.\n"
@@ -3393,11 +3535,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3456,7 +3598,7 @@ msgstr ""
"instalaciju. Odgovor na neka pitanja moĹže biti vrlo teĹžak ako nemate dobro\n"
"poznavanje GNU/Linuxa, zato nemojte birati ovo sem ako znate ĹĄta radite."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3482,7 +3624,7 @@ msgstr ""
"Click on the \"More\" button to be presented with the complete list of\n"
"supported keyboards."
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3508,7 +3650,7 @@ msgstr ""
"Note that multiple languages may be installed. Once you have selected any\n"
"additional locales click the \"OK\" button to continue."
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3535,7 +3677,7 @@ msgstr ""
"are good. If the mouse is not working correctly press the space bar or\n"
"[Return] to \"Cancel\" and choose again."
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3543,23 +3685,23 @@ msgstr ""
"Molimo izaberite ispravan port. Na primjer, \"COM1\" port pod MS\n"
"Windowsom se zove \"ttyS0\" pod GNU/Linuxom."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3615,7 +3757,7 @@ msgstr ""
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3637,7 +3779,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3645,7 +3787,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3713,7 +3855,7 @@ msgstr ""
"it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
"installation step."
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3735,7 +3877,7 @@ msgstr ""
"anyone. In which case, you can delete the corresponding entries. But then,\n"
"you will need a boot disk in order to boot those other operating systems!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3748,29 +3890,28 @@ msgstr ""
"\n"
"Izaberite \"Prvi sektor na disku (MBR)\" sem ako znate tačno šta radite."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3806,7 +3947,7 @@ msgstr ""
"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
"networks."
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3831,7 +3972,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"DrakX sada pronalazi sve IDE uređaje prisutne na vašem računaru. Također\n"
@@ -3863,7 +4004,7 @@ msgstr ""
"sa web stranice proizvođača (ako imate internet pristup) ili iz Microsoft\n"
"Windowsa (ako ga imate na vaĹĄem sistemu)."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3873,9 +4014,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3887,7 +4027,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" 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"
@@ -3958,7 +4098,7 @@ msgstr ""
"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
"selections."
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3985,9 +4125,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -4026,10 +4165,10 @@ msgstr ""
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -4037,12 +4176,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -4086,7 +4224,7 @@ msgstr ""
"displayed here. You can click on the button to change the parameters\n"
"associated to it."
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4098,7 +4236,7 @@ msgstr ""
"biti\n"
"izgubljeni i neće se moći vratiti!"
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4116,7 +4254,7 @@ msgstr ""
"Click on \"Cancel\" to cancel this operation without losing any data and\n"
"partitions present on this hard drive."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4124,12 +4262,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr "Morate također formatirati i %s"
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4154,20 +4292,20 @@ msgstr ""
"\n"
"Da li zaista Ĺželite instalirati ove servere?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "Ne mogu koristiti broadcast bez NIS domene"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Ubacite FAT formatiranu disketu u jedinicu %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Ova disketa nije FAT (DOS/Windows) formatirana"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4175,7 +4313,7 @@ msgstr ""
"Da koristite ovaj izbor spaĹĄenih paketa, bootajte instalaciju sa ``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Greška u čitanju datoteke %s"
@@ -4206,7 +4344,7 @@ msgstr "Morate imati swap particiju"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -4214,59 +4352,59 @@ msgstr ""
"\n"
"Svejedno nastavi?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Morate imati FAT particiju montiranu na /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Koristi slobodan prostor"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Nema dovoljno slobodnog prostora za pravljenje novih particija"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Koristi postojeću particiju"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Nema nijedne postojeće particije za upotrebu"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Koristi Windows particiju za loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Koju particiju Ĺželite koristiti za Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Izaberite veličine"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Veličina root particije u MB:"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Veličina swap particije u MB:"
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Koristi slobodan prostor na Windows particiji"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Kojoj particiji želite promjeniti veličinu?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Izračunavam granice Windows datotečnog sistema"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4275,13 +4413,16 @@ msgstr ""
"FAT resizer ne moĹže izmjeniti vaĹĄu particiju, \n"
"došlo je do sljedeće greške: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"VaĹĄa Windows particija je previĹĄe fragmentirana, molimo prvo pokrenite "
"``defrag'' "
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -4302,55 +4443,55 @@ msgstr ""
"ponovo pokrenite instalaciju. Također biste trebali spasiti sve podatke.\n"
"Kada ste sigurni, kliknite na Ok."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Koju veličinu želite da sačuvate za windows na"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "particiji %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT promjena veličine nije uspjela: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Ne postoji nijedna FAT particija za promjenu veličine ili upotrebu za "
"loopback (ili nije ostalo dovoljno prostora)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Pobriši čitav disk"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Ukloni Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Imate viĹĄe od jednog hard diska, na koji Ĺželite instalirati linux?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"SVE postojeće particije i podaci na njima će biti izgubljeni na disku %s"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Ručno particioniranje diska"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Koristi fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4359,11 +4500,11 @@ msgstr ""
"Sada moĹžete particionirati %s.\n"
"Kada zavrĹĄite, ne zaboravite spasiti sa `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Nemate dovoljno slobodnog prostora na vaĹĄoj Windows particiji"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Ne mogu naći dovoljno prostora za instalaciju"
@@ -4371,16 +4512,16 @@ msgstr "Ne mogu naći dovoljno prostora za instalaciju"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX Particioni čarobnjak je našao sljedeća rješenja:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Particioniranje nije uspjelo: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Pokrećem mrežu"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Zaustavljam mreĹžu"
@@ -4392,12 +4533,12 @@ msgstr ""
"DoĹĄlo je do greĹĄke, ali ne znam kako da je rijeĹĄim fino.\n"
"Nastavite na vlastiti rizik."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Dvostruka tačka montiranja %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4409,12 +4550,12 @@ msgstr ""
"Provjerite cdrom na instaliranom računaru koristeći \"rpm -qpl Mandrake/RPMS/"
"*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Dobro doĹĄli u %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Nema pogodne disketne jedinice"
@@ -4424,9 +4565,9 @@ msgstr "Nema pogodne disketne jedinice"
msgid "Entering step `%s'\n"
msgstr "Prelazim na korak `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4436,198 +4577,152 @@ msgstr ""
"ovo,\n"
"pritisnite `F1' prilikom bootanja na CDROMu, zatim unesite `text'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Klasa instalacije"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr "Molimo izaberite jednu od sljedećih klasa instalacije:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Ukupna veličina grupa koje ste izabrali je otprilike %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Ako želite da instalirate manje od ove veličine,\n"
-"izaberite procenat paketa koje Ĺželite instalirati.\n"
-"\n"
-"Nizak procenat će instalirati samo one najbitnije pakete;\n"
-"procenat 100%% će instalirati sve izabrane pakete."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Na disku imate mjesta samo za %d%% ovih paketa.\n"
-"\n"
-"Ako Ĺželite da instalirate manje od ovoga,\n"
-"izaberite procenat paketa koje Ĺželite da instalirate.\n"
-"Nizak procenat će instalirati samo one najbitnije pakete;\n"
-"procenat %d%% će instalirati najveći mogući broj paketa."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr ""
-"Na idućem koraku ćete biti u mogućnosti da ih izaberete nešto preciznije."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Procenat paketa za instalaciju"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Izbor grupe paketa"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Izbor pojedinačnih paketa"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ukupna veličina: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Neispravan paket"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Ime: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Verzija: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Veličina: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Značaj: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "Ne moĹžete izabrati ovaj paket jer nema dovoljno prostora za njega"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Sljedeći paketi će biti instalirani"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Sljedeći paketi će biti uklonjeni"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Ne možete izabrati/isključiti ovaj paket"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Ovo je obavezan paket, ne može biti isključen"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Ne možete isključiti ovaj paket. On je već instaliran"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Ovaj paket mora biti unaprijeđen\n"
"Jeste li sigurni da ga želite isključiti?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Ne možete isključiti ovaj paket. On mora biti unaprijeđen"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Automatski prikaĹži izabrane pakete"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Instalacija"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Učitaj/Spasi na disketu"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "OsvjeĹžavam izbor paketa"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "Minimalna instalacija"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Izaberite pakete koje Ĺželite instalirati"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Instaliram"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Procjenjujem"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Preostalo vremena "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Molimo sačekajte, pripremam instalaciju"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d paketa"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Instaliram paket %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Prihvati"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Odbij"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4643,17 +4738,17 @@ msgstr ""
"Ako ga nemate, pritisnite Odustani da biste izbjegli instaliranje sa ovog CD-"
"ROMa."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Svejedno nastavi?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Došlo je do greške pri naručivanju paketa:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "DoĹĄlo je do greĹĄke kod instaliranja paketa:"
@@ -4725,11 +4820,11 @@ msgstr "DoĹĄlo je do greĹĄke"
msgid "Do you really want to leave the installation?"
msgstr "Da li zaista Ĺželite napustiti instalaciju?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Licencni ugovor"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4744,7 +4839,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -4862,7 +4957,7 @@ msgstr ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -4967,109 +5062,113 @@ msgstr ""
"Paris - France.\n"
"For any question on this document, please contact MandrakeSoft S.A. \n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Tastatura"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "Molimo izaberite izgled vaĹĄe tastature."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Ovdje je puna lista svih dostupnih tastatura"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Koju klasu instalacije Ĺželite?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Instaliraj/Unaprijedi"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Da li je ovo instalacija ili update?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Preporučeno"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Ekspert"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "Unaprijedi"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "Unaprijedi samo pakete"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Molimo izaberite vrstu vaĹĄeg miĹĄa."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Port miĹĄa"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Molimo izaberite na kojem serijskom portu je spojen vaĹĄ miĹĄ."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Emulacija tipki"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Emulacija 2 dugmeta"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Emulacija 3 dugmeta"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "PodeĹĄavam PCMCIA kartice..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "PodeĹĄavam IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "nema dostupnih particija"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Pretražujem particije da nađem tačke montiranja"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Izaberite tačke montiranja"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -5081,7 +5180,7 @@ msgstr ""
"\n"
"SlaĹžete li se sa gubitkom svih particija?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -5089,7 +5188,7 @@ msgstr ""
"DiskDrake nije uspio ispravno pročitati tabelu particija.\n"
"Nastavljate na vlastiti rizik!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -5098,76 +5197,79 @@ msgstr ""
"nastaviti, ali da biste bootali vaĹĄ sistem, morate kreirati bootstrap "
"particiju u DiskDrake-u"
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr "Nije pronađena nijedna root particija radi unaprjeđivanja"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Root particija"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Ĺ ta je root particija (/) vaĹĄeg sistema?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Moraćete rebootati da bi izmjene tabele particija stupile na snagu"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Izaberite particije koje Ĺželite formatirati"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Provjeri loĹĄe blokove?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Formatiram particije"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Kreiram i formatiram datoteku %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Nemam dovoljno swap prostora da dovrĹĄim instalaciju, molimo dodajte joĹĄ"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "TraĹžim dostupne pakete"
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "TraĹžim dostupne pakete"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Pronalazim pakete za unaprjeđenje"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Ne možete isključiti ovaj paket. On je već instaliran"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Vaš sistem nema dovoljno preostalog prostora za instalaciju ili unaprjeđenje "
"(%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Potpuna (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimalna (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Preporučena (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5175,35 +5277,35 @@ msgstr ""
"Molimo izaberite učitaj ili spasi izbor paketa na disketu.\n"
"Format je isti kao i diskete koje generiĹĄe auto_install"
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Vrati sa diskete"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Vraćam sa diskete"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Izbor paketa"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "Ubacite disketu koja sadrĹži izbor paketa"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Spasi na disketu"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Izabrana veličina je veća od slobodnog prostora"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr "Vrsta instalacije"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
#, fuzzy
msgid ""
"You haven't selected any group of packages.\n"
@@ -5212,19 +5314,19 @@ msgstr ""
"Niste izabrali nijednu grupu paketa\n"
"Molimo izaberite minimalnu instalaciju koju Ĺželite"
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "Sa X-om"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr "Sa osnovnom dokumentacijom (preporučeno)"
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr "Stvarno minimalna instalacija (posebno bez urpmi)"
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5234,16 +5336,16 @@ msgstr ""
"Ako nemate nijedan od ovih CDova, kliknite na Odustani.\n"
"Ako nedostaju samo neki CDovi, isključite ih, zatim kliknite na Ok."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM pod oznakom \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Pripremam instalaciju"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -5252,23 +5354,23 @@ msgstr ""
"Instaliram paket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Post-instalacijsko podeĹĄavanje"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Molimo ubacite boot disketu koja je upotrebljena u jedinicu %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Molimo ubacite disketu Update Modula u jedinicu %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5304,7 +5406,7 @@ msgid ""
"Altadena California 91001\n"
"USA"
msgstr ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5340,13 +5442,15 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
+#, fuzzy
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
@@ -5358,151 +5462,181 @@ msgstr ""
"\n"
"Da li želite instalirati unaprjeđenja ?"
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Kontaktiram Mandrake Linux web stranicu da bih saznao listu dostupnih mirrora"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Izaberite mirror sa kojeg će biti dobavljeni paketi"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Kontaktiram mirror da bih saznao listu dostupnih paketa"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Koja je vaĹĄa vremenska zona?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Hardverski sat podeĹĄen na GMT"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatska sinhronizacija vremena (koristeći NTP)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "NTP server"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Udaljeni CUPS server"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Nema štampača"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
msgstr "Imate li ISA zvučnu karticu?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Pokrenite \"sndconfig\" poslije instalacije kako biste podesili vašu zvučnu "
"karticu"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Nije otkrivena zvučna kartica. Probajte \"harddrake\" poslije instalacije"
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Ukratko"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "MiĹĄ"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Vremenska zona"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Štampač"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "ISDN kartica"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Zvučna kartica"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV kartica"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Windows (FAT32)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Lokalne datoteke"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Podesite root ĹĄifru"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Bez ĹĄifre"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Ova ĹĄifra je previĹĄe jednostavna (mora biti duga najmanje %d karaktera)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autentikacija"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "Autentikacijski LDAP"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "LDAP Server"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "Autentifikacija NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS domen"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS server"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Autentikacijski LDAP"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Preuzmi fontove iz Windowsa"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NTP server"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -5534,19 +5668,19 @@ msgstr ""
"first\n"
"drive and press \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Prva disketna jedinica"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Druga disketna jedinica"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Preskoči"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, fuzzy, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5572,7 +5706,7 @@ msgstr ""
"system\n"
"failures. Would you like to create a bootdisk for your system?"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5586,29 +5720,29 @@ msgstr ""
"pravljenje boot diskete na 1.44 Mb disketi vjerovatno neće\n"
"raditi, poĹĄto XFS traĹži veoma velik drajver)."
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Žao mi je, nema dostupne disketne jedinice"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Izaberite disketnu jedinicu koju Ĺželite koristiti da napravite boot disketu"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
msgstr "Ubacite disketu u %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Pravim boot disketu"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Pripremam bootloader"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5620,11 +5754,11 @@ msgstr ""
"Instalacija će se nastaviti, ali ćete\n"
" morati koristiti BootX za bootanje vašeg računara"
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Da li Ĺželite koristiti aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5632,15 +5766,15 @@ msgstr ""
"GreĹĄka u instaliranju aboota, \n"
"da li da pokušam nasilnu instalaciju čak i ako to uništi prvu particiju?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Instaliram bootloadera"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Instalacija bootloadera nije uspjela. Došlo je do sljedeće greške:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5658,18 +5792,17 @@ msgstr ""
" Zatim kucajte: shut-down\n"
"Prilikom idućeg boota biste trebali vidjeti upit bootloadera."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Ubacite praznu disketu u jedinicu %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Pravim auto instalacijsku disketu"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5679,7 +5812,8 @@ msgstr ""
"\n"
"Da li zaista želite izaći sada?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5690,7 +5824,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5705,17 +5839,22 @@ msgstr ""
"pogledajte Errata koja je dostupna na:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Informacije o podeĹĄavanju vaĹĄeg sistema su dostupne u poglavlju\n"
"\"nakon instalacije\" vašeg Zvaničnog Mandrake Linux priručnika za upotrebu."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+#, fuzzy
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakesoft.com/sales/contact"
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Napravi auto instalacijsku disketu"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5729,15 +5868,15 @@ msgstr ""
"\n"
"Možda ćete željeti radije ponoviti instalaciju.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automatizovano"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Ponovi"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Spasi izbor paketa"
@@ -5764,44 +5903,24 @@ msgstr "nedostaje consolehelper"
msgid "Choose a file"
msgstr "Izaberi datoteku"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Napredno"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr "Osnovno"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Molimo sačekajte"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "ProĹĄiri stablo"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Smanji stablo"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Prekidač između ravnog i grupnog sortiranja"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "PogreĹĄan izbor, pokuĹĄajte ponovo\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "VaĹĄ izbor? (podrazumjevano %s)"
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -5810,31 +5929,35 @@ msgstr ""
"Stavke koje morate popuniti:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "VaĹĄ izbor? (0/1, podrazumjevano %s)"
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "Dugme '%s': %s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+msgid "Do you want to click on this button?"
msgstr "Da li Ĺželite kliknuti na ovo dugme?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "VaĹĄ izbor? (podrazumjevano '%s' %s)"
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Postoji mnogo stvari od kojih moĹžete izabrati (%s).\n"
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -5844,7 +5967,7 @@ msgstr ""
"ili samo pritisnite Enter za nastavak.\n"
"VaĹĄ izbor?"
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -5853,327 +5976,327 @@ msgstr ""
"=> Primjetite, label je promjenjena:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr "Ponovo poĹĄalji"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Češka (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Njemačka"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Ĺ panska"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finska"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Francuska"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "NorveĹĄka"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Poljska"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Ruska"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Ĺ vedska"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "UK tastatura"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "US tastatura"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Albanska"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armenska (stara)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armenska (pisaća mašina)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armenska (fonetska)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "AzerbejdĹžanska (latinica)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgijska"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr "Bugarska (fonetska)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "Bugarska (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brazilska (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Bjeloruska"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Švicarska (Njemački izgled)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Ĺ vicarska (Francuski izgled)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Češka (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Njemačka (bez mrtvih tipki)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Danska"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (NorveĹĄka)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Ĺ vedska)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estonska"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Gruzijska (\"Ruski\" izgled)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Gruzijska (\"Latinični\" izgled)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Grčka"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Mađarska"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Hrvatska"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Izraelska"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Izraelska (Fonetska)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iranska"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islandska"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Italijanska"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Japanska 106 tipki"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Korejanska tastatura"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latino-Američka"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Litvanska AZERTY (stara)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Litvanska AYERTY (nova)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litvanska \"red brojeva\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litvanska \"fonetska\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "Latvijska"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Makedonska"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Holandska"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Poljska (qwerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Poljska (qwertz)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugalska"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Kanadska (Kvebek)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Rumunska (qwertz)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Rumunska (qwerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Ruska (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slovenačka"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovačka (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovačka (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "Srpska (ćirilica)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr "Tamilska"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Tajlandska tastatura"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Tadžička tastatura"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turska (tradicionalni \"F\" model)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turska (moderni \"Q\" model)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukrajinska"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US tastatura (međunarodna)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vjetnamska \"red brojeva\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Jugoslavenska (latinično)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr "Desna Alt tipka"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr "Obje Shift tipke istovremeno"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr "Control i Shift tipka istovremeno"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr "CapsLock tipka"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr "Ctrl i Alt tipke istovremeno"
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr "Alt i Shift tipke istovremeno"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr "\"Meni\" tipka"
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr "Lijeva \"Windows\" tipka"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr "Desna \"Windows\" tipka"
@@ -6186,7 +6309,31 @@ msgstr "KruĹžno montiranje %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Najprije ukloni logičke volumene\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Broj telefona"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Formatiranje particija"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -6228,10 +6375,6 @@ msgstr "1 dugme"
msgid "Generic 2 Button Mouse"
msgstr "OpĹĄti miĹĄ sa 2 dugmeta"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "OpĹĄti"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Kotač"
@@ -6296,38 +6439,54 @@ msgstr "nijedan"
msgid "No mouse"
msgstr "Bez miĹĄa"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Molimo testirajte miĹĄ"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Da biste aktivirali miĹĄa,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "POMJERITE VAŠ KOTAČ!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-2,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Kraj"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Sljedeći ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Prethodni"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Da li je ovo ispravno?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Info"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "ProĹĄiri stablo"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Smanji stablo"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Prekidač između ravnog i grupnog sortiranja"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Spoji se na Internet"
@@ -6374,7 +6533,7 @@ msgstr ""
"Nije pronađen ethernet mrežni adapter na vašem sistemu.\n"
"Ne mogu podesiti ovu vrstu konekcije."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Izaberite mreĹžni interface"
@@ -6388,7 +6547,7 @@ msgstr ""
msgid "no network card found"
msgstr "nije pronađena mrežna kartica"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "PodeĹĄavam mreĹžu"
@@ -6404,15 +6563,15 @@ msgstr ""
"Naziv vašeg računara bi trebao biti puno-kvalifikovani naziv,\n"
"kao ĹĄto je ``mojcomp.mojlab.mojafirma.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Host name"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Čarobnjak za podešavanje mreže"
@@ -6467,7 +6626,7 @@ msgstr "PodeĹĄavanje ISDNa"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Izaberite vaĹĄeg providera.\n"
" Ako nije na listi, izaberite Nije na listi"
@@ -6486,14 +6645,14 @@ msgstr "Protokol za ostatak svijeta"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Protokol za ostatak svijeta \n"
" bez D-kanala (iznajmljene linije)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Koji protokol Ĺželite koristiti?"
#: ../../network/isdn.pm_.c:199
@@ -6517,7 +6676,8 @@ 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"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Ako imate ISA karticu, vrijednosti na idućem ekranu bi trebale biti "
@@ -6534,13 +6694,13 @@ msgid "Continue"
msgstr "Nastavak"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Koja je vaĹĄa ISDN kartica ?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Otkrio sam neku ISDN PCI karticu, ali ne znam tip. Molimo izaberite neku PCI "
"karticu na idućem ekranu."
@@ -6559,47 +6719,47 @@ msgstr "Molimo izaberite na koji serijski port je nakačen vaš modem."
msgid "Dialup options"
msgstr "Opcije dialupa"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Naziv konekcije"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Broj telefona"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Login ID"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Skripta"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Terminal"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Ime domena"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Prvi DNS server (opcionalno)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Drugi DNS server (opcionalno)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6607,7 +6767,7 @@ msgstr ""
"\n"
"MoĹžete se diskonektovati ili prekonfigurisati vaĹĄu konekciju."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6615,11 +6775,11 @@ msgstr ""
"\n"
"MoĹžete prekonfigurisati vaĹĄu konekciju."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Trenutno ste spojeni na Internet."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6627,32 +6787,32 @@ msgstr ""
"\n"
"MoĹžete se spojiti na Internet ili prekonfigurisati vaĹĄu konekciju."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Trenutno niste konektovani na Internet."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Konektuj me"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Prekini konekciju"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr "Podesi konekciju"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Internet konekcija & podeĹĄavanje"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Sada ćemo podesiti konekciju %s."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6671,12 +6831,12 @@ msgstr ""
"\n"
"Pritisnite OK za nastavak."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "PodeĹĄavanje mreĹže"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6687,9 +6847,9 @@ msgstr ""
"Kliknite na Ok da zadrĹžite tu konfiguraciju ili Odustani za podeĹĄavanje vaĹĄe "
"Internet & MreĹžne konekcije.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"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"
@@ -6699,66 +6859,72 @@ msgstr ""
"Sada ćemo podesiti vašu internet/mrežnu konekciju.\n"
"Ako ne želite da koristite automatsko prepoznavanje, isključite opciju.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Izaberite profil za podeĹĄavanje"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Koristi auto prepoznavanje"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Ekspertni mod"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Prepoznajem uređaje..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Normalna modemska konekcija"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "detektovan na portu %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN konekcija"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "detektovan %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "ADSL konekcija"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "detektovan na interfejsu %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Kablovska konekcija"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "otkrivena kablovska konekcija"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "LAN konekcija"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "prepoznata ethernet kartica(e)"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Izaberite konekciju koju Ĺželite podesiti"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6768,23 +6934,23 @@ msgstr ""
"Izaberite jedan od njih koji ćete koristiti.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Internet konekcija"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Da li Ĺželite pokrenuti konekciju prilikom boota?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "PodeĹĄavanje mreĹže"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr "Potrebno je restartovati mreĹžu"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6795,7 +6961,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6805,7 +6971,7 @@ msgstr ""
"\n"
"Sada će ova konfiguracija biti primjenjena na vaš sistem.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6813,19 +6979,19 @@ msgstr ""
"Nakon što je to gotovo, preporučujemo da restartujete vaš X\n"
"okoliš kako bi se izbjegao problem sa promjenom naziva računara."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
"DoĹĄlo je do problema prilikom podeĹĄavanja.\n"
"Provjerite vašu konekciju pomoću net_monitor ili mcc. Ako vaša konekcija ne "
"radi, moĹžete ponovo pokrenuti podeĹĄavanje"
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"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."
@@ -6834,7 +7000,7 @@ msgstr ""
"Samo prihvatite kako bi ovaj uređaj ostao podešen.\n"
"Izmjena polja ispod će prepisati ovu konfiguraciju."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6844,38 +7010,43 @@ msgstr ""
"Svaka stavka bi trebala biti unesena kao IP adresa u decimalnoj notaciji\n"
"razdvojenoj tačkama (npr. 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Podešavam mrežni uređaj %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (drajver %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP adresa"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Automatska IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Pokrenut na bootu"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP adresa treba biti u formatu 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6887,64 +7058,64 @@ msgstr ""
"kao ĹĄto je ``mojcomp.mojlab.mojafirma.com''.\n"
"Možete također unijeti IP adresu gateway-a ako ga imate"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS server"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (tj. %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Gateway uređaj"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Konfiguracija proxija"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Otkrij id mreĹžne karte (korisno za laptope)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Proxy treba biti http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Proxy treba biti ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Internet konfiguracija"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Da li se Ĺželite pokuĹĄati spojiti na Internet sada?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Probavam vaĹĄu konekciju..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Sistem je sada spojen na Internet."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Iz sigurnosnih razloga, sada će biti odspojen."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6952,111 +7123,116 @@ msgstr ""
"Izgleda da sistem nije spojen na Internet.\n"
"Probajte promjeniti postavke vaĹĄe konekcije."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "PodeĹĄavanje konekcije"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Molimo ispunite ili provjerite polje ispod"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ kartice"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Memorija kartice (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "IO kartice"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "IO_0 kartice"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "IO_1 kartice"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Vaš lični broj telefona"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Naziv provajdera (npr. provajder.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Broj telefona provajdera"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Provider dns 1 (opcionalno)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Provider dns 2 (opcionalno)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Izaberite vaĹĄu drĹžavu"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Način biranja broja"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Brzina konekcije"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "Timeout konekcije (u sek.)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Login naloga (korisničko ime)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Ĺ ifra naloga"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "montiranje nije uspjelo: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Extended particije nisu podrĹžane na ovoj platformi"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Imate rupu u vaĹĄoj tabeli particija li je ja ne mogu upotrijebiti.\n"
"Jedino rjeĹĄenje je da pomjerite vaĹĄe primarne particija kako bi rupa bila "
"pored extended particija"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Povratak iz datoteke %s nije uspio: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "LoĹĄa backup datoteka"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "GreĹĄka u pisanju datoteke: %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7066,186 +7242,186 @@ msgstr ""
"Test integriteta podataka nije uspio. \n"
"To znači će da pisanje bilo čeka na disk rezultirati smećem"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "obavezno"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "vaĹžno"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "vrlo fino"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "fino"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "moĹžda"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Common Unix Printing System"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR New Generation"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Line Printer Daemon"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Lokalni štampač"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Udaljeni štampač"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Štampač na udaljenom CUPS serveru"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Štampač na udaljenom lpd serveru"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Mrežni štampač (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Štampač na SMB/Windows 95/98/NT serveru"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Štampač na NetWare serveru"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Unesite URI uređaja štampača"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "Spoji zadatak na komandu"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Nepoznat model"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "Lokalni štampači"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "Udaljeni štampači"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr " na paralelnom portu \\/*%s"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", USB štampač \\/*%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", višenamjenski uređaj na paralelnom portu \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ", višenamjenski uređaj na USBu"
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ", višenamjenski uređaj na HP JetDirect"
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ", višenamjenski uređaj"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, c-format
msgid ", printing to %s"
msgstr ", ĹĄtampa u %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr "na LPD serveru \"%s\", štampač \"%s\""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", TCP/IP host \"%s\", port %s"
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr "na Windows serveru \"%s\", share \"%s\""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr "na Novell serveru \"%s\", štampač \"%s\""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ", koristeći komandu %s"
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr "Sirovo ĹĄtampanje (Bez drajvera)"
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(na %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(na ovom računaru)"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Na CUPS serveru \"%s\""
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Default)"
@@ -7267,11 +7443,11 @@ msgstr ""
"Ovdje ne morate podešavati štampače na udaljenim CUPS serverima;\n"
"ovi štampači će biti automatski prepoznati."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
msgid "CUPS configuration"
msgstr "PodeĹĄavanje CUPSa"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
msgid "Specify CUPS server"
msgstr "Navedite CUPS server"
@@ -7313,7 +7489,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP adresa treba biti u formatu 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "Broj porta treba biti cijeli broj!"
@@ -7321,7 +7497,7 @@ msgstr "Broj porta treba biti cijeli broj!"
msgid "CUPS server IP"
msgstr "IP CUPS servera"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Port"
@@ -7329,20 +7505,12 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Automatska konfiguracija CUPSa"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Prepoznajem uređaje ..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Testiraj portove"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr "Dodaj novi štampač"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7365,13 +7533,13 @@ msgstr ""
"vama omogućen pristup svim dostupnim drajverima, opcijama drajvera i vrstama "
"konekcije štampača."
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Lokalni štampač"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7404,11 +7572,11 @@ msgstr ""
"želite da podesite štampanje na udaljenom štampaču a printerdrake ga ne "
"izlista automatski."
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr "Automatski prepoznaj štampače"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7432,11 +7600,11 @@ msgstr ""
"štampe...), izaberite opciju \"Štampač\" u \"Hardware\" sekciji Mandrake "
"Kontrolnog centra."
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr "Automatsko prepoznavanje štampača"
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7452,33 +7620,37 @@ msgstr ""
"\n"
"Da li zaista želite da vaši štampači budu prepoznati automatski?"
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "Koristi auto prepoznavanje"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr "Ručno podesite štampač"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Testiraj portove"
+
+#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
msgstr "Detektovan %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Štampač na paralelnom portu \\/*%s"
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr "USB štampač \\/*%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
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, ..., "
@@ -7490,11 +7662,11 @@ msgstr ""
"lp0, /dev/lp1, ..., ekvivalentno LPT1:, LPT2:, ..., prvi USB štampač: /dev/"
"usb/lp0, drugi USB štampač: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
msgstr "Morate unijeti naziv uređaja ili datoteke!"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
@@ -7502,7 +7674,7 @@ msgstr ""
"Nije pronađen nijedan lokalni štampač!\n"
"\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
@@ -7510,7 +7682,7 @@ msgstr ""
"Mrežni štampači mogu biti instalirani samo nakon završetka instalacije. "
"Izaberite \"Hardware\" i zatim \"Štampač\" u Mandrake Kontrolnom centru."
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
@@ -7518,7 +7690,7 @@ msgstr ""
"Da instalirate mrežne štampače, kliknite na \"Odustani\", prebacite na "
"\"Ekspert mod\" i kliknite ponovo na \"Dodaj novi štampač\"."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7526,7 +7698,7 @@ msgstr ""
"Sljedeći štampač je prepoznat automatski: ako to nije onaj koji želite "
"podesiti, uneiste naziv uređaja / naziv datoteke u ulaznu liniju"
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7535,7 +7707,7 @@ msgstr ""
"koji želite podesiti ili unesite naziv uređaja / naziv datoteke na ulaznu "
"liniju"
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7546,7 +7718,7 @@ msgstr ""
"potpuno automatski. Ako vaš štampač nije ispravno prepoznat ili ako želite "
"sami podesiti štampač, uključite \"Ručno podešavanje\"."
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7558,7 +7730,7 @@ msgstr ""
"vaš štampač nije ispravno prepoznat ili ako želite sami podesiti štampač, "
"uključite \"Ručno podešavanje\"."
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7566,11 +7738,11 @@ msgstr ""
"Molimo izaberite port na koji je vaš štampač povezan ili unesite naziv "
"uređaja / naziv datoteke na ulaznoj liniji"
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
msgstr "Molimo izaberite na koji port je priključen vaš štampač."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7579,52 +7751,65 @@ msgstr ""
"LPT2:, ..., prvi USB štampač: /dev/usb/lp0, drugi USB štampač: /dev/usb/"
"lp1, ...)."
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
msgstr "Morate izabrati ili unijeti štampač / uređaj!"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
msgstr "Ručno podešavanje"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
+#, fuzzy
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
"Da li je vaš štampač višenamjenski uređaj od HPa (OfficeJet, PSC, "
"PhotoSmart, LaserJet 1100/1200/1220/3200/3300 sa skenerom)?"
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
msgstr "Instaliram HPOJ paket..."
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr "Provjeravam uređaj i podešavam HPOJ ..."
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
msgstr "Instaliram SANE paket..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Instaliram pakete..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr "Skeniram na vašem HP višenamjenskom uređaju"
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+#, fuzzy
+msgid "Photo memory card access on your HP multi-function device"
+msgstr "Skeniram na vašem HP višenamjenskom uređaju"
+
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr "Omogućujem CUPSu port štampača ..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr "Čitam bazu podataka o štampačima ..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Opcije udaljenog lpd štampača"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7632,27 +7817,27 @@ msgstr ""
"Da biste koristili udaljeni lpd štampač, morate dati ime računara za printer "
"server i ime štampača na tom serveru."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Ime udaljenog računara"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Ime udaljenog štampača"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "Ime udaljenog računara nedostaje!"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "Ime udaljenog štampača nedostaje!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Opcije SMB (Windows 9x/NT) štampača"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7664,35 +7849,35 @@ msgstr ""
"kao i share naziv štampača kojem želite pristupiti i korisničko ime, šifru i "
"informacije o radnoj grupi."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "SMB server ime"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "SMB server IP"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Share naziv"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Radna grupa"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "Treba biti dato ili ime servera ili IP adresa servera!"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "Naziv samba share-a nedostaje!"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7716,7 +7901,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7725,7 +7910,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7733,11 +7918,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Opcije NetWare štampača"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
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 "
@@ -7749,27 +7934,27 @@ msgstr ""
"naziv reda za štampu na štampaču kojem želite pristupiti i eventualno "
"korisničko ime i šifru."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Printer Server"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Naziv reda za ĹĄtampu"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "NCP naziv servera nedostaje!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "NCP naziv reda nedostaje!"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
msgstr "TCP/socket opcije štampača"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -7780,19 +7965,19 @@ msgstr ""
"opcionalno broj porta. Na HP JetDirect serverima broj porta je obično 9100, "
"na ostalim serverima on može varirati. Pogledajte priručnik vašeg hardware-a."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Hostname štampača"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "Hostname štampača nedostaje!"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "URI uređaja štampača"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
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 "
@@ -7802,11 +7987,11 @@ msgstr ""
"CUPS ili Foomatic specifikacije. Obratite paĹžnju da nisu svi tipovi URIja "
"podrĹžani od svih spoolera."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "Trebate unijeti ispravan URI!"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -7814,27 +7999,23 @@ msgstr ""
"Svakom štampaču treba dati ime (npr. \"stampac\"). Polja Opis i Lokacija "
"nije potrebno popuniti. Oni su komentari za korisnike."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Naziv štampača"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Opis"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Lokacija"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr "Pripremam bazu podataka o štampačima..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
msgid "Your printer model"
msgstr "Model vašeg štampača"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7860,24 +8041,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
msgid "The model is correct"
msgstr "Model je ispravan"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
msgid "Select model manually"
msgstr "Izaberite model ručno"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Izbor modela štampača"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Koji model štampača imate?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7891,7 +8072,7 @@ msgstr ""
"prepoznavanje modela vašeg štampača. Potražite ispravan model na listi ako "
"kursor stoji na pogrešnom modelu ili na \"Raw štampač\"."
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -7899,11 +8080,11 @@ msgstr ""
"Ako štampač nije naveden, izaberite kompatibilan (pogledajte uputstva za "
"štampač) ili sličan."
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "PodeĹĄavanje OKI winprinter-a"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7919,11 +8100,11 @@ msgstr ""
"nego što odštampate testnu stranicu. Inače štampač neće raditi. Drajver će "
"ignorisati vaĹĄe podeĹĄenje tipa konekcije."
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "PodeĹĄavanje Lexmark inkjet-a"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7935,7 +8116,7 @@ msgstr ""
"Molimo spojite vaš štampač na lokalni port ili ga podesite na računaru na "
"koji je spojen."
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7957,7 +8138,7 @@ msgstr ""
"poravnavanje glava sa \"lexmarkmaintain\" i podesite opcije poravnanja glave "
"pomoću ovog programa."
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7972,22 +8153,22 @@ msgstr ""
"ispravno podeĹĄeni. Obratite paĹžnju da za voma veliku kvalitetu / rezoluciju "
"ĹĄtampa moĹže postati znatno sporija."
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Opcija %s mora biti cijeli broj!"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "Opcija %s mora biti broj!"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "Opcija %s izvan raspona!"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7996,11 +8177,11 @@ msgstr ""
"Da li želite da podesite ovaj štampač (\"%s\")\n"
"kao podrazumjevani štampač?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "Testna stranica"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8012,39 +8193,39 @@ msgstr ""
"laserskim štampačima sa malo memorije možda neće nikad ni izaći. U većini "
"slučajeva dovoljno je odštampati standardnu testnu stranicu."
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "Nijedna testna strana"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Ĺ tampaj"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "Standardna testna strana"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr "Alternativna testna strana (Letter)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "Alternativna testna strana (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "Foto testna strana"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
msgstr "Nemoj ĹĄtampati testnu stranicu"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Ĺ tampam testnu stranicu..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8059,7 +8240,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8067,15 +8248,15 @@ msgstr ""
"Testna stranica je poslana štampaču.\n"
"Može potrajati određeno vrijeme dok štampač krene.\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr "Da li je radilo ispravno?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr "Sirovi štampač"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8088,7 +8269,7 @@ msgstr ""
"<datoteka>\" ili \"kprinter <datoteka>\". Grafički alati vam omogućuju da "
"jednostavno odaberete štampač i izmjenite podešenja opcija.\n"
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
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 "
@@ -8098,8 +8279,8 @@ msgstr ""
"dijalozima za ĹĄtampu mnogih aplikacija, ali ovdje ne morate navesti ime "
"datoteke jer tu datoteku obezbjeđuje sama aplikacija.\n"
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -8112,18 +8293,18 @@ msgstr ""
"ĹĄtampe. Jednostavno dodajte Ĺželjena podeĹĄenja na komandnu liniju, npr. \"%s "
"<datoteka>\". "
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#, fuzzy, 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\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
"Za listu opcija koje su dostupne za trenutni štampač ili pročitajte listu "
"koja je data ispod ili kliknite na dugme \"Lista opcija za ĹĄtampu\".%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8131,7 +8312,7 @@ msgstr ""
"Ovo je lista mogućih opcija za štampu za trenutni štampač:\n"
"\n"
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8140,8 +8321,8 @@ msgstr ""
"Za ĹĄtampanje datoteke sa komandne linije (terminalski prozor) koristite "
"komandu \"%s <datoteka>\".\n"
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8151,7 +8332,7 @@ msgstr ""
"dijalozima za ĹĄtampu mnogih aplikacija. Ovdje nije potrebno navesti naziv "
"datoteke jer tudatoteku obezbjeđuje sama aplikacija.\n"
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8159,7 +8340,7 @@ msgstr ""
"Za listu opcija koje su dostupne za trenutni štampač kliknite na dugme "
"\"Lista opcija za ĹĄtampu\"."
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8168,7 +8349,7 @@ msgstr ""
"Za ĹĄtampanje datoteke sa komandne linije (terminalski prozor) koristite "
"komandu \"%s <datoteka>\" ili \"%s <datoteka>\".\n"
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8184,7 +8365,7 @@ msgstr ""
"zaustavlja sve zadatke ĹĄtampe odmah kada kliknete na nju. Ovo je korisno "
"npr. u slučaju zaglavljivanja papira.\n"
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -8197,38 +8378,49 @@ msgstr ""
"zadatak ĹĄtampe. Jednostavno dodajte Ĺželjena podeĹĄenja na komandnu liniju, "
"npr. \"%s <datoteka>\".\n"
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Zatvori"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Ĺ tampam/skeniram na \"%s\""
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Ĺ tampam/skeniram na \"%s\""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Ĺ tampam/skeniram na \"%s\""
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Štampam na štampač \"%s\""
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Zatvori"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "Lista opcija za ĹĄtampu"
-#: ../../printerdrake.pm_.c:1766
-#, c-format
+#: ../../printerdrake.pm_.c:1802
+#, fuzzy, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
@@ -8242,39 +8434,30 @@ msgstr ""
"\n"
"Nemojte koristiti \"scannerdrake\" za ovaj uređaj!"
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-"Vaš HP višenamjenski uređaj je automatski konfigurisan kako bi mogao "
-"skenirati. Sada možete skenirati sa komandne linije pomoću komande \"ptal-hp "
-"%s scan ...\". Skeniranje putem grafičkog interfejsa ili iz GIMPa još nije "
-"podržano za vaš uređaj. Više informacija možete naći u datoteci\"/usr/share/"
-"doc/hpoj-0.8/ptal-hp-scan.html\" na vašem računaru. Ako imate HP LaserJet "
-"1100 ili 1200, moĹžete skenirati samo ako ste instalirali opciju za "
-"skeniranje.\n"
-"\n"
-"Nemojte koristiti \"scannerdrake\" za ovaj uređaj!"
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr "Čitam podatke o štampaču..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "Premještanje konfiguracije štamapča"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8289,7 +8472,7 @@ msgstr ""
"zadaci štampe neće biti prebačeni.\n"
"Svi redovi ne mogu biti prebačeni zbog sljedećih razloga:\n"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8297,7 +8480,7 @@ msgstr ""
"CUPS ne podržava štampače na Novell serverima ili štampačekoji šalju podatke "
"u komandama slobodnog oblika.\n"
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -8305,11 +8488,11 @@ msgstr ""
"PDQ podržava samo lokalne štampače, udaljene LPD štampačei Socket/TCP "
"štampače.\n"
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD i LPRng ne podržavaju IPP štampače.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8317,7 +8500,7 @@ msgstr ""
"Pored toga, redovi koji nisu kreirani ovim programom ili sa \"foomatic-"
"configure\" ne mogu biti premjeĹĄteni."
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8327,7 +8510,7 @@ msgstr ""
"Također štampači konfigurisani sa PPD datotekama koje su osigurali njihovi "
"proizvođači ili sa vlastitim CUPS drajverima ne mogu biti prebačeni."
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8337,15 +8520,15 @@ msgstr ""
"Označite štampače koje ćete prebacivati i kliknite na \n"
"\"Prebaci\"."
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr "Nemoj prebacivati štampače"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr "Prebaci"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8356,11 +8539,11 @@ msgstr ""
"Kliknite na \"Prebaci\" da to prepiĹĄete.\n"
"Možete također unijeti novo ime ili preskočiti ovaj štampač."
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Naziv štampača bi se trebao sastojati od slova, brojeva i donje linije"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8369,16 +8552,16 @@ msgstr ""
"Štampač \"%s\" već postoji,\n"
"da li sigurno Ĺželite prepisati ovu konfiguraciju?"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Novo ime štampača"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr "Prebacujem %s ..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8387,29 +8570,29 @@ msgstr ""
"Prebacili ste vaš bivši podrazumjevani štampač (\"%s\"),Da li će to također "
"biti podrazumjevani štampač podnovim sistemom štampe %s?"
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr "Osvježavam podatke o štampaču..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr "Podešavanje udaljenog štampača"
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "Pokrećem mrežu..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr "Sada podesite mreĹžu"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "MreĹžna funkcionalnost nije podeĹĄena"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8421,11 +8604,11 @@ msgstr ""
"mreže, nećete moći koristiti štampač koji sada podešavate. Kako želite da "
"nastavimo?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr "Nastavi bez podeĹĄavanja mreĹže"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8440,7 +8623,7 @@ msgstr ""
"\"Mreža i Internet\"/\"Konekcija\", a zatim podesite štampač, ponovo "
"koristeći Mandrake Kontrolni centar, sekcija \"Hardver\"/\"Štampač\""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
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 "
@@ -8450,24 +8633,24 @@ msgstr ""
"vaĹĄu konfiguraciju i vaĹĄ hardware. Onda ponovo pokuĹĄajte podesiti udaljeni "
"štampač."
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr "Restartujem sistem za ĹĄtampu ..."
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "visok"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr "paranoičan"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Instaliram sistem za ĹĄtampu na sigurnosnom nivou: %s"
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8491,11 +8674,11 @@ msgstr ""
"\n"
"Da li zaista želite podesiti štampanje na ovom računaru?"
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr "Pokrećem sistem za štampu tokom boota"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8515,63 +8698,63 @@ msgstr ""
"\n"
"Da li želite da ponovo uključite automatsko pokretanje sistema za štampu?"
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr "Provjeravam instalirani software..."
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr "Uklanjam LPRng..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr "Uklanjam LPD..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "Izaberite spooler štampača"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "Koji sistem ĹĄtampanja (spooler) Ĺželite koristiti?"
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2310
+#, fuzzy, c-format
+msgid "Configuring printer \"%s\"..."
msgstr "Podešavam štampač \"%s\"..."
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
msgstr "Instaliram Foomatic..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Opcije štampača"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr "Pripremam PrinterDrake..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
msgid "Configuring applications..."
msgstr "PodeĹĄavam aplikacije..."
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "Da li Ĺželite podesiti ĹĄtampanje?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr "Sistem ĹĄtampe: "
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -8583,7 +8766,7 @@ msgstr ""
"njemu; ili da učinite štampač na udaljenom CUPS serveru upotrebljivim iz "
"Star Office/OpenOffice.org-a."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -8593,29 +8776,33 @@ msgstr ""
"postavki; ako ga želite učiniti podrazumjevanim štampačem; ili da biste "
"vidjeli informacije o njemu."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Osvježi listu štampača (kako bi bili prikazani svi dostupni CUPS štampači)"
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
msgid "Change the printing system"
msgstr "Promjenite sistem ĹĄtampe"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Normalni mod"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Izlaz"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr "Želite li podesiti još jedan štampač?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "Izmjeni konfiguraciju štampača"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, c-format
msgid ""
"Printer %s\n"
@@ -8624,102 +8811,102 @@ msgstr ""
"Štampač %s\n"
"Šta želite da izmjenite na ovom štampaču?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr "Uradi!"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "Tip konekcije štampača"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "Naziv štampača, opis, lokacija"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr "Proizvođač štampača, model, drajver"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr "Proizvođač štampača, model"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr "Podesi štampač kao podrazumjevani"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr "Dodaj ovaj štampač u Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr "Ukloni ovaj štampač iz Star/Open Offica"
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr "Ĺ tampaj testnu stranicu"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
msgstr "Saznaj kako koristiti ovaj štampač"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "Ukloni štampač"
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2857
+#, fuzzy, c-format
+msgid "Removing old printer \"%s\"..."
msgstr "Uklanjam stari štampač \"%s\" ..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Podrazumjevani štampač"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Štampač \"%s\" je sada podešen kao podrazumjevani štampač."
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr "Dodajem štampač u Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr "Štampač \"%s\" je uspješno dodan u Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr "Nisam uspio dodati štampač \"%s\" u Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr "Uklanjam štampač iz Star/Open Offica"
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr "Štampač \"%s\" je uspješno uklonjen iz Star/Open Offica."
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr "Nisam uspio ukloniti štampač \"%s\" iz Star/Open Offica."
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Da li želite da uklonite štampač \"%s\"?"
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2909
+#, fuzzy, c-format
+msgid "Removing printer \"%s\"..."
msgstr "Uklanjam štampač \"%s\" ..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -8803,24 +8990,62 @@ msgstr "Ĺ ifre se ne poklapaju. PokuĹĄajte opet!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Ne mogu dodati particiju na _formatiran_ RAID md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Ne mogu pisati datoteku %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid nije uspio"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid nije uspio (moĹžda nedostaju raidtools?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nema dovoljno particija za RAID nivo %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Ovaj nivo treba koristiti pažljivo. On čini vaš sistem lakšim za upotrebu,\n"
+"ali vrlo osjetljivim: ne smije biti korišten za računar koji je spojen na\n"
+"druge ili na Internet. Nema pristupa ĹĄifrom."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+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 ""
+"Sa ovim sigurnosnim nivoom, postaje moguće koristiti ovaj sistem kao "
+"server.\n"
+"Sigurnost je sada dovoljno visoka za upotrebu sistema kao servera koji "
+"prima\n"
+"konekcije sa mnogo klijenata. Napomena: ako je vaš računar samo klijent na "
+"Internetu, moĹžda je bolje da izaberete niĹži nivo."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "Napredne opcije"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Opcije"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Pokreni ALSA zvučni sistem (Advanced Linux Sound Architecture)"
@@ -8877,7 +9102,7 @@ msgstr ""
"HardDrake pokreće probavanje hardware-a i opcionalno konfiguriše\n"
"novi/izmjenjeni hardware."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8952,7 +9177,7 @@ msgstr ""
"Linux Virtuelni Server, koristi se za izgradnju servera visokih performansi\n"
"i dostupnosti."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -9029,7 +9254,7 @@ msgstr ""
"su NFS i NIS. Portmap server mora raditi na računarima koje služe kao\n"
"serveri za protokole koji koriste RPC mehanizam."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -9124,7 +9349,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Dijeljenje datoteka"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "Sistem"
@@ -9254,6 +9479,7 @@ msgstr ""
"GNU gcc kompajlera kao i najboljih razvojnih okolina koje su Open Source"
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
msgstr "Mandrake Kontrolni centar"
@@ -9374,6 +9600,15 @@ msgstr "http://www.mandrakesoft.com/sales/contact"
msgid "Installing packages..."
msgstr "Instaliram pakete..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Molimo izvrĹĄite logout i zatim koristitite Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Molimo ponovo se prijavite na %s radi aktiviranja izmjena"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -9382,6 +9617,160 @@ msgstr ""
"Ne mogu čitati vašu tabelu particija, previše je oštećena za mene :(\n"
"Pokušaću izbrisati loše particije"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Premještanje konfiguracije štamapča"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Server baze podataka"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Server baze podataka"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS server"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS server"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Dodaj korisnika"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP klijent"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Pomoć"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Nije konektovan"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "ObriĹĄi"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Sve izabrano"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Dodaj korisnika"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "DHCP klijent"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "PodeĹĄavam..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "rekonfiguriĹĄi"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Molimo ubacite boot disketu koja je upotrebljena u jedinicu %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Nema pogodne disketne jedinice"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "GreĹĄka!"
@@ -9434,6 +9823,11 @@ msgstr ""
"Molimo izaberite za svaki korak da li ćete ga ponoviti kao i u vašoj "
"instalaciji ili će se obaviti ručno"
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Pravim auto instalacijsku disketu"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -9446,12 +9840,12 @@ msgstr ""
"\n"
"Parametri automatske instalacije su dostupni u odjeljcima lijevo"
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Čestitamo!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9459,28 +9853,19 @@ msgstr ""
"Disketa je uspjeĹĄno napravljena.\n"
"Sada moĹžete ponoviti vaĹĄu instalaciju."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr "Auto instalacija"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr "Dodaj stavku"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr "Ukloniti zadnju stavku"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
@@ -9490,7 +9875,7 @@ msgstr ""
" DrakBackup IzvjeĹĄtaj \n"
"\n"
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9502,19 +9887,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9526,63 +9899,87 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr "ukupno napredak"
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr "Backup-uj sistemske datoteke..."
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
msgstr "Datoteke backup-a hard diska..."
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
msgstr "Backup-uj korisničke datoteke..."
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr "Napredak backup-a hard diska..."
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
msgstr "Backup-uj ostale datoteke..."
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, fuzzy, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
"lista datoteka poslana putem FTPa : %s\n"
" "
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
+#, fuzzy
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
"\n"
"(!) problem sa FTP konekcijom: Nije bilo moguće poslati vaše backup datoteke "
"putem FTPa.\n"
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
msgstr "(!) GreĹĄka tokom slanja poĹĄte. \n"
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
msgstr "Izbor datoteka"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr "Izaberite datoteke ili direktorije i kliknite na 'Dodaj'"
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -9590,25 +9987,25 @@ msgstr ""
"\n"
"Molimo uključite sve potrebne opcije.\n"
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Ove opcije mogu spasiti ili vratiti sve datoteke u vaĹĄem /etc direktoriju.\n"
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr "Backup sistemskih datoteka. ( /etc direktorij )"
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr "Koristi inkrementalni backup (nemoj prebrisati stare backupe)"
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Zaobiđi kritične datoteke (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -9616,83 +10013,77 @@ msgstr ""
"Sa ovom opcijom bićete u mogućnosti da vratite bilo koju\n"
" verziju vaĹĄeg /etc direktorija."
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
msgstr "Molimo izaberite sve korisnike koje želite uključiti u vaš backup."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr "Ne uključuj spremnik web preglednika"
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Koristi inkrementalni backup (nemoj prebrisati stare backupe)"
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
msgstr "Ukloni izabrano"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr "Korisnici"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
msgstr "Koristi FTP vezu za backup"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
msgstr "Molimo unesite ime računara ili IP."
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
"Molimo unesite direktorij za\n"
" smještaj backupa na ovom računaru."
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
msgstr "Molimo unesite vaĹĄ login"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
msgstr "Molimo unesite vaĹĄu ĹĄifru"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
msgstr "Zapamti ovu ĹĄifru"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "FTP konekcija"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Sigurna konekcija"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr "Koristi CD/DVDROM za backup"
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
msgstr "Molimo izaberite vaĹĄ CD prostor"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
msgstr "Molim uključite ako koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr "Molim uključite ako želite obrisati vaš CDRW prije"
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
@@ -9700,7 +10091,7 @@ msgstr ""
"Molim izaberite ako želite uključiti\n"
" instalacijski boot na CDu."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -9708,16 +10099,21 @@ msgstr ""
"Molim unesite naziv uređaja vašeg CD Writera\n"
" npr: 0,1,0"
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
msgstr "Koristi traku za backup"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr "Molim unesite ime uređaja kojeg ćete koristiti za backup"
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Molim uključite ako želite obrisati vaš CDRW prije"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -9725,51 +10121,57 @@ msgstr ""
"Molim unesite maksimalnu veličinu\n"
" dozvoljenu za Draxbackup"
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
+#: ../../standalone/drakbackup_.c:1497
+#, fuzzy
+msgid "Please enter the directory to save to:"
msgstr "Molimo unesite direktorij za spasiti:"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
msgstr "Koristi quotu za backup datoteke."
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
msgstr "MreĹža"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
-msgstr "CDROM / DVDROM"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr "HardDrive / NFS"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Tip"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr "svakog sata"
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr "dnevno"
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr "sedmično"
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr "mjesečno"
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
msgstr "Koristi demon"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -9777,7 +10179,7 @@ msgstr ""
"Izaberite vremenski interval\n"
"između svakog backupa"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
@@ -9785,71 +10187,67 @@ msgstr ""
"Molim izaberite medij\n"
"za backup."
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Koristi hard disk sa demonom"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "Koristi FTP sa demonom"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+#, fuzzy
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr "Molim budite sigurni da je cron demon aktiviran u vaĹĄim servisima."
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr "PoĹĄalji mail izvjeĹĄtaj nakon svakog backupa na :"
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "Ĺ ta"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "Gdje"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "Kada"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
msgstr "ViĹĄe opcija"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
msgstr "PodeĹĄavanje Drakbackup-a"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
msgstr "Molimo izaberite gdje Ĺželite backupovati"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr "na hard disk"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr "preko mreĹže"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
msgstr "Molim izaberite ĹĄta Ĺželite backupovati"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
msgstr "Backup sistema"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr "Backup korisnika"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr "Ručno izaberite korisnika"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
@@ -9857,7 +10255,7 @@ msgstr ""
"\n"
"Izvori backup-a: \n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
@@ -9865,7 +10263,7 @@ msgstr ""
"\n"
"- sistemske datoteke:\n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
@@ -9873,7 +10271,7 @@ msgstr ""
"\n"
"- korisničke datoteke:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
@@ -9881,7 +10279,7 @@ msgstr ""
"\n"
"- ostale datoteke:\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
@@ -9890,16 +10288,45 @@ msgstr ""
"\n"
"- spasi na hard disku u direktoriju : %s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Uređaj miša: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"- spasi na FTPu na računaru : %s\n"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
"\n"
"- spasi na FTPu na računaru : %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -9908,7 +10335,7 @@ msgstr ""
"\t\t korisničko ime: %s\n"
"\t\t u direktoriju: %s \n"
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
@@ -9916,19 +10343,19 @@ msgstr ""
"\n"
"- Opcije:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr "\tNe uključuj sistemske datoteke\n"
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr "\tBackupi koriste tar i bzip2\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr "\tBackupi koriste tar i gzip\n"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
@@ -9937,27 +10364,41 @@ msgstr ""
"\n"
"- Demon (%s) uključuje :\n"
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr "\t-Hard disk.\n"
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr "\t-MreĹžu preko FTPa.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr "\t-MreĹžu preko SSH.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t-MreĹžu preko FTPa.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t-MreĹžu preko FTPa.\n"
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Bez podešavanja, molim kliknite na Čarobnjak ili Napredno.\n"
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
@@ -9965,7 +10406,7 @@ msgstr ""
"Lista podataka za vraćanje:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
@@ -9973,131 +10414,134 @@ msgstr ""
"Lista oštećenih podataka:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
msgid "Please uncheck or remove it on next time."
msgstr "Molimo isključite ili pobrišite ga idući put."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr "Backup datoteke su oštećene"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr " Svi vaĹĄi izabrani podaci su "
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr " uspjeĹĄno spaĹĄeni na %s "
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
msgid " Restore Configuration "
msgstr " Vrati konfiguraciju "
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr "OK za vraćanje ostalih datoteka."
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Lista korisnika za vraćanje (samo najsvježiji datum po korisniku je značajan)"
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
msgstr "Vrati sistemske datoteke prije:"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
msgid "please choose the date to restore"
msgstr "molim izaberite datum za vraćanje"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
msgstr "Koristi hard disk za backup"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+msgid "Please enter the directory to save:"
+msgstr "Molimo unesite direktorij za spasiti:"
+
+#: ../../standalone/drakbackup_.c:2416
+msgid "FTP Connection"
+msgstr "FTP konekcija"
+
+#: ../../standalone/drakbackup_.c:2424
+msgid "Secure Connection"
+msgstr "Sigurna konekcija"
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
msgstr "Vrati sa hard diska"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr "Molim unesite direktorij gdje su smjeĹĄteni backupi"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
msgstr "Izaberite drugi medij za vraćanje"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
msgid "Other Media"
msgstr "Drugi medij"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
msgid "Restore system"
msgstr "Vrati sistem"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
msgstr "Vrati korisnike"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
msgstr "Vrati ostalo"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr "izaberite stazu za vraćanje (umjesto / )"
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Izvrši novi backup prije vraćanja (samo za inkrementalni backup.)"
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr "Pobriši korisničke direktorije prije vraćanja."
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr "Vrati sve backupe"
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
msgid "Custom Restore"
msgstr "Ručno vraćanje"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Pomoć"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "Prethodni"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "Spasi"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
msgstr "Izgradi backup"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
msgstr "Vrati"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "Sljedeći"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -10105,7 +10549,7 @@ msgstr ""
"Molimo pokrenite Izgradi backup prije vraćanja...\n"
" ili provjerite da li je put za spaĹĄavanje ispravan."
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
@@ -10115,31 +10559,35 @@ msgstr ""
" vaĹĄ mail izvjeĹĄtaj nije poslan\n"
" Molim podesite sendmail"
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Lista paketa za instalaciju"
+#: ../../standalone/drakbackup_.c:2933
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Sljedeći paketi će biti instalirani"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
+#, fuzzy
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
"GreĹĄka tokom slanja datoteke preko FTPa.\n"
" Molimo ispravite vaĹĄu FTP konfiguraciju."
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
msgstr "Molim izaberite podatke za vraćanje..."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
msgstr "Molim izaberite medij za backup..."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
msgstr "Molim izaberite podatke za backup..."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10147,75 +10595,75 @@ msgstr ""
"Nije pronađena konfiguraciona datoteka \n"
"molim kliknite na Čarobnjak ili Napredno."
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr "U izradi ... molim sačekajte."
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
msgid "Backup system files"
msgstr "Backup sistemskih datoteka"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
msgid "Backup user files"
msgstr "Backup korisničkih datoteka"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
msgid "Backup other files"
msgstr "Backup ostalih datoteka"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr "Ukupan napredak"
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr "slanje datoteka putem FTPa"
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
msgid "Sending files..."
msgstr "Ĺ aljem datoteke..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr "Lista podataka koji će biti smješteni na CDROM."
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
msgid "Please enter the cd writer speed"
msgstr "Molim unesite brzinu cd pisača"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr "Molim unesite naziv uređaja vašeg CD pisača (ex: 0,1,0)"
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
msgstr "Molim uključite ako želite imati instalacioni boot na vašem CDu."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
msgid "Backup Now from configuration file"
msgstr "Backup-uj sada iz konfiguracijske datoteke"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
msgid "View Backup Configuration."
msgstr "Pogledaj postavke backupa."
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
msgid "Wizard Configuration"
msgstr "Čarobnjak za podešavanje"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
msgid "Advanced Configuration"
msgstr "Napredno podeĹĄavanje"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
msgstr "Backup-uj sada"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -10275,7 +10723,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10289,7 +10737,7 @@ msgstr ""
" podesiti myhostname ili mydomain u /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -10367,7 +10815,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -10419,13 +10867,18 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10455,7 +10908,7 @@ msgstr ""
" along with this program; if not, write to the Free Software\n"
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -10531,7 +10984,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -10549,7 +11002,7 @@ msgstr ""
"drive before sending it to the server.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10571,7 +11024,7 @@ msgstr ""
"data. It is important to be careful and not modify the \n"
"backup data files by hand.\n"
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -10650,99 +11103,530 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Instalacija %sa nije uspjela. Javila se sljedeća greška:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Alati za konzolu"
+
+#: ../../standalone/drakbug_.c:53
+#, fuzzy
+msgid "HardDrake"
+msgstr "na hard disk"
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "MandrakeConsulting"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "MandrakeStore"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "MiĹĄ"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Udaljeni štampač"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Share naziv"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Printerdrake"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Čarobnjak za podešavanje mreže"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Autentikacija"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Izbor paketa"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Molimo sačekajte"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Post Uninstall"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "port"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Screenshotovi će biti dostupni nakon što instalirate u %s"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "PodeĹĄavanje mreĹže (%d adaptera)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profil:"
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "BriĹĄi profil..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Profil za brisanje:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Novi profil..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Naziv profila koji će biti kreiran (novi profil je kreiran kao kopija "
+"postojećeg) :"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Hostname: "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Pristup Internetu"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Tip:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Gateway:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Interfejs:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Status:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "Molim sačekajte"
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Podesi Internet pristup..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "PodeĹĄavanje LANa"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Drajver"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Interfejs"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protokol"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Status"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Podesi Lokalnu mreĹžu..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "Kliknite ovdje za pokretanje čarobnjaka ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Čarobnjak..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Primjeni"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Molimo sačekajte... Primjenjujem konfiguraciju"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Konektovan"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Nije konektovan"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Konektuj se..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Prekini konekciju..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+"Upozorenje, otkrivena je druga Internet konekcija, moĹžda preko vaĹĄe mreĹže"
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Nemate nijedan podeĹĄen interfejs.\n"
+"Podesite ih prvo klikajući na 'Podesi'"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "PodeĹĄavanje LANa"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Adapter %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Boot protokol"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Pokrenut na bootu"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP klijent"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "pokreni sada"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "zaustavi sada"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Interfejs joĹĄ nije podeĹĄen.\n"
+"Pokrenite čarobnjak za podešavanje u glavnom prozoru"
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Nemate nijednu Internet konekciju.\n"
+"Napravite jednu klikajući na 'Podesi'"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "PodeĹĄavanje Internet konekcije"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "PodeĹĄavanje Internet konekcije"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Tip konekcije: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parametri"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Gateway"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Ethernet kartica"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP klijent"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "koristi: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Naziv modula"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Veličina"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "Kreiranje boot diskete"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "Podrazumijevano"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "DrakFloppy greĹĄka: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "Kernel verzija"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Općenito"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Ekspert područje"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrd opcionalni argumenti"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Dodaj modul"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "prisili"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "ako je potrebno"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "izostavi scsi module"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "izostavi raid module"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Ukloni modul"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Ispis"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Napravi disk"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Provjeri da li je medij prisutan za ovaj uredjaj %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"Nema medija za ovaj uredjaj %s.\n"
+"Molim ubacite ga."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Ne mogu izvrsiti fork: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr "PretraĹži instalirane fontove"
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr "Isključi instalirane fontove"
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr "obradi sve fontove"
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
msgid "no fonts found"
msgstr "nije pronađen nijedan font"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "gotovo"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr "ne mogu naći nijedan font na montiranim particijama"
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr "Ponovo izaberi ispravne fontove"
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr "ne mogu naći nijedan font.\n"
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr "PretraĹži fontove na listi instaliranih"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr "Kopiranje fontova"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
msgid "True Type fonts installation"
msgstr "Instalacija True Type fontova"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr "molimo sačekajte tokom ttmkfdir..."
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr "ZavrĹĄena True Type instalacija"
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr "Konverzija fontova"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr "type1inst kreiranje"
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr "Ghostscript referenciranje"
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr "ttf fonts konverzija"
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr "pfm fonts konverzija"
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr "Onemogući privremene datoteke"
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr "Restartuj XFS"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr "Onemogući datoteke fontova"
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
msgid "xfs restart"
msgstr "restart xfs-a"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10756,107 +11640,107 @@ msgstr ""
"-Možete instalirati fontove koristeći uobičajen način. U rijetkim "
"slučajevima, neispravni fontovi mogu zaglaviti vaš X Server."
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
msgid "Fonts Importation"
msgstr "Uvoz fontova"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr "Preuzmi fontove iz Windowsa"
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr "Deinstaliraj fontove"
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Napredne opcije"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
msgstr "Lista fontova"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
msgid "Choose the applications that will support the fonts :"
msgstr "Izaberite aplikacije koje će podržavati fontove :"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
msgstr "Razni štampači"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr "Izaberite font datoteku ili direktorij i kliknite na 'Dodaj'"
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
msgstr "Lista instalacije"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr "kliknite ovdje ako ste sigurni."
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr "ovdje ako ne."
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr "NiĹĄta izabrano"
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
msgid "Selected All"
msgstr "Sve izabrano"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
msgstr "PobriĹĄi listu"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr "Probni inicijali"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
msgstr "Kopiraj fontove na sistem"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr "Instaliraj i konvertuj fontove"
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
msgid "Post Install"
msgstr "Post Install"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
msgstr "PobriĹĄi fontove sa mog sistema"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
msgid "Post Uninstall"
msgstr "Post Uninstall"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Dijeljenje Internet konekcije"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Dijeljenje Internet konekcije je trenutno aktivno"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10868,31 +11752,31 @@ msgstr ""
"\n"
"Ĺ ta Ĺželite uraditi?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "isključi"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "otkaĹži"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "rekonfiguriĹĄi"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Isključujem servere..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Dijeljenje Internet konekcije je sada isključeno."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Dijeljenje Internet konekcije je trenutno neaktivno"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10904,19 +11788,19 @@ msgstr ""
"\n"
"Ĺ ta Ĺželite uraditi?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "uključi"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Uključujem servere..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Dijeljenje Internet konekcije je sada uključeno."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10932,21 +11816,21 @@ msgstr ""
"Napomena: potreban vam je poseban MreĹžni adapter da biste podesili Lokalnu "
"mreĹžu (LAN)."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interfejs %s (koristeći modul %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Interfejs %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Nema mreĹžnog adaptera na vaĹĄem sistemu!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10954,11 +11838,11 @@ msgstr ""
"Na vašem sistemu nije pronađen nijedan ethernet mrežni adapter. Molimo "
"pokrenite alat za podeĹĄavanje hardware-a."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "MreĹžni interface"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10973,18 +11857,18 @@ msgstr ""
"\n"
"Sada ću podesiti vašu Lokalnu mrežu sa ovim adapterom."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Molimo izaberite koji mrežni adapter će biti spojen na vašu Lokalnu mrežu."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr "Mrežni interfejs je već podešen"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10999,15 +11883,15 @@ msgstr ""
"\n"
"To možete obaviti ručno, ali morate znati šta radite."
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr "Automatsko ponovno podeĹĄavanje"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr "PrikaĹži postavke trenutnog interfejsa"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11024,7 +11908,7 @@ msgstr ""
"IP atributi: %s\n"
"Drajver: %s"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
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 C-Class Network that "
@@ -11043,33 +11927,33 @@ msgstr ""
"Ako ne, mogu ponovo podesiti vaĹĄ interfejs i podesiti DHCP server za vas.\n"
"\n"
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr "Lokalna mreĹža C klase"
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr "IP adresa (ovog) DHCP servera"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr "Ponovo podesi interfejs i DHCP server"
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Lokalna mreĹža se ne zavrĹĄava sa `.0', izlazim."
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Potencijalan konflikt LAN adresa pronađen u trenutnoj konfiguraciji %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Otkrivena konfiguracija firewalla!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -11077,20 +11961,20 @@ msgstr ""
"Upozorenje! Pronađena je postojeća konfiguracija firewalla. Možda će biti "
"potrebno neko ručno podešavanje nakon instalacije."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "PodeĹĄavam..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Podešavam skripte, instaliram software, pokrećem servere..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Problemi tokom instaliranja paketa %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11100,23 +11984,23 @@ msgstr ""
"Sada možete dijeliti Internet konekciju sa ostalim računarima na vašoj "
"lokalnoj mreži, koristeći automatsku mrežnu konfiguraciju (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "Podešavanje je već završeno, ali je trenutno isključeno."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Podešavanje je već završeno i trenutno je uključeno."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Dijeljenje Internet konekcije nije nikad podeĹĄeno."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "PodeĹĄavanje dijeljenja Internet konekcije"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11131,215 +12015,6 @@ msgstr ""
"\n"
"Kliknite na Podesi da pokrenete čarobnjak."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "PodeĹĄavanje mreĹže (%d adaptera)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil:"
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "BriĹĄi profil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Profil za brisanje:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Novi profil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Naziv profila koji će biti kreiran (novi profil je kreiran kao kopija "
-"postojećeg) :"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Hostname: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Pristup Internetu"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tip:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Interfejs:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Molim sačekajte"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Podesi Internet pristup..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "PodeĹĄavanje LANa"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Drajver"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interfejs"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokol"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Status"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Podesi Lokalnu mreĹžu..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Kliknite ovdje za pokretanje čarobnjaka ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Čarobnjak..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Primjeni"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Molimo sačekajte... Primjenjujem konfiguraciju"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Konektovan"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Nije konektovan"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Konektuj se..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Prekini konekciju..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Upozorenje, otkrivena je druga Internet konekcija, moĹžda preko vaĹĄe mreĹže"
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Nemate nijedan podeĹĄen interfejs.\n"
-"Podesite ih prvo klikajući na 'Podesi'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "PodeĹĄavanje LANa"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adapter %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Boot protokol"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Pokrenut na bootu"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP klijent"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "pokreni sada"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "zaustavi sada"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Interfejs joĹĄ nije podeĹĄen.\n"
-"Pokrenite čarobnjak za podešavanje u glavnom prozoru"
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Nemate nijednu Internet konekciju.\n"
-"Napravite jednu klikajući na 'Podesi'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "PodeĹĄavanje Internet konekcije"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "PodeĹĄavanje Internet konekcije"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Tip konekcije: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametri"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernet kartica"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP klijent"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "PodeĹĄavanje nivoa sigurnosti"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Kontrolni centar"
@@ -11348,63 +12023,85 @@ msgstr "Kontrolni centar"
msgid "Choose the tool you want to use"
msgstr "Izaberite alat koji Ĺželite koristiti"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\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 ""
+
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
msgstr "Kanada (kablovska)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+#, fuzzy
+msgid "USA (broadcast)"
msgstr "USA (bcast)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr "USA (kablovska)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr "USA (cable-hrc)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "China (broadcast)"
msgstr "Kina (bcast)"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "Japan (broadcast)"
msgstr "Japan (bcast)"
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr "Japan (kablovska)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
msgstr "Istočna Evropa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Francuska"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
msgstr "Irska"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
msgstr "Zapadna Evropa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
msgstr "Australija"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr "Novi Zeland"
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr "JuĹžna Afrika"
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr "Argentina"
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
@@ -11412,27 +12109,44 @@ msgstr ""
"Molim,\n"
"unesite vaĹĄ tv standard i drĹžavu"
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr "TV standard :"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr "Oblast :"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr "Pretraga TV kanala je u toku ..."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr "TraĹžim TV kanale"
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "DoĹĄlo je do greĹĄke kod instaliranja paketa:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -11477,7 +12191,7 @@ msgstr "Ne mogu da pokrenem live upgrade !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr "Izmjena je napravljena, ali da bi stupila na snagu morate se odjaviti"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -11487,7 +12201,7 @@ msgstr "PrikaĹži samo za izabrani dan"
#: ../../standalone/logdrake_.c:102
msgid "/File/_New"
-msgstr "/File/_New"
+msgstr "/Datoteka/_Nova"
#: ../../standalone/logdrake_.c:102
msgid "<control>N"
@@ -11511,7 +12225,7 @@ msgstr "<control>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
-msgstr "/Datoteaka/Sačuvaj _kao"
+msgstr "/_Datoteka/Sačuvaj K_ao"
#: ../../standalone/logdrake_.c:106
msgid "/File/-"
@@ -11525,10 +12239,6 @@ msgstr "/_Opcije"
msgid "/Options/Test"
msgstr "/Opcije/Test"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Pomoć"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr "/Pomoć/_O programu..."
@@ -11589,7 +12299,7 @@ msgstr "Kalendar"
msgid "Content of the file"
msgstr "SadrĹžaj datoteke"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr "Mail/SMS obavijest"
@@ -11598,11 +12308,11 @@ msgstr "Mail/SMS obavijest"
msgid "please wait, parsing file: %s"
msgstr "molim sačekajte, parsiram datoteku: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
msgstr "PodeĹĄavanje Mail/SMS obavijesti"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
@@ -11612,65 +12322,97 @@ msgstr ""
"\n"
"Ovdje moĹžete podesiti sistem obavjeĹĄtavanja.\n"
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Ime domena"
#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
+#, fuzzy
+msgid "Ftp Server"
+msgstr "NIS server"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Postfix mail server, Inn news server"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS server"
#: ../../standalone/logdrake_.c:422
+#, fuzzy
+msgid "SSH Server"
+msgstr "NIS server"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Servisi"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Printer Server"
+
+#: ../../standalone/logdrake_.c:431
msgid "service setting"
msgstr "postavke servisa"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
"MoĹžete primiti obavjeĹĄtenje ako neki od izabranih servisa prestane raditi"
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
msgstr "postavka opterećenja"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
"Primićete upozorenje ako je opterećenje (system load) veće od ove vrijednosti"
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
msgstr "postavka upozorenja"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr "Podesite način na koji će vas sistem obavijestiti"
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Sačuvaj kao..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Molimo izaberite vrstu vaĹĄeg miĹĄa."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "nije pronađen serial_usb\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Emuliraj treće dugme?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Čitam podatke o štampaču..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "Prepoznajem uređaje ..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -11716,6 +12458,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "PodeĹĄavanje firewalla"
@@ -12120,10 +12874,6 @@ msgid "Multimedia - Sound"
msgstr "Multimedija - Zvuk"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Korisni programi"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Dokumentacija"
@@ -12227,10 +12977,6 @@ msgstr ""
"pregledanje Weba"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arhiviranje, emulatori, nadzor"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Lične finansije"
@@ -12278,59 +13024,207 @@ msgstr "Multimedija - PrĹženje CDa"
msgid "Scientific Workstation"
msgstr "Znanstvena radna stanica"
-#~ msgid "About"
-#~ msgstr "O programu"
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "fsck nije uspio, izlazni kod %d ili signal %d"
+
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Identifikacija grafičke karte: %s\n"
-#~ msgid " Help "
-#~ msgstr " Pomoć "
+#~ msgid "Choose options for server"
+#~ msgstr "Izaberite opcije za server"
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-2,*-r-*"
+#~ msgid "Monitor not configured"
+#~ msgstr "Monitor nije konfigurisan"
+
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Grafička karta još uvijek nije konfigurisana"
+
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Rezolucije joĹĄ nisu odabrane"
#~ msgid ""
-#~ "Can't access kernel modules corresponding to your kernel (file %s is "
-#~ "missing)"
+#~ "\n"
+#~ "try to change some parameters"
#~ msgstr ""
-#~ "Ne mogu pristupiti kernel modulima koji odgovaraju vaĹĄem kernelu "
-#~ "(nedostaje datoteka %s)"
+#~ "\n"
+#~ "probajte izmjeniti neke parametre"
+
+#~ msgid "An error occurred:"
+#~ msgstr "DoĹĄlo je do greĹĄke"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "NapuĹĄtam za %d sekundi"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Da li je ovo ispravna vrijednost?"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "DoĹĄlo je do greĹĄke, probajte izmjeniti neke parametre"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 server: %s"
+
+#~ msgid "Show all"
+#~ msgstr "PrikaĹži sve"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Pripremam X-Window konfiguraciju"
+
+#~ msgid "What do you want to do?"
+#~ msgstr "Šta želite učiniti?"
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
+#~ msgid "Change Monitor"
+#~ msgstr "Izmjena Monitora"
-#~ msgid "None"
-#~ msgstr "Nijedan"
+#~ msgid "Change Graphics card"
+#~ msgstr "Izmjena Grafičke kartice"
-#~ msgid "Choose a default printer!"
-#~ msgstr "Izaberite default štampač!"
+#~ msgid "Change Server options"
+#~ msgstr "Izmjena Server opcija"
+
+#~ msgid "Change Resolution"
+#~ msgstr "Izmjena Rezolucije"
+
+#~ msgid "Show information"
+#~ msgstr "PrikaĹži informacije"
+
+#~ msgid "Test again"
+#~ msgstr "Testiraj ponovo"
#~ msgid ""
-#~ "With remote CUPS servers, you do not have to configure any printer here; "
-#~ "CUPS servers inform your machine automatically about their printers. All "
-#~ "printers known to your machine currently are listed in the \"Default "
-#~ "printer\" field. Choose the default printer for your machine there and "
-#~ "click the \"Apply/Re-read printers\" button. Click the same button to "
-#~ "refresh the list (it can take up to 30 seconds after the start of CUPS "
-#~ "until all remote printers are visible). When your CUPS server is in a "
-#~ "different network, you have to give the CUPS server IP address and "
-#~ "optionally the port number to get the printer information from the "
-#~ "server, otherwise leave these fields blank."
+#~ "Your HP multi-function device was configured automatically to be able to "
+#~ "scan. Now you can scan from the command line with \"ptal-hp %s scan ..."
+#~ "\". Scanning via a graphical interface or from the GIMP is not supported "
+#~ "yet for your device. More information you will find in the \"/usr/share/"
+#~ "doc/hpoj-0.8/ptal-hp-scan.html\" file on your system. If you have an HP "
+#~ "LaserJet 1100 or 1200 you can only scan when you have the scanner option "
+#~ "installed.\n"
+#~ "\n"
+#~ "Do not use \"scannerdrake\" for this device!"
#~ msgstr ""
-#~ "Sa udaljenim CUPS serverom, ne morate podeĹĄavati nijedan\n"
-#~ "štampač ovdje; CUPS serveri obavještavaju vaš računar automatski\n"
-#~ "o svojim štampačima. Svi štampači koji su trenutno poznati vašem\n"
-#~ "računaru su izlistani u polju \"Podrazumjevani štampač\". Izaberite "
-#~ "podrazumjevani\n"
-#~ "štampač za vaš računar ovdje i kliknite na dugme \"Primjeni/Ponovo\n"
-#~ "pročitaj štampače\". Kliknite na isto dugme za osvježavanje liste (može\n"
-#~ "trajati do 30 sekundi nakon pokretanja CUPSa dok svi udaljeni štampači\n"
-#~ "ne postanu vidljivi). Kada je vaš CUPS server u različitoj mreži, morate "
-#~ "dati\n"
-#~ "IP adresu CUPS servera i eventualno broj porta kako bi se dobavile "
-#~ "informacije\n"
-#~ "o štampačima sa servera, inače ostavite ova polja praznim."
-
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Primjeni/Ponovo pročitaj štampače"
-
-#~ msgid "Configure printing system"
-#~ msgstr "PodeĹĄavanje sistema ĹĄtampe"
+#~ "Vaš HP višenamjenski uređaj je automatski konfigurisan kako bi mogao "
+#~ "skenirati. Sada možete skenirati sa komandne linije pomoću komande \"ptal-"
+#~ "hp %s scan ...\". Skeniranje putem grafičkog interfejsa ili iz GIMPa još "
+#~ "nije podržano za vaš uređaj. Više informacija možete naći u datoteci\"/"
+#~ "usr/share/doc/hpoj-0.8/ptal-hp-scan.html\" na vašem računaru. Ako imate "
+#~ "HP LaserJet 1100 ili 1200, moĹžete skenirati samo ako ste instalirali "
+#~ "opciju za skeniranje.\n"
+#~ "\n"
+#~ "Nemojte koristiti \"scannerdrake\" za ovaj uređaj!"
+
+#~ msgid "Use Hard Drive with daemon"
+#~ msgstr "Koristi hard disk sa demonom"
+
+#~ msgid "Use FTP with daemon"
+#~ msgstr "Koristi FTP sa demonom"
+
+#~ msgid "Package List to Install"
+#~ msgstr "Lista paketa za instalaciju"
+
+#~ msgid "proftpd"
+#~ msgstr "proftpd"
+
+#~ msgid "sshd"
+#~ msgstr "sshd"
+
+#~ msgid "webmin"
+#~ msgstr "webmin"
+
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
+
+#~ msgid "Setting security level"
+#~ msgstr "PodeĹĄavanje nivoa sigurnosti"
+
+#~ msgid "Graphics card"
+#~ msgstr "Grafička karta"
+
+#~ msgid "Select a graphics card"
+#~ msgstr "Izaberite grafičku kartu"
+
+#~ msgid "Choose a X driver"
+#~ msgstr "Izaberite X drajver"
+
+#~ msgid "X driver"
+#~ msgstr "X drajver"
+
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "Upozorenje: testiranje ove grafičke karte može zalediti računar"
+
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Standardna VGA, 640x480 na 60 Hz"
+
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 na 56 Hz"
+
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514 Kompatibilna, 1024x768 na 87 Hz sa preplitanjem (bez 800x600)"
+
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 na 87 Hz sa preplitanjem, 800x600 na 56 Hz"
+
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Extended Super VGA, 800x600 na 60 Hz, 640x480 na 72 Hz"
+
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Non-Interlaced SVGA, 1024x768 na 60 Hz, 800x600 na 72 Hz"
+
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "High Frequency SVGA, 1024x768 na 70 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Multi-frequency koja može postići 1280x1024 na 60 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Multi-frequency koja može postići 1280x1024 na 74 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Multi-frequency koja može postići 1280x1024 na 76 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Monitor koji može postići 1600x1200 na 70 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Monitor koji može postići 1600x1200 na 76 Hz"
+
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Ukupna veličina grupa koje ste izabrali je otprilike %d MB.\n"
+
+#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
+#~ msgstr ""
+#~ "Ako želite da instalirate manje od ove veličine,\n"
+#~ "izaberite procenat paketa koje Ĺželite instalirati.\n"
+#~ "\n"
+#~ "Nizak procenat će instalirati samo one najbitnije pakete;\n"
+#~ "procenat 100%% će instalirati sve izabrane pakete."
+
+#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
+#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
+#~ msgstr ""
+#~ "Na disku imate mjesta samo za %d%% ovih paketa.\n"
+#~ "\n"
+#~ "Ako Ĺželite da instalirate manje od ovoga,\n"
+#~ "izaberite procenat paketa koje Ĺželite da instalirate.\n"
+#~ "Nizak procenat će instalirati samo one najbitnije pakete;\n"
+#~ "procenat %d%% će instalirati najveći mogući broj paketa."
+
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr ""
+#~ "Na idućem koraku ćete biti u mogućnosti da ih izaberete nešto preciznije."
+
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Procenat paketa za instalaciju"
+
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Izaberite nivo sigurnosti"
diff --git a/perl-install/share/po/ca.po b/perl-install/share/po/ca.po
index 0663d463f..a28b6db58 100644
--- a/perl-install/share/po/ca.po
+++ b/perl-install/share/po/ca.po
@@ -1,37 +1,67 @@
-# drakX translation to Catalan
-# Copyright (C) 1999 Free Software Foundation, Inc.
-# Copyright (c) 1999 MandrakeSoft
-# Copyright (c) 1999-2001 Softcatalŕ
+# drakbootdisk translation to Catalan.
+# Copyright (C) 2000 Free Software Foundation, Inc.
+# Softcatala, linux@softcatala.org, 2000-2001
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2001-04-10 23:29+0200\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2001-10-28 01:14+0200\n"
"Last-Translator: Softcatalŕ <traddrake@softcatala.org>\n"
-"Language-Team: Catalan\n"
+"Language-Team: Catalan <info@softcatala.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Configura tots els capçals independentment"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Utilitza l'extensió Xinerama"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Configura només la targeta \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB o més"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Escolliu un servidor X"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "Servidor X"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Configuració Multi-head"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -39,43 +69,44 @@ msgstr ""
"El vostre sistema permet l'ús d'una configuració de múltiples capçals.\n"
"Quč voleu fer?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Targeta grŕfica"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Seleccioneu la mida de memňria de la vostra targeta grŕfica"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Seleccioneu una targeta grŕfica"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "Configuració de l'XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Escolliu un servidor X"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Quina configuració de l'XFree voleu tenir?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "Servidor X"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Configura tots els capçals independentment"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Escolliu un servidor X"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Utilitza l'extensió Xinerama"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "Servidor X"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Configura només la targeta \"%s\" (%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Quina configuració de l'XFree voleu tenir?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "Xfree %s amb acceleració 3D de maquinari"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -85,34 +116,18 @@ msgstr ""
"l'Xfree %s.\n"
"L'XFree %s, que pot tenir un suport millor en 2D, suporta la vostra targeta."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"La vostra targeta pot tenir acceleració 3D de maquinari amb l'Xfree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "Xfree %s amb acceleració 3D de maquinari"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"La vostra targeta pot tenir acceleració 3D de maquinari amb l'Xfree %s,\n"
-"TINGUEU EN COMPTE QUE ES TRACTA D'UN SUPORT EXPERIMENTAL; L'ORDINADOR ES POT "
-"PENJAR."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s amb acceleració 3D de maquinari EXPERIMENTAL"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -125,31 +140,58 @@ msgstr ""
"PENJAR.\n"
"L'XFree %s, que pot tenir un suport millor en 2D, suporta la vostra targeta."
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
+"La vostra targeta pot tenir acceleració 3D de maquinari amb l'Xfree %s,\n"
+"TINGUEU EN COMPTE QUE ES TRACTA D'UN SUPORT EXPERIMENTAL; L'ORDINADOR ES POT "
+"PENJAR."
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Configuració de l'XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Seleccioneu la mida de memňria de la vostra targeta grŕfica"
+#: ../../Xconfig/card.pm_.c:445
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Escolliu les opcions per al servidor"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Voleu conservar els canvis?La configuració actual és:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Escolliu un monitor"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Personalitzada"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "General"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Desfés"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -172,516 +214,328 @@ msgstr ""
"el podríeu fer malbé.\n"
"En cas de dubte, sigueu conservador amb aquest parŕmetre."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Velocitat de refresc horitzontal"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Velocitat de refresc vertical"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "El monitor no estŕ configurat"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "La targeta grŕfica encara no estŕ configurada"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Encara no s'han escollit les resolucions"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Voleu comprovar la configuració?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-"Avís: la comprovació d'aquesta targeta grŕfica pot penjar-vos l'ordinador"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Comprova la configuració"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 colors (8 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"intenteu canviar alguns parŕmetres"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32.768 colors (15 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "S'ha produďt un error:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65.536 colors (16 bits)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Sortida en %d segons"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 milions de colors (24 bits)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "És aquest el parŕmetre corrcte?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4.294 milions de colors (32 bits)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "S'ha produďt un error, intenteu canviar alguns parŕmetres"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Resolucions"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Resolució"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Escolliu la resolució i la profunditat de color"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Targeta grŕfica: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Servidor xFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Més"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Cancelˇla"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "D'acord"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Mode expert"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Mostra'ls tots"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Voleu comprovar la configuració?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Resolucions"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Comprova la configuració"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Disposició del teclat: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Tipus de ratolí: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Dispositiu del ratolí: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Sincronització horitzontal del monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Refresc vertical del monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Targeta grŕfica: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Targeta grŕfica: %s\n"
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Memňria grŕfica: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Profunditat del color: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Resolució: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Servidor xFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Controlador de l'xFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "S'estŕ preparant la configuració de l'X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Quč voleu fer?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Canvia el monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Canvia la targeta grŕfica"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Canvia les opcions del servidor"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Canvia la resolució"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Mostra la informació"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Torna-ho a comprovar"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Surt"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Voleu conservar els canvis?La configuració actual és:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X a l'inici"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Puc configurar el vostre ordinador de manera que executi X automŕticament "
"durant l'arrencada.\n"
"Voleu que X s'iniciď quan torneu a arrencar l'ordinador?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Si us plau, torneu a entrar a %s per activar els canvis"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Si us plau, sortiu i utilitzeu Ctrl-Alt-Enrere"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 colors (8 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32.768 colors (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65.536 colors (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milions de colors (24 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4.294 milions de colors (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-#, fuzzy
-msgid "16 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-#, fuzzy
-msgid "32 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-#, fuzzy
-msgid "64 MB or more"
-msgstr "16 MB o més"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "VGA estŕndard, 640x480 a 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 a 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Compatible 8514, 1024x768 a 87 Hz entrellaçada (no 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 a 87 Hz entrellaçada, 800x600 a 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Super VGA ampliada, 800x600 a 60 Hz, 640x480 a 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "SVGA no entrellaçada, 1024x768 a 60 Hz, 800x600 a 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "SVGA d'alta freqüčncia, 1024x768 a 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-freqüčncia que pot fer 1280x1024 a 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-freqüčncia que pot fer 1280x1024 a 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-freqüčncia que pot fer 1280x1024 a 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor que pot fer 1600x1200 a 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor que pot fer 1600x1200 a 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Primer sector de la partició d'arrencada"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Primer sector de la unitat (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "Instalˇlació del SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "On voleu instalˇlar el carregador d'arrencada?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "Instalˇlació del LILO/grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO amb menú de text"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO amb menú grŕfic"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Arrencada des de DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Opcions principals del carregador d'arrencada"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Carregador d'arrencada a utilitzar"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Instalˇlació del carregador d'arrencada"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Dispositiu d'arrencada"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (no funciona en BIOS antics)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Compacte"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "compacte"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Mode de vídeo"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Demora abans d'arrencar la imatge predeterminada"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Contrasenya"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Contrasenya (un altre cop)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Limita les opcions de la línia d'ordres"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "limita"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Buida /tmp en cada arrencada"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Mida exacta de la RAM, si cal (s'han trobat %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Habilita perfils múltiples"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Introduďu la mida de la RAM en Mb"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"L'opció ``Limita les opcions de la línia d'ordres'' no té cap ús sense una "
"contrasenya"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Si us plau, torneu-ho a intentar"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Les contrasenyes no coincideixen"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Missatge d'inicialització"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Demora de firmware obert"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Temps mŕxim d'arrencada del nucli"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Voleu habilitar l'arrencada des de CD?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Voleu habilitar l'arrencada des d'OF?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "OS per defecte?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -690,84 +544,84 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Aquestes són les diferents entrades.\n"
"Podeu afegir-ne algunes més o canviar-ne les existents."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Afegeix"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Fet"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
#, fuzzy
msgid "Modify"
msgstr "Modifica el RAID"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Quin tipus d'entrada voleu afegir?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Un altre SO (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Un altre SO (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Un altre SO (Windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Imatge"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Arrel"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Afegeix"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Lectura-escriptura"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Taula"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "No segur"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Etiqueta"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Predeterminat"
@@ -802,53 +656,75 @@ msgstr "Aquesta etiqueta ja estŕ en ús"
# #msgid "Found %s %s interfaces"
# #msgstr "S'han trobat interfícies %2$s %1$s"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, fuzzy, c-format
msgid "Found %s %s interfaces"
msgstr "S'han trobat interfícies %2$s %1$s"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "En teniu una altra?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Teniu alguna interfície %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "No"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Sí"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Mira la informació del maquinari"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "S'estŕ instalˇlant el programa de control per a la targeta %s %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(mňdul %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Ara podeu proporcionar les seves opcions per al mňdul %s.\n"
+"Les opcions estan amb el format ``nom=valor nom2=valor2 ...''.\n"
+"Per exemple, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Opcions del mňdul:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Quin programa de control %s he de provar?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -865,37 +741,15 @@ msgstr ""
"cerqui al vostre ordinador la informació que necessita? Aquesta recerca\n"
"podria blocar l'ordinador, perň aixň no causaria cap dany."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Exploració automŕtica"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Especifica les opcions"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Ara podeu proporcionar les seves opcions per al mňdul %s.\n"
-"Les opcions estan amb el format ``nom=valor nom2=valor2 ...''.\n"
-"Per exemple, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Opcions del mňdul:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -904,50 +758,55 @@ msgstr ""
"Ha fallat la cŕrrega del mňdul %s.\n"
"Voleu tornar-ho a intentar amb altres parŕmetres?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(ja s'ha afegit %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Aquesta contrasenya és massa senzilla"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Si us plau, introduďu un nom d'usuari"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"El nom d'usuari només pot contenir lletres en minúscula, números, `-' i `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Aquest nom d'usuari ja s'ha afegit"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Aquest nom d'usuari ja s'ha afegit"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Afegeix un usuari"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -956,32 +815,32 @@ msgstr ""
"Introduďu un usuari\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Accepta l'usuari"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Nom real"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Nom d'usuari"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Icona"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Entrada automŕtica"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -991,123 +850,103 @@ msgstr ""
"nom d'usuari.\n"
"Si no voleu utilitzar aquesta característica, feu clic al botó Cancelˇla."
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Escolliu l'usuari per omissió:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Escolliu el gestor de finestres per executar:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr "Si us plau, trieu un idioma per utilitzar."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr ""
"Podeu seleccionar altres idiomes, que quedaran disponibles després de la "
"instalˇlació"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Tots"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr "Afegeix un usuari"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Personalitzada"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr "S'estŕ iniciant el CUPS"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Quins paquets voleu instalˇlar"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Cancelˇla"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Benvinguts, crackers"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Pobre"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Estŕndard"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Alt"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Alt"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoic"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1118,7 +957,7 @@ msgstr ""
"d'utilitzar, perň també molt sensible: no s'ha d'utilitzar en un ordinador\n"
"connectat a d'altres o a Internet. No s'hi accedeix mitjançant contrasenya."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1126,7 +965,7 @@ msgstr ""
"Ara, la contrasenya estŕ habilitada, perň l'ús com a ordinador de xarxa "
"segueix sense ser recomanable."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1136,62 +975,63 @@ msgstr ""
"s'utilitzarŕ per connectar-se a Internet com a client. Ara hi ha "
"comprovacions de seguretat."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Amb aquest nivell de seguretat, la utilització d'aquest sistema com a\n"
"servidor esdevé possible.\n"
"La seguretat és ara prou alta com per utilitzar el sistema com a servidor\n"
"que accepti connexions de molts clients. "
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Assumim les característiques del nivell 4, perň ara el sistema estŕ\n"
"totalment tancat.\n"
"Les característiques de seguretat estan al mŕxim."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Escolliu el nivell de seguretat"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
#, fuzzy
msgid "Security level"
msgstr "S'estŕ establint el nivell de seguretat"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Escolliu les opcions per al servidor"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1216,13 +1056,13 @@ 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_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Benvingut al GRUB, el selector de sistema operatiu!"
#. -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_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr ""
@@ -1230,39 +1070,39 @@ 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_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Premeu Intro per arrencar el SO seleccionat, 'e' per editar les"
#. -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_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "ordres prčvies a l'arrencada, o 'c' per obtenir una línia d'ordres."
#. -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_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "La posició ressaltada arrencarŕ automŕticament dintre de %d segons."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "no hi ha prou espai a /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Escriptori"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Menú Inici"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "On voleu instalˇlar el carregador d'arrencada?"
@@ -1275,15 +1115,19 @@ msgstr "encara no s'ha implementat cap ajuda.\n"
msgid "Boot Style Configuration"
msgstr "Configuració del tipus d'arrencada"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Fitxer"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Fitxer/_Surt"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1318,7 +1162,7 @@ msgstr "Mode Yaboot"
#: ../../bootlook.pm_.c:104
#, fuzzy, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Benvingut a la utilitat de compartició de la connexió a Internet!\n"
@@ -1327,8 +1171,8 @@ msgstr ""
"\n"
"Feu clic a Configura per executar l'auxiliar de configuració."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Configura"
@@ -1338,7 +1182,7 @@ msgid "System mode"
msgstr "Mode de sistema"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Executa el sistema X-Window en iniciar"
#: ../../bootlook.pm_.c:148
@@ -1349,14 +1193,16 @@ msgstr "No, no vull l'entrada automŕtica"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Sí, vull l'entrada automŕtica amb aquest (usuari, escriptori)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "D'acord"
@@ -1407,7 +1253,7 @@ msgstr ""
"Podeu seleccionar altres idiomes, que quedaran disponibles després de la "
"instalˇlació"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "França"
@@ -1415,7 +1261,7 @@ msgstr "França"
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Belga"
@@ -1443,11 +1289,12 @@ msgstr "Noruec"
msgid "Sweden"
msgstr "Consulteu"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr "Italiŕ"
@@ -1457,7 +1304,7 @@ msgstr "Italiŕ"
msgid "Austria"
msgstr "sčrie"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1465,8 +1312,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr "Si us plau, feu primer una cňpia de seguretat de les vostres dades"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Llegiu-ho atentament!"
@@ -1479,11 +1326,12 @@ msgstr ""
"Si penseu utilitzar aboot, assegureu-vos de deixar espai lliure (amb 2.048\n"
"sectors n'hi ha prou) al començament del disc"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Error"
@@ -1491,11 +1339,11 @@ msgstr "Error"
msgid "Wizard"
msgstr "Assistent"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Trieu una acció"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1507,150 +1355,155 @@ msgstr ""
"Suggereixo que primer en canvieu la mida\n"
"(feu-hi clic i després feu clic a \"Canvia la mida\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Si us plau, feu clic a una partició "
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Detalls"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
#, fuzzy
msgid "Journalised FS"
msgstr "ha fallat el muntatge"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Intercanvia"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Buit"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Altres"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Tipus de sistema de fitxers"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Crea"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tipus"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Utilitzeu ``%s'' al seu lloc"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Suprimeix"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Utilitzeu primer ``Unmount''"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Després de canviar el tipus de la partició %s, se'n perdran totes les dades"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose a partition"
msgstr "Trieu una acció"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose another partition"
msgstr "Crea una nova partició"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Normal > Expert"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Expert > Normal"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Desfés"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Voleu continuar igualment?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Surt sense desar"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Voleu sortir sense desar la taula de particions?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Voleu comprovar la configuració?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Assigna automŕticament"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Buida-ho tot"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Més"
+
+#: ../../diskdrake/interactive.pm_.c:263
#, fuzzy
msgid "Hard drive information"
msgstr "Informació del correu"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "S'utilitzen totes les particions primŕries"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "No puc afegir cap més partició"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1658,35 +1511,35 @@ msgstr ""
"Per tenir més particions, suprimiu-ne una per poder crear una partició "
"ampliada"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr "Escriu la taula de particions"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr "Rescata la taula de particions"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Rescata la taula de particions"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr "Rescata la taula de particions"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Removable media automounting"
msgstr "Muntatge automŕtic del suport extraďble"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Seleccioneu el fitxer"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1694,11 +1547,11 @@ msgstr ""
"La cňpia de seguretat de la taula de particions no té la mateixa mida\n"
"Voleu continuar igualment?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Advertčncia"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1706,124 +1559,131 @@ msgstr ""
"Inseriu un disquet a la unitat\n"
"Se'n perdran totes les dades"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "S'estŕ intentant rescatar la taula de particions"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
#, fuzzy
msgid "Detailed information"
msgstr "Informació del correu"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Punt de muntatge"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opcions"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Canvia la mida"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Mou"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formata"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Munta"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Afegeix al RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Afegeix al LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Desmunta"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Elimina del RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Elimina del LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Modifica el RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Utilitza per a loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Crea una nova partició"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "sector d'inici: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Mida en MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Tipus de sistema de fitxers: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Punt de muntatge: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Preferčncia: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+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/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr "S'estŕ formatant el fitxer de loopback %s"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Canvia el tipus de partició"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Quin sistema de fitxers voleu?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "On voleu muntar el fitxer de loopback %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "On voleu muntar el dispositiu %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1831,129 +1691,134 @@ msgstr ""
"No es pot anulˇlar el punt de muntatge, perquč aquesta partició\n"
"s'utilitza per al loopback. Elimineu primer el loopback"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "S'estan calculant els límits del sistema de fitxers de la FAT"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "S'estŕ canviant la mida"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "No es pot canviar la mida d'aquesta partició"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Cal fer una cňpia de seguretat de totes les dades d'aquesta partició"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Després de canviar la mida de la partició %s, se'n perdran totes les dades"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Escolliu la nova mida"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
#, fuzzy
msgid "New size in MB: "
msgstr "Mida en MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "A quin disc us voleu desplaçar?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sector"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "A quin sector us voleu desplaçar?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "S'estŕ desplaçant"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "S'estŕ desplaçant la partició..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Escolliu un RAID existent al qual afegir"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "nou"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Escolliu un LVM existent al qual afegir"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "Nom LVM?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Aquesta partició no es pot utilitzar per al loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Nom del fitxer de loopback: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr "Nom real"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Un altre loopback ja estŕ utilitzant el fitxer, escolliu-ne un altre"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "El fitxer ja existeix. El voleu utilitzar?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
#, fuzzy
msgid "Mount options"
msgstr "Opcions del mňdul:"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "dispositiu"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "nivell"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "mida del tros"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Aneu amb compte: aquesta operació és perillosa."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Quin tipus de particionament?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Quins paquets voleu instalˇlar"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1965,7 +1830,7 @@ msgstr ""
"O esteu utilitzant LILO, i no funcionarŕ, o no l'esteu utilitzant i no "
"necessiteu el /boot"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1978,7 +1843,7 @@ msgstr ""
"Si teniu previst utilitzar el gestor d'arrencada LILO, penseu d'afegir una "
"partició /boot"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1989,138 +1854,138 @@ msgstr ""
"boot.\n"
"Per tant, assegureu-vos d'afegir una partició /boot"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "La taula de particions de la unitat %s s'escriurŕ al disc!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Us caldrŕ tornar a arrencar per tal que les modificacions tinguin efecte"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Després de formatar la partició %s, se'n perdran totes les dades"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "S'estŕ formatant"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "S'estŕ formatant el fitxer de loopback %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "S'estŕ formatant la partició %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Hide files"
msgstr "l'mkraid ha fallit"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr "No hi ha prou espai lliure per assignar noves particions"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr "No hi ha prou espai lliure per assignar noves particions"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Resolució: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Dispositiu: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Lletra d'unitat del DOS: %s (només és una suposició)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Tipus: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Nom: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Inici: sector %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Mida: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sectors"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cilindre %d a cilindre %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Formatat\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Sense formatar\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Muntat\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Fitxer(s) de loopback: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2128,27 +1993,27 @@ msgstr ""
"La partició s'ha arrencat per defecte\n"
" (per a l'arrencada de l'MS-DOS, no per a LILO)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Nivell %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Mida del tros %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "Discs RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Nom del fitxer de loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2160,7 +2025,7 @@ msgstr ""
"una partició de programa de control;\n"
"és millor que no la toqueu.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2172,65 +2037,65 @@ msgstr ""
"especial és per arrencar\n"
"el vostre sistema en dual.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Mida: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometria: %s cilindres, %s capçals, %s sectors\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Informació: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "Discs LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tipus de taula de particions: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "al bus %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Opcions: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Tipus de sistema de fitxers: "
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Aquesta contrasenya és massa senzilla (ha de tenir com a mínim %d carŕcters)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Les contrasenyes no coincideixen"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2241,36 +2106,66 @@ msgstr "Canvia el tipus de partició"
#: ../../diskdrake/removable_gtk.pm_.c:28
#, fuzzy
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Si us plau, feu clic a una partició "
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Autenticació"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Internet"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Nom d'usuari"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Nom d'usuari"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "Domini del NIS"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "servidor DNS"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatatge de %s ha fallat"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "no sé com formatar %s amb el tipus %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "s'ha produďt un error en muntar %s: %s"
@@ -2287,70 +2182,323 @@ msgstr ""
msgid "server"
msgstr "servidor"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "No podeu utilitzar el JFS per a particions inferiors a 16 MB"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "No podeu utilitzar el ReiserFS per a particions inferiors a 32 MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Els punts de muntatge han de començar amb una /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Ja hi ha una partició amb el punt de muntatge %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "No podeu utilitzar un volum lňgic LVM per al punt de muntatge %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Aquest directori s'ha de mantenir dins del sistema de fitxers de root"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Necessiteu un sistema de fitxers real (ext2, reiserfs) per a aquest punt de "
"muntatge\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "No podeu utilitzar un volum lňgic LVM per al punt de muntatge %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "No hi ha prou espai per a l'assignació automŕtica"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "S'ha produďt un error en obrir %s per escriure: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"S'ha produďt un error: no s'han trobat dispositius vŕlids on crear nous "
"sistemes de fitxers. Si us plau, comproveu el vostre maquinari per trobar el "
"problema"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "No teniu cap partició!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Utilitza la detecció automŕtica"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "General"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Targeta de memňria (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "s'estŕ formatant"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Canvia el tipus de partició"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Surt"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Ajuda"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Ajuda"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Ajuda/_Quant a.."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Mňdul"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Targeta de memňria (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Cancelˇla"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "Module"
+msgstr "Mňdul"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Descripció"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Autenticació"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Seleccioneu el fitxer"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Dispositiu de la passarelˇla"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 botons"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Detecció del disc dur"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Mira la informació del maquinari"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Mostra la informació"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Configura el ratolí"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "detectat al port %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Si us plau, espereu"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d segons"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "S'estŕ llegint la base de dades de controladors CUPS..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Exploració automŕtica"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2364,7 +2512,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2480,9 +2628,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2678,7 +2825,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2690,9 +2837,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2738,21 +2884,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2768,9 +2913,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Ara és quan heu de decidir en quin lloc del vostre disc dur voleu "
"instalˇlar\n"
@@ -2859,9 +3004,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3005,38 +3149,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3233,11 +3371,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3296,7 +3434,7 @@ msgstr ""
"d'instalˇlació\n"
"tret que sapigueu quč esteu fent."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3311,7 +3449,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3326,7 +3464,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3342,7 +3480,7 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3350,23 +3488,23 @@ msgstr ""
"Si us plau, seleccioneu el port correcte. Per exemple, el port COM1 en MS\n"
"Windows s'anomena ttyS0 en GNU/Linux."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3388,7 +3526,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3410,7 +3548,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3418,7 +3556,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3439,7 +3577,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3463,7 +3601,7 @@ msgstr ""
"operatius; en aquest cas podeu suprimir les entrades corresponents, perň\n"
"aleshores us caldrŕ un disc d'arrencada per poder-los arrencar!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3478,29 +3616,28 @@ msgstr ""
"Tret que sabeu exactament quč esteu fent, escolliu \"Primer sector\n"
"de la unitat (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3509,7 +3646,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
#, fuzzy
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
@@ -3535,7 +3672,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"El DrakX intentarŕ trobar el(s) adaptador(s) SCSI PCI. \n"
@@ -3562,7 +3699,7 @@ msgstr ""
"maquinari, del lloc web del fabricant (si teniu accés a Internet) o del\n"
"Microsoft Windows (si el teniu al sistema)."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
#, fuzzy
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
@@ -3573,9 +3710,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3587,7 +3723,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" 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"
@@ -3676,7 +3812,7 @@ msgstr ""
"Aquesta opció també es ressaltarŕ amb un '*' si premeu Tab per veure les\n"
"seleccions d'arrencada."
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
#, fuzzy
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
@@ -3704,9 +3840,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -3757,10 +3892,10 @@ msgstr ""
" - OS per defecte: podeu seleccionar amb quin OS, per defecte, s'arrencarŕ\n"
"quan la demora de l'Open Firmware venci."
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3768,12 +3903,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3789,7 +3923,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -3800,7 +3934,7 @@ msgstr ""
"Mandrake. Aneu amb compte, se'n perdran totes les dades i no es podran "
"recuperar."
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3821,7 +3955,7 @@ msgstr ""
"dada\n"
"ni partició d'aquest disc."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3829,12 +3963,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3849,20 +3983,20 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "No es pot utilitzar l'emissió sense un domini NIS"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Inseriu un disquet formatat amb FAT a la unitat %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Aquest disquet no estŕ formatat en FAT"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3870,7 +4004,7 @@ msgstr ""
"Per utilitzar aquesta selecció de paquets desada, arrenqueu la instalˇlació "
"amb ``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "S'ha produďt un error en llegir el fitxer %s"
@@ -3900,7 +4034,7 @@ msgstr "Heu de tenir una partició d'intercanvi"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -3908,60 +4042,60 @@ msgstr ""
"\n"
"Voleu continuar igualment?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Heu de tenir una partició d'intercanvi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Utilitza l'espai lliure"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "No hi ha prou espai lliure per assignar noves particions"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Utilitza la partició existent"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "No existeix cap partició per utilitzar"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Utilitza la particio Windows per al loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Quina partició voleu utilitzar per al Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Escolliu les mides"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Mida de la partició arrel en MB: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Mida de la partició d'intercanvi en MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Utilitza l'espai lliure de la partició de Windows"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "A quina partició voleu canviar la mida?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "S'estan calculant els límits del sistema de fitxers de Windows"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -3970,13 +4104,16 @@ msgstr ""
"El redimensionador de la FAT no pot gestionar la vostra partició, \n"
"s'ha produďt l'error següent: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"La partició de Windows estŕ massa fragmentada; si us plau, executeu "
"``defrag'' primer"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -3999,55 +4136,55 @@ msgstr ""
"vostres dades.\n"
"Quan estigueu segur, premeu D'acord."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Quina mida voleu deixar per a la partició de Windows?"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "partició %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Ha fallat la redimensió de la FAT: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"No hi ha particions FAT a quč canviar la mida o per utilitzar-les com a "
"loopback (o no queda prou espai)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Esborra el disc complet"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Elimina el Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Teniu més d'un disc dur; en quin voleu instalˇlar el Linux?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"Es perdran TOTES les particions, i les dades que contenen, de la unitat %s"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Particionament personalitzat de disc"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Utilitza l'fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4056,11 +4193,11 @@ msgstr ""
"Ara podeu fer les particions a %s.\n"
"Quan acabeu, no oblideu desar-les utiltzant `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "No teniu prou espai lliure a la partició de Windows"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "No puc trobar espai per a la instalˇlació"
@@ -4069,16 +4206,16 @@ msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
"L'assistent de particionament del DrakX ha trobat les solucions següents:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Ha fallat el particionament: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "S'estŕ activant la xarxa"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "S'estŕ desactivant la xarxa"
@@ -4090,12 +4227,12 @@ msgstr ""
"S'ha produďt un error, perň no sé com gestionar-lo correctament.\n"
"Si continueu, és sota la vostra responsabilitat."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Duplica el punt de muntatge %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4107,12 +4244,12 @@ msgstr ""
"Comproveu el CD-ROM en un ordinador instalˇlat mitjançant \"rpm -qpl "
"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Benvingut a %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "No hi ha cap unitat de disquet disponible"
@@ -4122,9 +4259,9 @@ msgstr "No hi ha cap unitat de disquet disponible"
msgid "Entering step `%s'\n"
msgstr "S'estŕ introduint el pas `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4135,204 +4272,158 @@ msgstr ""
"mode text. Per fer-ho, premeu `F1' en arrencar des del CD-ROM i escriviu "
"`text'"
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Tipus d'instalˇlació"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Si us plau, trieu un dels tipus d'instalˇlació següents:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr ""
-"La mida total dels grups que heu seleccionat es d'aproximadament %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Si no voleu instalˇlar tants MB, seleccioneu el percentatge de paquets\n"
-"que voleu instalˇlar.\n"
-"\n"
-"Un percentatge baix instalˇlarŕ només els paquets més importants;\n"
-"un percentatge del 100%% instalˇlarŕ tots els paquets seleccionats."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Només teniu prou espai al disc per a %d%% d'aquests paquets.\n"
-"\n"
-"Si en voleu instalˇlar menys, seleccioneu el percentatge de paquets\n"
-"que voleu instalˇlar.\n"
-"Un percentatge baix instalˇlarŕ només els paquets més importants;\n"
-"un percentatge del %d%% instalˇlarŕ tants paquets com sigui possible."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Podreu fer una elecció més concreta al pas següent"
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Percentatge de paquets per instalˇlar"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Selecció del grup de paquets"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Selecció individual de paquets"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Mida total: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Paquet incorrecte"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Nom: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Versió: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Mida: %d kB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Importŕncia: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"No podeu seleccionar aquest paquet perquč no queda prou espai per instalˇlar-"
"lo"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Ara s'instalˇlaran els paquets següents"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Ara s'eliminaran els paquets següents"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "No podeu seleccionar/desseleccionar aquest paquet"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Aquest paquet és obligatori; no es pot deseleccionar"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "No podeu desseleccionar aquest paquet; ja estŕ instalˇlat"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Aquest paquet s'ha d'actualitzar\n"
"Esteu segur que voleu desseleccionar-lo?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "No podeu desseleccionar aquest paquet; s'ha d'actualitzar"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Mostra automŕticament els paquets seleccionats"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Instalˇla"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Desa al disquet"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
#, fuzzy
msgid "Updating package selection"
msgstr "Desa la selecció de paquets"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
#, fuzzy
msgid "Minimal install"
msgstr "Desinstalˇla"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Escolliu els paquets que voleu instalˇlar"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "S'estŕ instalˇlant"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "S'estŕ estimant"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Temps restant "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Si us plau, espereu, s'estŕ preparant la instalˇlació"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d paquets"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "S'estŕ instalˇlant el paquet %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Accepta"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Rebutja"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4348,17 +4439,17 @@ msgstr ""
"Si no el teniu, premeu Cancelˇla per no fer la instalˇlació des d'aquest CD-"
"ROM."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Voleu seguir igualment?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "S'ha produďt un error en ordenar els paquets"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "S'ha produďt un error en instalˇlar els paquets"
@@ -4435,11 +4526,11 @@ msgstr "S'ha produďt un error"
msgid "Do you really want to leave the installation?"
msgstr "Voleu reiniciar la xarxa"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Acord de llicčncia"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4454,7 +4545,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -4663,114 +4754,118 @@ msgstr ""
"Per a qualsevol tema relacionat amb aquest document, poseu-vos en\n"
"contacte amb MandrakeSoft S.A.\n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Teclat"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Si us plau, selecioneu la disposició del vostre teclat."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Aquesta és la llista completa de teclats disponibles"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Quin tipus d'instalˇlació voleu?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Instalˇla/Actualitza"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Es tracta d'una instalˇlació o d'una actualització?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Recomanada"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Expert"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade"
msgstr "Actualitza"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr "Desa la selecció de paquets"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Si us plau, seleccioneu el vostre tipus de ratolí."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Port del ratolí"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr ""
"Si us plau, seleccioneu el port sčrie a quč estŕ connectat el vostre ratolí."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Emulació dels botons"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Emulació del botó 2"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Emulació del botó 3"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "S'estan configurant les targetes PCMCIA..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "S'estŕ configurant l'IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "no hi ha particions disponibles"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "S'estan explorant les particions per trobar els punts de muntatge"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Escolliu els punts de muntatge"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4781,7 +4876,7 @@ msgstr ""
"L'altra solució és impedir al DrakX que modifiqui la taula de particions.\n"
"(l'error és %s)\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4789,143 +4884,146 @@ msgstr ""
"El DiskDrake no ha pogut llegir correctament la taula de particions.\n"
"Si continueu, és sota la vostra responsabilitat!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "No s'ha trobat cap partició arrel"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Partició arrel"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Quina és la partició arrel (/) del vostre sistema?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Us caldrŕ tornar a arrencar per tal que les modificacions de la taula de "
"particions tinguin efecte"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Escolliu les particions que voleu formatar"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Voleu comprovar els blocs incorrectes?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "S'estan formatant les particions"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "S'estŕ creant i formatant el fitxer %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"No hi ha prou intercanvi per completar la instalˇlació; si us plau, afegiu-ne"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "S'estan cercant els paquets disponibles"
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "S'estan cercant els paquets disponibles"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "S'estan cercant els paquets a actualitzar"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "No podeu desseleccionar aquest paquet; ja estŕ instalˇlat"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Al vostre sistema no li queda prou espai per a la instalˇlació o "
"actualització (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Completa (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Mínima (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Recomanada (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
#, fuzzy
msgid "Load from floppy"
msgstr "Restaura des del disquet"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Loading from floppy"
msgstr "Restaura des del disquet"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Package selection"
msgstr "Selecció del grup de paquets"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Inseriu un disquet a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Desa al disquet"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
#, fuzzy
msgid "Type of install"
msgstr "Escolliu el paquet a instalˇlar"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
#, fuzzy
msgid "With X"
msgstr "Espera"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4935,16 +5033,16 @@ msgstr ""
"Si no teniu cap d'aquests CD, feu clic a Cancelˇla.\n"
"Si només falten alguns CD, desseleccioneu-los i feu clic a D'acord."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM etiquetat com \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "S'estŕ preparant la instalˇlació"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4953,23 +5051,23 @@ msgstr ""
"S'estŕ instalˇlant el paquet %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Publica la configuració de la instalˇlació "
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Inseriu un disquet a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Inseriu un disquet en blanc a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5034,171 +5132,202 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"S'estŕ contactant amb el mirror per obtenir la llista dels paquets "
"disponibles"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Escolliu un mirror al qual aconseguir els paquets"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
"S'estŕ contactant amb el mirror per obtenir la llista dels paquets "
"disponibles"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "En quina zona horŕria us trobeu?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "El rellotge del vostre ordinador estŕ regulat a GMT?"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
#, fuzzy
msgid "NTP Server"
msgstr "Servidor NIS"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Servidor CUPS remot"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Cap impressora"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "En teniu una altra?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Resum"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Ratolí"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Zona horŕria"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Impressora"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "Targeta XDSI"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Targeta de so"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "Targeta de TV"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "NIS"
msgstr "Utilitza el NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Elimina el Windows(TM)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Local files"
msgstr "Impressora local"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Contrasenya de 'root'"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Sense contrasenya"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Aquesta contrasenya és massa senzilla (ha de tenir com a mínim %d carŕcters)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autenticació"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
#, fuzzy
msgid "Authentication LDAP"
msgstr "Autenticació"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "LDAP Server"
msgstr "Servidor"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
#, fuzzy
msgid "Authentication NIS"
msgstr "NIS d'autenticació"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "Domini del NIS"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "Servidor NIS"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Autenticació"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Domini del NIS"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "Servidor NIS"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -5228,19 +5357,19 @@ msgstr ""
"Si voleu crear un disc d'arrencada per al vostre sistema, inseriu un disquet "
"a la primera unitat i premeu \"D'acord\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Primera unitat de disquet"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Segona unitat de disquet"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Omet"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5268,7 +5397,7 @@ msgstr ""
"sistema?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5277,30 +5406,30 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "No hi ha cap unitat de disquet disponible"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Escolliu la unitat de disquet que voleu utilitzar per crear el disc "
"d'arrencada"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Inseriu un disquet a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "S'estŕ creant el disc d'arrencada"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "S'estŕ preparant el carregador d'arrencada"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5308,11 +5437,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Voleu utilitzar l'aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5321,18 +5450,18 @@ msgstr ""
"voleu intentar igualment la instalˇlació encara que aixň destrueixi la "
"primera partició?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
#, fuzzy
msgid "Installing bootloader"
msgstr "Instalˇla el LILO"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"Ha fallat la instalˇlació del carregador d'arrencada. S'ha produďt l'error "
"següent:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, fuzzy, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5350,18 +5479,17 @@ msgstr ""
" Després, escriviu: shut-down\n"
"En l'arrencada següent heu de veure l'indicador del carregador d'arrencada."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Inseriu un disquet en blanc a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "S'estŕ creant el diquet d'instalˇlació automŕtica"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5371,7 +5499,8 @@ msgstr ""
"\n"
"Segur que voleu sortir ara?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5382,7 +5511,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5396,18 +5525,22 @@ msgstr ""
"Mandrake Linux a la fe d'errates que hi ha a \n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"La informació sobre com configurar el vostre sistema estŕ disponible a\n"
"l'últim capítol d'instalˇlació de la Guia Oficial de l'Usuari del\n"
"Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Genera un disquet per a la instalˇlació automŕtica"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5422,15 +5555,15 @@ msgstr ""
"\n"
"Potser preferireu repetir la instalˇlació.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automŕtica"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Repeteix"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Desa la selecció de paquets"
@@ -5458,421 +5591,405 @@ msgstr ""
msgid "Choose a file"
msgstr "Trieu una acció"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Avançat"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Si us plau, espereu"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Informació"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Expandeix l'arbre"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Redueix l'arbre"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Commuta entre pla i ordenat per grups"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Elecció incorrecta, torneu-ho a intentar\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "La vostra elecció? (predeterminat %s)"
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "La vostra elecció? (predeterminat %s)"
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Opcions: %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr "Voleu utilitzar l'aboot?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "La vostra elecció? (predeterminat %s)"
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Txec (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Alemany"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Espanyol"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finčs"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Francčs"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Noruec"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Polončs"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Rus"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Suec"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Teclat RU"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Teclat EU"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Albanian"
msgstr "Iraniŕ"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armeni (antic)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armeni (mŕquina d'escriure)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armeni (fončtic)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidjančs (llatí)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belga"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armeni (fončtic)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Búlgar"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brasiler (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Bielorús"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Suís (disposició alemanya)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Suís (disposició francesa)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Txec (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Alemany (sense tecles inoperatives)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Dančs"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (EU)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Noruec)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (EU)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estoniŕ"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgiŕ (disposició \"russa\")"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgiŕ (disposició \"llatina\")"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Grec"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Hongarčs"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Croata"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Israeliŕ"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Israeliŕ (fončtic)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iraniŕ"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islandčs"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Italiŕ"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Japončs de 106 tecles"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Teclat coreŕ"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Espanyol sud-americŕ"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Lituŕ AZERTY (antic)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Lituŕ AZERTY (nou)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituŕ \"fila de números\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituŕ \"fončtic\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
#, fuzzy
msgid "Latvian"
msgstr "Ubicació"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Macedoni"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Holandčs"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Polončs (disposició qwerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Polončs (disposició qwertz)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugučs"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Canadenc (Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Rus (Yawerty)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Rus (Yawerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Rus (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Eslovč"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Eslovac (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Eslovac (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Azerbaidjančs (cirílˇlic)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Taula"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Teclat tai"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Teclat tai"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turc (tradicional, model \"F\")"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turc (modern, model \"Q\")"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ucraďnčs"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Teclat EU (internacional)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamita \"fila numčrica\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Iugoslau (llatí/cirílˇlic)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5885,7 +6002,31 @@ msgstr "Muntatges circulars %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Elimineu primer els volums lňgics\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Número de telčfon"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Formata les particions"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5926,10 +6067,6 @@ msgstr "1 botó"
msgid "Generic 2 Button Mouse"
msgstr "Generic 2 Button Mouse"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "General"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "De bola"
@@ -5994,38 +6131,54 @@ msgstr "cap"
msgid "No mouse"
msgstr "Cap ratolí"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Si us plau, comproveu el ratolí."
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Per activar el ratolí,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "MOVEU LA BOLA!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Finčs"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Següent ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Anterior"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Aixň és correcte?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Informació"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Expandeix l'arbre"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Redueix l'arbre"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Commuta entre pla i ordenat per grups"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Connecta't a internet"
@@ -6072,7 +6225,7 @@ msgstr ""
"No s'ha detectat cap adaptador de xarxa ethernet al sistema.\n"
"No puc configurar aquest tipus de connexió."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Escolliu la interfície de xarxa"
@@ -6087,7 +6240,7 @@ msgstr ""
msgid "no network card found"
msgstr "no s'ha trobat cap targeta de xarxa"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "S'estŕ configurant la xarxa"
@@ -6103,15 +6256,15 @@ msgstr ""
"El nom ha de ser complet,\n"
"com ara ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Nom de l'ordinador central"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Assistent de configuració de xarxa"
@@ -6159,7 +6312,7 @@ msgstr "Configuració de l'XDSI"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Seleccioneu el vostre proveďdor.\n"
" Si no és a la llista, seleccioneu No és a la llista"
@@ -6182,14 +6335,14 @@ msgstr "Resta del món"
#: ../../network/isdn.pm_.c:185
#, fuzzy
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Resta del món \n"
" cap canal D (línies llogades)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Quin protocol voleu utilitzar?"
#: ../../network/isdn.pm_.c:199
@@ -6213,7 +6366,8 @@ 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"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Si teniu una targeta ISA, els valors de la pantalla següent han de ser "
@@ -6230,13 +6384,13 @@ msgid "Continue"
msgstr "Continua"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Quina targeta XDSI teniu ?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"He detectat una targeta PCI XDSI, perň no en conec el tipus. Si us plau, "
"seleccioneu una targeta PCI a la pantalla següent."
@@ -6256,47 +6410,47 @@ msgstr ""
msgid "Dialup options"
msgstr "Opcions de marcatge"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Nom de la connexió"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Número de telčfon"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "ID d'entrada"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Basat en script"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Basat en terminal"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Nom de domini"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Primer servidor DNS (opcional)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Segon servidor DNS (opcional)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6304,7 +6458,7 @@ msgstr ""
"\n"
"Podeu desconnectar-vos o tornar a configurar la connexió."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6312,11 +6466,11 @@ msgstr ""
"\n"
"Podeu tornar a configurar la connexió."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Ara mateix esteu connectat a Internet."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6324,35 +6478,35 @@ msgstr ""
"\n"
"Podeu connectar-vos a Internet o tornar a configurar la connexió."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Ara mateix no esteu connectat a Internet."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Connecta"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Desconnecta"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "Configura una connexió per cable"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Connexió i configuració d'Internet"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
"\n"
"Podeu desconnectar-vos o tornar a configurar la connexió."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, fuzzy, c-format
msgid ""
"\n"
@@ -6366,12 +6520,12 @@ msgstr ""
"\n"
"Podeu desconnectar-vos o tornar a configurar la connexió."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Configuració de xarxa"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6383,9 +6537,9 @@ msgstr ""
"Feu clic a D'acord per conservar la configuració, o a Cancelˇla per tornar a "
"configurar la connexió a Internet i xarxa.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"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"
@@ -6396,93 +6550,99 @@ msgstr ""
"Si no voleu utilitzar la detecció automŕtica, desactiveu el quadre de "
"verificació.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Escolliu el perfil per configurar"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Utilitza la detecció automŕtica"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Mode expert"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "S'estan detectant els dispositius..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Connexió normal per mňdem"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "detectat al port %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "Connexió XDSI"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "s'ha detectat %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy
msgid "ADSL connection"
msgstr "Connexió LAN"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "detectat a la interfície %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Connexió de cable"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "cable connection detected"
msgstr "Connexió de cable"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "Connexió LAN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "s'han detectat una o diverses targetes Ethernet"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Escolliu l'eina que voleu utilitzar "
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
#, fuzzy
msgid "Internet connection"
msgstr "Connexió a Internet compartida"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Voleu iniciar la connexió en arrencar?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Configuració de xarxa"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6493,7 +6653,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6503,7 +6663,7 @@ msgstr ""
"\n"
"Ara s'aplicarŕ la configuració al sistema.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6511,16 +6671,16 @@ msgstr ""
"Després d'aixň, és recomanable que reinicieu l'entorn X per\n"
"evitar problemes deguts al canvi de nom de l'ordinador central."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"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."
@@ -6529,7 +6689,7 @@ msgstr ""
"Només cal que accepteu mantenir-lo configurat.\n"
"Si modifiqueu els camps inferiors, sobreescriureu aquesta configuració."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6539,38 +6699,43 @@ msgstr ""
"S'ha d'introduir cada element com a una adreça IP amb notació decimal amb\n"
"punts (per exemple, 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "S'estŕ configurant el dispositiu de xarxa %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (programa de control %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "Adreça IP"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Submŕscara de la xarxa"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "IP automŕtic"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Iniciat en l'arrencada"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "L'adreça IP ha d'estar amb el format 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6582,64 +6747,64 @@ msgstr ""
"``mybox.mylab.myco.com''.\n"
"També podeu introduir l'adreça IP de la passarelˇla, si en teniu una"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "servidor DNS"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Dispositiu de la passarelˇla"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Configuració dels proxys"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "El proxy ha de ser http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "El proxy ha de ser ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Configuració d'Internet"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Voleu intentar connectar-vos a Internet ara?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "S'estŕ comprovant la vostra conexió..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Ara, el sistema estŕ connectat a Internet."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Per raons de seguretat, ara es desconnectarŕ."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6647,114 +6812,119 @@ msgstr ""
"No sembla que el sistema estigui connectat a Internet.\n"
"Intenteu tornar a configurar la connexió."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Configuració de la connexió"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Si us plau, ompliu o marqueu el camp inferior"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "Targeta IRQ"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Targeta de memňria (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "Targeta d'E/S"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "Targeta d'E/S_0"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "Targeta d'E/S_1"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "El vostre telčfon particular"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Nom del proveďdor (p.ex. proveidor.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Número de telčfon del proveďdor"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "DNS 1 del proveďdor (opcional)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "DNS 2 del proveďdor (opcional)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
#, fuzzy
msgid "Choose your country"
msgstr "Escolliu el vostre teclat"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Mode de marcatge"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection speed"
msgstr "Tipus de connexió: "
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Tipus de connexió: "
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Entrada del compte (nom d'usuari)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Contrasenya del compte"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "ha fallat el muntatge: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Aquesta plataforma no suporta particions esteses"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Hi ha un forat a la vostra taula de particions, perň no puc utilitzar-lo.\n"
"L'única solució és moure les particions primŕries per fer que el forat quedi "
"contigu a les particions ampliades"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Ha fallat la restauració del fitxer %s: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Fitxer de cňpia de seguretat incorrecte"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "S'ha produďt un error en escriure al fitxer %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6764,193 +6934,193 @@ msgstr ""
"Ha fallat una comprovació de la integritat de les dades. \n"
"Aixň vol dir que qualsevol cosa que s'escrigui al disc acabarŕ feta malbé"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "ha de tenir"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "important"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "molt bonic"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "bonic"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "potser"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr ""
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr ""
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Impressora local"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Impressora remota"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "Servidor CUPS remot"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Servidor lpd remot"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Impressora de xarxa (TCP/sňcol)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Servidor de la impressora"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Dispositiu URI d'impressora"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr "Impressora local"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr "Impressora remota"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "S'ha produďt un error en escriure al fitxer %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(mňdul %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP del servidor CUPS"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Predeterminat)"
@@ -6973,12 +7143,12 @@ msgstr ""
"impressora; les impressores es detectaran automŕticament.\n"
"En cas de dubte, seleccioneu \"Servidor CUPS remot\"."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "Configuració de la LAN"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "Servidor CUPS remot"
@@ -7009,7 +7179,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "L'adreça IP ha d'estar amb el format 1.2.3.4"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
#, fuzzy
msgid "The port number should be an integer!"
msgstr "El número de port ha de ser numčric"
@@ -7018,7 +7188,7 @@ msgstr "El número de port ha de ser numčric"
msgid "CUPS server IP"
msgstr "IP del servidor CUPS"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Port"
@@ -7027,22 +7197,13 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Configuració del tipus d'arrencada"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "S'estan detectant els dispositius..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Ports de comprovació"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "Cap impressora"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7055,14 +7216,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr "Impressora local"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7080,12 +7241,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "Impressora remota"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7099,11 +7260,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7113,35 +7274,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "Utilitza la detecció automŕtica"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "Impressora remota"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Ports de comprovació"
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "s'ha detectat %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
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, ..., "
@@ -7149,43 +7314,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Dispositiu URI d'impressora"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr "Impressora local"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7193,7 +7358,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7201,74 +7366,84 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr ""
"Si us plau, seleccioneu el port sčrie al qual teniu connectat el mňdem."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Dispositiu URI d'impressora"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "Configuració"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "S'estŕ instalˇlant el paquet %s"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
+msgstr "S'estŕ instalˇlant el paquet %s"
+
+#: ../../printerdrake.pm_.c:524
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing mtools packages..."
msgstr "S'estŕ instalˇlant el paquet %s"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
#, fuzzy
-msgid "Making printer port available for CUPS ..."
+msgid "Making printer port available for CUPS..."
msgstr "S'estŕ llegint la base de dades de controladors CUPS..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
#, fuzzy
-msgid "Reading printer database ..."
+msgid "Reading printer database..."
msgstr "S'estŕ llegint la base de dades de controladors CUPS..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Opcions de la impressora lpd remota"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7278,31 +7453,31 @@ msgstr ""
"el nom de l'ordinador central del servidor de la impressora i el nom de la\n"
"cua d'aquest servidor on s'hi han de situar les tasques."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
#, fuzzy
msgid "Remote host name"
msgstr "Nom de l'ordinador central remot"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
#, fuzzy
msgid "Remote printer name"
msgstr "Impressora remota"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
#, fuzzy
msgid "Remote host name missing!"
msgstr "Nom de l'ordinador central remot"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Nom de l'ordinador central remot"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Opcions de la impressora SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7317,35 +7492,35 @@ msgstr ""
"de compartició de la impressora a quč voleu accedir i el nom d'usuari,\n"
"contrasenya i informació de grup si són necessaris."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "Ordinador central del servidor SMB"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP del servidor SMB"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Nom de compartició"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Grup de treball"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7369,7 +7544,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7378,7 +7553,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7386,11 +7561,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Opcions de la impressora NetWare"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7405,28 +7580,28 @@ msgstr ""
"la impressora a quč voleu accedir i el nom d'usuari i contrasenya si són\n"
"necessaris."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Servidor de la impressora"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Nom de la cua d'impressió"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Opcions de la impressora de sňcol"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
@@ -7437,60 +7612,56 @@ msgstr ""
"Per imprimir a una impressora de sňcol, heu d'indicar el nom de l'ordinador\n"
"central de la impressora i, opcionalment, el número de port."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
#, fuzzy
msgid "Printer host name"
msgstr "Nom de l'ordinador central de la impressora"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
#, fuzzy
msgid "Printer host name missing!"
msgstr "Nom de l'ordinador central de la impressora"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Dispositiu URI d'impressora"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
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 ""
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Nom de la impressora"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Descripció"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Ubicació"
-#: ../../printerdrake.pm_.c:1021
+#: ../../printerdrake.pm_.c:1045
#, fuzzy
-msgid "Preparing printer database ..."
+msgid "Preparing printer database..."
msgstr "S'estŕ llegint la base de dades de controladors CUPS..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "Impressora remota"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7505,28 +7676,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "Aixň és correcte?"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "Impressora remota"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
#, fuzzy
msgid "Printer model selection"
msgstr "Connexió de la impressora"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Quin tipus d'impressora teniu?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7535,18 +7706,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Configuració del mňdem"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7556,12 +7727,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Configuració d'Internet"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7569,7 +7740,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7582,7 +7753,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7592,34 +7763,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Voleu comprovar la impressió?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
#, fuzzy
msgid "Test pages"
msgstr "Ports de comprovació"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7627,45 +7798,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
#, fuzzy
msgid "No test pages"
msgstr "Sí, imprimeix ambdues pŕgines de prova"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
#, fuzzy
msgid "Print"
msgstr "Impressora"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
#, fuzzy
msgid "Standard test page"
msgstr "Eines estŕndard"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "S'esta(n) imprimint la(es) pŕgina(es) de prova... "
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
#, fuzzy
msgid "Photo test page"
msgstr "S'esta(n) imprimint la(es) pŕgina(es) de prova... "
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "S'esta(n) imprimint la(es) pŕgina(es) de prova... "
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "S'esta(n) imprimint la(es) pŕgina(es) de prova... "
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7681,7 +7852,7 @@ msgstr ""
"\n"
"Funciona correctament?"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7691,16 +7862,16 @@ msgstr ""
"Degut a aixň, pot passar un cert temps abans no comenci la impressió.\n"
"Funciona correctament?"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "Cap impressora"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7709,15 +7880,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
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 ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7726,49 +7897,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, 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\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7778,7 +7949,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7787,30 +7958,41 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Tanca"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "S'estŕ desactivant la xarxa"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "S'estŕ desactivant la xarxa"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "S'estŕ desactivant la xarxa"
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "S'estŕ desactivant la xarxa"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Tanca"
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "Opcions de la impressora"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7818,38 +8000,38 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
#, fuzzy
-msgid "Reading printer data ..."
+msgid "Reading printer data..."
msgstr "S'estŕ llegint la base de dades de controladors CUPS..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Configuració d'Internet"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7859,51 +8041,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7911,64 +8093,64 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"El nom de la impressora només pot constar de lletres, números i el carŕcter "
"de subratllat"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid "New printer name"
msgstr "Cap impressora"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, 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 ""
-#: ../../printerdrake.pm_.c:1887
+#: ../../printerdrake.pm_.c:1935
#, fuzzy
-msgid "Refreshing printer data ..."
+msgid "Refreshing printer data..."
msgstr "S'estŕ llegint la base de dades de controladors CUPS..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Configura la impressora"
-#: ../../printerdrake.pm_.c:1896
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
-msgid "Starting network ..."
+msgid "Starting network..."
msgstr "S'estŕ comprovant la vostra conexió..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr "Configura la xarxa"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "El monitor no estŕ configurat"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7976,12 +8158,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr "S'estŕ configurant la xarxa"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7991,34 +8173,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
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 ""
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
-msgid "Restarting printing system ..."
+msgid "Restarting printing system..."
msgstr "Quin sistema d'impressió voleu utilitzar?"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "Alt"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "Paranoic"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8033,12 +8215,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Quin sistema d'impressió voleu utilitzar?"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8052,69 +8234,69 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Seleccioneu la connexió de la impressora"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Quin sistema d'impressió voleu utilitzar?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Configura la impressora"
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr "S'estŕ instalˇlant el paquet %s"
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Opcions de la impressora"
-#: ../../printerdrake.pm_.c:2318
+#: ../../printerdrake.pm_.c:2389
#, fuzzy
-msgid "Preparing PrinterDrake ..."
+msgid "Preparing PrinterDrake..."
msgstr "S'estŕ llegint la base de dades de controladors CUPS..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Configura la impressora"
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Voleu configurar una impressora?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8125,7 +8307,7 @@ msgstr ""
"Aquestes són les cues d'impressió següents.\n"
"Podeu afegir-ne algunes més o canviar-ne les existents."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8135,139 +8317,143 @@ msgstr ""
"Aquestes són les cues d'impressió següents.\n"
"Podeu afegir-ne algunes més o canviar-ne les existents."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Configura la xarxa"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Mode normal"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Surt"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Voleu comprovar la configuració?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
#, fuzzy
msgid "Modify printer configuration"
msgstr "Configuració del mňdem"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Voleu comprovar la configuració?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
#, fuzzy
msgid "Printer connection type"
msgstr "Connexió a Internet compartida"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
#, fuzzy
msgid "Printer name, description, location"
msgstr "Connexió de la impressora"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
#, fuzzy
msgid "Print test pages"
msgstr "S'esta(n) imprimint la(es) pŕgina(es) de prova... "
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "Voleu comprovar la configuració?"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
#, fuzzy
msgid "Remove printer"
msgstr "Impressora remota"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
msgstr "S'estŕ llegint la base de dades de controladors CUPS..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
#, fuzzy
msgid "Default printer"
msgstr "Impressora local"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Voleu reiniciar la xarxa"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr "S'estŕ llegint la base de dades de controladors CUPS..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -8351,24 +8537,62 @@ msgstr "Les contrasenyes no coincideixen"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "No es pot afegir una partició a un RAID _formatat_ md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "No es pot escriure al fitxer %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "l'mkraid ha fallit"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "l'mkraid ha fallit (potser manquen eines del RAID?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "No hi ha prou particions per al nivell RAID %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Aquest nivell s'ha d'utilitzar amb cura. Fa el vostre sistema molt més "
+"fŕcil\n"
+"d'utilitzar, perň també molt sensible: no s'ha d'utilitzar en un ordinador\n"
+"connectat a d'altres o a Internet. No s'hi accedeix mitjançant contrasenya."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+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 ""
+"Amb aquest nivell de seguretat, la utilització d'aquest sistema com a\n"
+"servidor esdevé possible.\n"
+"La seguretat és ara prou alta com per utilitzar el sistema com a servidor\n"
+"que accepti connexions de molts clients. "
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Configuració de la LAN"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Opcions"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -8424,7 +8648,7 @@ msgid ""
"new/changed hardware."
msgstr ""
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8494,7 +8718,7 @@ msgid ""
"available server."
msgstr ""
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -8570,7 +8794,7 @@ msgstr ""
"executant en ordinadors que actuen com a servidors per a protocols que\n"
"utilitzen el mecanisme RPC."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -8670,7 +8894,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "Mode de sistema"
@@ -8793,6 +9017,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Control Center"
@@ -8897,6 +9122,15 @@ msgstr ""
msgid "Installing packages..."
msgstr "S'estŕ instalˇlant el paquet %s"
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Si us plau, sortiu i utilitzeu Ctrl-Alt-Enrere"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Si us plau, torneu a entrar a %s per activar els canvis"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8905,6 +9139,161 @@ msgstr ""
"No puc llegir la vostra taula de particions, estŕ massa malmesa per a mi :(\n"
"Intentaré seguir buidant les particions incorrectes"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Configuració d'Internet"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Servidor, base de dades"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Servidor, base de dades"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Afegeix un usuari"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "Client DHCP"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#, fuzzy
+msgid "Help"
+msgstr "/_Ajuda"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Sense connexió"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Suprimeix"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Seleccioneu el fitxer"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Afegeix un usuari"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "Client DHCP"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "S'estŕ configurant..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "torna a configurar"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Inseriu un disquet a la unitat %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "No hi ha cap unitat de disquet disponible"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
#, fuzzy
msgid "Error!"
@@ -8946,6 +9335,11 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "S'estŕ creant el diquet d'instalˇlació automŕtica"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -8954,47 +9348,40 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Felicitats!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "Instalˇla"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "Afegeix un usuari"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "S'estŕ formatant el fitxer de loopback %s"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9002,15 +9389,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9018,712 +9397,775 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Fitxer de cňpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "Fitxer de cňpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "Fitxer de cňpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "S'ha produďt un error en llegir el fitxer %s"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "Selecció del grup de paquets"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Si us plau, escolliu els paquets que voleu instalˇlar"
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "Elimina la cua"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Elimina el Windows(TM)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr "Nom d'usuari"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Fitxer de cňpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Si us plau, comproveu el ratolí."
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "Si us plau, torneu-ho a intentar"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "Si us plau, torneu-ho a intentar"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "Sense contrasenya"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Connexió LAN"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Seleccioneu la connexió de la impressora"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Si us plau, selecioneu la disposició del vostre teclat."
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Si us plau, feu clic a una partició "
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr "Si us plau, escolliu els paquets que voleu instalˇlar"
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "Fitxer de cňpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Si us plau, escolliu els paquets que voleu instalˇlar"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "Si us plau, comproveu el ratolí."
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "Fitxer de cňpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "Xarxa:"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Tipus"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "Nom d'usuari"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Si us plau, escolliu els paquets que voleu instalˇlar"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Si us plau, trieu un idioma per utilitzar."
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Voleu utilitzar l'optimització del disc dur?"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Voleu utilitzar l'optimització del disc dur?"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
#, fuzzy
msgid "What"
msgstr "Espera"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr "De bola"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr "De bola"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "Opcions del mňdul:"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Configuració de xarxa"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Si us plau, escolliu els paquets que voleu instalˇlar"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
#, fuzzy
msgid "across Network"
msgstr "Xarxa:"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Si us plau, escolliu els paquets que voleu instalˇlar"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "Sistemes de fitxers"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Dispositiu del ratolí: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Opcions"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr ""
"Si us plau, seleccioneu el port sčrie al qual teniu connectat el mňdem."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "Configuració de xarxa"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "Fitxer de cňpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "Si us plau, seleccioneu el vostre tipus de ratolí."
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Fitxer de cňpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Si us plau, comproveu el ratolí."
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "Connexió LAN"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Seleccioneu la connexió de la impressora"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Restaura des del disquet"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "Si us plau, seleccioneu el vostre tipus de ratolí."
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "Altres"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "Instalˇla el sistema"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "Restaura des del fitxer"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "Restaura des del fitxer"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "Personalitzada"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/_Ajuda"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
#, fuzzy
msgid "Previous"
msgstr "<- Anterior"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr "Estat:"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "Fitxer de cňpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr "Restaura des del fitxer"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr "Text"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "Paquets a instalˇlar"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Ara s'instalˇlaran els paquets següents"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "Si us plau, trieu un idioma per utilitzar."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "Si us plau, trieu un idioma per utilitzar."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "Si us plau, trieu un idioma per utilitzar."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "Fitxer de cňpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "Fitxer de cňpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "Fitxer de cňpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "Desa al fitxer"
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "Si us plau, comproveu el ratolí."
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr "Si us plau, escolliu els paquets que voleu instalˇlar"
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Configuració de xarxa"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "Configuració de xarxa"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "Configuració de la LAN"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "Configuració de la LAN"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "Sistemes de fitxers"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9755,7 +10197,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9764,7 +10206,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9805,7 +10247,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9833,12 +10275,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -9855,7 +10302,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9895,7 +10342,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9906,7 +10353,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9919,7 +10366,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9963,105 +10410,531 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Ha fallat la instalˇlació del %s. S'ha produďt l'error següent:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Eines de consola"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "Control Center"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "obligatori"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Ratolí"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Impressora remota"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Nom de compartició"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Printerdrake"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Assistent de configuració de xarxa"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Autenticació"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Selecció del grup de paquets"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Si us plau, espereu"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Surt de la instalˇlació"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "Port"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr ""
+"Podeu seleccionar altres idiomes, que quedaran disponibles després de la "
+"instalˇlació"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Configuració de xarxa (%d adaptadors)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Perfil: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Suprimeix el perfil..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Perfil a suprimir:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Perfil nou..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Nom de l'ordinador central: "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Accés a Internet"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Tipus:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Passarelˇla:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Intefície:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Estat:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Configura l'accés a Internet..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "Configuració de la LAN"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Programa de control"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Interfície"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protocol"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "State"
+msgstr "Estat:"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Configura la xarxa d'ŕrea local..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Assistent..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Aplica"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Si us plau, espereu... s'estŕ aplicant la configuració"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Connectat"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Sense connexió"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Connecta..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Desconnecta..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "Configuració de la LAN"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Adaptador %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Protocol d'arrencada"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Iniciat en l'arrencada"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "Client DHCP"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "activate now"
+msgstr "Actiu"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "deactivate now"
+msgstr "Actiu"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Configuració de la connexió a Internet"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Configuració de la connexió a Internet"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Tipus de connexió: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parŕmetres"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Passarelˇla"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Targeta Ethernet"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "Client DHCP"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "sintaxi: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Nom del mňdul"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Mida"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "creació de discs d'arrencada"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "predeterminat"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Error del DrakFloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "versió del nucli"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "General"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Ŕrea d'experts"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "Arguments opcional de l'mkinitrd"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Afegeix un mňdul"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "imposa"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "si cal"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "omet els mňduls SCSI"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "omet els mňduls RAID"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Elimina un mňdul"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Sortida"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Munta el disc"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Assegureu-vos que hi ha un suport al dispositiu %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"No hi ha cap suport al dispositiu %s.\n"
+"Si us plau, inseriu-ne un."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "No es pot bifurcar: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"No es pot tancar l'mkbootdisk correctament: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "no s'ha trobat %s"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr "Fet"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
#, fuzzy
msgid "Fonts copy"
msgstr "Formata el disquet"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "S'estŕ preparant la instalˇlació"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
#, fuzzy
msgid "Restart XFS"
msgstr "limita"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "limita"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10070,123 +10943,122 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "Formata les particions"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
#, fuzzy
msgid "Uninstall Fonts"
msgstr "S'estan desinstalˇlant els RPM"
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Configuració de la LAN"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr "Punt de muntatge"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Escolliu les particions que voleu formatar"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "Oficina"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr "Interromp"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr "Impressora"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "Instalˇla el sistema"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "Seleccioneu el fitxer"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "Impressora remota"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
#, fuzzy
msgid "Initials tests"
msgstr "Missatge d'inicialització"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr "No teniu cap adaptador de xarxa al sistema!"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "Instalˇla"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr "No teniu cap adaptador de xarxa al sistema!"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "Surt de la instalˇlació"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Connexió a Internet compartida"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "La connexió a Internet compartida estŕ habilitada"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10198,31 +11070,31 @@ msgstr ""
"\n"
"Quč voleu fer?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "inhabilita"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "deixa-ho córrer"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "torna a configurar"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "S'estan inhabilitant els servidors..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Ara, la compartició de la connexió a Internet estŕ inhabilitada."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "La connexió a Internet compartida estŕ inhabilitada"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10234,19 +11106,19 @@ msgstr ""
"\n"
"Quč voleu fer?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "habilita"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "S'estan habilitant els servidors..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Ara, la connexió compartida a Internet estŕ habilitada."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10263,21 +11135,21 @@ msgstr ""
"Nota: per configurar una xarxa d'ŕrea local (LAN), us cal un adaptador de "
"xarxa dedicat."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interfície %s (utilitzant el mňdul %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Interfície %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "No teniu cap adaptador de xarxa al sistema!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10285,11 +11157,11 @@ msgstr ""
"No s'ha detectat cap adaptador de xarxa ethernet al sistema. Si us plau, "
"executeu l'eina de configuració de maquinari."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Interfície de la xarxa"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10304,7 +11176,7 @@ msgstr ""
"\n"
"Ara configuraré la vostra xarxa d'ŕrea local amb aquest adaptador."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -10312,12 +11184,12 @@ msgstr ""
"Si us plau, escolliu l'adaptador de xarxa que es connectarŕ\n"
"a la vostra xarxa d'ŕrea local."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "El monitor no estŕ configurat"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10327,17 +11199,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Configuració del tipus d'arrencada"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "Configuració del mňdem"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10348,7 +11220,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
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 C-Class Network that "
@@ -10360,35 +11232,35 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP del servidor CUPS"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"S'ha trobat un conflicte potencial d'adreça LAN en la configuració actual de "
"%s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "S'ha detectat la configuració del sistema de tallafocs!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10396,22 +11268,22 @@ msgstr ""
"Atenció! S'ha detectat una configuració existent del sistema de tallafocs. "
"Potser us caldrŕ fer algun ajustament manual després de la instalˇlació."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "S'estŕ configurant..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"S'estan configurant les seqüčncies, instalˇlant el programari, iniciant els "
"servidors..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Hi ha hagut problemes en instalˇlar el paquet %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10422,23 +11294,23 @@ msgstr ""
"vostra xarxa d'ŕrea local utilitzant la configuració automŕtica de xarxa "
"(DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "La configuració ja s'ha realitzat, perň ara estŕ inhabilitada."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "La configuració ja s'ha realitzat i ara estŕ habilitada."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "No s'ha configurat mai cap connexió compartida a Internet."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Configuració de la compartició de la connexió a Internet"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10453,209 +11325,6 @@ msgstr ""
"\n"
"Feu clic a Configura per executar l'auxiliar de configuració."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Configuració de xarxa (%d adaptadors)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Perfil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Suprimeix el perfil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Perfil a suprimir:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Perfil nou..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Nom de l'ordinador central: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Accés a Internet"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tipus:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Passarelˇla:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Intefície:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Estat:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Configura l'accés a Internet..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Configuració de la LAN"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Programa de control"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interfície"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protocol"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Estat:"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Configura la xarxa d'ŕrea local..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Assistent..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Aplica"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Si us plau, espereu... s'estŕ aplicant la configuració"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Connectat"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Sense connexió"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Connecta..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Desconnecta..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Configuració de la LAN"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adaptador %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Protocol d'arrencada"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Iniciat en l'arrencada"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "Client DHCP"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Actiu"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Actiu"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Configuració de la connexió a Internet"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Configuració de la connexió a Internet"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Tipus de connexió: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parŕmetres"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Passarelˇla"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Targeta Ethernet"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "Client DHCP"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "S'estŕ establint el nivell de seguretat"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Control Center"
@@ -10664,94 +11333,130 @@ msgstr "Control Center"
msgid "Choose the tool you want to use"
msgstr "Escolliu l'eina que voleu utilitzar "
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\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 ""
+
+#: ../../standalone/drakxtv_.c:72
#, fuzzy
msgid "Canada (cable)"
msgstr "Canadenc (Quebec)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "East Europe"
msgstr "Europa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "França"
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr "Islandčs"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "West Europe"
msgstr "Europa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr "sčrie"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "S'ha produďt un error en instalˇlar els paquets"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10796,7 +11501,7 @@ msgstr "No es pot iniciar l'actualització en directe !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -10845,13 +11550,9 @@ msgstr "/_Opcions"
msgid "/Options/Test"
msgstr "/Opcions/Prova"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Ajuda"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
-msgstr "/Ajuda/_Quant a..."
+msgstr "/Ajuda/_Quant a.."
#: ../../standalone/logdrake_.c:118
msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
@@ -10912,7 +11613,7 @@ msgstr "Calendari"
msgid "Content of the file"
msgstr "Contingut del fitxer"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -10921,81 +11622,111 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr "si us plau, espereu, s'estŕ analitzant el fitxer: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "Configuració de la LAN"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache i Pro-ftpd"
-
#: ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid "sshd"
-msgstr "ombra"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Nom de domini"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "Ext2"
+msgid "Ftp Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Servidor, base de dades"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "Servidor NIS"
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "dispositiu"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Servidor de la impressora"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "interessant"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "s'estŕ formatant"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "Configuració"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Anomena i desa..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Si us plau, seleccioneu el vostre tipus de ratolí."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "no s'ha trobat cap serial_usb\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Voleu emular el tercer botó?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "S'estŕ llegint la base de dades de controladors CUPS..."
+
+#: ../../standalone/scannerdrake_.c:42
+#, fuzzy
+msgid "Detecting devices ..."
+msgstr "S'estan detectant els dispositius..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -11039,6 +11770,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "Configuració del sistema de tallafocs"
@@ -11446,10 +12189,6 @@ msgid "Multimedia - Sound"
msgstr "Multimčdia - So"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Utilitats"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Documentació"
@@ -11553,10 +12292,6 @@ msgstr ""
"per navegar pel Web"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arxivament, emuladors, monitorització"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Comptabilitat personal"
@@ -11605,3374 +12340,212 @@ msgstr "Multimčdia - Gravació de CD"
msgid "Scientific Workstation"
msgstr "Estació científica de treball"
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Interromp"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#~ msgid "None"
-#~ msgstr "Cap"
-
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Escolliu l'usuari per omissió:"
-
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Impressora remota"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Ara podeu proporcionar les seves opcions per al mňdul %s."
-
-#~ msgid "mount failed"
-#~ msgstr "ha fallat el muntatge"
-
-#~ msgid "Low"
-#~ msgstr "Baix"
-
-#~ msgid "Medium"
-#~ msgstr "Mitjŕ"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Poques millores per a aquest nivell de seguretat; la principal és que hi "
-#~ "ha\n"
-#~ "més avisos i comprovacions de seguretat."
-
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr "Multimčdia"
-
-#~ msgid "Boot mode"
-#~ msgstr "Mode d'arrencada"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Expert"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "El GNU/Linux gestiona l'hora en GMT (Hora de Greenwich) i la\n"
-#~ "tradueix a l'hora local segons la zona horŕria seleccionada."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "Connecta't a Internet"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Desconnecta't d'Internet"
-
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Configura la connexió de xarxa (LAN o Internet)"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "A quin disc us voleu desplaçar?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Si us plau, escolliu els paquets que voleu instalˇlar"
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Informació"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Estació de treball GNOME"
+#~ msgid "Choose options for server"
+#~ msgstr "Escolliu les opcions per al servidor"
-#~ msgid "authentification"
-#~ msgstr "autenticació"
+#~ msgid "Monitor not configured"
+#~ msgstr "El monitor no estŕ configurat"
-#~ msgid "user"
-#~ msgstr "usuari"
-
-#, fuzzy
-#~ msgid ""
-#~ "Apache is a World Wide Web server. It is used to serve HTML files and "
-#~ "CGI."
-#~ msgstr ""
-#~ "L'Apache és un servidor de World Wide Web. S'utilitza per servir fitxers\n"
-#~ "HTML i CGI."
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "La targeta grŕfica encara no estŕ configurada"
-#~ msgid ""
-#~ "named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
-#~ "host names to IP addresses."
-#~ msgstr ""
-#~ "named (BIND) és un servidor de noms de domini (DNS) que s'utiilitza\n"
-#~ "per convertir noms d'ordinadors centrals en adreces IP."
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Encara no s'han escollit les resolucions"
-#, fuzzy
#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
#~ "\n"
-#~ msgstr "Si us plau, seleccioneu el vostre tipus de ratolí."
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "Surt"
-
-#, fuzzy
-#~ msgid "Removable media"
-#~ msgstr "Muntatge automŕtic del suport extraďble"
-
-#~ msgid "Active"
-#~ msgstr "Actiu"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "No"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "S'ha detectat una impressora, model \"%s\", a"
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Dispositiu de la impressora local"
-
-#~ msgid "Printer Device"
-#~ msgstr "Dispositiu d'impressora"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Servidor CUPS remot"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "Servidor CUPS remot"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Mode de sistema"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "Altres"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Si us plau, selecioneu la disposició del vostre teclat."
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Si us plau, feu clic a una partició "
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Tipus: "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Fitxer de cňpia de seguretat incorrecte"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "Configura l'X"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Dispositiu d'impressora"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Cancelˇla"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "D'acord"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Tanca"
-
-#, fuzzy
-#~ msgid "toto"
-#~ msgstr "toot"
-
-#, fuzzy
-#~ msgid "Starting your connection..."
-#~ msgstr "S'estŕ comprovant la vostra conexió..."
-
-#~ msgid "Closing your connection..."
-#~ msgstr "S'estŕ tancant la connexió..."
-
-#~ msgid ""
-#~ "The connection is not closed.\n"
-#~ "Try to do it manually by running\n"
-#~ "/etc/sysconfig/network-scripts/net_cnx_down\n"
-#~ "in root."
-#~ msgstr ""
-#~ "La connexió no estŕ tancada.\n"
-#~ "Intenteu fer-ho manualment executant\n"
-#~ "/etc/sysconfig/network-scripts/net_cnx_down\n"
-#~ "a root."
-
-#~ msgid "The system is now disconnected."
-#~ msgstr "Ara, el sistema estŕ desconnectat."
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Escolliu la mida que voleu instalˇlar"
-
-#~ msgid "Total size: "
-#~ msgstr "Mida total: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Si us plau, espereu, "
-
-#~ msgid "Total time "
-#~ msgstr "Temps total "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "Voleu utilitzar la configuració existent per a X11?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
-#~ msgstr ""
-#~ "A quin dispositiu estŕ connectada la vostra impressora?\n"
-#~ "(tingueu en compte que /dev/lp0 equival a LPT1:)\n"
-
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr ""
-#~ "Compte, l'adaptador de xarxa ja estŕ configurat. El tornaré a configurar."
-
-#~ msgid "New"
-#~ msgstr "Nou"
-
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "Elimina"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Si us plau, feu clic a una partició "
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Ambigüitat (%s), sigueu més precís\n"
-
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (predeterminat %s) "
-
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "La vostra elecció? (predeterminat %s introduďu `cap' per a cap) "
-
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "no es pot obrir /etc/sysconfig/autologin per a lectura: %s"
-
-#~ msgid "Do you want to restart the network"
-#~ msgstr "Voleu reiniciar la xarxa"
-
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "Hi esteu d'acord?"
-
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Ara reiniciaré el dispositiu de xarxa:\n"
-
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "Ara reiniciaré el dispositiu de xarxa %s. Hi esteu d'acord?"
-
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Tret que sapigueu expressament que s'ha d'indicar una altra cosa, "
-#~ "l'elecció\n"
-#~ "habitual és \"/dev/hda\" (el disc IDE mestre primari) o bé \"/dev/sda\"\n"
-#~ "(el primer disc SCSI)."
-
-#, fuzzy
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "Tipus de connexió: "
-
-#, fuzzy
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Escolliu l'usuari per omissió:"
-
-#, fuzzy
-#~ msgid "Test the mouse here."
-#~ msgstr "Si us plau, comproveu el ratolí."
-
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr ""
-#~ "Escolliu l'idioma que voleu utilitzar per a la instalˇlació i per a l'ús "
-#~ "del sistema."
-
-#~ msgid ""
-#~ "You need to accept the terms of the above license to continue "
-#~ "installation.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Accept\" if you agree with its terms.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Refuse\" if you disagree with its terms. Installation "
-#~ "will end without modifying your current\n"
-#~ "configuration."
-#~ msgstr ""
-#~ "Heu d'acceptar els termes de la llicčncia de més amunt per poder "
-#~ "continuar la instalˇlació.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si us plau, feu clic a \"Accepto\" si hi esteu d'acord.\n"
-#~ "\n"
-#~ "\n"
-#~ "Feu clic a \"No accpeto\" si no hi esteu d'acord. La instalˇlació "
-#~ "finalitzarŕ sense modificar la instalˇlació actual."
-
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr "Escolliu el vostre tipus de teclat de la llista inferior"
-
-#~ msgid ""
-#~ "If you wish other languages (than the one you choose at\n"
-#~ "beginning of installation) will be available after installation, please "
-#~ "chose\n"
-#~ "them in list above. If you want select all, you just need to select \"All"
-#~ "\"."
-#~ msgstr ""
-#~ "Si desitgeu que altres idiomes (a més del que vau triar en\n"
-#~ "iniciar la instalˇlació) estiguin disponibles després de la "
-#~ "instalˇlació,\n"
-#~ "escolliu-los de la llista de més amunt. Si els voleu seleccionar tots,\n"
-#~ "només cal que seleccioneu \"Tots\"."
-
-#~ msgid ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!"
-#~ msgstr ""
-#~ "Seleccioneu:\n"
-#~ "\n"
-#~ " - Personalitzada: Si esteu familiaritzat amb el Linux, podreu\n"
-#~ "triar l'ús del sistema instalˇlat entre Normal, Desenvolupament o\n"
-#~ "Servidor. Trieu \"Normal\" per a una instalˇlació per a un ús\n"
-#~ "general del vostre ordinador, \"Desenvolupament\" si utilitzareu\n"
-#~ "l'ordinador principalment per a desenvolupament de programari,\n"
-#~ "o \"Servidor\" si voleu instalˇlar un servidor convencional (per\n"
-#~ "a correu, impressions...).\n"
-#~ "\n"
-#~ "\n"
-#~ " - Per a experts: Si domineu el GNU/Linux i voleu realitzar una\n"
-#~ "instalˇlació totalment personalitzada, aquest és el vostre\n"
-#~ "tipus d'instalˇlació. Podreu seleccionar l'ús del vostre sistema\n"
-#~ "com a \"Personalitzada\"."
-
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "Ara heu de decidir com utilitzareu l'ordinador. Les opcions són:\n"
-#~ "\n"
-#~ "* Estació de treball: l'elecció ideal si penseu utilitzar l'ordinador "
-#~ "bŕsicament per a l'ús quotidiŕ, a la feina o\n"
-#~ " a casa.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Desenvolupament: si penseu utilitzar l'ordinador bŕsicament per a "
-#~ "desenvolupament de programari, aquesta és l'elecció ideal.\n"
-#~ " Tindreu instalˇlada una completa colˇlecció de programari per poder "
-#~ "compilar, depurar i formatar codi font,\n"
-#~ " o crear paquets de programari.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Servidor: si penseu utilitzar l'ordinador com a servidor, aquesta és "
-#~ "l'elecció ideal, ja sigui un servidor de fitxers (NFS o\n"
-#~ " SMB), un servidor d'impressió (tipus Unix o Microsoft Windows), un "
-#~ "servidor d'autenticació (NIS), un servidor\n"
-#~ " de bases de dades, etc. En canvi, no espereu que se us instalˇlin coses "
-#~ "com ara el KDE, el GNOME, etc.)"
-
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "Ara podeu seleccionar el grup de paquets que voleu instalˇlar o "
-#~ "actualitzar.\n"
-#~ "\n"
-#~ "\n"
-#~ "El DrakX comprovarŕ si teniu prou espai per instalˇlar-los tots i, si no, "
-#~ "us\n"
-#~ "ho avisarŕ. Si voleu seguir igualment, continuarŕ amb la instalˇlació de "
-#~ "tots\n"
-#~ "els grups seleccionats perň no n'instalˇlarŕ alguns de menys interčs. Al "
-#~ "final\n"
-#~ "de la llista podeu seleccionar l'opció \"Selecció individual de paquets"
-#~ "\", i\n"
-#~ "en aquest cas haureu de navegar per més de 1.000 paquets..."
-
-#~ msgid ""
-#~ "You can now choose individually all the packages you\n"
-#~ "wish to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can expand or collapse the tree by clicking on options in the left "
-#~ "corner of\n"
-#~ "the packages window.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you prefer to see packages sorted in alphabetic order, click on the "
-#~ "icon\n"
-#~ "\"Toggle flat and group sorted\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want not to be warned on dependencies, click on \"Automatic\n"
-#~ "dependencies\". If you do this, note that unselecting one package may "
-#~ "silently\n"
-#~ "unselect several other packages which depend on it."
-#~ msgstr ""
-#~ "Ara podeu triar individualment tots els paquets que voleu instalˇlar.\n"
-#~ "\n"
-#~ "\n"
-#~ "Podeu expandir o reduir l'arbre fent clic a les opcions del racó esquerre "
-#~ "de la finestra de paquets.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si preferiu veure els paquets ordenats alfabčticament, feu clic a la "
-#~ "icona\n"
-#~ "\"Commuta entre ordenació plana i per grups\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Si no voleu ser avisat pel que fa a les dependčncies, feu clic a "
-#~ "\"Dependčncies\n"
-#~ "automŕtiques\". Si ho feu, tingueu en compte que el fet de "
-#~ "desseleccionar\n"
-#~ "un paquet pot causar la desselecció d'altres paquets que en depenen, i "
-#~ "no\n"
-#~ "us n'assabentareu."
-
-#~ msgid ""
-#~ "If you have all the CDs in the list above, click Ok. If you have\n"
-#~ "none of those CDs, click Cancel. If only some CDs are missing, unselect "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "Si teniu tots els CD de la llista superior, feu clic a D'acord.\n"
-#~ "Si no teniu cap d'aquests CD, feu clic a Cancelˇla.\n"
-#~ "Si només falten alguns CD, desseleccioneu-los i feu clic a D'acord."
-
-#~ msgid ""
-#~ "If you wish to connect your computer to the Internet or\n"
-#~ "to a local network please choose the correct option. Please turn on your "
-#~ "device\n"
-#~ "before choosing the correct option to let DrakX detect it automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you do not have any connection to the Internet or a local network, "
-#~ "choose\n"
-#~ "\"Disable networking\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you wish to configure the network later after installation, or if you "
-#~ "have\n"
-#~ "finished to configure your network connection, choose \"Done\"."
-#~ msgstr ""
-#~ "Si voleu connectar l'ordinador a Internet o a una xarxa local, "
-#~ "seleccioneu\n"
-#~ "l'opció corresponent, perň abans recordeu engegar el dispositiu per tal "
-#~ "que\n"
-#~ "el DrakX el detecti automŕticament.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si no teniu connexió a Internet ni a cap xarxa local, escolliu "
-#~ "\"Inhabilita el servei de xarxa\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Si voleu configurar la xarxa més endavant, després de la instalˇlació, o "
-#~ "si\n"
-#~ "heu acabat la configuració de la connexió de xarxa, trieu \"Fet\"."
-
-#~ msgid ""
-#~ "No modem has been detected. Please select the serial port on which it is "
-#~ "plugged.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, the first serial port (called \"COM1\" under Microsoft\n"
-#~ "Windows) is called \"ttyS0\" under Linux."
-#~ msgstr ""
-#~ "No s'ha detectat cap mňdem. Si us plau, seleccioneu el port sčrie on estŕ "
-#~ "connectat.\n"
-#~ "\n"
-#~ "\n"
-#~ "Per a la vostra informació, el primer port sčrie (anomenat \"COM1\" en "
-#~ "Microsoft Windows) s'anomena \"ttyS0\" en Linux."
-
-#~ msgid ""
-#~ "You may now enter dialup options. If you don't know\n"
-#~ "or are not sure what to enter, the correct informations can be obtained "
-#~ "from\n"
-#~ "your Internet Service Provider. If you do not enter the DNS (name "
-#~ "server)\n"
-#~ "information here, this information will be obtained from your Internet "
-#~ "Service\n"
-#~ "Provider at connection time."
-#~ msgstr ""
-#~ "Ara podeu introduir les opcions de marcatge. Si no sabeu quč heu "
-#~ "d'introduir,\n"
-#~ "o si no n'esteu segur, podreu aconseguir la informació necessŕria del "
-#~ "vostre\n"
-#~ "proveďdor d'Internet. Si no introduďu aquí la informació del DNS "
-#~ "(servidor de\n"
-#~ "noms), aquesta informació s'obtindrŕ del proveďdor en el moment de "
-#~ "connectar."
-
-#~ msgid ""
-#~ "If your modem is an external modem, please turn on it now to let DrakX "
-#~ "detect it automatically."
-#~ msgstr ""
-#~ "Si el mňdem que teniu és extern, engegueu-lo per tal que el DrakX el "
-#~ "detecti automŕticament."
-
-#~ msgid "Please turn on your modem and choose the correct one."
-#~ msgstr "Si us plau, engegueu el mňdem i trieu-ne el correcte."
-
-#~ msgid ""
-#~ "If you are not sure if informations above are\n"
-#~ "correct or if you don't know or are not sure what to enter, the correct\n"
-#~ "informations can be obtained from your Internet Service Provider. If you "
-#~ "do not\n"
-#~ "enter the DNS (name server) information here, this information will be "
-#~ "obtained\n"
-#~ "from your Internet Service Provider at connection time."
-#~ msgstr ""
-#~ "Si no esteu segur de si la informació de més amunt és correcta, si no "
-#~ "sabeu\n"
-#~ "quč introduir o si no n'esteu segur, podreu aconseguir la informació\n"
-#~ "necessŕria del vostre proveďdor d'Internet. Si no introduďu aquí la\n"
-#~ "informació del DNS (servidor de noms), aquesta informació s'obtindrŕ del\n"
-#~ "proveďdor en el moment de connectar."
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, the correct informations can "
-#~ "be\n"
-#~ "obtained from your Internet Service Provider."
-#~ msgstr ""
-#~ "Ara podeu introduir el nom del vostre ordinador central. Si no esteu "
-#~ "segur del que hi\n"
-#~ "heu d'introduir, el vostre proveďdor us en donarŕ la informació correcta."
-
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Ara podeu configurar el voste dispositiu de xarxa.\n"
-#~ "\n"
-#~ " * Adreça IP: si no la sabeu, o no n'esteu segur, pregunteu-la a "
-#~ "l'administrador de la xarxa.\n"
-#~ " No heu d'introduir cap adreça IP si més avall seleccioneu l'opció "
-#~ "\"IP automŕtica\".\n"
-#~ "\n"
-#~ " * Mŕscara de la xarxa: Normalment, \"255.255.255.0\" és una bona "
-#~ "elecció. Si no n'esteu segur, consulteu-ho a l'administrador de la "
-#~ "xarxa.\n"
-#~ "\n"
-#~ " * IP automŕtica: si la vostra xarxa utilitza els protocols BOOTP o "
-#~ "DHCP,\n"
-#~ "seleccioneu aquesta opció. Si es selecciona, no cal cap valor per a "
-#~ "\"Adreça IP\". Si no n'esteu segur, consulteu-ho a l'administrador de la "
-#~ "xarxa."
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, ask your network administrator."
-#~ msgstr ""
-#~ "Ara podeu introduir el nom del vostre ordinador central, si cal. Si no "
-#~ "el\n"
-#~ "sabeu, o no esteu segur de quč heu d'introduir, consulteu a "
-#~ "l'administrador de la xarxa."
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, leave blank."
-#~ msgstr ""
-#~ "Ara podeu introduir el nom del vostre ordinador central, si cal. Si no\n"
-#~ "el sabeu, o si esteu segur de quč introduir, deixeu-ho en blanc."
-
-#~ msgid ""
-#~ "You may now enter dialup options. If you're not sure what to enter, the\n"
-#~ "correct information can be obtained from your ISP."
-#~ msgstr ""
-#~ "Ara podeu introduir les opcions de marcatge. Si no esteu segur del que "
-#~ "hi\n"
-#~ "heu d'introduir, el vostre proveďdor us en donarŕ la informació correcta."
-
-#~ msgid ""
-#~ "If you will use proxies, please configure them now. If you don't know if\n"
-#~ "you should use proxies, ask your network administrator or your ISP."
-#~ msgstr ""
-#~ "Si teniu previst utilitzar proxys, configureu-los ara. Si no sabeu si\n"
-#~ "n'utilitzareu, consulteu-ho a l'administrador de la xarxa o al vostre\n"
-#~ "proveďdor."
-
-#~ msgid ""
-#~ "You can install cryptographic package if your internet connection has "
-#~ "been\n"
-#~ "set up correctly. First choose a mirror where you wish to download "
-#~ "packages and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "Podeu instalˇlar el paquet criptogrŕfic si la vostra connexió a Internet\n"
-#~ "s'ha configurat correctament. Escolliu primer una rčpilca des de la qual\n"
-#~ "vulgueu descarregar paquets i després seleccioneu els paquets a "
-#~ "instalˇlar.\n"
-#~ "\n"
-#~ "\n"
-#~ "Tingueu en compte que heu de seleccionar la rčplica i els paquets\n"
-#~ "criptogrŕfics segons la vostra legislació."
-
-#~ msgid "You can now select your timezone according to where you live."
-#~ msgstr "Ara podeu seleccionar la zona horŕria segons el lloc on viviu."
-
-#~ msgid ""
-#~ "You can configure a local printer (connected to your computer) or remote\n"
-#~ "printer (accessible via a Unix, Netware or Microsoft Windows network)."
-#~ msgstr ""
-#~ "Podeu configurar una impressora local (connectada al vostre ordinador) o\n"
-#~ "remota (accessible mitjançant una xarxa Unix, Netware o Microsoft "
-#~ "Windows)."
-
-#~ msgid ""
-#~ "If you wish to be able to print, please choose one printing system "
-#~ "between\n"
-#~ "CUPS and LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS is a new, powerful and flexible printing system for Unix systems "
-#~ "(CUPS\n"
-#~ "means \"Common Unix Printing System\"). It is the default printing system "
-#~ "in\n"
-#~ "Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR is the old printing system used in previous Mandrake Linux "
-#~ "distributions.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you don't have printer, click on \"None\"."
-#~ msgstr ""
-#~ "Si voleu imprimir, trieu un sistema de impressió entre CUPS i LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "El CUPS és un nou sistema d'impressió, potent i flexible, per a sistemes "
-#~ "Unix\n"
-#~ "(CUPS significa \"Common Unix Printing System\"). És el sistema "
-#~ "d'impressió\n"
-#~ "per defecte en Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "L'LPR és l'antic sistema d'impressió utilitzat en distribucions anteriors "
-#~ "de\n"
-#~ "Mandrake Linux distributions.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si no teniu impressora, feu clic a \"Cap\"."
-
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these types "
-#~ "requires\n"
-#~ "a different setup.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select \"Local\n"
-#~ "printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine, select\n"
-#~ "\"Remote printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Microsoft Windows "
-#~ "machine\n"
-#~ "(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
-#~ msgstr ""
-#~ "El GNU/Linux pot treballar amb molts tipus d'impressores, perň cada un\n"
-#~ "d'aquests tipus requereix una configuració diferent.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si teniu la impressora connectada físicament a l'ordinador, seleccioneu\n"
-#~ "\"Impressora local\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Si voleu accedir a una impressora que es troba en un ordinador Unix "
-#~ "remot,\n"
-#~ "seleccioneu \"Impressora remota\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Si voleu accedir a una impressora que es troba en un ordinador Microsoft\n"
-#~ "Windows remot (o en un ordinador Unix que utilitza el protocol SMB),\n"
-#~ "seleccioneu \"SMB/Windows 95/98/NT\"."
-
-#~ msgid ""
-#~ "Please turn on your printer before continuing to let DrakX detect it.\n"
-#~ "\n"
-#~ "You have to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of printer: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you must have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer a more meaningful name, you "
-#~ "have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Description: this is optional but can be useful if several printers "
-#~ "are connected to your computer or if you allow\n"
-#~ " other computers to access to this printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Location: if you want to put some information on your\n"
-#~ " printer location, put it here (you are free to write what\n"
-#~ " you want, for example \"2nd floor\").\n"
+#~ "try to change some parameters"
#~ msgstr ""
-#~ "Si us plau, engegueu la impressora abans de continuar per tal que el "
-#~ "DrakX\n"
-#~ "la pugui detectar.\n"
-#~ "\n"
-#~ "Aquí heu d'introduir algunes dades.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Nom de la impressora: l'spool d'impressió utilitza \"lp\" com a nom "
-#~ "per\n"
-#~ "omissió de la impressora. Per tant, heu de tenir una impressora "
-#~ "anomenada\n"
-#~ "\"lp\".\n"
-#~ " Si només teniu una impressora, podeu donar-li diversos;\n"
-#~ "noms; només cal que els separeu amb el carŕcter \"|\". Per tant,\n"
-#~ "si preferiu un nom més expressiu, l'heu d'indicar en primer lloc\n"
-#~ "(per exemple: \"La meva impressora|lp\").\n"
-#~ " La impressora que contingui \"lp\" al(s) nom(s) serŕ la impressora "
-#~ "per omissió.\n"
#~ "\n"
-#~ "\n"
-#~ " * Descripció: és opcional, perň pot ser útil si teniu diverses\n"
-#~ "impressores connectades a l'ordinador o si permeteu que altres\n"
-#~ "ordinadors accedeixin a aquesta impressora.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Ubicació: si voleu incloure informació sobre la ubicació de la\n"
-#~ "impressora, feu-ho aquí (podeu escriure el que vulgueu, (per exemple,\n"
-#~ "\"2n pis\").\n"
+#~ "intenteu canviar alguns parŕmetres"
-#~ msgid ""
-#~ "You need to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of queue: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you need have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer to have a more meaningful "
-#~ "name, you have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ " \n"
-#~ " * Spool directory: it is in this directory that printing jobs are "
-#~ "stored. Keep the default choice\n"
-#~ " if you don't know what to use\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printer Connection: If your printer is physically connected to your "
-#~ "computer, select \"Local printer\".\n"
-#~ " If you want to access a printer located on a remote Unix machine, "
-#~ "select \"Remote lpd printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to access a printer located on a remote Microsoft "
-#~ "Windows machine (or on Unix machine using SMB\n"
-#~ " protocol), select \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to acces a printer located on NetWare network, select "
-#~ "\"NetWare\".\n"
-#~ msgstr ""
-#~ "Aquí heu d'introduir algunes dades.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Nom de la cua: l'spool d'impressió utilitza \"lp\" com a nom per\n"
-#~ "omissió de la impressora. Per tant, heu de tenir una impressora "
-#~ "anomenada\n"
-#~ "\"lp\".\n"
-#~ " Si només teniu una impressora, podeu donar-li diversos;\n"
-#~ "noms; només cal que els separeu amb el carŕcter \"|\". Per tant,\n"
-#~ "si preferiu un nom més expressiu, l'heu d'indicar en primer lloc\n"
-#~ "(per exemple: \"La meva impressora|lp\").\n"
-#~ " La impressora que contingui \"lp\" al(s) nom(s) serŕ la impressora "
-#~ "per omissió.\n"
-#~ "\n"
-#~ " \n"
-#~ " * Directori d'spool: les tasques d'impressió s'emmagatzemen en aquest "
-#~ "directori.Conserveu la opció predeterminada si no sabeu quina utilitzar\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printer Connection: If your printer is physically connected to your "
-#~ "computer, select \"Local printer\".\n"
-#~ " Si voleu accedir a una impressora que es troba en un ordinador Unix\n"
-#~ "remot, seleccioneu \"Impressora lpd remota\".\n"
-#~ "\n"
-#~ "\n"
-#~ " Si voleu accedir a una impressora que es troba en un ordinador\n"
-#~ "Microsoft Windows remot (o en un ordinador Unix que utilitza el protocol\n"
-#~ "SMB), seleccioneu \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ " Si voleu accedir a una impressora que es troba en una xarxa "
-#~ "NetWare,\n"
-#~ "seleccioneu \"NetWare\".\n"
+#~ msgid "An error occurred:"
+#~ msgstr "S'ha produďt un error:"
-#~ msgid ""
-#~ "Your printer has not been detected. Please enter the name of the device "
-#~ "on\n"
-#~ "which it is connected.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, most printers are connected on the first parallel port. "
-#~ "This\n"
-#~ "one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
-#~ "Windows."
-#~ msgstr ""
-#~ "No s'ha detectat la vostra impressora. Si us plau, introduďu el nom del\n"
-#~ "dispositiu a quč estŕ connectada.\n"
-#~ "\n"
-#~ "\n"
-#~ "Per a la vostra informació, la majoria d'impressores estan connectades "
-#~ "al\n"
-#~ "primer port paralˇlel, que s'anomena \"/dev/lp0\" en GNU/Linux i \"LPT1"
-#~ "\"\n"
-#~ "en Microsoft Windows."
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Sortida en %d segons"
-#~ msgid "You must now select your printer in the above list."
-#~ msgstr "Ara heu de seleccionar la vostra impressora a la llista superior."
+#~ msgid "Is this the correct setting?"
+#~ msgstr "És aquest el parŕmetre corrcte?"
-#~ msgid ""
-#~ "Please select the right options according to your printer.\n"
-#~ "Please see its documentation if you don't know what choose here.\n"
-#~ "\n"
-#~ "\n"
-#~ "You will be able to test your configuration in next step and you will be "
-#~ "able to modify it if it doesn't work as you want."
-#~ msgstr ""
-#~ "Si us plau, seleccioneu les opcions correctes segons la vostra "
-#~ "impressora;\n"
-#~ "consulteu-ne la documentació si no sabeu quč heu de seleccionar.\n"
-#~ "\n"
-#~ "\n"
-#~ "Podreu comprovar la configuració en el pas següent i modificar-la si no\n"
-#~ "funciona exactament com voleu."
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "S'ha produďt un error, intenteu canviar alguns parŕmetres"
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "Ara podeu introduir la contrasenya de l'usuari 'root' del vostre\n"
-#~ "sistema Mandrake Linux. Ho heu de fer dos cops per verificar que\n"
-#~ "ambdues introduccions són idčntiques.\n"
-#~ "\n"
-#~ "\n"
-#~ "L'usuari 'root' és l'administrador del sistema, i és l'únic\n"
-#~ "autoritzat per modificar la configuració del sistema; per tant,\n"
-#~ "trieu amb molta cura aquesta contrasenya. L'ús no autoritzat del\n"
-#~ "compte 'root' pot ser extremadament perillós per a la integritat\n"
-#~ "del sistema, per a les seves dades, i per a altres sistema que hi\n"
-#~ "estan connectats.\n"
-#~ "\n"
-#~ "\n"
-#~ "La contrasenya s'ha de crear amb diversos carŕcters alfanumčrics, ha de\n"
-#~ "tenir una llargada mínima de 8 carŕcters, i mai no s'ha d'anotar enlloc.\n"
-#~ "\n"
-#~ "\n"
-#~ "No obstant aixň, no creeu una contrasenya excessivament llarga o\n"
-#~ "complicada: heu de poder recordar-la sense problemes."
+#~ msgid "XFree86 server: %s"
+#~ msgstr "Servidor xFree86: %s"
-#~ msgid ""
-#~ "You may now create one or more \"regular\" user account(s), as\n"
-#~ "opposed to the \"privileged\" user account, root. You can create\n"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "Ara podeu crear un o més comptes \"normals\" d'usuari, en\n"
-#~ "contraposició al compte \"privilegiat\", el 'root'. Podeu crear\n"
-#~ "un o més comptes per a cada una de les persones a qui permetreu\n"
-#~ "utilitzar l'ordinador. Tingueu en compte que cada compte d'usuari\n"
-#~ "tindrŕ les seves prňpies preferčncies (entorn grŕfic, parŕmetres\n"
-#~ "del programa. etc.) i el seu propi \"directori inicial\", on\n"
-#~ "s'emmagatzemen aquestes preferčncies.\n"
-#~ "\n"
-#~ "\n"
-#~ "Primer de tot, creeu-vos un compte propi! Encara que sigueu l'únic\n"
-#~ "usuari de l'ordinador, NO us connecteu com a 'root'\n"
-#~ "per a l'ús quotidiŕ del sistema: és un risc de seguretat molt alt.\n"
-#~ "Tot sovint, fer el sistema inutilitzable depčn d'un simple error\n"
-#~ "tipogrŕfic.\n"
-#~ "\n"
-#~ "\n"
-#~ "Per tant, connecteu-vos al sistema amb el compte d'usuari que heu\n"
-#~ "creat, i entreu-hi com a 'root' només per a tasques d'administració\n"
-#~ "i manteniment."
+#~ msgid "Show all"
+#~ msgstr "Mostra'ls tots"
-#~ msgid ""
-#~ "Creating a boot disk is strongly recommended. If you can't\n"
-#~ "boot your computer, it's the only way to rescue your system without\n"
-#~ "reinstalling it."
-#~ msgstr ""
-#~ "És molt recomanable crear un disc d'arrencada. Si no podeu arrencar "
-#~ "l'ordinador,\n"
-#~ "és l'única manera de solucionar-ho sense haver de reinstalˇlar-ho tot."
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "S'estŕ preparant la configuració de l'X-Window"
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <number>: use the corresponding text mode.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories\n"
-#~ "stored in \"/tmp\" when you boot your system, select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the\n"
-#~ "BIOS about the amount of RAM present in your computer. As consequence, "
-#~ "Linux may\n"
-#~ "fail to detect your amount of RAM correctly. If this is the case, you "
-#~ "can\n"
-#~ "specify the correct amount or RAM here. Please note that a difference of "
-#~ "2 or 4\n"
-#~ "MB between detected memory and memory present in your system is normal."
-#~ msgstr ""
-#~ "Les opcions principals del LILO i del Grub són:\n"
-#~ " - Dispositiu d'arrencada: Defineix el nom del dispositiu (p.\n"
-#~ "ex., una partició del disc dur) que conté el sector d'arrencada.\n"
-#~ "Tret que sapigueu expressament que s'ha d'indicar una altra cosa,\n"
-#~ "trieu \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Temps d'espera abans d'arrencar la imatge per defecte: Especifica el\n"
-#~ "temps, en dčcimes de segon, que el carregador d'arrencada ha\n"
-#~ "d'esperar abans de carregar la primera imatge.\n"
-#~ "Aixň és útil en sistemes que arrenquen immediatament des del disc\n"
-#~ "dur després d'habilitar el teclat. El carregador d'arrencada no\n"
-#~ "esperarŕ si s'omet el \"temps d'espera\" o si se li dóna el valor zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Mode de vídeo: Amb aixň s'especifica el mode de text VGA que\n"
-#~ "cal seleccionar en arrencar. Es poden utilitzar els valors\n"
-#~ "següents:\n"
-#~ " * normal: selecciona el mode de text 80x25 normal.\n"
-#~ " * <número>: utilitza el mode de text corresponent.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Neteja de \"/tmp\" en cada arrencada: si voleu suprimir tots els "
-#~ "fitxers i\n"
-#~ "directoris emmagatzemats a \"/tmp\" en arrencar el sistame, seleccioneu\n"
-#~ "aquesta opció.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Si cal, indicació de la mida exacta de la RAM: malauradament, no hi "
-#~ "cap\n"
-#~ "mčtode estŕndard per preguntar al BIOS la quantitat de RAM que teniu a\n"
-#~ "l'ordinador. Per tant, és possible que el Linux no pugui detectar\n"
-#~ "correctament la quantitat de RAM instalˇlada. Si és aquest el cas, en "
-#~ "podeu\n"
-#~ "indicar aquí la quantitat correcta, perň penseu que una diferčncia de 2 o "
-#~ "4\n"
-#~ "MB entre la memňria detectada i la memňria real és normal."
-
-#~ msgid ""
-#~ "SILO is a bootloader for SPARC: it is able to boot\n"
-#~ "either GNU/Linux or any other operating system present on your computer.\n"
-#~ "Normally, these other operating systems are correctly detected and\n"
-#~ "installed. If this is not the case, you can add an entry by hand in this\n"
-#~ "screen. Be careful as to choose the correct parameters.\n"
-#~ "\n"
-#~ "\n"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "anyone, in which case you can delete the corresponding entries. But\n"
-#~ "in this case, you will need a boot disk in order to boot them!"
-#~ msgstr ""
-#~ "El SILO és un carregador d'arrencada per a l'SPARC: pot arrencar el\n"
-#~ "GNU/Linux o qualsevol altre sistema operatiu que tingueu a l'ordinador.\n"
-#~ "Normalment, aquests altres sistemes operatius es detecten i instalˇlen\n"
-#~ "correctament, perň si no és així, podeu afegir-los manualment en aquesta\n"
-#~ "pantalla. Aneu amb compte de triar els parŕmetres correctes.\n"
-#~ "\n"
-#~ "\n"
-#~ "També és possible que no volgueu donar accés a tothom a aquests sistemes\n"
-#~ "operatius; en aquest cas podeu suprimir les entrades corresponents, perň\n"
-#~ "aleshores us caldrŕ un disc d'arrencada per poder-los arrencar!"
-
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ "Les opcions principals del SILO són:\n"
-#~ " - Instalˇlació del carregador d'arrencada: indica on voleu situar la\n"
-#~ "informació necessŕria per arrencar el GNU/Linux. Tret que sapigueu\n"
-#~ "exactament quč esteu fent, seleccioneu \"Primer sector de la unitat\n"
-#~ "(MBR)\".\n"
-#~ " \n"
-#~ "\n"
-#~ " - Temps d'espera abans d'arrencar la imatge per defecte: Especifica el\n"
-#~ "temps, en dčcimes de segon, que el carregador d'arrencada ha\n"
-#~ "d'esperar abans de carregar la primera imatge.\n"
-#~ "Aixň és útil en sistemes que arrenquen immediatament des del disc\n"
-#~ "dur després d'habilitar el teclat. El carregador d'arrencada no\n"
-#~ "esperarŕ si s'omet el \"temps d'espera\" o si se li dóna el valor zero."
-
-#~ msgid ""
-#~ "Now it's time to configure the X Window System, which is the\n"
-#~ "core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "Ara cal configurar el sistema X Window, que és el nucli del GUI\n"
-#~ "(Interfície grŕfica d'usuari) del GNU/Linux. Per a aixň, heu de\n"
-#~ "configurar la vostra targeta grŕfica i el monitor. No obstant\n"
-#~ "aixň, la majoria d'aquests passos estan automatitzats, així que pot\n"
-#~ "ser que la vostra feina es limiti a verificar quč s'ha fet i a\n"
-#~ "acceptar els parŕmetres :)\n"
-#~ "\n"
-#~ "\n"
-#~ "Quan la configuració hagi acabat s'iniciarŕ X (tret que demaneu al\n"
-#~ "Drakx que no ho faci), i podreu verificar si els parŕmetres us\n"
-#~ "convenen. Si no, podreu tornar enrere i canviar-los tantes vegades\n"
-#~ "com calgui."
-
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ "Si hi ha algun problema a la configuració X, utilitzeu aquestes opcions\n"
-#~ "per configurar correctament l'X Window System."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "Si preferiu utilitzar una entrada grŕfica, seleccioneu \"Sí\". En cas\n"
-#~ "contrari, seleccioneu \"No\"."
-
-#~ msgid ""
-#~ "You can choose a security level for your system. Please refer to the "
-#~ "manual for complete\n"
-#~ " information. Basically, if you don't know what to choose, keep the "
-#~ "default option.\n"
-#~ msgstr ""
-#~ "Podeu triar un nivell de seguretat per al vostre sistema. Si us plau,\n"
-#~ "consulteu el manual per obtenir informació completa. Bŕsicament, si no\n"
-#~ "sabeu quč triar, conserveu l'opció per defecte.\n"
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
-#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
-#~ msgstr ""
-#~ "Ara, el sistema es tornarŕ a arrencar.\n"
-#~ "\n"
-#~ "Després d'aixň, el sistema Mandrake Linux es carregarŕ\n"
-#~ "automŕticament. Si voleu arrencar un altre sistema operatiu existent,\n"
-#~ "llegiu les instruccions addicionals."
-
-#~ msgid "Czech (Programmers)"
-#~ msgstr "Txec (Programadors)"
-
-#~ msgid "Slovakian (Programmers)"
-#~ msgstr "Eslovac (Programadors)"
-
-#~ msgid "Name of the profile to create:"
-#~ msgstr "Nom del perfil a crear:"
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "Escriu a /etc/fstab"
-
-#~ msgid "Format all"
-#~ msgstr "Formata-ho tot"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "Després de formatar totes les particions,"
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "totes les dades d'aquestes particions s'hauran perdut"
-
-#~ msgid "Reload"
-#~ msgstr "Torna a carregar"
-
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr ""
-#~ "Voleu generar un disquet d'instalˇlació automŕtica per fer cňpies del "
-#~ "Linux?"
-
-#~ msgid "ADSL configuration"
-#~ msgstr "Configuració de l'ADSL"
-
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ "Amb un servidor CUPS remot, aquí no us cal configurar cap\n"
-#~ "impressora; les impressores es detectaran automŕticament,\n"
-#~ "tret que tingueu un servidor en una altra xarxa; en aquest\n"
-#~ "cas, heu d'indicar l'adreça IP, i opcionalment el número de\n"
-#~ "port, al servidor CUPS."
-
-#~ msgid "Remote queue"
-#~ msgstr "Cua remota"
-
-#, fuzzy
-#~ msgid "Remote queue name missing!"
-#~ msgstr "Cua remota"
-
-#, fuzzy
-#~ msgid "Command line"
-#~ msgstr "Nom de domini"
-
-#, fuzzy
-#~ msgid "Modify printer"
-#~ msgstr "Cap impressora"
-
-#~ msgid "Network Monitoring"
-#~ msgstr "Monitorització de la xarxa"
-
-#~ msgid "Profile "
-#~ msgstr "Perfil "
-
-#~ msgid "Statistics"
-#~ msgstr "Estadístiques"
-
-#~ msgid "Sending Speed:"
-#~ msgstr "S'estŕ enviant la velocitat: "
-
-#~ msgid "Receiving Speed:"
-#~ msgstr "S'estŕ rebent la velocitat: "
-
-#, fuzzy
-#~ msgid "Connection Time: "
-#~ msgstr "Tipus de connexió: "
-
-#~ msgid "Connecting to Internet "
-#~ msgstr "S'estŕ establint la connexió a Internet"
-
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "S'estŕ realitzant la desconnexió d'Internet"
-
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "No s'ha pogut realitzar la desconnexió d'Internet"
-
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "La desconnexió d'Internet ha finalitzat"
-
-#~ msgid "Connection complete."
-#~ msgstr "La connexió ha finalitzat."
-
-#~ msgid ""
-#~ "Connection failed.\n"
-#~ "Verify your configuration in the Mandrake Control Center."
-#~ msgstr ""
-#~ "No s'ha pogut establir la connexió.\n"
-#~ "Comproveu la configuració al Centre de control de Mandrake."
-
-#~ msgid "sent: "
-#~ msgstr "enviat: "
-
-#~ msgid "received: "
-#~ msgstr "rebut: "
-
-#, fuzzy
-#~ msgid "average"
-#~ msgstr "escombraries"
-
-#, fuzzy
-#~ msgid "Default Runlevel"
-#~ msgstr "Predeterminat"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "No s'ha pogut interpretar el contingut del fitxer de configuració."
-
-#~ msgid "Unrecognized config file"
-#~ msgstr "Fitxer de configuració no reconegut"
-
-#~ msgid "Adapter"
-#~ msgstr "Adaptador"
-
-#~ msgid "Disable network"
-#~ msgstr "Inhabilita el sistema de xarxa"
-
-#, fuzzy
-#~ msgid "Enable network"
-#~ msgstr "Inhabilita el sistema de xarxa"
-
-#~ msgid ""
-#~ "You can now test your mouse. Use buttons and wheel to verify\n"
-#~ "if settings are good. If not, you can click on \"Cancel\" to choose "
-#~ "another\n"
-#~ "driver."
-#~ msgstr ""
-#~ "Ara podeu provar el ratolí. Utilitzeu els botons i la bola per comprovar "
-#~ "que\n"
-#~ "els parŕmetres són correctes; si no ho són, feu clic a \"Cancelˇla\" per\n"
-#~ "seleccionar un altre controlador."
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "Connexió per DSL (o ADSL)"
-
-#, fuzzy
-#~ msgid "Choose"
-#~ msgstr "Tanca"
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr ""
-#~ "Podeu indicar directament l'URI per accedir a la impressora amb CUPS."
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "Sí, imprimeix una pŕgina ASCII de prova"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "Sí, imprimeix una pŕgina PostScript de prova"
-
-#~ msgid "Paper Size"
-#~ msgstr "Mida del paper"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "Voleu expulsar la pŕgina després de la tasca?"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "Opcions del programa de control Uniprint"
-
-#~ msgid "Color depth options"
-#~ msgstr "Opcions de profunditat del color"
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "Voleu imprimir el text com a PostScript?"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "Voleu ajustar el text 'stair-stepping'?"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Nombre de pŕgines per pŕgines de sortida"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "Marges dret/esquerra en punts (1/72 de polzada)"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "Marges superior/inferior en punts (1/72 de polzada)"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "opcions addicionals del GhostScript"
-
-#~ msgid "Extra Text options"
-#~ msgstr "Opcions addicionals per al text"
-
-#~ msgid "Reverse page order"
-#~ msgstr "Inverteix l'ordre de les pŕgines"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Seleccioneu la connexió de la impressora remota"
-
-#~ msgid ""
-#~ "Every printer need a name (for example lp).\n"
-#~ "Other parameters such as the description of the printer or its location\n"
-#~ "can be defined. What name should be used for this printer and\n"
-#~ "how is the printer connected?"
-#~ msgstr ""
-#~ "Cada impressora necessita un nom (p.ex. lp).\n"
-#~ "Es poden definir altres parŕmetres, com ara la descripció de la "
-#~ "impressora\n"
-#~ "o la seva ubicació. Quin nom cal utilitzar per a aquesta impressora, i "
-#~ "com\n"
-#~ "estŕ connectada?"
-
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a\n"
-#~ "name (often lp) and a spool directory associated with it. What\n"
-#~ "name and directory should be used for this queue and how is the printer "
-#~ "connected?"
-#~ msgstr ""
-#~ "Cada cua d'impressió (a quč s'adrecen les tasques d'impressió) necessita\n"
-#~ "un nom (sovint lp) i un directori d'spool associada amb ell. Quin nom i\n"
-#~ "directori cal utilitzar per a aquesta cua, i com estŕ connectada la "
-#~ "impressora?"
-
-#~ msgid "Name of queue"
-#~ msgstr "Nom de la cua"
-
-#~ msgid "Spool directory"
-#~ msgstr "Directori d'spool"
-
-#~ msgid "Disable"
-#~ msgstr "Inhabilita"
-
-#~ msgid "Enable"
-#~ msgstr "Habilita"
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ msgstr ""
-#~ "Per habilitar un sistema més segur, seleccioneu \"Utilitza el\n"
-#~ "fitxer d'ombra\" i \"Utilitza les contrasenyes MD5\"."
-
-#~ msgid ""
-#~ "If your network uses NIS, select \"Use NIS\". If you don't know, ask "
-#~ "your\n"
-#~ "network administrator."
-#~ msgstr ""
-#~ "Si la vostra xarxa utilitza NIS, seleccioneu \"Utilitza NIS\". Si no ho\n"
-#~ "sabeu, consulteu a l'administrador de la xarxa."
-
-#~ msgid "yellow pages"
-#~ msgstr "pŕgines grogues"
-
-#, fuzzy
-#~ msgid "Light configuration"
-#~ msgstr "Configuració de la LAN"
-
-#~ msgid "Provider dns 1"
-#~ msgstr "DNS 1 del proveďdor"
+#~ msgid "What do you want to do?"
+#~ msgstr "Quč voleu fer?"
-#~ msgid "Provider dns 2"
-#~ msgstr "DNS 2 del proveďdor"
+#~ msgid "Change Monitor"
+#~ msgstr "Canvia el monitor"
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr "Com us voleu connectar a Internet?"
+#~ msgid "Change Graphics card"
+#~ msgstr "Canvia la targeta grŕfica"
-#~ msgid "cannot fork: "
-#~ msgstr "no es pot bifurcar: "
+#~ msgid "Change Server options"
+#~ msgstr "Canvia les opcions del servidor"
-#~ msgid "Configure..."
-#~ msgstr "Configura..."
+#~ msgid "Change Resolution"
+#~ msgstr "Canvia la resolució"
-#~ msgid "Selected size %d%s"
-#~ msgstr "S'ha seleccionat la mida %d%s"
+#~ msgid "Show information"
+#~ msgstr "Mostra la informació"
-#~ msgid "Opening your connection..."
-#~ msgstr "S'estŕ obrint la connexió..."
+#~ msgid "Test again"
+#~ msgstr "Torna-ho a comprovar"
-#~ msgid "This startup script try to load your modules for your usb mouse."
-#~ msgstr "Aquest script d'inici intenta carregar els mňduls del ratolí USB."
+#~ msgid "Setting security level"
+#~ msgstr "S'estŕ establint el nivell de seguretat"
-#~ msgid "Configuration de Lilo/Grub"
-#~ msgstr "Configuració del LILO/Grub"
+#~ msgid "Graphics card"
+#~ msgstr "Targeta grŕfica"
-#~ msgid "Boot style configuration"
-#~ msgstr "Configuració del tipus d'arrencada"
+#~ msgid "Select a graphics card"
+#~ msgstr "Seleccioneu una targeta grŕfica"
-#~ msgid ""
-#~ "Now that your Internet connection is configured,\n"
-#~ "your computer can be configured to share its Internet connection.\n"
-#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
-#~ "(LAN).\n"
-#~ "\n"
-#~ "Would you like to setup the Internet Connection Sharing?\n"
+#~ msgid "Warning: testing this graphics card may freeze your computer"
#~ msgstr ""
-#~ "Ara que ja teniu configurada la connexió a Internet,\n"
-#~ "podeu configurar l'ordinador per tal que la comparteixi.\n"
-#~ "Nota: per configurar una xarxa d'ŕrea local (LAN), us cal un adaptador de "
-#~ "xarxa dedicat.\n"
-#~ "\n"
-#~ "Voleu configurar la connexió a Internet compartida?\n"
-
-#~ msgid "Welcome to the Internet Connection Sharing utility!"
-#~ msgstr "Benvingut a la utilitat de compartició de la connexió a Internet!"
+#~ "Avís: la comprovació d'aquesta targeta grŕfica pot penjar-vos l'ordinador"
-#~ msgid "Automatic dependencies"
-#~ msgstr "Dependčncies automŕtiques"
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "VGA estŕndard, 640x480 a 60 Hz"
-#~ msgid "Configure LILO/GRUB"
-#~ msgstr "Configura el LILO/GRUB"
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 a 60 Hz"
-#~ msgid "Create a boot floppy"
-#~ msgstr "Crea un disquet d'arrencada"
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "Compatible 8514, 1024x768 a 87 Hz entrellaçada (no 800x600)"
-#~ msgid "Choice"
-#~ msgstr "Elecció"
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 a 87 Hz entrellaçada, 800x600 a 56 Hz"
-#~ msgid "horizontal nice looking aurora"
-#~ msgstr "aurora horitzontal amb bon aspecte"
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Super VGA ampliada, 800x600 a 60 Hz, 640x480 a 72 Hz"
-#~ msgid "vertical traditional aurora"
-#~ msgstr "aurora vertical tradicional"
-
-#~ msgid "gMonitor"
-#~ msgstr "gMonitor"
-
-#~ msgid ""
-#~ "You can now select some miscellaneous options for your system.\n"
-#~ "\n"
-#~ "* Use hard drive optimizations: this option can improve hard disk "
-#~ "performance but is only for advanced users. Some buggy\n"
-#~ " chipsets can ruin your data, so beware. Note that the kernel has a "
-#~ "builtin blacklist of drives and chipsets, but if\n"
-#~ " you want to avoid bad surprises, leave this option unset.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Choose security level: you can choose a security level for your system. "
-#~ "Please refer to the manual for complete\n"
-#~ " information. Basically, if you don't know what to choose, keep the "
-#~ "default option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the BIOS about the amount of RAM present in\n"
-#~ " your computer. As consequence, Linux may fail to detect your amount of "
-#~ "RAM correctly. If this is the case, you can\n"
-#~ " specify the correct amount or RAM here. Please note that a difference "
-#~ "of 2 or 4 MB between detected memory and memory\n"
-#~ " present in your system is normal.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Removable media automounting: if you would prefer not to manually mount "
-#~ "removable media (CD-Rom, floppy, Zip, etc.) by\n"
-#~ " typing \"mount\" and \"umount\", select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories stored in \"/tmp\" when you boot your system,\n"
-#~ " select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Enable num lock at startup: if you want NumLock key enabled after "
-#~ "booting, select this option. Please note that you\n"
-#~ " should not enable this option on laptops and that NumLock may or may "
-#~ "not work under X."
-#~ msgstr ""
-#~ "Ara podeu seleccionar diverses opcions per al vostre sistema.\n"
-#~ "\n"
-#~ "* Utilització de l'optimització del disc dur: Aquesta opció pot millorar "
-#~ "el\n"
-#~ "rendiment del disc dur, perň és només per a usuaris avançats. Alguns "
-#~ "xips\n"
-#~ "amb errors poden fer malbé les vostres dades, així que aneu amb compte. "
-#~ "El\n"
-#~ "nucli inclou una \"llista negra\" d'unitats i jocs de xips, perň, si "
-#~ "voleu\n"
-#~ "evitar-vos sorpreses desagradables, no activeu aquesta opció.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Selecció d'un nivell de seguretat: Podeu escollir un nivell de\n"
-#~ "seguretat per al sistema. Si us plau, consulteu el manual per a més\n"
-#~ "informació. Bŕsicament, si no n'esteu segur, trieu l'opció "
-#~ "predeterminada.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Si cal, indicació de la mida exacta de la RAM: malauradament, no hi "
-#~ "cap\n"
-#~ "mčtode estŕndard per preguntar al BIOS la quantitat de RAM que hi ha a\n"
-#~ "l'ordinador. Per tant, és possible que el Linux no pugui detectar\n"
-#~ "correctament la quantitat de RAM instalˇlada. Si és aquest el cas, en "
-#~ "podeu\n"
-#~ "indicar aquí la quantitat correcta, perň penseu que una diferčncia de 2 o "
-#~ "4\n"
-#~ "MB entre la memňria detectada i la memňria real és normal.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Muntatge automŕtic de suports extraďbles: Si preferiu no haver\n"
-#~ "de muntar manualment les unitats extraďbles (CD-ROM, disquet, Zip)\n"
-#~ "escrivint \"mount\" i \"umount\", seleccioneu aquesta opció.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Neteja de \"/tmp\" en cada arrencada: si voleu suprimir tots els "
-#~ "fitxers\n"
-#~ "i directoris que hi ha emmagatzemats a \"/tmp\" quan arranqueu el "
-#~ "sistema,\n"
-#~ "seleccioneu aquesta opció.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Habilitació de BlocNum a l'inici: Si voleu que BlocNum s'habiliti "
-#~ "després\n"
-#~ "de l'arrencada, seleccioneu aquesta opció. Tingueu en compte que no heu\n"
-#~ "d'habilitar aquesta opció en portŕtils i que BlocNum pot funcionar o pot "
-#~ "no\n"
-#~ "funcionar sota X."
-
-#~ msgid "Sorry, the mail configuration is not yet implemented. Be patient."
-#~ msgstr ""
-#~ "Si us plau, tingueu pacičncia; la configuració del correu encara no estŕ "
-#~ "implementada."
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "SVGA no entrellaçada, 1024x768 a 60 Hz, 800x600 a 72 Hz"
-#~ msgid ""
-#~ "Welcome to The Network Configuration Wizard.\n"
-#~ "Which components do you want to configure?\n"
-#~ msgstr ""
-#~ "Benvingut a l'Auxiliar de configuració de la xarxa.\n"
-#~ "Quins components voleu configurar?\n"
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "SVGA d'alta freqüčncia, 1024x768 a 70 Hz"
-#~ msgid "Internet/Network access"
-#~ msgstr "Accés a Internet/xarxa"
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Multi-freqüčncia que pot fer 1280x1024 a 60 Hz"
-#~ msgid "Miscellaneous"
-#~ msgstr "Miscelˇlŕnia"
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Multi-freqüčncia que pot fer 1280x1024 a 74 Hz"
-#~ msgid "Miscellaneous questions"
-#~ msgstr "Preguntes diverses"
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Multi-freqüčncia que pot fer 1280x1024 a 76 Hz"
-#~ msgid "Can't use supermount in high security level"
-#~ msgstr "No es pot utilitzar supermount en un nivell d'alta seguretat"
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Monitor que pot fer 1600x1200 a 70 Hz"
-#~ msgid ""
-#~ "beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
-#~ "If you want to be root, you have to login as a user and then use \"su\".\n"
-#~ "More generally, do not expect to use your machine for anything but as a "
-#~ "server.\n"
-#~ "You have been warned."
-#~ msgstr ""
-#~ "Atenció: EN AQUEST NIVELL DE SEGURETAT NO ES POT ENTRAR COM A ROOT A LA "
-#~ "CONSOLA!\n"
-#~ "Si voleu ser root, heu d'entrar com a usuari i aleshores utilitzar \"su"
-#~ "\".\n"
-#~ "En general, no espereu utilitzar l'ordinador per a altre cosa que com a "
-#~ "servidor.\n"
-#~ "Esteu avisat."
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Monitor que pot fer 1600x1200 a 76 Hz"
#~ msgid ""
-#~ "Be carefull, having numlock enabled causes a lot of keystrokes to\n"
-#~ "give digits instead of normal letters (eg: pressing `p' gives `6')"
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
#~ msgstr ""
-#~ "Aneu amb compte; si teniu BlocNúm habilitat, moltes tecles donaran\n"
-#~ "números en comptes de lletres (p.ex., si premeu la `p' obtindreu un `6')"
-
-#~ msgid "not connected"
-#~ msgstr "sense connexió"
-
-#~ msgid "Scientific applications"
-#~ msgstr "Aplicacions científiques"
-
-#~ msgid "File/Print/Samba"
-#~ msgstr "Servidor, Fitxer/Impressió/Samba"
-
-#~ msgid "DNS/DHCP "
-#~ msgstr "Servidor, DNS/DHCP "
-
-#~ msgid "First DNS Server"
-#~ msgstr "Servidor DNS primari"
-
-#~ msgid "Second DNS Server"
-#~ msgstr "Servidor DNS secundari"
-
-#~ msgid "using module"
-#~ msgstr "s'estŕ utilitzant el mňdul"
-
-#~ msgid "Development, Database"
-#~ msgstr "Desenvolupament, base de dades"
-
-#~ msgid "Development, Integrated Environment"
-#~ msgstr "Desenvolupament, entorn integrat"
-
-#~ msgid "Development, Standard tools"
-#~ msgstr "Desenvolupament, eines estŕndard"
+#~ "La mida total dels grups que heu seleccionat es d'aproximadament %d MB.\n"
#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
#~ "\n"
-#~ "Warning:\n"
-#~ "Applying the changes while running may crash your X environnement."
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
+#~ "Si no voleu instalˇlar tants MB, seleccioneu el percentatge de paquets\n"
+#~ "que voleu instalˇlar.\n"
#~ "\n"
-#~ "Avís:\n"
-#~ "Si apliquu els canvis durant l'execució, és possible que l'entorn X "
-#~ "caigui."
+#~ "Un percentatge baix instalˇlarŕ només els paquets més importants;\n"
+#~ "un percentatge del 100%% instalˇlarŕ tots els paquets seleccionats."
#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
#~ "\n"
-#~ "If you continue, I will shut down your %s environnement"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
#~ msgstr ""
+#~ "Només teniu prou espai al disc per a %d%% d'aquests paquets.\n"
#~ "\n"
-#~ "Si continueu, tancaré l'entorn %s"
+#~ "Si en voleu instalˇlar menys, seleccioneu el percentatge de paquets\n"
+#~ "que voleu instalˇlar.\n"
+#~ "Un percentatge baix instalˇlarŕ només els paquets més importants;\n"
+#~ "un percentatge del %d%% instalˇlarŕ tants paquets com sigui possible."
-#~ msgid "loopback"
-#~ msgstr "loopback"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Podreu fer una elecció més concreta al pas següent"
-#~ msgid "Which bootloader(s) do you want to use?"
-#~ msgstr "Quin(s) carregador(s) d'arrencada voleu utilitzar?"
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Percentatge de paquets per instalˇlar"
-#~ msgid "Auto install floppy"
-#~ msgstr "Disquet d'instalˇlació automŕtica"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Escolliu el nivell de seguretat"
-#~ msgid "Try to find a modem?"
-#~ msgstr "Voleu que intenti trobar un mňdem?"
+#~ msgid "hide expert mode"
+#~ msgstr "oculta el mode expert"
-#~ msgid "Configure an ISDN connection"
-#~ msgstr "Configura una connexió per XDSI"
-
-#~ msgid "Disable Internet Connection"
-#~ msgstr "Inhabilita la connexió a Internet"
-
-#~ msgid "Configure local network"
-#~ msgstr "Configura la xarxa local"
-
-#~ msgid "Configure the Internet connection / Configure local Network"
-#~ msgstr "Configura la connexió a Internet / Configura la xarxa local"
+#~ msgid "show expert mode"
+#~ msgstr "mostra el mode expert"
#~ msgid ""
-#~ "Local networking has already been configured.\n"
-#~ "Do you want to:"
+#~ "If '%s' is a removable peripheral,\n"
+#~ " verify that a media is inserted."
#~ msgstr ""
-#~ "La xarxa local ja s'ha configurat.\n"
-#~ "Voleu:"
-
-#~ msgid "Graphics Manipulation"
-#~ msgstr "Manipulació de grŕfics"
-
-#~ msgid "Sciences"
-#~ msgstr "Cičncies"
+#~ "Si '%s' és un perifčric extraďble,\n"
+#~ " comproveu que hi ha un suport present."
#~ msgid ""
-#~ "Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and "
-#~ "file transfer tools"
+#~ "WARNING! This will format '%s'.\n"
+#~ "All data will be erased on the peripheral '%s'.\n"
+#~ "If you want to continue, press OK. "
#~ msgstr ""
-#~ "Programes de xat (IRC o missatgeria instantŕnia) com ara xchat, licq, "
-#~ "gaim, i eines de transferčncia de fitxers"
-
-#~ msgid "Communication facilities"
-#~ msgstr "Instalˇlacions de comunicació"
-
-#~ msgid "KDE"
-#~ msgstr "KDE"
-
-#~ msgid "Gnome"
-#~ msgstr "Gnome"
-
-#~ msgid "Internet Tools"
-#~ msgstr "Eines d'Internet"
-
-#~ msgid "Databases clients and servers (mysql and postgresql)"
-#~ msgstr "Clients de bases de dades i servidors (mysql i postgresql)"
-
-#~ msgid "Development C/C++"
-#~ msgstr "Desenvolupament C/C++"
-
-#~ msgid "Configure timezone"
-#~ msgstr "Zona horŕria"
-
-#~ msgid "(may cause data corruption)"
-#~ msgstr "(pot malmetre les dades)"
-
-#~ msgid "Enable num lock at startup"
-#~ msgstr "Habilita la tecla Bloc Num en iniciar"
-
-#~ msgid "Confirm Password"
-#~ msgstr "Confirmeu la contrasenya"
+#~ "ATENCIÓ! Amb aixň formatareu '%s'.\n"
+#~ "S'esborraran totes les dades del perifčric '%s'.\n"
+#~ "Si voleu continuar, premeu D'acord. "
-#~ msgid "default"
-#~ msgstr "predeterminat"
+#~ msgid "unknown"
+#~ msgstr "desconegut"
-#~ msgid "What is your system used for?"
-#~ msgstr "Amb quina finalitat utilitzeu el sistema?"
-
-#~ msgid "Select the size you want to install"
-#~ msgstr "Seleccioneu la mida que voleu instalˇlar"
-
-#~ msgid "Use diskdrake"
-#~ msgstr "Utilitza el diskdrake"
-
-#~ msgid "Customized"
-#~ msgstr "Personalitzada"
-
-#~ msgid ""
-#~ "Are you sure you are an expert? \n"
-#~ "You will be allowed to make powerful but dangerous things here.\n"
-#~ "\n"
-#~ "You will be asked questions such as: ``Use shadow file for passwords?'',\n"
-#~ "are you ready to answer that kind of questions?"
-#~ msgstr ""
-#~ "Esteu segur que sou un expert? \n"
-#~ "Aquí podreu fer coses molt potents, perň també perilloses.\n"
-#~ "\n"
-#~ "Us preguntaran coses com: ``Voleu utilitzar un fitxer d'ombres per a les "
-#~ "contrasenyes?'',\n"
-#~ "Sou capaç de respondre aquest tipus de preguntes?"
-
-#~ msgid "Use shadow file"
-#~ msgstr "Utilitza el fitxer d'ombra"
-
-#~ msgid "MD5"
-#~ msgstr "MD5"
-
-#~ msgid "Use MD5 passwords"
-#~ msgstr "Utilitza les contrasenyes MD5"
-
-#~ msgid "Search"
-#~ msgstr "Cerca"
-
-#~ msgid "Package"
-#~ msgstr "Paquet"
-
-#~ msgid "Tree"
-#~ msgstr "Arbre"
-
-#~ msgid "Sort by"
-#~ msgstr "Ordena per"
+#~ msgid "Select a module or write his name:"
+#~ msgstr "Seleccioneu un mňdul o escriviu-ne el nom:"
#~ msgid "Category"
#~ msgstr "Categoria"
-#~ msgid "Installed packages"
-#~ msgstr "Paquets instalˇlats"
-
-#~ msgid "Available packages"
-#~ msgstr "Paquets disponibles"
-
-#~ msgid "Show only leaves"
-#~ msgstr "Mostra només les fulles"
-
-#~ msgid "Expand all"
-#~ msgstr "Expandeix-ho tot"
-
-#~ msgid "Collapse all"
-#~ msgstr "Redueix-ho tot"
-
-#~ msgid "Add location of packages"
-#~ msgstr "Afegeix la ubicació dels paquets"
-
-#~ msgid "Update location"
-#~ msgstr "Actualitza la ubicació"
-
-#~ msgid "Find Package"
-#~ msgstr "Cerca el paquet"
-
-#~ msgid "Find Package containing file"
-#~ msgstr "Cerca el paquet que conté el fitxer"
-
-#~ msgid "Toggle between Installed and Available"
-#~ msgstr "Commuta entre Instalˇlats i Disponibles"
-
-#~ msgid "Checking dependencies"
-#~ msgstr "S'estan comprovant les dependčncies"
-
-#~ msgid "The following packages are going to be uninstalled"
-#~ msgstr "Ara es desinstalˇlaran els paquets següents"
-
-#~ msgid "Regexp"
-#~ msgstr "Regexp"
-
-#~ msgid "Which package are looking for"
-#~ msgstr "Quin paquet esteu cercant"
-
-#~ msgid "No match"
-#~ msgstr "Cap coincidčncia"
-
-#~ msgid "No more match"
-#~ msgstr "Cap altra coincidčncia"
-
-#~ msgid ""
-#~ "rpmdrake is currently in ``low memory'' mode.\n"
-#~ "I'm going to relaunch rpmdrake to allow searching files"
-#~ msgstr ""
-#~ "Actualment, l'rpmdrake estŕ en el mode ``poca memňria''.\n"
-#~ "Ara tornaré a reiniciar l'rpmdrake per permetre la recerca de fitxers"
-
-#~ msgid "Which file are you looking for?"
-#~ msgstr "Quin fitxer esteu cercant?"
-
-#~ msgid "What are looking for?"
-#~ msgstr "Quč esteu cercant?"
-
-#~ msgid "Give a name (eg: `extra', `commercial')"
-#~ msgstr "Introduďu un nom (p.ex. `extra', `comercial')"
-
-#~ msgid "Directory"
-#~ msgstr "Directori"
-
-#~ msgid "No cdrom available (nothing in /mnt/cdrom)"
-#~ msgstr "No hi ha cap CD-ROM disponible (no hi ha res a /mnt/cdrom)"
-
-#~ msgid "URL of the directory containing the RPMs"
-#~ msgstr "L'URL del directori que conté els RPM"
-
-#~ msgid ""
-#~ "For FTP and HTTP, you need to give the location for hdlist\n"
-#~ "It must be relative to the URL above"
-#~ msgstr ""
-#~ "Per a FTP i HTTP, us cal introduir la ubicació de hdlist\n"
-#~ "Ha de ser relativa a l'URL superior"
-
-#~ msgid "Please submit the following information"
-#~ msgstr "Si us plau, trameteu la informació següent"
-
-#~ msgid "%s is already in use"
-#~ msgstr "%s ja és en ús"
-
-#~ msgid "Updating the RPMs base"
-#~ msgstr "S'estŕ actualitzant la base dels RPM"
-
-#~ msgid "Going to remove entry %s"
-#~ msgstr "Ara s'eliminarŕ l'entrada %s"
-
-#~ msgid "Finding leaves"
-#~ msgstr "S'estan cercant les fulles"
-
-#~ msgid "Finding leaves takes some time"
-#~ msgstr "Cal una mica de temps per cercar les fulles"
-
-#~ msgid "I have found an ISDN Card:\n"
-#~ msgstr "He trobat una targeta XDSI:\n"
-
-#~ msgid "Other countries"
-#~ msgstr "Altres paďsos"
-
-#~ msgid "In which country are you located ?"
-#~ msgstr "A quin país us trobeu?"
-
-#~ msgid "Alcatel modem"
-#~ msgstr "Mňdem Alcatel"
-
-#~ msgid "ECI modem"
-#~ msgstr "Mňdem ECI"
-
-#~ msgid ""
-#~ "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
-#~ msgstr ""
-#~ "Si el vostre mňdem adsl és un mňdem Alcatel, seleccioneu Alcatel. Si no, "
-#~ "ECI."
-
-#~ msgid "don't use pppoe"
-#~ msgstr "no utilitzis pppoe"
-
-#~ msgid "i18n (important)"
-#~ msgstr "i18n (important)"
-
-#~ msgid "i18n (very nice)"
-#~ msgstr "i18n (molt bonic)"
-
-#~ msgid "i18n (nice)"
-#~ msgstr "i18n (bonic)"
-
-#~ msgid "Which serial port is your mouse connected to?"
-#~ msgstr "A quin port sčrie estŕ connectat el vostre ratolí?"
-
-#~ msgid "KDE, QT, Gnome, GTK+"
-#~ msgstr "KDE, QT, Gnome, GTK+"
-
-#~ msgid "Python, Perl, libraries, tools"
-#~ msgstr "Python, Perl, biblioteques, eines"
-
-#~ msgid "Czech"
-#~ msgstr "Txec"
-
-#~ msgid "Slovakian"
-#~ msgstr "Eslovac"
-
-#~ msgid "Could not install ipchains RPM with urpmi."
-#~ msgstr "No s'ha pogut instalˇlar el RPM d'ipchains amb l'urpmi."
-
-#~ msgid "Could not install dhcp RPM with urpmi."
-#~ msgstr "No s'ha pogut instalˇlar el RPM de dhcp amb l'urpmi."
-
-#~ msgid "Could not install linuxconf RPM with urpmi."
-#~ msgstr "No s'ha pogut instalˇlar el RPM de linuxconf amb l'urpmi."
-
-#~ msgid "Could not install bind RPM with urpmi."
-#~ msgstr "No s'ha pogut instalˇlar el RPM de bind amb l'urpmi."
-
-#~ msgid "Could not install caching-nameserver RPM with urpmi."
-#~ msgstr "No s'ha pogut instalˇlar el RPM de caching-nameserver amb l'urpmi"
-
-#~ msgid "Reconfigure local network"
-#~ msgstr "Torna a configurar la xarxa local"
-
-#~ 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 carefully this document. This document is a license agreement "
-#~ "between you and \n"
-#~ "MandrakeSoft S.A., 43, rue d'Aboukir, 75002 Paris - France, 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. 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"
-#~ "Some versions of the Software Products may contain components which are "
-#~ "not governed by the GPL \n"
-#~ "License or similar agreements. Each such component is then governed by "
-#~ "the terms and conditions \n"
-#~ "of its own specific license. Please read carefully and comply with such "
-#~ "specific licenses before \n"
-#~ "you install, use or redistribute the said components. Such licenses will "
-#~ "in general prevent the \n"
-#~ "transfer, duplication (except for backup purposes), redistribution, "
-#~ "reverse engineering, \n"
-#~ "de-assembly, \n"
-#~ "de-compilation or modification of the component. Any breach of agreement "
-#~ "will immediately terminate \n"
-#~ "your rights under the specific license. Unless the specific license terms "
-#~ "grant you such rights, \n"
-#~ "you usually cannot install the programs on more than one system, or adapt "
-#~ "it to be used on a \n"
-#~ "network. \n"
-#~ "In doubt, please contact directly the distributor or editor of the "
-#~ "component. Transfer to third \n"
-#~ "parties or copying of such components including the documentation is "
-#~ "usually forbidden.\n"
-#~ "\n"
-#~ "\n"
-#~ "3. 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,\n"
-#~ "by all means and for all purposes.\n"
-#~ "\"Mandrake\", \"Mandrake Linux\" and associated logos are trademarks of "
-#~ "MandrakeSoft S.A. All rights \n"
-#~ "are \n"
-#~ "reserved. The duplication is forbidden without prior written consent by "
-#~ "MandrakeSoft S.A.\n"
-#~ "\n"
-#~ "\n"
-#~ "4. Limited Warranty\n"
-#~ "\n"
-#~ "The Software Products and attached documentation are provided \"as is\", "
-#~ "with no warranty, to the \n"
-#~ "extent permitted by law. Should the Software Products be defective, "
-#~ "MandrakeSoft S.A. will at its \n"
-#~ "own will either replace the Software Products, or reimburse the paid "
-#~ "fee.\n"
-#~ "This limited warranty is void if you fail to comply to the "
-#~ "recommendations, instructions and \n"
-#~ "conditions \n"
-#~ "of use listed in the documentation or license agreements of the Software "
-#~ "Products.\n"
-#~ "To the extent permitted by law, MandrakeSoft S.A. will in no "
-#~ "circumstances be liable for any \n"
-#~ "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"
-#~ "judgement, or any other consequential loss) arising out of the use or "
-#~ "inability to use the \n"
-#~ "Software \n"
-#~ "Products, even if MandrakeSoft S.A. has been advised of the possibility "
-#~ "or occurance 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 \n"
-#~ "damages for loss of business, interruption of business, financial loss, "
-#~ "legal fees and penalties \n"
-#~ "resulting from a court judgement, or any other consequential loss) "
-#~ "arising out of the possession \n"
-#~ "and \n"
-#~ "use of software components or arising out of downloading software "
-#~ "components from one of \n"
-#~ "Mandrake Linux \n"
-#~ "sites which are prohibited or restricted in some countries by local "
-#~ "laws. This limited liability \n"
-#~ "applies to, but is not restricted to, the strong cryptography components "
-#~ "included in the Software \n"
-#~ "Products.\n"
-#~ "\n"
-#~ "\n"
-#~ "5. Governing Laws \n"
-#~ "\n"
-#~ "If any portion of this agreement is held void, illegal or inapplicable by "
-#~ "a court judgement, 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, \n"
-#~ "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"
-#~ "43, rue d'Aboukir, 75002 Paris - France\n"
-#~ msgstr ""
-#~ " Introducció\n"
-#~ "\n"
-#~ "D'ara endavant, el sistema operatiu i els diferents components que "
-#~ "s'inclouen\n"
-#~ "a la distribució Mandrake Linux s'anomenaran els \"Productes de programari"
-#~ "\".\n"
-#~ "Els Productes de programari inclouen, perň no es limiten a, el conjunt "
-#~ "de\n"
-#~ "programes, mčtodes, regles i documentació relativa al sistema operatiu i "
-#~ "als\n"
-#~ "diferents components de la distribució Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "1. Acord de Llicčncia\n"
-#~ "\n"
-#~ "Si us plau, llegiu aquest document atentament. Aquest document és un "
-#~ "acord\n"
-#~ "de llicčncia entre vós i MandrakeSoft S.A., 43, rue d'Aboukir, 75002 "
-#~ "París,\n"
-#~ "França, que s'aplica als Productes de programari.\n"
-#~ "Pel fet d'instalˇlar, duplicar o utilitzar els Productes de programari, "
-#~ "en \n"
-#~ "qualsevol manera, accepteu i esteu totalment d'acord, de manera "
-#~ "explícita, en\n"
-#~ "sometre-us als termes i condicions d'aquesta Llicčncia. Si no esteu "
-#~ "d'acord amb\n"
-#~ "qualsevol part d'aquesta Llicčncia, no esteu autoritzat a instalˇlar, "
-#~ "duplicar\n"
-#~ "ni utilitzar els Productes de programari. Qualsevol intent d'instalˇlar,\n"
-#~ "duplicar o utilitzar els Productes de programari d'una manera no conforme "
-#~ "als\n"
-#~ "termes i condicions d'aquesta Llicčncia és invŕlid i conclourŕ els "
-#~ "vostres\n"
-#~ "drets sota aquesta Llicčncia. En concloure la Llicčncia, heu de destruir\n"
-#~ "immediatament totes les cňpies dels Productes de programari.\n"
-#~ "\n"
-#~ "\n"
-#~ "2. la Llicčncia GPL i Llicčncies relacionades\n"
-#~ "\n"
-#~ "Els Productes de programari són components creats per diferents persones "
-#~ "o\n"
-#~ "entitats. La majoria d'aquests components estan coberts pels termes i\n"
-#~ "condicions de la Llicčncia General Pública de GNU (d'ara endavant \"GPL"
-#~ "\"), o\n"
-#~ "de llicčncies similars. La majoria d'aquestes llicčncies us permeten "
-#~ "utilitzar,\n"
-#~ "duplicar, adaptar o redistribuir els components que cobreixen. Si us "
-#~ "plau,\n"
-#~ "llegiu atentament els termes i condicions de l'acord de llicčncia de "
-#~ "cada\n"
-#~ "component abans d'utilitzar-lo. Qualsevol pregunta sobre un component "
-#~ "s'ha\n"
-#~ "d'adreçar al seu autor i no a MandrakeSoft. Els programes desenvolupats "
-#~ "per\n"
-#~ "MandrakeSoft S.A. estan coberts per la Llicčncia GPL. La documentació "
-#~ "escrita\n"
-#~ "per MandrakeSoft S.A. estŕ coberta per una llicčncia específica. Si us "
-#~ "plau,\n"
-#~ "consulteu la documentació per a més informació. Algunes versions dels "
-#~ "Productes\n"
-#~ "de programari poden incloure components que no estiguin coberts per la\n"
-#~ "Llicčncia GPL o llicčncies similars; en aquest cas, cada un d'aquests\n"
-#~ "components estarŕ cobert pels termes i condicions de la seva prňpia "
-#~ "llicčncia\n"
-#~ "específica. Si us plau, llegiu atentament i respecteu aquestes "
-#~ "llicčncies\n"
-#~ "específiques abans d'instalˇlar, utilitzar o redistribuir els components\n"
-#~ "esmentats. En general, aquestes llicčncies impediran la transferčncia,\n"
-#~ "duplicació (excepte amb la finalitat de fer cňpies de seguretat),\n"
-#~ "redistribució, enginyeria inversa, desensamblatge, decompilació o "
-#~ "modificació\n"
-#~ "del component. Qualsevol ruptura de l'acord conclourŕ immediatament els "
-#~ "vostres\n"
-#~ "drets sota la llicčncia específica. Tret que els termes de la llicčncia\n"
-#~ "específica us ho autoritzin, normalment no podreu instalˇlar els "
-#~ "programes en\n"
-#~ "més d'un sistema ni adaptar-lo per al seu ús en xarxa. Si hi teniu "
-#~ "dubtes,\n"
-#~ "poseu-vos en contacte directament amb el distribuďdor o editor del "
-#~ "component.\n"
-#~ "Normalment, estŕ prohibida la transferčncia a terceres parts i la cňpia\n"
-#~ "d'aquests components, incloent la documentació.\n"
-#~ "\n"
-#~ "\n"
-#~ "3. Drets de propietat intelˇlectual\n"
-#~ "\n"
-#~ "Tots els drets dels components dels Productes de programari pertanyen als "
-#~ "seus\n"
-#~ "autors respectius i estan protegits per la propietat intelˇlectual i les "
-#~ "lleis\n"
-#~ "de copyright aplicables al programari. MandrakeSoft S.A. es reserva els "
-#~ "drets\n"
-#~ "de modificar o adaptar els Productes de programari, ja sigui parcialment "
-#~ "o\n"
-#~ "totalment, per tots els mitjans i per a totes les finalitats. \"Mandrake"
-#~ "\",\n"
-#~ "\"Mandrake Linux\" i els logotips associats son marques registrades de\n"
-#~ "MandrakeSoft S.A. Tots els drets reservats. Es prohibeix la duplicació "
-#~ "sense\n"
-#~ "consentiment previ per escrit de MandrakeSoft S.A.\n"
-#~ "\n"
-#~ "\n"
-#~ "4. Garantia limitada\n"
-#~ "\n"
-#~ "Els Productes de programari i la documentació que s'hi adjunta es "
-#~ "subministren\n"
-#~ "\"tal com són\", sense cap garantia, fins al punt permčs per la llei. En "
-#~ "cas\n"
-#~ "que els Productes de programari siguin defectuosos, MandrakeSoft S.A., a\n"
-#~ "criteri seu, decidirŕ si reemplaça els Productes de programari o si en\n"
-#~ "reemborsa el preu pagat. Aquesta garantia limitada és nulˇla si no "
-#~ "compliu les\n"
-#~ "recomanacions, instruccions i condicions d'ús que s'indiquen a la "
-#~ "documentació\n"
-#~ "o als acords de llicčncia dels Productes de programari. Fins al punt "
-#~ "permčs per\n"
-#~ "la llei, MandrakeSoft S.A. no serŕ, en cap circumstŕncia, responsable de "
-#~ "cap\n"
-#~ "dany especial, incidental, directe o indirecte (incloent, perň sense "
-#~ "limitar-se\n"
-#~ "a, danys per pčrdua de negocis, interrupció de negocis, pčrdues "
-#~ "financeres,\n"
-#~ "honoraris i multes legals que resultin per un judici i qualsevol altre "
-#~ "pčrdua\n"
-#~ "important) que resulti de l'ús o impossibilitat d'utilitzar els Productes "
-#~ "de\n"
-#~ "programari, fins i tot si s'ha notificat a MandrakeSoft S.A. la "
-#~ "possibilitat de\n"
-#~ "que es produeixin aquests danys.\n"
-#~ "\n"
-#~ "RESPONSABILITAT LIMITADA LLIGADA A LA POSESSIÓ O UTILITZACIÓ DE "
-#~ "PROGRAMARI PROHIBIT EN ALGUNES PAĎSOS\n"
-#~ "\n"
-#~ "Fins al put permčs per la llei, MandrakeSoft S.A. i els seus "
-#~ "distribuďdors no\n"
-#~ "seran, sota cap circumstŕncia, responsables de cap dany especial, "
-#~ "incidental,\n"
-#~ "directe o indirecte (incloent, perň sense limitar-se a, danys per pčrdua "
-#~ "de\n"
-#~ "negocis, interrupció de negocis, pčrdues financeres, honoraris i multes "
-#~ "legals\n"
-#~ "que resultin per un judici i qualsevol altre pčrdua important) que "
-#~ "resultin de\n"
-#~ "la possessió i ús de components de programari o de la descŕrrega de "
-#~ "components\n"
-#~ "de programari d'algun dels llocs web de Mandrake Linux que estiguin "
-#~ "prohibits o\n"
-#~ "restringits en alguns paďsos per lleis locals. Aquesta responsabilitat "
-#~ "limitada\n"
-#~ "s'aplica, perň no estŕ restringida a, els potents components de "
-#~ "criptografia\n"
-#~ "inclosos en els Productes de programari.\n"
-#~ "\n"
-#~ "\n"
-#~ "5. Lleis aplicables \n"
-#~ "\n"
-#~ "Si qualsevol part d'aquest acord és declarat nul, ilˇlegal o inaplicable "
-#~ "en un\n"
-#~ "judici, aquesta part s'exclou del contracte, perň seguiu obligat per les "
-#~ "altres\n"
-#~ "seccions aplicables de l'acord. Els termes i condicions d'aquesta "
-#~ "Llicčncia\n"
-#~ "estan coberts per les lleis de França. Preferiblement, tots els desacords "
-#~ "sobre\n"
-#~ "els termes d'aquesta Llicčncia es resoldran fora dels tribunals. Com a "
-#~ "últim\n"
-#~ "recurs, el plet es dirimirŕ en els tribunals de París, França.\n"
-#~ "Per a qualsevol pregunta sobre aquest document, poseu-vos en contacte "
-#~ "amb\n"
-#~ "MandrakeSoft S.A., 43, rue d'Aboukir, 75002 París, França.\n"
-
-#~ msgid ""
-#~ "Your computer can be configured to share its Internet connection.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Es pot configurar el vostre ordinador per tal que comparteixi la connexió "
-#~ "a Internet.\n"
-#~ "\n"
-
-#~ msgid "Everything has been configured.\n"
-#~ msgstr "S'ha configurat tot.\n"
-
-#~ msgid "Connect to Internet with a normal modem"
-#~ msgstr "Connecta't a Internet amb un mňdem normal"
-
-#~ msgid "Connect to Internet using ISDN"
-#~ msgstr "Connecta't a Internet mitjançant XDSI"
-
-#~ msgid "Connect to Internet using DSL (or ADSL)"
-#~ msgstr "Connecta't a Internet mitjançant DSL (o ADSL)"
-
-#~ msgid "Connect to Internet using Cable"
-#~ msgstr "Connecta't a Internet mitjançant cable"
-
-#~ msgid ""
-#~ "Time (secs) of inactivity after which\n"
-#~ "it hangs up. (leave blank to disable it)"
-#~ msgstr ""
-#~ "Temps (en segons) d'inactivitat després del qual\n"
-#~ "penjarŕ (deixeu-ho en blanc per inhabilitar-ho)."
-
-#~ msgid "Germany (1TR6)"
-#~ msgstr "Alemanya (1TR6)"
-
-#~ msgid "What do you wish to do?"
-#~ msgstr "Quč voleu fer?"
-
-#~ msgid "Install/Rescue"
-#~ msgstr "Instalˇla/Rescata"
-
-#~ msgid "Rescue"
-#~ msgstr "Rescata"
-
-#~ msgid "Which partition type do you want?"
-#~ msgstr "Quin tipus de partició voleu?"
-
-#~ msgid ""
-#~ "Choose \"Install\" if there are no previous versions of GNU/Linux\n"
-#~ "installed, or if you wish to use multiple distributions or versions.\n"
-#~ "\n"
-#~ "Choose \"Rescue\" if you wish to rescue a version of Mandrake Linux "
-#~ "already installed.\n"
-#~ "\n"
-#~ "\n"
-#~ "Select:\n"
-#~ "\n"
-#~ " - Recommended: If you have never installed GNU/Linux before, choose "
-#~ "this.\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!\n"
-#~ msgstr ""
-#~ "Escolliu \"Instalˇlació\" si no hi ha instalˇlada cap versió anterior de "
-#~ "GNU/Linux,\n"
-#~ "o si voleu utilitzar diverses distribucions o versions.\n"
-#~ "\n"
-#~ "Escolliu \"Rescat\" si voleu rescatar una versió anterior de\n"
-#~ "Mandrake Linux ja instalˇlada.\n"
-#~ "\n"
-#~ "\n"
-#~ "Seleccioneu:\n"
-#~ "\n"
-#~ " - Recomanada: Si mai no heu instalˇlat el GNU/Linux,\n"
-#~ " escolliu aquesta opció.\n"
-#~ " - Personalitzada: Si esteu prou familiaritzat amb el GNU/Linux, podeu\n"
-#~ " triar l'ús principal del vostre ordinador. Consulteu-ne els detalls\n"
-#~ " més avall.\n"
-#~ "\n"
-#~ " - Per a experts: S'assumeix que domineu el GNU/Linux i voleu realitzar "
-#~ "una\n"
-#~ " instalˇlació altament personalitzada. Com en el cas del tipus\n"
-#~ " d'instalˇlació \"Personalitzada\", podreu seleccionar l'ús del "
-#~ "vostre\n"
-#~ " sistema.\n"
-#~ " Perň, si us plau, sobretot NO TRIEU AQUESTA OPCIÓ TRET QUE SAPIGUEU "
-#~ "QUČ ESTEU FENT!\n"
-
-#~ msgid ""
-#~ "At this point, you may choose what partition(s) to use to install\n"
-#~ "your Mandrake Linux system if they have been already defined (from a\n"
-#~ "previous install of GNU/Linux or from another partitioning tool). In "
-#~ "other\n"
-#~ "cases, hard drive partitions must be defined. This operation consists of\n"
-#~ "logically dividing the computer's hard drive capacity into separate\n"
-#~ "areas for use.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you have to create new partitions, use \"Auto allocate\" to "
-#~ "automatically\n"
-#~ "create partitions for GNU/Linux. You can select the disk for partitioning "
-#~ "by\n"
-#~ "clicking on \"hda\" for the first IDE drive,\n"
-#~ "\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
-#~ "\n"
-#~ "\n"
-#~ "Two common partition are: the root partition (/), which is the starting\n"
-#~ "point of the filesystem's directory hierarchy, and /boot, which contains\n"
-#~ "all files necessary to start the operating system when the\n"
-#~ "computer is first turned on.\n"
-#~ "\n"
-#~ "\n"
-#~ "Because the effects of this process are usually irreversible, "
-#~ "partitioning\n"
-#~ "can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-#~ "simplifies the process so that it must not be. Consult the documentation\n"
-#~ "and take your time before proceeding.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can reach any option using the keyboard: navigate through the "
-#~ "partitions\n"
-#~ "using Tab and Up/Down arrows. 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"
-#~ msgstr ""
-#~ "En aquest moment podeu decidir quina(es) partició(ns) voleu utilitzar\n"
-#~ "per instalˇlar el sistema Mandrake Linux, si és que ja es va(n)\n"
-#~ "definir (en una instalˇlació anterior del GNU/Linux o mitjançant una\n"
-#~ "altra eina de partició). En altres casos, s'han de definir les\n"
-#~ "particions del disc dur: aquesta operació consisteix en dividir el\n"
-#~ "disc dur de l'ordinador en ŕrees lňgiques separades.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si heu de crear noves particions, utilitzeu \"Assignació\n"
-#~ "automŕtica\" per crear particions per al GNU/Linux de manera automŕtica.\n"
-#~ "Podeu triar el disc on s'hi han de fer les particions fent clic a\n"
-#~ "\"hda\" per a la primera unitat IDE, \"hdb\" per a la segona, o\n"
-#~ "\"sda\" per a la primera unitat SCSI, i així successivament.\n"
-#~ "\n"
-#~ "\n"
-#~ "Dues particions habituals són: la partició root (/), que és el punt\n"
-#~ "d'inici de la jerarquia de directoris del sistema de fitxers, i\n"
-#~ "/boot, que conté tots els fitxers necessaris per iniciar el sistema\n"
-#~ "operatiu quan s'arrenca l'ordinador per primer cop.\n"
-#~ "\n"
-#~ "\n"
-#~ "Donat que aquest procés sol ser irreversible, la partició d'un disc\n"
-#~ "és sovint un procés que espanta als usuaris sense experičncia, perň\n"
-#~ "el DiskDrake simplifica molt aquest procés. Consulteu la documentació\n"
-#~ "i preneu-vos tant temps com sigui necessari abans de realitzar la\n"
-#~ "partició.\n"
-#~ "\n"
-#~ "Podeu accedir a qualsevol opció mitjançant el teclat: desplaceu-vos per "
-#~ "les particions amb el tabulador i les fletxes amunt i avall. Quan se "
-#~ "selecciona una partició, podeu utilitzar:\n"
-#~ "\n"
-#~ "- Ctrl-c per crear una nova partició (quan se selecciona una partició "
-#~ "buida)\n"
-#~ "\n"
-#~ "- Ctrl-d per suprimir una partició\n"
-#~ "\n"
-#~ "- Ctrl-m per definir el punt de muntatge\n"
-
-#~ msgid ""
-#~ "Any partitions that have been newly defined must be formatted for\n"
-#~ "use (formatting meaning creating a filesystem). At this time, you may\n"
-#~ "wish to re-format some already existing partitions to erase the data\n"
-#~ "they contain. Note: it is not necessary to re-format pre-existing\n"
-#~ "partitions, particularly if they contain files or data you wish to keep.\n"
-#~ "Typically retained are /home and /usr/local."
-#~ msgstr ""
-#~ "Cal formatar les particions que s'acaben de definir per poder-les\n"
-#~ "utilitzar ('formatar' significa 'crear un sistema de fitxers').\n"
-#~ "En aquest punt podeu, si voleu, tornar a formatar particions\n"
-#~ "existents per eliminar les dades que contenen. Nota: no és\n"
-#~ "necessari tornar a formatar les particions existents, especialment\n"
-#~ "si contenen fitxers o dades que voleu conservar.\n"
-#~ "Els directoris que es solen conservar són /home i /usr/local."
-
-#~ msgid ""
-#~ "The packages selected are now being installed. This operation\n"
-#~ "should take a few minutes unless you have chosen to upgrade an\n"
-#~ "existing system, in that case it can take more time even before\n"
-#~ "upgrade starts."
-#~ msgstr ""
-#~ "Ara s'estan instalˇlant els paquets seleccionats. Aquesta operació\n"
-#~ "trigarŕ pocs minuts, tret que hagueu escollit actualitzar un\n"
-#~ "sistema existent; en aquest cas trigarŕ més temps, fins i tot\n"
-#~ "abans que s'iniciď la instalˇlació."
-
-#~ msgid ""
-#~ "If DrakX failed to find your mouse, or if you want to\n"
-#~ "check what it has done, you will be presented the list of mice\n"
-#~ "above.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you agree with DrakX's settings, just click 'Ok'.\n"
-#~ "Otherwise you may choose the mouse that more closely matches your own\n"
-#~ "from the menu above.\n"
-#~ "\n"
-#~ "\n"
-#~ "In case of a serial mouse, you will also have to tell DrakX\n"
-#~ "which serial port it is connected to."
-#~ msgstr ""
-#~ "Si el DrakX no ha pogut trobar el ratolí, o si voleu comprovar quč\n"
-#~ "ha fet, a la part superior apareixerŕ la llista de ratolins.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si esteu d'acord amb els parŕmetres del DrakX, feu clic a 'D'acord'.\n"
-#~ "Si no, escolliu, al menú superior, el tipus de ratolí que us sembli més "
-#~ "semblant al vostre.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si es tracta d'un ratolí sčrie, també us caldrŕ indicar al DrakX a\n"
-#~ "quin port sčrie estŕ connectat."
-
-#~ msgid ""
-#~ "This section is dedicated to configuring a local area\n"
-#~ "network (LAN) or a modem.\n"
-#~ "\n"
-#~ "Choose \"Local LAN\" and DrakX will\n"
-#~ "try to find an Ethernet adapter on your machine. PCI adapters\n"
-#~ "should be found and initialized automatically.\n"
-#~ "However, if your peripheral is ISA, autodetection will not work,\n"
-#~ "and you will have to choose a driver from the list that will appear "
-#~ "then.\n"
-#~ "\n"
-#~ "\n"
-#~ "As for SCSI adapters, you can let the driver probe for the adapter\n"
-#~ "in the first time, otherwise you will have to specify the options\n"
-#~ "to the driver that you will have fetched from documentation of your\n"
-#~ "hardware.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you install a Mandrake Linux system on a machine which is part\n"
-#~ "of an already existing network, the network administrator will\n"
-#~ "have given you all necessary information (IP address, network\n"
-#~ "submask or netmask for short, and hostname). If you're setting\n"
-#~ "up a private network at home for example, you should choose\n"
-#~ "addresses.\n"
-#~ "\n"
-#~ "\n"
-#~ "Choose \"Dialup with modem\" and the Internet connection with\n"
-#~ "a modem will be configured. DrakX will try to find your modem,\n"
-#~ "if it fails you will have to select the right serial port where\n"
-#~ "your modem is connected to."
-#~ msgstr ""
-#~ "Aquesta secció estŕ dedicada a la configuració d'una xarxa local\n"
-#~ "(LAN) o d'un mňdem.\n"
-#~ "\n"
-#~ "Escolliu \"LAN local\" i el DrakX intentarŕ trobar un adaptador\n"
-#~ "Ethernet al vostre ordinador. El sistema trobarŕ i inicialitzarŕ\n"
-#~ "automŕticament els adaptadors PCI.\n"
-#~ "No obstant aixň, si el vostre perifčric és ISA, la detecció\n"
-#~ "no funcionarŕ, i us caldrŕ escollir un programa de control a la\n"
-#~ "llista que apareixerŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Com en el cas dels adaptadors SCSI, podeu deixar que, d'entrada,\n"
-#~ "el programa de control comprovi l'adaptador; si no ho feu així, us\n"
-#~ "caldrŕ especificar les opcions del programa de control que haureu\n"
-#~ "d'anar a buscar a la documentació del vostre maquinari.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si instalˇleu un sistema Mandrake Linux en un ordinador que forma\n"
-#~ "part d'una xarxa existent, l'administrador de la xarxa us haurŕ de\n"
-#~ "facilitar la informació necessŕria (l'adreça IP, la submŕscara de\n"
-#~ "xarxa i el nom de l'ordinador central). Si esteu configurant una\n"
-#~ "xarxa privada, com ara a casa, haureu d'escollir les adreces.\n"
-#~ "\n"
-#~ "\n"
-#~ "Escolliu \"Marcatge amb mňdem\" i es configurarŕ la connexió a\n"
-#~ "Internet amb un mňdem. El DrakX intentarŕ trobar el mňdem, perň,\n"
-#~ "si no se'n surt, us caldrŕ seleccionar el port sčrie al qual estŕ\n"
-#~ "connectat."
-
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these\n"
-#~ "types require a different setup. Note however that the print\n"
-#~ "spooler uses 'lp' as the default printer name; so you\n"
-#~ "must have one printer with such a name; but you can give\n"
-#~ "several names, separated by '|' characters, to a printer.\n"
-#~ "So, if you prefer to have a more meaningful name you just have\n"
-#~ "to put it first, eg: \"My Printer|lp\".\n"
-#~ "The printer having \"lp\" in its name(s) will be the default printer.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select\n"
-#~ "\"Local printer\". You will then have to tell which port your\n"
-#~ "printer is connected to, and select the appropriate filter.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine,\n"
-#~ "you will have to select \"Remote lpd\". In order to make\n"
-#~ "it work, no username or password is required, but you will need\n"
-#~ "to know the name of the printing queue on this server.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a SMB printer (which means, a printer located\n"
-#~ "on a remote Windows 9x/NT machine), you will have to specify its\n"
-#~ "SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
-#~ "plus the username, workgroup and password required in order to\n"
-#~ "access the printer, and of course the name of the printer. The same goes\n"
-#~ "for a NetWare printer, except that you need no workgroup information."
-#~ msgstr ""
-#~ "El GNU/Linux pot treballar amb molts tipus d'impressores. Per a cada\n"
-#~ "un d'aquests tipus, perň, cal una configuració diferent. Tingueu\n"
-#~ "en compte, perň, que l'spooler utilitza 'lp' com a nom d'impressora\n"
-#~ "per defecte, de manera que heu de tenir una impressora amb aquest nom.\n"
-#~ "No obstant aixň, podeu donar diferents noms a una impressora, separant-\n"
-#~ "los amb el carŕcter '|'. D'aquesta manera, si voleu donar-li un nom més\n"
-#~ "aclaridor només us caldrŕ indicar-lo en primer lloc, p.ex. \"La meva\n"
-#~ "impressora|lp\".\n"
-#~ "La impressora que contingui \"lp\" al(s) nom(s) serŕ la impressora per\n"
-#~ "defecte\n"
-#~ "\n"
-#~ "\n"
-#~ "Si la vostra impressora estŕ connectada directament a l'ordinador,\n"
-#~ "seleccioneu \"Impressora local\". Haureu d'indicar a quin port\n"
-#~ "estŕ connectada i seleccionar-ne el filtre corresponent.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si voleu accedir a una impressora que es troba a un ordinador Unix\n"
-#~ "remot, seleccioneu \"lpd remot\". Per poder-la fer funcionar no\n"
-#~ "cal cap nom d'usuari ni contrasenya, perň us caldrŕ saber el nom\n"
-#~ "de la cua d'impressió del servidor remot.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si voleu accedir a una impressora SMB (és a dir, una impressora\n"
-#~ "que es troba a un ordinador remot amb Windows 9x/NT), per poder-ho\n"
-#~ "fer haureu d'indicar el seu nom SMB (que no és el seu nom TCP/IP)\n"
-#~ "i possiblement la seva adreça IP, nom d'usuari, grup de treball,\n"
-#~ "contrasenya, i, evidentment, el nom de la impressora. El mateix\n"
-#~ "per a una impressora NetWare, perň en aquest cas no us caldrŕ la\n"
-#~ "informació del grup de treball."
-
-#~ msgid ""
-#~ "It is strongly recommended that you answer \"Yes\" here. If you install\n"
-#~ "Microsoft Windows at a later date it will overwrite the boot sector.\n"
-#~ "Unless you have made a bootdisk as suggested, you will not be able to\n"
-#~ "boot into GNU/Linux any more."
-#~ msgstr ""
-#~ "És molt recomanable que respongueu \"Sí\" aquí. Si més endavant\n"
-#~ "instalˇleu Microsoft Windows, sobreescriurŕ el sector d'arrencada.\n"
-#~ "Tret que hagueu fet el disc d'arrencada com es\n"
-#~ "recomana, ja no podreu tornar a arrencar el GNU/Linux."
-
-#~ msgid "Move your wheel!"
-#~ msgstr "Moveu la bola!"
-
-#~ msgid "Forget the changes?"
-#~ msgstr "Voleu descartar els canvis?"
-
-#~ msgid "What is the type of your mouse?"
-#~ msgstr "De quin tipus és el vostre ratolí?"
-
-#~ msgid "Automatic resolutions"
-#~ msgstr "Resolucions automŕtiques"
-
-#~ msgid ""
-#~ "To find the available resolutions I will try different ones.\n"
-#~ "Your screen will blink...\n"
-#~ "You can switch if off if you want, you'll hear a beep when it's over"
-#~ msgstr ""
-#~ "Per saber quines resolucions estan disponibles, en provaré algunes.\n"
-#~ "La pantalla parpellejarŕ...\n"
-#~ "Ho podeu desactivar si voleu; sentireu un avís sonor quan estigui llest"
-
-#~ msgid ""
-#~ "I can try to find the available resolutions (eg: 800x600).\n"
-#~ "Sometimes, though, it may hang the machine.\n"
-#~ "Do you want to try?"
-#~ msgstr ""
-#~ "Puc mirar de trobar les resolucions disponibles (p.ex. 800x600).\n"
-#~ "De vegades, perň, aixň pot penjar l'ordinador.\n"
-#~ "Us hi voleu arriscar?"
-
-#~ msgid ""
-#~ "No valid modes found\n"
-#~ "Try with another video card or monitor"
-#~ msgstr ""
-#~ "No s'han trobat modes vŕlids\n"
-#~ "Intenteu-ho amb una altra targeta de vídeo o monitor"
-
-#~ msgid "Automatical resolutions search"
-#~ msgstr "Recerca automŕtica de resolucions"
-
-#~ msgid "dhcpd"
-#~ msgstr "dhcpd"
-
-#~ msgid "pump"
-#~ msgstr "pump"
-
-#~ msgid "dhcpxd"
-#~ msgstr "dhcpxd"
-
-#~ msgid "dhcp-client"
-#~ msgstr "dhcp-client"
-
-#~ msgid "Apple ADB Mouse"
-#~ msgstr "Apple ADB Mouse"
-
-#~ msgid "Apple ADB Mouse (2 Buttons)"
-#~ msgstr "Apple ADB Mouse (2 botons)"
-
-#~ msgid "Apple ADB Mouse (3+ Buttons)"
-#~ msgstr "Apple ADB Mouse (3 o més botons)"
-
-#~ msgid "Apple USB Mouse"
-#~ msgstr "Apple USB Mouse"
-
-#~ msgid "Apple USB Mouse (2 Buttons)"
-#~ msgstr "Apple USB Mouse (2 botons)"
-
-#~ msgid "Apple USB Mouse (3+ Buttons)"
-#~ msgstr "Apple USB Mouse (3 o més botons)"
-
-#~ msgid "ASCII MieMouse"
-#~ msgstr "ASCII MieMouse"
-
-#~ msgid "Genius NetMouse Pro"
-#~ msgstr "Genius NetMouse Pro"
-
-#~ msgid "ATI Bus Mouse"
-#~ msgstr "ATI Bus Mouse"
-
-#~ msgid "Microsoft Bus Mouse"
-#~ msgstr "Microsoft Bus Mouse"
-
-#~ msgid "Logitech Bus Mouse"
-#~ msgstr "Logitech Bus Mouse"
-
-#~ msgid "USB Mouse (3 buttons or more)"
-#~ msgstr "USB Mouse (3 o més botons)"
-
-#~ msgid "Microsoft Rev 2.1A or higher (serial)"
-#~ msgstr "Microsoft Rev 2.1A o superior (sčrie)"
-
-#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-#~ msgstr "Logitech MouseMan+/FirstMouse+ (sčrie)"
-
-#~ msgid "ASCII MieMouse (serial)"
-#~ msgstr "ASCII MieMouse (sčrie)"
-
-#~ msgid "Genius NetMouse (serial)"
-#~ msgstr "Genius NetMouse (sčrie)"
-
-#~ msgid "Generic Mouse (serial)"
-#~ msgstr "Generic Mouse (sčrie)"
-
-#~ msgid "Microsoft compatible (serial)"
-#~ msgstr "Compatible Microsoft (sčrie)"
-
-#~ msgid "Generic 3 Button Mouse (serial)"
-#~ msgstr "Ratolí Generic de 3 botons (sčrie)"
-
-#~ msgid "Kensington Thinking Mouse (serial)"
-#~ msgstr "Ratolí Kensington Thinking (sčrie)"
-
-#~ msgid ""
-#~ "I need to configure your network adapter to be able to connect to "
-#~ "internet."
-#~ msgstr ""
-#~ "Necessito configurar el vostre adaptador de xarxa por poder connectar a "
-#~ "Internet."
-
-#~ msgid "nfs mount failed"
-#~ msgstr "ha fallat el muntatge de l'nfs"
-
-#~ msgid "Socket"
-#~ msgstr "Sňcol"
-
-#~ msgid ""
-#~ "DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
-#~ "By default, the 4.0 server is used unless your card is not supported.\n"
-#~ "\n"
-#~ "Do you want to keep XFree 3.3?"
-#~ msgstr ""
-#~ "El DrakX generarŕ els fitxers de configuració tant per a l'XFree 3.3 com "
-#~ "per a l'Xfree 4.0.\n"
-#~ "Per defecte, s'utilitza el servidor 4.0, tret que no funcioni per a la "
-#~ "vostra targeta.\n"
-#~ "\n"
-#~ "Voleu conservar l'Xfree 3.3?"
-
-#~ msgid "tie"
-#~ msgstr "llaç"
-
-#~ msgid "brunette"
-#~ msgstr "morena"
-
-#~ msgid "girl"
-#~ msgstr "noia"
-
-#~ msgid "woman-blond"
-#~ msgstr "dona-rossa"
-
-#~ msgid "automagic"
-#~ msgstr "automagic"
-
-#~ msgid "Cryptographic"
-#~ msgstr "Criptogrŕfic"
-
-#~ msgid "Take over the hard drive"
-#~ msgstr "Encarrega't del disc dur"
-
-#~ msgid "Do not set up networking"
-#~ msgstr "No configuris la xarxa"
-
-#~ msgid "Do you want to configure a local network for your system?"
-#~ msgstr "Voleu configurar la xarxa local per al vostre sistema?"
-
-#~ msgid "Have you been provided with a hostname?"
-#~ msgstr "Us han donat un nom d'ordinador central?"
-
-#~ msgid "Show less"
-#~ msgstr "Mostra'n menys"
-
-#~ msgid "Show more"
-#~ msgstr "Mostra'n més"
-
-#~ msgid "URI for Local printer"
-#~ msgstr "URI per a la impressora local"
-
-#~ msgid "URI for Network printer"
-#~ msgstr "URI per a la impressora de xarxa"
-
-#~ msgid "Local Printer Device (URI)"
-#~ msgstr "Dispositiu de la impressora local (URI)"
-
-#~ msgid ""
-#~ "What URI device is your printer connected to\n"
-#~ "(note that parallel:/dev/lp0 is equivalent to LPT1:)?"
-#~ msgstr ""
-#~ "A quin dispositiu URI estŕ connectada la vostra impressora?\n"
-#~ "(tingueu en compte que parallel:/dev/lp0 equival a LPT1:)"
-
-#~ msgid "Network Printer Options (URI)"
-#~ msgstr "Opcions de la impressora de xarxa (URI)"
-
-#~ msgid ""
-#~ "Choose the right Device URI for a network printer or a local file. "
-#~ "Examples:\n"
-#~ " file:/path/to/filename.prn\n"
-#~ " http://hostname:631/ipp/port1\n"
-#~ " ipp://hostname/ipp/port1\n"
-#~ " lpq://hostname/queue\n"
-#~ " socket://hostname\n"
-#~ " socket://hostname:9100"
-#~ msgstr ""
-#~ "Seleccioneu l'URI de dispositiu correcte per a una impressora de xarxa o "
-#~ "un fitxer local. Exemples:\n"
-#~ " file:/camí/al/nomdefitxer.prn\n"
-#~ " http://ordinadorcentral:631/ipp/port1\n"
-#~ " ipp://ordinadorcentral/ipp/port1\n"
-#~ " lpq://ordinadorcentral/cua\n"
-#~ " socket://ordinadorcentral\n"
-#~ " socket://ordinadorcentral:9100"
-
-#~ msgid "Local Area Network specification"
-#~ msgstr "Especificació de la xarxa d'ŕrea local"
-
-#~ msgid "You may now decide which class C network to use.\n"
-#~ msgstr "Ara podeu decidir quina xarxa de classe C voleu utilitzar.\n"
-
-#~ msgid "Internet Connection Sharing - setup of %s"
-#~ msgstr "Connexió a Internet compartida: configuració de %s"
-
-#~ msgid ""
-#~ "The following interface is about to be configured:\n"
-#~ "\n"
-#~ "%s\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Ara es configurarŕ la interfície següent:\n"
-#~ "\n"
-#~ "%s\n"
-#~ "\n"
-
-#~ msgid "Everything configured!"
-#~ msgstr "S'ha configurat tot!"
-
-#~ msgid "What is your keyboard layout?"
-#~ msgstr "Quina és la disposició del vostre teclat?"
-
-#~ msgid "Try to find PCMCIA cards?"
-#~ msgstr "Voleu que intenti trobar targetes PCMCIA?"
-
-#~ msgid "Try to find %s devices?"
-#~ msgstr "Voleu que intenti trobar els dispositius %s?"
-
-#~ msgid ""
-#~ "Do you want to configure a dialup connection with modem for your system?"
-#~ msgstr ""
-#~ "Voleu configurar el marcatge amb xarxa per mňdem per al vostre sistema?"
-
-#~ msgid "Try to find PCI devices?"
-#~ msgstr "Voleu que intenti trobar dispositius PCI?"
-
-#~ msgid "Searching root partition."
-#~ msgstr "S'estŕ cercant la partició arrel."
-
-#~ msgid "%s: This is not a root partition, please select another one."
-#~ msgstr ""
-#~ "%s: Aquesta partició no és arrel; si us plau, seleccioneu-ne una altra."
-
-#~ msgid "Please choose a partition to use as your root partition."
-#~ msgstr "Si us plau, seleccioneu una partició per utilitzar-la com a arrel."
-
-#~ msgid "You don't have any windows partitions!"
-#~ msgstr "No teniu cap partició de Windows!"
-
-#~ msgid "You don't have any enough room for Lnx4win"
-#~ msgstr "No teniu prou espai per al Lnx4win"
-
-#~ msgid ", %U MB"
-#~ msgstr ", %U MB"
-
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-#~ msgid ""
-#~ "Welcome to LILO the operating system chooser!\n"
-#~ "\n"
-#~ "To list the possible choices, press <TAB>.\n"
-#~ "\n"
-#~ "To load one of them, write its name and press <ENTER> or wait %d seconds "
-#~ "for default boot.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Benvingut al LILO, la utilitat que us permet triar el sistema operatiu!\n"
-#~ "\n"
-#~ "Per obtenir una llista de les eleccions possibles, premeu <TAB>.\n"
-#~ "\n"
-#~ "Per carregar-ne una, escriviu-ne el nom i premeu <INTRO> o espereu %d "
-#~ "segons\n"
-#~ "fins a l'arrencada predeterminada.\n"
-
-# NOTE: this message will be displayed by SILO at boot time; that is
-# only the ascii charset will be available
-# so use only 7bit for this message
-#
-#~ msgid ""
-#~ "Welcome to SILO the operating system chooser!\n"
-#~ "\n"
-#~ "To list the possible choices, press <TAB>.\n"
-#~ "\n"
-#~ "To load one of them, write its name and press <ENTER> or\n"
-#~ "wait %d seconds for default boot.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Benvingut al SILO, la utilitat que us permet triar el sistema operatiu!\n"
-#~ "\n"
-#~ "Per obtenir una llista de les eleccions possibles, premeu <TAB>.\n"
-#~ "\n"
-#~ "Per carregar-ne una, escriviu-ne el nom i premeu <INTRO> o espereu %d "
-#~ "segons\n"
-#~ "fins a l'arrencada predeterminada.\n"
-
-#~ msgid "SILO main options"
-#~ msgstr "Opcions principals del SILO"
-
-#~ msgid ""
-#~ "Here are the following entries in SILO.\n"
-#~ "You can add some more or change the existing ones."
-#~ msgstr ""
-#~ "Aquestes són les entrades següents del SILO.\n"
-#~ "Podeu afegir-ne algunes més o canviar-ne les existents."
-
-#~ msgid "This label is already in use"
-#~ msgstr "Aquesta etiqueta ja estŕ en ús"
-
-#~ msgid "Installation of SILO failed. The following error occured:"
-#~ msgstr "Ha fallat la instalˇlació del SILO. S'ha produďt l'error següent:"
-
-#~ msgid ""
-#~ "DrakX will attempt at first to look for one or more PCI\n"
-#~ "SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-#~ "to use, it will insert it (them) automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-#~ "doesn't know which driver to use for this card, or if you have no\n"
-#~ "SCSI adapters at all, you will then be prompted on whether you have\n"
-#~ "one or not. If you have none, answer \"No\". If you have one or more,\n"
-#~ "answer \"Yes\". A list of drivers will then pop up, from which you\n"
-#~ "will have to select one.\n"
-#~ "\n"
-#~ "\n"
-#~ "After you have selected the driver, DrakX will ask if you\n"
-#~ "want to specify options for it. First, try and let the driver\n"
-#~ "probe for the hardware: it usually works fine.\n"
-#~ "\n"
-#~ "\n"
-#~ "If not, do not forget the information on your hardware that you\n"
-#~ "could get from your documentation or from Windows (if you have it\n"
-#~ "on your system), as suggested by the installation guide. These\n"
-#~ "are the options you will need to provide to the driver."
-#~ msgstr ""
-#~ "En primer lloc, el DrakX intentarŕ trobar un o més adaptadors SCSI\n"
-#~ "PCI. Si en troba, i sap quin(s) programa(es) de control utilitzar,\n"
-#~ "l'inserirŕ o els inserirŕ automŕticament.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si el vostre adaptador SCSI és una targeta ISA, o si és PCI perň\n"
-#~ "el DrakX no sap amb quin programa de control ha d'utilitzar-la, o\n"
-#~ "si no teniu cap adaptador SCSI, se us preguntarŕ si en teniu un o\n"
-#~ "no. Si no en teniu cap, respongueu \"No\". Si en teniu un o més,\n"
-#~ "respongueu \"Sí\". Apareixerŕ una llista de programes de control,\n"
-#~ "de la qual n'haureu de triar un.\n"
-#~ "\n"
-#~ "\n"
-#~ "Un cop hagueu triat el programa de control, el DrakX us preguntarŕ\n"
-#~ "si voleu establir-ne les opcions. Primer, perň, deixeu que el\n"
-#~ "programa de control explori el maquinari: normalment funciona bé.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si no, no oblideu la informació sobre el vostre maquinari que\n"
-#~ "pugueu aconseguir a la documentació o al Windows (si el teniu al\n"
-#~ "sistema), com aconsella la guia d'instalˇlació. Aquestes són les\n"
-#~ "opcions que haureu de proporcionar al programa de control."
-
-#~ msgid "Shutting down"
-#~ msgstr "S'estŕ tancant l'ordinador"
-
-#~ msgid ""
-#~ "Some true type fonts from windows have been found on your computer.\n"
-#~ "Do you want to use them? Be sure you have the right to use them under "
-#~ "Linux."
-#~ msgstr ""
-#~ "S'han trobat alguns tipus de lletra \"true type\" del Windows a "
-#~ "l'ordinador.\n"
-#~ "Voleu utilitzar-les? Assegureu-vos que esteu autoritzat a utilitzar-les "
-#~ "sota Linux."
-
-#~ msgid "useless"
-#~ msgstr "inútil"
-
-#~ msgid ""
-#~ "Choose \"Install\" if there are no previous versions of Linux\n"
-#~ "installed, or if you wish to use multiple distributions or versions.\n"
-#~ "\n"
-#~ "\n"
-#~ "Choose \"Upgrade\" if you wish to update a previous version of Mandrake "
-#~ "Linux:\n"
-#~ "5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-#~ "2000\n"
-#~ "or 7.0 (Air)."
-#~ msgstr ""
-#~ "Escolliu \"Instalˇla\" si no hi ha instalˇlada cap versió anterior de "
-#~ "Linux,\n"
-#~ "o si voleu utilitzar diverses distribucions o versions.\n"
-#~ "\n"
-#~ "\n"
-#~ "Escolliu \"Actualització\" si voleu actualitzar una versió anterior de\n"
-#~ "Mandrake Linux: 5.1 (Venice), 5.2 (Leeloo), 5.3 (Festen) 6.0 (Venus),\n"
-#~ "6.1 (Helios), Gold 2000 o 7.0 (Air)."
+#~ msgid "preload module"
+#~ msgstr "mňdul de pre-cŕrrega"
-#~ msgid ""
-#~ "(a user ``mandrake'' with password ``mandrake'' has been automatically "
-#~ "added)"
-#~ msgstr ""
-#~ "(s'ha afegit automŕticament un usuari ``mandrake'' amb contrasenya "
-#~ "``mandrake'')"
+#~ msgid "click on a category"
+#~ msgstr "feu clic a una categoria"
-#~ msgid "Do you want to use LILO?"
-#~ msgstr "Voleu utilitzar el LILO?"
-
-#~ msgid ""
-#~ "You may now select the packages you wish to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "First you can select group of package to install or upgrade. After that\n"
-#~ "you can select more packages according to the total size you wish to\n"
-#~ "select.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you are in expert mode, you can select packages individually.\n"
-#~ "Please note that some packages require the installation of others.\n"
-#~ "These are referred to as package dependencies. The packages you select,\n"
-#~ "and the packages they require will be automatically selected for\n"
-#~ "install. It is impossible to install a package without installing all\n"
-#~ "of its dependencies."
-#~ msgstr ""
-#~ "Ara podeu seleccionar els paquets que voleu instalˇlar.\n"
-#~ "\n"
-#~ "\n"
-#~ "En primer lloc, podeu seleccionar el grup del paquet a instalˇlar\n"
-#~ "o actualitzar. Després, podeu seleccionar més paquets segons la\n"
-#~ "mida total que voleu seleccionar.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si treballeu amb el mode expert, podeu seleccionar els paquets\n"
-#~ "individualment.\n"
-#~ "Tingueu en compte, perň, que alguns paquets necessiten que altres\n"
-#~ "també estiguin instalˇlats.\n"
-#~ "Aixň s'anomena 'dependčncia de paquets'. Els paquets que\n"
-#~ "seleccioneu, i els que aquests necessitin, es seleccionaran\n"
-#~ "automŕticament per a la instalˇlació. No és possible instalˇlar un\n"
-#~ "paquet sense instalˇlar-ne tots els dependents."
-
-#~ msgid ""
-#~ "LILO (the LInux LOader) can boot Linux and other operating systems.\n"
-#~ "Normally they are correctly detected during installation. If you don't\n"
-#~ "see yours detected, you can add one or more now.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you don't want that everybody could access at one of them, you can "
-#~ "remove\n"
-#~ "it now (a boot disk will be needed to boot it)."
-#~ msgstr ""
-#~ "El LILO (el carregador de Linux) pot arrencar el Linux i altres sistemes\n"
-#~ "operatius, que normalment es detecten correctament durant la "
-#~ "instalˇlació.\n"
-#~ "Si veieu que el vostre no s'ha detectat, ara podeu afegir-ne un o més.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si no voleu que tothom pugui accedir a algun d'ells, podeu\n"
-#~ "eliminar-lo ara (caldrŕ un disc d'arrencada per arrencar-lo)."
-
-#~ msgid ""
-#~ "Now that you've selected desired groups, please choose \n"
-#~ "how many packages you want, ranging from minimal to full \n"
-#~ "installation of each selected groups."
-#~ msgstr ""
-#~ "Ara que ja heu seleccionat els grups desitjats, seleccioneu \n"
-#~ "quants paquets voleu, ordenant-los des de la instalˇlació mínima \n"
-#~ "fins a la instalˇlació completa de cadascun dels grups seleccionats."
-
-#~ msgid ""
-#~ "You need %dMB for a full install of the groups you selected.\n"
-#~ "You can go on anyway, but be warned that you won't get all packages"
-#~ msgstr ""
-#~ "Us calen %dMB per a una instalació completa dels grups que heu "
-#~ "seleccionat.\n"
-#~ "Podeu continuar igualment, perň tingueu en compte que no tindreu tots els "
-#~ "paquets"
-
-#~ msgid "Choose other CD to install"
-#~ msgstr "Escolliu un altre CD per instalˇlar"
-
-#~ msgid ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Recommended: If you have never installed Linux before.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Customized: If you are familiar with Linux, you will be able to \n"
-#~ "select the usage for the installed system between normal, development or\n"
-#~ "server. Choose \"Normal\" for a general purpose installation of your\n"
-#~ "computer. You may choose \"Development\" if you will be using the "
-#~ "computer\n"
-#~ "primarily for software development, or choose \"Server\" if you wish to\n"
-#~ "install a general purpose server (for mail, printing...).\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: If you are fluent with GNU/Linux and want to perform\n"
-#~ "a highly customized installation, this Install Class is for you. You "
-#~ "will\n"
-#~ "be able to select the usage of your installed system as for \"Customized"
-#~ "\"."
-#~ msgstr ""
-#~ "Seleccioneu:\n"
-#~ "\n"
-#~ " - Recomanada: Si mai no heu instalˇlat el Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Personalitzada: Si esteu familiaritzat amb el Linux, podreu\n"
-#~ "triar l'ús del sistema instalˇlat entre Normal, Desenvolupament o\n"
-#~ "Servidor. Trieu \"Normal\" per a una instalˇlació per a un ús\n"
-#~ "general del vostre ordinador, \"Desenvolupament\" si utilitzareu\n"
-#~ "l'ordinador principalment per a desenvolupament de programari,\n"
-#~ "o \"Servidor\" si voleu instalˇlar un servidor convencional (per\n"
-#~ "a correu, impressions...).\n"
-#~ "\n"
-#~ "\n"
-#~ " - Per a experts: Si domineu el GNU/Linux i voleu realitzar una\n"
-#~ "instalˇlació totalment personalitzada, aquest és el vostre\n"
-#~ "tipus d'instalˇlació. Podreu seleccionar l'ús del vostre sistema\n"
-#~ "com a \"Personalitzada\"."
-
-#~ msgid "Downloading cryptographic packages"
-#~ msgstr "S'estan descarregant els paquets criptogrŕfics"
-
-#~ msgid "Setup SCSI"
-#~ msgstr "Configura el SCSI"
-
-#~ msgid "Installation CD Nr %s"
-#~ msgstr "CD d'instalˇlació Nr %s"
-
-#~ msgid ""
-#~ "Update installation image!\n"
-#~ "\n"
-#~ "Ask your system administrator or reboot to update your installation image "
-#~ "to include\n"
-#~ "the Cd-Rom image labelled \"%s\". Press Ok if image has been updated or "
-#~ "press Cancel\n"
-#~ "to avoid installation from this Cd-Rom image."
-#~ msgstr ""
-#~ "Actualitzeu la imatge de la instalˇlació!\n"
-#~ "\n"
-#~ "Consulteu a l'administrador del sistema o torneu a arrencar per "
-#~ "actualitzar\n"
-#~ "la imatge de la instalˇlació per incloure la imatge en CD-ROM etiquetada "
-#~ "com\n"
-#~ "\"%s\". Premeu D'acord si la imatge s'ha actualitzat o premeu Cancelˇla "
-#~ "per\n"
-#~ "no fer la instalˇlació des d'aquesta imatge en Cd-ROM."
-
-#~ msgid "Which language do you want?"
-#~ msgstr "Quin idioma voleu?"
-
-#~ msgid "Hurt me plenty"
-#~ msgstr "Fes-me molt de mal"
-
-#~ msgid "What usage do you want?"
-#~ msgstr "Quina utilització voleu?"
-
-#~ msgid "Choose install or upgrade"
-#~ msgstr "Instalˇlació o actualització"
-
-#~ msgid "Enter a floppy (all data will be lost)"
-#~ msgstr ""
-#~ "Inseriu un disquet a la unitat\n"
-#~ "(Se'n perdran totes les dades)"
-
-#~ msgid "Going to install %d MB. You can choose to install more programs"
-#~ msgstr "Ara s'instalˇlaran %d MB. Podeu triar instalˇlar més programes"
-
-#~ msgid "Too many packages chosen: %dMB doesn't fit in %dMB"
-#~ msgstr "S'han escollit massa paquets: %dMB no cap a %dMB"
-
-#~ msgid "Bad kickstart file %s (failed %s)"
-#~ msgstr "Fitxer d'inici rŕpid %s incorrecte (ha fallat %s)"
-
-#~ msgid "Size: %s MB"
-#~ msgstr "Mida: %s MB"
-
-#~ msgid "US Keyboard"
-#~ msgstr "Teclat EU"
-
-#~ msgid "resizing"
-#~ msgstr "s'estŕ canviant la mida"
-
-#~ msgid "changing type of"
-#~ msgstr "s'estŕ canviant el tipus de"
-
-#~ msgid "After %s partition %s,"
-#~ msgstr "Després de %s partició %s,"
-
-#~ msgid "linear"
-#~ msgstr "lineal"
-
-#~ msgid "Linear (needed for some SCSI drives)"
-#~ msgstr "Lineal (necessari per a algunes unitats SCSI)"
-
-#~ msgid "beginner"
-#~ msgstr "principiant"
-
-#~ msgid "developer"
-#~ msgstr "desenvolupador"
-
-#~ msgid "Password:"
-#~ msgstr "Contrasenya:"
-
-#~ msgid "User name:"
-#~ msgstr "Nom d'usuari:"
-
-#~ msgid ""
-#~ "Failed to create an HTP boot floppy.\n"
-#~ "You may have to restart installation and give ``%s'' at the prompt"
-#~ msgstr ""
-#~ "No s'ha pogut crear un disquet d'arrencada HTP.\n"
-#~ "Potser us caldrŕ reiniciar la instalˇlació i introduir \"%s\" a "
-#~ "l'indicador"
-
-#~ msgid "It is necessary to restart installation with the new parameters"
-#~ msgstr "Cal reiniciar la instalˇlació amb els nous parŕmetres"
+#~ msgid "Remove"
+#~ msgstr "Elimina"
-#~ msgid "It is necessary to restart installation booting on the floppy"
-#~ msgstr "Cal reiniciar la instalˇlació arrencant des del disquet"
+#~ msgid "Tool for boot disk creation"
+#~ msgstr "Eina per a la creació de discs d'arrencada"
-#~ msgid ""
-#~ "Enter a floppy to create an HTP enabled boot\n"
-#~ "(all data on floppy will be lost)"
-#~ msgstr ""
-#~ "Introduďu un disquet per una arrencada habilitada per a HTP\n"
-#~ "(es perdran totes les dades del disquet)"
+#~ msgid "Show expert mode"
+#~ msgstr "Mostra el mode expert"
-#~ msgid ""
-#~ "Linux does not yet fully support ultra dma 66.\n"
-#~ "As a work-around i can make a custom floppy giving access the hard drive "
-#~ "on ide2 and ide3"
-#~ msgstr ""
-#~ "El Linux encara no suporta completament l'ultra dma 66.\n"
-#~ "Com a alternativa, puc fer un disquet personalitzat que doni accés a tot "
-#~ "el disc dur a ide2 i ide3"
+#~ msgid "modules"
+#~ msgstr "mňduls"
-#~ msgid "A entry %s already exists"
-#~ msgstr "Ja existeix una entrada %s"
+#~ msgid "Boot disk maker. Still in early stage.\n"
+#~ msgstr "Creador de discs d'arrencada. Encara en una fase primerenca.\n"
-#~ msgid "Installation CD Nr 1"
-#~ msgstr "CD d'instalˇlació Nr 1"
+#~ msgid "experts only"
+#~ msgstr "només experts"
-#~ msgid "Local LAN"
-#~ msgstr "LAN local"
+#~ msgid "/File/_Preferences"
+#~ msgstr "/Fitxer/_Preferčncies"
diff --git a/perl-install/share/po/cs.po b/perl-install/share/po/cs.po
index 3b88dd7d4..9d1a5c392 100644
--- a/perl-install/share/po/cs.po
+++ b/perl-install/share/po/cs.po
@@ -1,39 +1,69 @@
-# Czech messages for DrakX.
+# Czech messages for drakbootdisk.
# Copyright (C) 1999 Free Software Foundation, Inc.
-# Copyright (C) 1999 MandrakeSoft
-# Vladimír Marek <vlmarek@volny.cz>, 2000
-# Radek Vybiral <Radek.Vybiral@vsb.cz>, 2000
+# Radek Vybiral <Radek.Vybiral@vsb.cz>, 2000, 2001.
+# Michal Bukovjan <michal.bukovjan@openone.cz>, 2002
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-13 14:25GMT+0100\n"
-"Last-Translator: Radek Vybíral <Radek.Vybiral@vsb.cz>\n"
-"Language-Team: Czech <cs@li.org>\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2002-07-29 14:57GMT\n"
+"Last-Translator: Michal Bukovjan <michal.bukovjan@openone.cz>\n"
+"Language-Team: Čeština <de@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 0.9.5\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Konfigurovat všechny monitory nezávisle"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Použít rozšíření Xinerama"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Konfigurovat pouze kartu \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB nebo více"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Zvolte X server"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X server"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Konfigurace dvou monitorů"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -41,41 +71,44 @@ msgstr ""
"Váš systém podporuje zobrazení na dvou monitorech.\n"
"Co chcete dělat?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Grafická karta"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Kolik paměti je na vaší grafické kartě ?"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Zvolte typ vaší grafické karty"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "Nastavení XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Zvolte X server"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Které XFree by jste chtěli použít?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X server"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Konfigurovat všechny monitory nezávisle"
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Zvolte ovladač pro X server"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Použít rozšíření Xinerama"
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "Ovladač pro X"
+#: ../../Xconfig/card.pm_.c:379
+#, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Konfigurovat pouze kartu \"%s\"%s"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Které XFree by jste chtěli použít?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s s hardwarovou 3D akcelerací"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -85,32 +118,17 @@ msgstr ""
"Pokud použijete XFree %s, můžete na druhou stranu dosáhnout lepších výsledků "
"ve 2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "S XFree %s může vaše karta využít 3D hardwarové akcelerace."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s s hardwarovou 3D akcelerací"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"S XFree %s může vaše karta využít 3D hardwarové akcelerace.\n"
-" TOTO JE POUZE EXPERIMENTÁLNÍ VERZE, A MŮŽE VÉST K NESTABILITĚ SYSTÉMU."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s s EXPERIMENTÁLNÍ 3D hardwarovou akcelerací"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -121,31 +139,57 @@ msgstr ""
"TOTO JE POUZE EXPERIMENTÁLNÍ VERZE, A MŮŽE VÉST K NESTABILITĚ SYSTÉMU.\n"
"Vaše karta je podporována i v XFree %s, kde může mít lepší podporu pro 2D."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"S XFree %s může vaše karta využít 3D hardwarové akcelerace.\n"
+" TOTO JE POUZE EXPERIMENTÁLNÍ VERZE, A MŮŽE VÉST K NESTABILITĚ SYSTÉMU."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (instalační ovladač pro obrazovku)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Nastavení XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Kolik paměti je na vaší grafické kartě ?"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Zvolte možnosti pro daný X server"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Zachovat změny?\n"
+"Aktuální konfigurace je:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Zvolte typ svého monitoru"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Vlastní"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Obecná"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+msgid "Vendor"
+msgstr "Dodavatel"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -169,511 +213,326 @@ msgstr ""
"jistí\n"
"zvolte raději typ s nižšími schopnostmi."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Horizontální(řádková) synchronizace"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Vertikální(obrazovková) synchronizace"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor není nastaven"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Grafická karta ještě není nastavena"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Ještě nejsou zvolena rozlišení"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Chcete si vyzkoušet nastavení?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Varování: na této grafické kartě je testování nebezpečné"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Vyzkoušet nastavení"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 barev (8 bitů)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"zkuste změnit některé parametry"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 tisíc barev (15 bitů)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Vyskytla se tato chyba:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 tisíc barev (16 bitů)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Test skončí automaticky za %d sekund"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 miliónů barev (24 bitů)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Je to správné nastavení?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 miliardy barev (32 bitů)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Vyskytla se chyba, zkuste změnit některé parametry"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Rozlišení"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Rozlišení"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Vyberte si rozlišení a barevnou hloubku"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Grafická karta: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 server: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Více"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Zrušit"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Expertní režim"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Ukázat vše"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Chcete si vyzkoušet nastavení?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Rozlišení"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Vyzkoušet nastavení"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Rozložení klávesnice: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Typ myši: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Přípojení myši: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Horizontální frekvence monitoru: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Vertikální frekvence monitoru: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Grafická karta: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Identifikace grafické karty: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Paměť na gr. kartě: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Barevná hloubka: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Rozlišení: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 server: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 ovladač: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Připravuji nastavení X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Co chcete dělat?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Změnit monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Změnit grafickou kartu"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Změnit parametry X Serveru"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Změnit rozlišení"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Zobrazit informace"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Znovu vyzkoušet nastavení X"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Konec"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Zachovat změny?\n"
-"Aktuální konfigurace je:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "Spouští se X"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Můžu nastavit váš počítač tak, aby automaticky spustil X při startu.\n"
"Chcete aby počítač po zapnutí spustil grafický režim?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Pro aktivaci změn se prosím znovu přihlaste na %s"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Prosím odhlaste se a pak stiskněte Ctrl-Alt-Backspace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 barev (8 bitů)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 tisíc barev (15 bitů)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 tisíc barev (16 bitů)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 miliónů barev (24 bitů)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 miliardy barev (32 bitů)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB nebo více"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Klasické VGA, 640x480 při 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 při 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Kompatibilní s 8514, 1024x768 při 87 Hz prokládaně (ne 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 při 87 Hz prokládaně, 800x600 při 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Lepší Super VGA, 800x600 při 60 Hz, 640x480 při 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Neprokládaná SVGA, 1024x768 při 60 Hz, 800x600 při 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Vysokofrekvenční SVGA, 1027x768 při 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multifrekvenční který umí 1280x1024 při 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multifrekvenční, který umí 1280x1024 při 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multifrekvenční, který umí 1280x1024 při 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor, který umí 1600x1200 při 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor, který umí 1600x1200 při 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "První sektor zaváděcího diskového oddílu"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "První sektor disku (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "Instalace SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Kam chcete nainstalovat zaváděcí program?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "Instalace LILO/Grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO s textovou nabídkou"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO s grafickou nabídkou"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Spuštění s DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Základní nastavení zaváděcího programu"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Zaváděcí program"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Instalace zaváděcího programu"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Startovací zařízení"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (nefunguje se starým BIOSem)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Kompaktní"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "kompaktní"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Textový režim"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Prodleva před automatickým spuštěním"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Heslo"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Heslo (podruhé)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Omezení nastavení z příkazové řádky"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "omezení"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Vyčistit /tmp při každém startu"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Pokud je třeba, upřesněte velikost paměti (nalezeno %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Povolit více profilů"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Zadejte velikost paměti v MB"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Volba ''Omezení nastavení z příkazové řádky'' je bezpředmětné bez hesla"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Zkuste to znovu, prosím"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Hesla nejsou shodná"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Úvodní zpráva"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Prodleva pro firmware"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Prodleva při spuštění"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Povolit spuštění z CD?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Povolit zavaděč OF?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Výchozí OS?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -687,83 +546,83 @@ msgstr ""
"\n"
"Ze kterého disku spouštíte systém?"
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Tady jsou všechny záznamy.\n"
"Můžete přidat další nebo změnit stávající."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Přidat"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Hotovo"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Změnit"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Jaký typ záznamu chcete přidat?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Jiný systém (SunOs...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Jiný systém (MacOs...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Jiný systém (Windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Obraz(image)"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Kořenový(root)"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Připojit"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Pro čtení i zápis"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabulka"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Nejistý"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Značka"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Výchozí"
@@ -795,53 +654,77 @@ msgstr "Musíte zadat kořenový oddíl"
msgid "This label is already used"
msgstr "Tato značka se již používá"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Našel jsem %s %s rozhraní"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Máte ještě nějaké jiné?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Máte nějaké %s rozhraní?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Ne"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Ano"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Ukázat informace o hardware"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instaluji ovladač pro %s kartu %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+"Nyní lze zadat volby pro modul %s.\n"
+"Pozn.: každá adresa by měla být ve tvaru 0x např. '0x123'"
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Nyní můžete poskytnout modulu %s další parametry.\n"
+"Volby se zadávají ve tvaru ''jméno=hodnota jméno2=hodnota2 ...''.\n"
+"Například, ''io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Volby modulu:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Který %s ovladač mám zkusit?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -857,43 +740,19 @@ msgstr ""
"nějaké doplňující možnosti, nebo raději necháte ovladač samostatně "
"prozkoumat\n"
"hardware vašeho počítače, aby získal informace které potřebuje? Zkoumání\n"
-"hardware může ve vyjímečných případech způsobit zamrznutí počítače, ale "
+"hardware může ve výjimečných případech způsobit zamrznutí počítače, ale "
"nemělo\n"
"by v žádném případě způsobit jiné škody."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Automatické prozkoumání"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Zadejte možnosti"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"Nyní lze zadat volby pro příslušný modul %s.\n"
-"Pozn.: každá adresa by měla být ve tvaru 0x např. '0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Nyní můžete poskytnout modulu %s další parametry.\n"
-"Volby se zadávají ve tvaru ''jméno=hodnota jméno2=hodnota2 ...''.\n"
-"Například, ''io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Volby modulu:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -902,49 +761,53 @@ msgstr ""
"Spuštění modulu %s selhalo.\n"
"Chcete to zkusit s jinými parametry?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "přístup k programům v X prostředí"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "přístup k rpm nástrojům"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "povolit \"su\""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "přístup k administrativním souborům"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(už byl přidán %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Toto heslo je příliš jednoduché"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Prosím zadejte uživatelské jméno"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Uživatelské jméno může obsahovat pouze malá písmena, čísla, '-' a '_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+msgid "The user name is too long"
+msgstr "Toto uživatelské jméno je příliš dlouhé"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Toto uživatelské jméno už bylo přidáno"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Přidat uživatele"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -953,32 +816,32 @@ msgstr ""
"Zadejte uživatele\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Vytvořit uživatele"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Skutečné jméno"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Uživatelské jméno"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Ikona"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Automatické přihlášení"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -987,56 +850,58 @@ msgstr ""
"uživatele.\n"
"Chcete použít tuto možnost?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Zvolte standardního uživatele :"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Vyberte si, který správce oken má být spouštěn:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Prosím zvolte si jazyk, který chcete používat."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr "Můžete si zvolit další jazyky, které budou dostupné po instalaci"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Všechno"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Povolit všem uživatelům"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Vlastní"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "Nesdílet"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Balíček %s musí být nainstalován. Chcete ho nainstalovat?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr "Nyní lze provést export přes NFS nebo Samba protokol. Který chcete"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
+msgstr ""
+"Nyní lze provést export přes protokol NFS nebo Samba. Vyberte prosím, který "
+"chcete použít."
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Chybí potřebný balíček %s"
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
@@ -1045,67 +910,47 @@ msgstr ""
"Chcete povolit uživatelům, aby si mohli sdílet adresáře ve svém domovském "
"adresáři?\n"
"Pokud to povolíte, uživatelům stačí pouze kliknout na \"Sdílet\" v "
-"aplikacích konqueror a nautilus.\n"
+"aplikacích Konqueror a Nautilus.\n"
"\n"
"Lze také provést \"Vlastní\" povolení pro jednotlivé uživatele.\n"
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Zrušit"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
-msgstr "Spustit userdrake"
+msgstr "Spustit UserDrake"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
"Sdílení mezi uživateli používá skupinu \"fileshare\". \n"
-"Uživatele lze do této skupiny přidat pomocí nástroje userdrake."
+"Uživatele lze do této skupiny přidat pomocí nástroje UserDrake."
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Dveře dokořán"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Slabá"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Standardní"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Vysoká"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
msgstr "Vyšší"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoidní"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1116,14 +961,14 @@ msgstr ""
"systém, ale na druhou stranu je velmi citlivý: Nesmí být použit pro\n"
"počítač připojený k Internetu. Pro přihlášení není zapotřebí žádné heslo."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
"Hesla jsou nyní aktivní, ale stále nedoporučuji použít tento počítač na síti."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1131,60 +976,62 @@ msgstr ""
"Toto je standardní úroveň zabezpečení pro počítač, který je používán jako "
"klient pro připojení k internetu."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
"Existují zde některá omezení a každou noc jsou spuštěny automatické testy."
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
-"S touto bezpečnostní úrovní je možné používat počítač jako server.\n"
-"Bezpečnost je nyní dostatečná pro server s připojením mnoha klientů.\n"
-"Poznámka: pokud je počítač používán pouze jako klient pro připojení k "
-"Internetu, je lepší zvolit nižší úroveň."
+"S touto bezpečnostní úrovní je možné používat systém jako server.\n"
+"Bezpečnost je nyní dostatečně vysoká, aby bylo možné používat systém jako "
+"server, ke kterému\n"
+"je možné připojit mnoho klientů. Poznámka: pokud je počítač používán pouze "
+"jako klient pro připojení k Internetu, je lepší zvolit nižší úroveň."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Tato úroveň má vlastnosti předchozí úrovně, ale systém je úplně uzavřen.\n"
"Zabezpečení je nastaveno na maximum."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Zvolte si úroveň zabezpečení"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Úroveň zabezpečení"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Použít libsafe pro servery"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Knihovna, které zabraňuje útokům proti přetečení bufferu nebo proti špatnému "
"formátování řetězců."
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr "Administrátor bezpečnosti (přihlašovací jméno nebo email)"
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1208,7 +1055,7 @@ 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_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Vita Vas GRUB, program pro vyber operacniho systemu"
@@ -1221,7 +1068,7 @@ msgstr "Vita Vas GRUB, program pro vyber operacniho systemu"
#
#. -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_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Pro vyber polozek pouzijte klavesy %c a %c."
@@ -1235,7 +1082,7 @@ msgstr "Pro vyber polozek pouzijte klavesy %c a %c."
#
#. -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_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Stisknete ENTER pro start vybraného OS, 'e' pro upravu"
@@ -1248,33 +1095,33 @@ msgstr "Stisknete ENTER pro start vybraného OS, 'e' pro upravu"
#
#. -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_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "spoustecich parametru, nebo 'c' pro prikazovou radku."
#. -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_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Vybrana polozka bude automaticky spustena za %d sekund."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "není dost místa v adresáři /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Pracovní plocha"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Nabídka Start"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Zaváděcí program nelze nainstalovat na oddíl %s\n"
@@ -1287,15 +1134,19 @@ msgstr "nápověda zatím nedostupná.\n"
msgid "Boot Style Configuration"
msgstr "Nastavení stylu zavádění"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
-msgstr "_Soubor"
+msgstr "/_Soubor"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
-msgstr "/Soubor/_Konec"
+msgstr "/Soubor/U_končit"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>K"
@@ -1313,7 +1164,7 @@ msgstr "Tradiční monitor"
#: ../../bootlook.pm_.c:94
msgid "Traditional Gtk+ Monitor"
-msgstr "Tradiční Gtk+ monitor"
+msgstr "Tradiční GTK+ monitor"
#: ../../bootlook.pm_.c:95
msgid "Launch Aurora at boot time"
@@ -1330,14 +1181,14 @@ msgstr "Režim Yaboot"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Jako správce spouštění nyní používáte %s.\n"
"Pokud chcete spustit průvodce nastavením, klikněte na Konfigurovat."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Konfigurovat"
@@ -1347,7 +1198,7 @@ msgid "System mode"
msgstr "Systémový režim"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Spustit X-Window při startu"
#: ../../bootlook.pm_.c:148
@@ -1358,14 +1209,16 @@ msgstr "Ne, nechci automatické přihlášení"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ano, chci automatické přihlášení s tímto (uživatelem, desktopem)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "OK"
@@ -1411,9 +1264,9 @@ msgstr "Nelze provést sejmutí obrazovky před rozdělením disků"
#: ../../common.pm_.c:166
#, c-format
msgid "Screenshots will be available after install in %s"
-msgstr "Sejmuté obrazovvky budou dostupné po instalaci v adresáři %s"
+msgstr "Sejmuté obrazovky budou dostupné po instalaci v adresáři %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Francie"
@@ -1421,7 +1274,7 @@ msgstr "Francie"
msgid "Costa Rica"
msgstr "Costa Rica"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Belgie"
@@ -1445,11 +1298,12 @@ msgstr "Norsko"
msgid "Sweden"
msgstr "Švédsko"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Nizozemí"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "Itálie"
@@ -1457,7 +1311,7 @@ msgstr "Itálie"
msgid "Austria"
msgstr "Rakousko"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "Spojené státy americké"
@@ -1465,8 +1319,8 @@ msgstr "Spojené státy americké"
msgid "Please make a backup of your data first"
msgstr "Zálohujte si nejdřív svá data, prosím"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Čtěte pozorně!"
@@ -1479,11 +1333,12 @@ msgstr ""
"Jestliže chcete používat aboot, musíte nechat volné místo na začátku disku\n"
"(2048 sektorů stačí)"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Chyba"
@@ -1491,11 +1346,11 @@ msgstr "Chyba"
msgid "Wizard"
msgstr "Průvodce"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Co uděláte ?"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1503,181 +1358,186 @@ msgid ""
"(click on it, then click on \"Resize\")"
msgstr ""
"Máte jeden veliký oddíl FAT\n"
-"(většinou používaný Microsoft Dos/Windows).\n"
+"(většinou používaný Microsoft DOS/Windows).\n"
"Doporučuji vám nejprve zmenšit tento oddíl\n"
"(klepněte na něj a potom na\n"
"\"Změnit velikost\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Prosím klepněte na oddíl"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Detaily"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "Žurnálovací FS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOs"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Odkládací (swap)"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Prázdný"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Další"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Souborové systémy:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Vytvořit"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Změnit typ"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Místo toho použijte ``%s''"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Smazat"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Nejprve použijte ``Odpojit''"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "Tím že změníte typ oddílu %s přijdete o všechna jeho data"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Vyberte oddíl"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Vyberte jiný oddíl"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Konec"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Přepnout se do módu 'expert'"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Přepnout se do módu 'normální'"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Zpět"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Přesto chcete pokračovat?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Konec bez uložení"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Chcete skončit bez zapsání do tabulky oddílů?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
-msgstr "Chcete uložit modifikaci souboru /etc/fstab?"
+msgstr "Chcete uložit úpravy souboru /etc/fstab?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Automaticky rozmístit"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Vše smazat"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Více"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
-msgstr "Informace o hardisku"
+msgstr "Informace o pevném disku"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Všechny primární oddíly (partitions) jsou používány"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Nemůžu přidat žádný další oddíl"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr ""
"Abyste mohli mít více oddílů, musíte smazat jeden existující a na jeho "
"místě\n"
-"vytvořit rozšířený(extended) oddíl"
+"vytvořit rozšířený (extended) oddíl"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "Uložit tabulku oddílů"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "Obnovit tabulku oddílů"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Záchrana tabulky oddílů"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "Znovu načíst tabulku oddílů"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "Automatické připojování pro vyjímatelná média"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Zvolit soubor"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1685,11 +1545,11 @@ msgstr ""
"Záložní tabulka oddílů nemá stejnou velikost\n"
"Chcete přesto chcete pokračovat?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Varování"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1697,122 +1557,129 @@ msgstr ""
"Vložte disketu do mechaniky\n"
"Všechna data na této disketě budou smazána"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Pokouším se obnovit tabulku oddílů"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Podrobné informace"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Přípojný bod"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Volby"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Změnit velikost"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Přesunout"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formátovat"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Připojit"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Přidat do RAIDu"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Přidat do LVMu"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Odpojit"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Odebrat z RAIDu"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Odebrat z LVMu"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Změnit RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Použít loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Vytvořit nový oddíl"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Počáteční sektor: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Velikost v MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Souborový systém: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Adresář připojení (mount point): "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Nastavení: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+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/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "Odstranit soubor loopbacku?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Změnit typ oddílu"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Který souborový systém chcete použít?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Přepínám z ext2 na ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Kam chcete připojit loopback %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Kam chcete připojit zařízení %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1820,125 +1687,130 @@ msgstr ""
"Nemůžu smazat přípojný bod, protože tento oddíl je používán pro loopback.\n"
"Odstraňte nejprve loopback"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Počítám hranice souborového systému fat"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Měním velikost"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Na tomto diskovém oddílu nelze měnit velikost"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Všechna data z tohoto oddílu by měla být zálohována"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Když změníte velikost oddílu %s, ztratíte tím všechna jeho data"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Zvolte novou velikost"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Nová velikost v MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Na který disk chcete oddíl přesunout?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Na který sektor chcete oddíl přesunout?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Přesouvám"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Přesouvám oddíl..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Zvolte existující RAID pro přidání"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "nový"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Zvolte existující LVM pro přidání"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "Jméno pro LVM?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Tento oddíl nemůže být použit pro loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Název souboru loopbacku:"
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Zadejte jméno souboru"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Soubor už je používán jiným loopbackem, zvolte si jiný"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Soubor už existuje. Mám ho použít?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Volby pro připojení"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Další"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "zařízení"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "úroveň"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
-msgstr "Velikost bloku(chunk)"
+msgstr "Velikost bloku (chunk)"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Buďte opatrní: tato akce je nebezpečná."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Jaký typ diskového oddílu?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Balíček %s musí být nainstalován. Chcete ho nainstalovat?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1950,20 +1822,20 @@ msgstr ""
"Buďto použijete LILO a nebude to fungovat, nebo nepoužijete LILO a tedy "
"nepotřebujete /boot"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
"the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
"If you plan to use the LILO boot manager, be careful to add a /boot partition"
msgstr ""
-"Oddíl který jste zvolili jako kořenový (root - /) je na disku fyzicky za "
-"cylindrem 1024,\n"
-"a přitom nemáte /boot oddíl. Jestliže chcete použít správce bootu (boot "
+"Oddíl který jste zvolili jako kořenový (root - /) je na disku fyzicky "
+"umístěný za cylindrem 1024,\n"
+"a přitom nemáte /boot oddíl. Jestli chcete použít správce bootu LILO (boot "
"manager),\n"
"přidejte ještě /boot oddíl"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1973,129 +1845,129 @@ msgstr ""
"S tím se není schopný vypořádat žádný zaváděcí program bez použití oddílu\n"
"/boot. Ujistěte se prosím, že tento oddíl máte."
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Nová tabulka oddílů na disku %s bude zapsána!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Aby se změny uplatnily budete muset restartovat počítač"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Když naformátujete oddíl %s, ztratíte tím všechna jeho data"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Formátuji"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formátuji soubor loopbacku %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Formátuji oddíl %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Schovat soubory"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Přesunout soubory na nový diskový oddíl"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"Adresář %s již obsahuje nějaká data\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "Přesunuji soubory na nový diskový oddíl"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Kopíruji %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Odstraňuji %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "oddíl %s je nyní rozpoznán jako %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Zařízení: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Písmeno v DOSu: %s (jenom odhad)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Typ: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Jméno: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Začátek: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Velikost: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sektorů"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Od cylindru %d do cylindru %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Naformátovaný\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Nenaformátovaný\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Připojený\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2104,7 +1976,7 @@ msgstr ""
"Loopback soubor(y): \n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2112,27 +1984,27 @@ msgstr ""
"Standardní startovací oddíl\n"
" (Pro MS-DOS, ne pro LILO)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Úroveň %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Velikost bloku(chunk) %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID disky %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback soubor: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2144,7 +2016,7 @@ msgstr ""
"s ovladači, je lepší\n"
"no nechat neporušený.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2156,62 +2028,62 @@ msgstr ""
"oddíl je pro spuštění\n"
"dalšího systému.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Velikost: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrie: %s cylindrů, %s hlav, %s sektorů\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Informace: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM disky %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Typ tabulky oddílů: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
-msgid "on bus %d id %d\n"
-msgstr "na sběrnici %d id %d\n"
+msgid "on channel %d id %d\n"
+msgstr "na kanále %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Volby: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "Klíč pro kryptovaný souborový systém"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "Vyberte si kryptovací klíč pro souborový systém"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Tento klíč je příliš jednoduchý (musí být alespoň %d znaků dlouhý)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "Kryptovací klíče se neshodují"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "Kryptovací klíč"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "Kryptovací klíč (znovu)"
@@ -2220,35 +2092,62 @@ msgid "Change type"
msgstr "Změnit typ"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Prosím klepněte na zdroj"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr "Nelze se přihlásit pod uživatelským jménem %s (chybné heslo?)"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+msgid "Domain Authentication Required"
+msgstr "Vyžadováno Ověření Domény"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Another one"
+msgstr "Další"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Which username"
+msgstr "Které uživatelské jméno"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+"Prosím zadejte své uživatelské jméno, heslo a název domény, pod kterými "
+"chcete přistupovat k tomuto počítači."
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+msgid "Username"
+msgstr "Uživatelské jméno"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+msgid "Domain"
+msgstr "Doména"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "Vyhledat servery"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formátování %s skončilo chybou"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "nevím jak naformátovat %s na typ %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "připojení oddílu %s v adresáři %s selhalo"
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "selhal běh fsck s návratovým kódem %d nebo signálem %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "chyba odpojování %s: %s"
@@ -2265,68 +2164,310 @@ msgstr "s /usr"
msgid "server"
msgstr "server"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Nemůžete použít JFS pro oddíl menší než 16MB"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Nemůžete použít ReiserFS pro oddíl menší než 32MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Přípojné body (mount points) musí začínat '/'"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Oddíl s přípojným bodem %s už existuje\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Nelze použít LVM Logického disku na připojený bod %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Tento adresář musí kromě kořenového souborového systému zůstat"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
-"Pro tento přípojný bod potřebujete opravdový souborový systém (Ext2, "
-"ReiserFS)\n"
+"Pro tento přípojný bod potřebujete opravdový souborový systém (ext2/ext3, "
+"ReiserFS, XFS nebo JFS)\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Nelze použít kryptovaný souborový systém na připojený bod %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "Není dostatek místa pro automatické rozdělení disku"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr "Nic nedělat"
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Chyba při otevírání %s pro zápis: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Stala se chyba - nebylo nalezeno žádné zařízení na kterém by se daly "
"vytvořit nové souborové systémy. Zkontrolujte prosím hardware"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Nemáte žádné oddíly!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+msgid "Auto-detect"
+msgstr "Autodetekce"
+
+#: ../../harddrake/bttv.pm_.c:64
+msgid "Unknown|Generic"
+msgstr "Neznámá|Obecná"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr "Neznámá|CPH05X (bt878) [více dodavatelů]"
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr "Neznámá|CPH06X (bt878) [více dodavatelů]"
+
+#: ../../harddrake/bttv.pm_.c:193
+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 ""
+"Modul bttv jádra operačního systému GNU/Linux nalezne správné parametry "
+"automaticky pro většinu moderních TV karet.\n"
+"Je-li vaše karta špatně detekována, lze nastavit správný typ karty a tuneru "
+"ručně zde. Pokud je to potřeba, vyberte také parametry vaší TV karty."
+
+#: ../../harddrake/bttv.pm_.c:196
+msgid "Card model :"
+msgstr "Model karty :"
+
+#: ../../harddrake/bttv.pm_.c:197
+msgid "PLL setting :"
+msgstr "Nastavení PLL :"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr "Počet bufferů pro zachycení :"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr "Počet bufferů pro zachycení systémem mmap"
+
+#: ../../harddrake/bttv.pm_.c:199
+msgid "Tuner type :"
+msgstr "Typ tuneru :"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr "Podpora rádia :"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr "Zapnout podporu rádia"
+
+#: ../../harddrake/ui.pm_.c:12
+msgid "/_Quit"
+msgstr "/_Konec"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Nápověda"
+
+#: ../../harddrake/ui.pm_.c:14
+msgid "/_Help..."
+msgstr "/_Nápověda..."
+
+#: ../../harddrake/ui.pm_.c:15
+msgid "/_About..."
+msgstr "/_O aplikaci..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Modul"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Model karty :"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Zrušit"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr "Sběrnice"
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "Module"
+msgstr "Modul"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr "Třída médií"
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Popis"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+msgid "Bus identification"
+msgstr "Identifikace sběrnice"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr "Umístění sběrnice"
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Zvolit soubor"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Zařízení brány(gateway)"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 tlačítka"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+msgid "Harddrake2 version "
+msgstr "Verze Harddrake2 "
+
+#: ../../harddrake/ui.pm_.c:122
+msgid "Detected hardware"
+msgstr "Nalezený hardware"
+
+#: ../../harddrake/ui.pm_.c:136
+msgid "Informations"
+msgstr "Informace"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr "Spustit nástroj pro nastavení"
+
+#: ../../harddrake/ui.pm_.c:158
+msgid "Configure module"
+msgstr "Nastavit modul"
+
+#: ../../harddrake/ui.pm_.c:168
+msgid "Detection in progress"
+msgstr "Probíhá detekce"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Prosím počkejte"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr "primární"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "secondary"
+msgstr "sekundární"
+
+#: ../../harddrake/ui.pm_.c:260
+#, c-format
+msgid "Running \"%s\" ..."
+msgstr "Spouštím \"%s\" ..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr "O aplikaci HardDrake"
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+"Toto je HardDrake, nástroj společnosti Mandrake pro nastavení hardware.\n"
+"Verze:"
+
+#: ../../harddrake/ui.pm_.c:281
+msgid "Author:"
+msgstr "Autor:"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr "Nápověda pro HardDrake"
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2340,7 +2481,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2373,7 +2514,7 @@ msgstr ""
"\n"
"Jako první zadejte reálné jméno. Není to povinné, takže můžete zadat co "
"chcete\n"
-"a drakX použije první slovo jako uživatelské jméno, pod kterým se bude "
+"a DrakX použije první slovo jako uživatelské jméno, pod kterým se bude "
"uživatel\n"
"hlásit do systému. Je možné ho následně změnit. Dále se zadává heslo pro\n"
"uživatele. Volba hesla pro normální uživatele sice není tak kritická jako\n"
@@ -2466,9 +2607,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2587,7 +2727,7 @@ msgid ""
"another installation. See the second tip of last step on how to create such\n"
"a floppy."
msgstr ""
-"V závislosti na tom, zda jste zvolili individuální výbět balíčků, nabídne\n"
+"V závislosti na tom, zda jste zvolili individuální výběr balíčků, nabídne\n"
"se stromová struktura, obsahující všechny balíčky organizované do skupin.\n"
"Při procházení stromu můžete vybrat jednotlivé balíčky nebo celé skupiny.\n"
"\n"
@@ -2718,7 +2858,7 @@ msgstr ""
"hodin\n"
"připojením se k časovému serveru na internetu. Vyberte si v seznamu ten "
"server,\n"
-"který je vám nejblíž. Je zamořejmé, že pro správnou funkci musíte mít "
+"který je vám nejblíž. Je samozřejmé, že pro správnou funkci musíte mít "
"fukční\n"
"připojení k internetu. Na počítač se také nainstaluje časový server, který\n"
"mohou používat jiné počítače ve vaší lokální síti."
@@ -2745,7 +2885,7 @@ msgid ""
"after 10 seconds, restoring the screen."
msgstr ""
"X Window System (zkráceně X) je srdcem grafického rozhraní GNU/Linuxu,\n"
-"na kterém jsou provozovány grafická prostředí (KDE,Gnome,AfterStep, "
+"na kterém jsou provozovány grafická prostředí (KDE, Gnome, AfterStep, "
"WindowMaker)\n"
"V této sekci se DrakX pokusí nakonfigurovat X automaticky.\n"
"\n"
@@ -2806,7 +2946,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2818,9 +2958,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2890,21 +3029,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2920,9 +3058,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"V tomto bodě si musíte definovat, na které diskové oddíly budete\n"
"instalovat nový operační systém Mandrake Linux. Pokud je disk prázdný\n"
@@ -2936,7 +3074,7 @@ msgstr ""
"Ještě před započetím rozdělování disku si pročtěte manuál.\n"
"\n"
"Pokud máte zvolený Expertní režim, spustil se nástroj na práci s diskem: "
-"Diskdrake, který umožňuje lépe nastavit diskové oddíly. Pokud chcete použít\n"
+"DiskDrake, který umožňuje lépe nastavit diskové oddíly. Pokud chcete použít\n"
"průvodce, klikněte na tlačítko \"Průvodce\".\n"
"\n"
"Pokud máte již vytvořeny diskové oddíly z předchozích instalací nebo\n"
@@ -2999,9 +3137,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3097,7 +3234,7 @@ msgstr ""
"Klikněte na \"Zrušit\" pokud chcete vybrat jiné oddíly pro instalaci\n"
"systému Mandrake Linux.\n"
"\n"
-"Kliknutím na \"Rozšířené\" můžete vybrat, které oddílz budou otestovány\n"
+"Kliknutím na \"Rozšířené\" můžete vybrat, které oddíly budou otestovány\n"
"na vadné bloky."
#: ../../help.pm_.c:404
@@ -3175,8 +3312,8 @@ msgstr ""
"počítač využíván a čím cennější data obsahuje, tím je potřeba zvolit vyšší\n"
"úroveň. Na druhou stranu, vyšší úroveň znesnadňuje některé obvyklé postupy.\n"
"Více informací o úrovních bezpečnosti se dočtete v kapitole MSEC v "
-"referenční\n"
-"příručce. \n"
+"referenční příručce.\n"
+"\n"
"Pokud nevíte co vybrat, ponechte výchozí nastavení."
#: ../../help.pm_.c:442
@@ -3201,38 +3338,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3320,7 +3451,7 @@ msgstr ""
"\n"
"Pokud instalujete na počítač PPC, je potřeba vytvořit malý oddíl HPFS,\n"
"tzv. \"bootstrap\" o minimální velikosti 1MB, který bude použit pro zavaděč\n"
-"yaboot. Pokud vytvoříte tento oddíl větší, např. 50 MB, je to dobré místo "
+"Yaboot. Pokud vytvoříte tento oddíl větší, např. 50 MB, je to dobré místo "
"pro\n"
"uložení ramdisku a jádra pro situace záchrany disku."
@@ -3402,11 +3533,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3464,7 +3595,7 @@ msgstr ""
"ty, kteří nemají velmi dobré znalosti GNU/Linuxu.\n"
"Nevolte tuto volbu, pokud přesně nevíte, co děláte."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3492,7 +3623,7 @@ msgstr ""
"Pokud máte klávesnici pro jiný jazyk, klikněte na tlačítko \"Více\"\n"
"a zobrazí se kompletní seznam všech podporovaných rozložení klávesnic."
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3521,7 +3652,7 @@ msgstr ""
"Pokud máte jazyk vybrán, klikněte na \"OK\" a instalace bude pokračovat\n"
"dalším krokem."
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3536,9 +3667,9 @@ msgid ""
"correct. If the mouse is not working well, press the space bar or [Return]\n"
"to \"Cancel\" and choose again."
msgstr ""
-"DrakX zjistil, že máte dvou tlačítkovou myš a nastaví emulaci pro třetí "
+"DrakX zjistil, že máte dvoutlačítkovou myš a nastaví emulaci pro třetí "
"tlačítko.\n"
-"Taky umí rozpoznat, zda je myš PS/2, USB nebo sériová.\n"
+"Také umí rozpoznat, zda je myš PS/2, USB nebo sériová.\n"
"\n"
"Pokud chcete zadat jiný typ myši, vyberte odpovídající typ se seznamu.\n"
"\n"
@@ -3549,7 +3680,7 @@ msgstr ""
"Pokud myš nepracuje správně, stiskněte mezerník nebo ENTER na \"Zrušit\"\n"
"a vyberte jiný typ."
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3557,23 +3688,23 @@ msgstr ""
"Vyberte prosím správný port. Například \"COM1\" pod MS Windows se\n"
"v Linuxu jmenuje \"ttyS0\"."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3618,7 +3749,7 @@ msgstr ""
"Heslo se zadává dvakrát pro ověření toho, zda nedošlo k překlepu při prvním\n"
"pokusu. Tak je možné heslo opravit a zadat dvakrát stejné.\n"
"\n"
-"V expertním režimu budete dotázáni na to, zda se má použít autentikační\n"
+"V expertním režimu budete dotázáni na to, zda se má použít autentizační\n"
"server, jako je NIS nebo LDAP.\n"
"\n"
"Pokud se ve vaší síti používá protokol LDAP (nebo NIS) pro ověřování\n"
@@ -3626,9 +3757,9 @@ msgstr ""
"zeptejte se administrátora sítě.\n"
"\n"
"Pokud není počítač připojen do žádné administrované sítě, zvolte\n"
-"\"Lokální soubory\" pro autentikaci."
+"\"Lokální soubory\" pro autentizaci."
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3650,7 +3781,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3658,7 +3789,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3678,13 +3809,13 @@ msgid ""
"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
"installation step."
msgstr ""
-"LILO a grub jsou zavaděče systému. Tato část je normálně plně automatická.\n"
+"LILO a Grub jsou zavaděče systému. Tato část je normálně plně automatická.\n"
"DrakX analyzuje boot sektor a zachová se podle toho, co nalezne:\n"
"\n"
-" * pokud nalezne boot sektor Windows, přepíše ho sektorem pro LILO/grub aby\n"
+" * pokud nalezne boot sektor Windows, přepíše ho sektorem pro LILO/Grub aby\n"
"bylo možné spouštět jak Windows tak i Linux;\n"
"\n"
-" * pokud nalezne boot sektor pro LILO nebo grub, tak jej přepíše.\n"
+" * pokud nalezne boot sektor pro LILO nebo Grub, tak jej přepíše.\n"
"\n"
"Pokud jsou nějaké pochybnosti, je zobrazen dialog s výběrem možností.\n"
"\n"
@@ -3723,7 +3854,7 @@ msgstr ""
"či danou nabídku odebrat. K dalšímu kroku se dostanete kliknutím na \"Hotovo"
"\"."
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3735,7 +3866,7 @@ msgid ""
"anyone. In which case, you can delete the corresponding entries. But then,\n"
"you will need a boot disk in order to boot those other operating systems!"
msgstr ""
-"LILO (the LInux LOader) a grub jsou zavaděče systému, které mohou spustit\n"
+"LILO (the LInux LOader) a Grub jsou zavaděče systému, které mohou spustit\n"
"buď GNU/Linux nebo jiný operační systém nainstalovaný na počítači.\n"
"Ve většině případů jsou tyto systému správně detekovány. Pokud se tak\n"
"nestane, máte možnost je ručně přidat v této obrazovce. Věnujte opatrnost\n"
@@ -3745,7 +3876,7 @@ msgstr ""
"je z nabídky odstranit. Ale v tom případě musíte mít spouštěcí disketu, ze\n"
"které je možné tento operační systém spustit!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3759,29 +3890,28 @@ msgstr ""
"\n"
"Pokud přesně nevíte co zadat, ponechte \"První sektor na disku (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3805,7 +3935,7 @@ msgstr ""
"\"lpd\"\n"
"systému, takže je s nimi kompatibilní. Je možné nastavit spoustu voleb,\n"
"ale základní nastavení je velmi jednoduché. Pokud potřebujete emulovat\n"
-"\"lpd\" server, stači spustit démona \"cups-lpd\". Má také grafické "
+"\"lpd\" server, stačí spustit démona \"cups-lpd\". Má také grafické "
"prostředí\n"
"pro tisk a nastavení tiskárny.\n"
"\n"
@@ -3817,7 +3947,7 @@ msgstr ""
"zvláštní tiskové fronty, vyberte si lprNG.\n"
"Jinak je preferován CUPS, protože je jednodušší a lépe pracuje v sítích."
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3842,7 +3972,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"DrakX se nejdříve pokusí najít všechny pevné disky v počítači. Také se "
@@ -3850,7 +3980,7 @@ msgstr ""
"najít PCI SCSI adaptér(y). Pokud nějaký(é) najde, automaticky nainstaluje\n"
"správný ovladač.\n"
"\n"
-"Pokud žádný nanajde, budete dotázáni, zda vůbec máte nějaký SCSI adaptér.\n"
+"Pokud žádný nenajde, budete dotázáni, zda vůbec máte nějaký SCSI adaptér.\n"
"Odpovězte \"Ano\" a vyberte si se seznamu adaptérů nebo odpovězte \"Ne\","
"jestliže žádný adaptér nemáte.\n"
"Pokud přesně nevíte jaký máte, můžete to zjistit kliknutím na tlačítko\n"
@@ -3869,7 +3999,7 @@ msgstr ""
"(pokud je máte na počítači), z dokumentace k hardware, nebo z internetové\n"
"stránky výrobce (pokud máte přístup k internetu."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3879,9 +4009,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3893,7 +4022,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" 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"
@@ -3918,7 +4047,7 @@ msgid ""
"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
"selections."
msgstr ""
-"Pro yaboot, pro další operační systémy, pro alternativní jádra nebo pro\n"
+"Pro Yaboot, pro další operační systémy, pro alternativní jádra nebo pro\n"
"záchranný disk lze zde zadat další parametry.\n"
"\n"
"Pro jiné OS je možné zadat pouze název a hlavní oddíl.\n"
@@ -3926,13 +4055,13 @@ msgstr ""
"Pro Linux je několik dalších možností:\n"
"\n"
" * Jmenovka: je to jednoduché jméno, které můžete napsat do příkazového\n"
-"řádku pro yaboot pro zvolení daného systému.\n"
+"řádku pro Yaboot pro zvolení daného systému.\n"
"\n"
-" * Obraz: je to jmého jádra, ze kterého se spustí systém. Typicky je to "
+" * Obraz: je to jméno jádra, ze kterého se spustí systém. Typicky je to "
"vmlinux\n"
"či obdoba slova vmlinux s příponami.\n"
"\n"
-" * Root: kořenové zeřízení \"/\" při instalaci Linuxu.\n"
+" * Root: kořenové zařízení \"/\" při instalaci Linuxu.\n"
"\n"
" * Přidat volby: na počítačích Apple potřebuje jádro další parametry, aby "
"se\n"
@@ -3953,7 +4082,7 @@ msgstr ""
"potřebujete\n"
"větší velikost, zadejte sem potřebnou hodnotu.\n"
"\n"
-" * Read-write: bežně je \"root\" oddíl připojen nejdříve v režimu pouze pro\n"
+" * Read-write: běžně je \"root\" oddíl připojen nejdříve v režimu pouze pro\n"
"čtení, aby se provedlo otestování systému před tím, než se použije pro běh.\n"
"Zde je možné toto chování změnit.\n"
"\n"
@@ -3965,7 +4094,7 @@ msgstr ""
"pouze stisknout ENTER a spustí se. Tato položka je označena \"*\" a všechny\n"
"výběry se zobrazí po stisknutí tlačítka [Tab]."
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3992,14 +4121,13 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-"Yaboot je zavaděč pro počítače MacIntosh. Umožňuje spouštět jak GNU/Linux, "
+"Yaboot je zavaděč pro počítače Macintosh. Umožňuje spouštět jak GNU/Linux, "
"MacOS tak i MacOSX, pokud jsou na počítači nainstalovány. Ve většině\n"
"případů jsou tyto operační systémy správně detekovány. Pokud nejsou, můžete\n"
"zde na této obrazovce přidat záznamy ručně. Dejte si ale pozor na správnou\n"
@@ -4014,7 +4142,7 @@ msgstr ""
"spuštění\n"
"GNU/Linuxu. Obyčejně je to bootstrap oddíl, který byl vytvořen již předtím.\n"
"\n"
-" * Prodleva pro Firmware: narozdíl od zavaděče LILO jsou zde dvě prodlevy.\n"
+" * Prodleva pro Firmware: na rozdíl od zavaděče LILO jsou zde dvě prodlevy.\n"
"První prodleva v sekundách umožňuje zvolit mezi spuštěním CD, OF boot,\n"
"MacOS nebo Linuxu.\n"
"\n"
@@ -4030,10 +4158,10 @@ msgstr ""
"\n"
" * Výchozí OS: vyberte výchozí OS, který se spustí po uplynutí prodlevy."
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -4041,12 +4169,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -4085,16 +4212,16 @@ msgstr ""
" * \"ISDN karta\": pokud byla detekována ISDN karta, je zde zobrazena.\n"
"Kliknutím na tlačítko můžete měnit parametry pro tuto kartu."
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
"Vyberte disk, který chcete smazat pro instalaci Mandrake Linux.\n"
-"Pamatujte na to, že všechna data budou ztracena a nelze jejiž obnovit!"
+"Pamatujte na to, že všechna data budou ztracena a nelze je již obnovit!"
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4112,7 +4239,7 @@ msgstr ""
"Kliknutím na \"Zrušit\" zrušíte tuto operaci bez ztráty dat a oddílů na "
"disku."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4124,12 +4251,12 @@ msgstr ""
"%s), což obecně znamená, že spouštěcí disketa nemá jádro stejné jako má "
"instalační médium (vytvořte prosím novou spouštěcí disketu)"
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr "Musíte také naformátovat %s"
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4154,20 +4281,20 @@ msgstr ""
"\n"
"Chcete opravdu nainstalovat tyto servery?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "Nelze použít všesměrové vysílání bez NIS domény"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Vložte naformátovanou disketu do %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Tato disketa není formátována"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4175,7 +4302,7 @@ msgstr ""
"Pokud chcete použít uložený výběr balíčků, spusťte instalaci takto: 'linux "
"defcfg=floppy'"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Chyba při čtení souboru %s"
@@ -4207,7 +4334,7 @@ msgstr "Musíte mít odkládací oddíl"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -4215,59 +4342,59 @@ msgstr ""
"\n"
"Chcete přesto pokračovat?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Musíte mít FAT oddíl připojený na /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Použít volné místo"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Není dostatek místa pro vytvoření nového diskového oddílu"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Použít existující oddíl"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Není zde žádný existující oddíl k použití"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Použít Windows oddíl jako loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Který diskový oddíl chcete použít pro Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Zvolte velikosti"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Velikost kořenového oddílu v MB:"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Velikost odkládacího oddílu v MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Použít volné místo na Windows oddílu"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Na kterém oddílu chcete měnit velikost?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Počítám hranice souborového systému s Windows"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4276,13 +4403,16 @@ msgstr ""
"Změnu velikost FAT není možné provést, \n"
"vyskytla se následující chyba: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"Váš diskový oddíl s Windows je příliš fragmentován, použijte nejdříve\n"
"program 'defrag'"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -4303,67 +4433,67 @@ msgstr ""
"Také byste si měli data zálohovat. Až si budete jistí, že chcete pokračovat\n"
"stiskněte Ok."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Jakou velikost oddílu chcete nechat pro Windows na"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "diskovém oddílu %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Změna FAT oddílu neuspěla: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Nejsou zde žádné FAT oddíly, které by bylo možné změnit (nebo není dostatek "
"místa)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Smazat celý disk"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Odstranit Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Máte více než jeden pevný disk, na který chcete instalovat Linux?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "VŠECHNY diskové oddíly a data na disku %s budou zrušena"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Vlastní rozdělení disku"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Použít fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, don't forget to save using `w'"
msgstr ""
-"Nyní můžete rozdělit váš hardisk %s.\n"
+"Nyní můžete rozdělit váš pevný disk %s.\n"
"Až skončíte, nezapomeňte uložit změny pomocí 'w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Nemáte dostatek volného místa na oddílu s Windows"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Nemůžu najít žádné volné místo pro instalaci"
@@ -4371,16 +4501,16 @@ msgstr "Nemůžu najít žádné volné místo pro instalaci"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Průvodce DrakX našel následující řešení:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Vytváření diskových oddílů selhalo: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Startuji síť"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Zastavuji síť"
@@ -4392,12 +4522,12 @@ msgstr ""
"Stala se chyba, ale nevím, jak jí správně interpretovat.\n"
"Pokračujte na vlastní riziko."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Zdvojený přípojný bod %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4408,12 +4538,12 @@ msgstr ""
"Je možné, že je poškozen CD disk nebo CD-ROM mechanika.\n"
"Zkontrolujete to použitím příkazu \"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Vítá vás %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Není dostupná žádná disketová mechanika"
@@ -4423,9 +4553,9 @@ msgstr "Není dostupná žádná disketová mechanika"
msgid "Entering step `%s'\n"
msgstr "Začínám '%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4435,197 +4565,153 @@ msgstr ""
"verzi instalačního programu. Ta se spouští tak, že při startu\n"
"z CD mechaniky stisknete 'F1' a poté napíšete 'text'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Typ instalace"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr "Prosím zvolte jednu z následujících instalačních tříd:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Celková velikost zvolených balíčků je přibližně %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Pokud si přejete instalaci na menší prostor než je tento,\n"
-"zvolte si kolik procent balíčků se má nainstalovat.\n"
-"\n"
-"Malý počet procent nainstaluje pouze ty nejdůležitější balíčky, 100%%\n"
-"nainstaluje všechny zvolené."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Na vašem hardisku je místo pouze pro %d%% těchto balíčků.\n"
-"\n"
-"Pokud jich chcete nainstalovat ještě méně, zvolte jiný počet\n"
-"procent. Malý počet procent nainstaluje pouze ty nejdůležitější\n"
-"balíčky, %d%% nainstaluje maximální možné množství balíčků."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Přesněji si budete moci vybrat v příštím kroku"
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Procent balíčků k instalaci"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Výběr skupiny balíčků"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Výběr jednotlivých balíčků"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Celková velikost: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Špatný balíček"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Jméno: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Verze: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Velikost: %d kB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Důležitost: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Nemůžete označit tento balíček, protože pro jeho instalaci není dost místa"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Tyto balíčky budou instalovány"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Tyto balíčky budou odebrány"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Nemůžete vybrat/nevybrat tento balíček"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Toto je nepostradatelný balíček, nemůže být odstraněn"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Nemůžete od-označit tento balíček, protože je už nainstalovaný"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Tento balíček musí být obnoven\n"
"Jste si jisti, že ho nechcete zvolit?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Tento balíček musí být obnoven, nemůžete ho nezvolit"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Ukázat automaticky vybrané balíčky"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Instalovat"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Uložit/Nahrát na/z disketu/y"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "Aktualizuji výběr balíčků"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "Minimální instalace"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Vyberte si balíčky, které chcete nainstalovat"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Instaluji"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Odhaduji"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Zbývající čas "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Čekejte prosím, připravuji instalaci"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d balíčků(y)"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Instaluji balíček %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Potvrdit"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Odmítnout"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4640,17 +4726,17 @@ msgstr ""
"\n"
"Pokud toto CD nemáte, stiskněte Zrušit a toto CD nebude nainstalováno."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Přesto pokračovat?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Stala se chyba při řazení balíčků:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Stala se chyba při instalaci balíčků:"
@@ -4719,11 +4805,11 @@ msgstr "Stala se chyba"
msgid "Do you really want to leave the installation?"
msgstr "Chcete opravdu ukončit instalaci?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Souhlas s licencí"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4738,7 +4824,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -4854,7 +4940,7 @@ msgstr ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -4959,109 +5045,113 @@ msgstr ""
"Paris - France.\n"
"For any question on this document, please contact MandrakeSoft S.A. \n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr "Jste si jistý, že odmítáte licenční ujednání?"
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Klávesnice"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "Vyberte si rozložení vaší klávesnice."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Zde je kompletní seznam dostupných klávesnic"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Který typ instalace chcete?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Instalace/Aktualizace"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Je to instalace nebo aktualizace?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Doporučená"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Expertní"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "Aktualizovat"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "Aktualizovat pouze balíčky"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Vyberte si typ vaší myši."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Připojení myši"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Ke kterému sériovému portu je připojena vaše myš?"
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Emulace tlačítek"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Emulace 2 tlačítka"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Emulace 3 tlačítka"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Nastavuji PCMCIA karty..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Nastavuji IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "nejsou dostupné žádné diskové oddíly"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Hledám oddíly, které lze připojit"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Zvolte si přípojné(mount) body"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -5073,7 +5163,7 @@ msgstr ""
"\n"
"Souhlasíte s tím, že příjdete o všechny oddíly?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -5081,7 +5171,7 @@ msgstr ""
"DiskDrake neuspěl při čtení tabulky oddílů.\n"
"Pokračujte pouze na vlastní riziko!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -5089,74 +5179,75 @@ msgstr ""
"Pro bootstrap není potřebné místo o velikosti 1MB! Instalace může pokračovat "
"ale pro spuštění systému musíte vytvořit bootstrap oddíl pomocí DiskDrake"
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr "Nebyl nalezen kořenový oddíl pro provedení aktualizace"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Kořenový oddíl"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Který diskový oddíl je kořenový (/) ?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Musíte restartovat počítač aby se projevily změny v tabulce oddílů"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Zvolte diskové oddíly které chcete naformátovat"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Otestovat na vadné stopy?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Formátuji oddíly"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Vytvářím a formátuji soubor %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Není dostatek odkládacího prostoru k instalaci, prosím přidejte nějaký"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Hledám dostupné balíčky a znovu sestavuji databázi balíčků..."
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "Hledám dostupné balíčky"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Vyhledávám balíčky pro aktualizaci"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+msgid "Looking at packages already installed..."
+msgstr "Prohledávám již instalované balíčky..."
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Na vašem systému není dostatek místa pro instalaci nebo aktualizaci (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Kompletní (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimální (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Doporučená (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5164,35 +5255,35 @@ msgstr ""
"Vyberte si, zda chcete uložit nebo nahrát výběr balíčků na disketu.\n"
"Formát výběru je stejný jako formát automaticky generované diskety."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Nahrát z diskety"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Nahrávám z diskety"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Výběr balíčků"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "Vložte disketu obsahující výběr balíčků"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Uložit na disketu"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Velikost vybraných balíčků je větší než místo na disku"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr "Typ instalace"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5200,19 +5291,19 @@ msgstr ""
"Nevybrali jste žádnou skupinu balíčků\n"
"Vyberte si prosím alespoň minimální instalaci"
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "X prostředí"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr "Základní dokumentace (doporučeno!)"
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr "Opravdu minimální instalace (speciálně bez urpmi)"
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5222,16 +5313,16 @@ msgstr ""
"Pokud nemáte žádné z nich, klepněte na Zrušit.\n"
"Pokud Vám chybí pouze některé z nich, odznačte je, a zvolte Ok."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM označené \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Připravuji instalaci"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -5240,23 +5331,23 @@ msgstr ""
"Instaluji balíček %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Nastavení po instalaci"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Vložte prosím spouštěcí disketu do %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Vložte prosím disketu s moduly do %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5306,7 +5397,7 @@ msgstr ""
"nebude respektovat ustanovení vztahujících se zákonů, může se vystavit\n"
"postihu.\n"
"\n"
-"V každém případě se Mandrakesoft i jeho výrobny a dodavatelé vzdávají\n"
+"V každém případě se MandrakeSoft i jeho výrobny a dodavatelé vzdávají\n"
"jakékoliv zodpovědnosti za přímé i nepřímé škody (včetně ztráty zisků,\n"
"přerušení podnikání, ztráty obchodních informací, jakožto i jiných "
"peněžních\n"
@@ -5317,170 +5408,201 @@ msgstr ""
"\n"
"\n"
"Pokud máje jakékoliv dotazy vztahující se k této dohodě, kontaktujte prosím\n"
-"Mandrakesoft, Inc.\n"
+"MandrakeSoft, Inc.\n"
"2400 N. Lincoln Avenue Suite 243\n"
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-"Nyní máte možnost stáhnout aktualizované balíčky, které byly\n"
-"uvolněny po vydání distribuce.\n"
+"Nyní máte možnost stáhnout aktualizované balíčky. Tyto balíčky byly\n"
+"uvolněny až po vydání distribuce. Mohou obsahovat\n"
+"bezpečnostní aktualizace nebo opravy chyb.\n"
"\n"
-"Můžete tak získat bezpečnostní opravy či opravy chyb, ale\n"
-"potřebujete připojení k Internetu.\n"
+"Chcete-li získat tyto balíčky, musíte mít k dispozici\n"
+"funkční připojení k Internetu.\n"
"\n"
"Chcete nainstalovat aktualizace?"
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Kontaktuji web Mandrake Linux pro získání seznamu dostupných zrcadel"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
-msgstr "Zvolte si zrcadlo(mirror) pro stahování balíčků"
+msgstr "Zvolte si zrcadlo (mirror) pro stahování balíčků"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Stahuji ze zrcadla(mirror) seznam dostupných balíčků"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Jaké je vaše časové pásmo?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Hardwarové hodiny nastaveny na GMT"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatická synchronizace času (pomocí NTP)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "NTP Server"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Vzdálený CUPS server"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Bez tiskárny"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
msgstr "Máte nějakou zvukovou kartu na ISA sběrnici?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr "Pro nastavení zvukové karty spusťte po instalaci \"sndconfig\"."
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Nebyla nalezena zvuková karta. Zkuste spustit po instalaci \"harddrake\"."
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Souhrn"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Myš"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Časová zóna"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Tiskárna"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "ISDN karta"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Zvuková karta"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV karta"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+msgid "Windows PDC"
+msgstr "Windows PDC"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Lokální soubory"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Hlavní(root) heslo"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Bez hesla"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr "Toto heslo je příliš jednoduché (musí být alespoň %d znaků dlouhé)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Ověření"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "Ověření pomocí LDAP"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "Základní dn pro LDAP"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "LDAP server"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "Ověření pomocí NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS Doména"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS Server"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+msgid "Authentication Windows PDC"
+msgstr "Ověření pomocí Windows PDC"
+
+#: ../../install_steps_interactive.pm_.c:1139
+msgid "Windows Domain"
+msgstr "Doména Windows"
+
+#: ../../install_steps_interactive.pm_.c:1140
+msgid "PDC Server Name"
+msgstr "Jméno serveru PDC"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+"Aby toto fungovalo v případě serveru PDC Windows 2000, bude muset "
+"administrátor pravděpodobně spustit příkaz: C:\\>net localgroup \"Pre-"
+"Windows 2000 Compatible Access\" everyone / add a restartovat server."
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -5509,19 +5631,19 @@ msgstr ""
"Pokud chcete vytvořit startovací disketu, vložte disketu do mechaniky\n"
"a stiskněte \"OK\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "první mechaniky"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "druhé mechaniky"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Přeskočit"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5545,7 +5667,7 @@ msgstr ""
"účinnou pomoc při havárii systému. Chcete vytvořit startovací disketu?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5559,28 +5681,28 @@ msgstr ""
"spouštěcí diskety bude zřejmě neúspěšné, protože XFS\n"
"potřebuje velmi velký ovladač)"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Bohužel není dostupná žádná disketová mechanika"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Zvolte mechaniku, kde chcete vytvořit startovací disketu"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
msgstr "Vložte disketu do %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Vytvářím startovací disketu"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Připravuji zaváděcí program"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5588,15 +5710,15 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
"Zdá se, že máte nějaký neznámý počítač,\n"
-"na kterém nebude yaboot pracovat.\n"
+"na kterém nebude Yaboot pracovat.\n"
"Instalace bude pokračovat, ale budete\n"
"potřebovat BootX pro spuštění systému."
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Chcete použít aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5604,15 +5726,15 @@ msgstr ""
"Stala se chyba při instalaci aboot,\n"
"mám se pokusit o instalaci i když to zruší první oddíl na disku?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Instaluji zaváděcí program"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Instalace zaváděcího programu neuspěla. Stala se tato chyba:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5624,23 +5746,22 @@ msgid ""
msgstr ""
"Můžete potřebovat změnit startovací zařízení pro Open Firmware\n"
" pro aktivaci spouštěcího programu. Pokud nevidíte po spuštění prompt,\n"
-" stiskněte při startu Command-Option-O-F a zadajte:\n"
+" stiskněte při startu Command-Option-O-F a zadejte:\n"
" setenv boot-device %s,\\\\:tbxi\n"
" Potom zadejte: shut-down\n"
"Při dalším spuštění už uvidíte prompt."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Vložte prázdnou disketu do %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Vytvářím disketu pro automatickou instalaci"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5650,7 +5771,8 @@ msgstr ""
"\n"
"Chcete opravdu nyní skončit?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5661,31 +5783,36 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
"Gratulujeme vám, instalace je dokončena.\n"
-"Vyjměte startovací média a stiskněte return pro restart.\n"
+"Vyjměte startovací média a stiskněte Return pro restart.\n"
"\n"
"\n"
"Na opravy této instalace systému Mandrake Linux se lze informovat\n"
"na stránce Errata:\n"
"\n"
"\n"
-"http://www.mandrakelinux.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Informace o konfiguraci systému po instalaci jsou dostupné\n"
"v dané kapitole oficiální uživatelské příručky pro Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+#, fuzzy
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakesoft.com/sales/contact"
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Vytvořit disketu pro automatickou instalaci"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5699,15 +5826,15 @@ msgstr ""
"\n"
"Takto lze jednoduše zopakovat instalaci.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automaticky"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Zopakovat"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Uložit výběr jednotlivých balíčků"
@@ -5734,44 +5861,24 @@ msgstr "chybí consolehelper"
msgid "Choose a file"
msgstr "Vyberte soubor"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Rozšíření"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr "Základní"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Prosím počkejte"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Informace"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Rozbal větev"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Sbal větev"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Přepnutí mezi abecedním a skupinovým řazením"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Špatná volba, zkuste to znovu\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Vaše volba? (výchozí %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -5780,31 +5887,35 @@ msgstr ""
"Položky, které je potřeba vyplnit:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Vaše volba? (0/1, výchozí '%s') "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "Tlačítko '%s': %s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+msgid "Do you want to click on this button?"
msgstr "Chcete kliknout na toto tlačítko? "
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr " zadejte `void` pokud chcete prázdný vstup"
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Vaše volba? (výchozí '%s'%s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Je zde více voleb, ze kterých je možné si vybrat (%s).\n"
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -5814,7 +5925,7 @@ msgstr ""
"nebo stiskněte Enter pro pokračování.\n"
"Vaše volba? "
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -5823,327 +5934,327 @@ msgstr ""
"=> Oznamuji změnu návěští:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr "Znovu odeslat"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "České (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Německé"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvořák"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Španělské"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finské"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Francouzské"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norské"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Polské"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Ruské"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Švédské"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "UK-Britské"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "US-Americké"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Albánské"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Arménské (staré)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Arménské (psací stroj)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Arménské (foneticky)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Ázerbajdžánské (latinka)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgické"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr "Bulharské (foneticky)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "Bulharské (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brazilské (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Běloruské"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Švýcarské (Německý styl)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Švýcarské (Francouzský styl)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "České (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Německé (bez mrtvých kláves)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Dánské"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvořák (US) "
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvořák (Norské)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvořák (Švédské) "
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estonské"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Gruzínské (\"Ruské\" rozložení)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Gruzínské (rozložení \"Latin\")"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Řecké"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Maďarské"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Chorvatské"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Izraelské"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Izraelské (foneticky)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Íránské"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islandské"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Italské"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Japonská 106 kláves"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Korejská klávesnice"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latinsko-Americké"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Litevské AZERTY (stará)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Litevské AZERTY (nová)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litevské \"číselná řada\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litevské \"foneticky\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
-msgstr "Latevské"
+msgstr "Litevské"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Makedonské"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Holandské"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Polské (rozložení QWERTY)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Polské (rozložení QWERTZ)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugalské"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Kanadské (Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Rumunské (qwertz)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Rumunské (qwerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Ruské (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slovinské"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovenské (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovenské (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "Srbské (cyrilice)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr "Tamilské"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thajské"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
-msgstr "Tadžiská klávesnice"
+msgstr "Tádžická klávesnice"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turecké (tradiční model \"F\")"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turecké (moderní model \"Q\")"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukrajinské"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US (mezinárodní)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamská \"číselná řada\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Jugoslávské (latin)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr "Pravá klávesa Alt"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr "Obě klávesy Shift současně"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr "Control a Shift současně"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr "Klávesa CapsLock"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr "Ctrl a Alt současně"
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr "Alt a Shift současně"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr "Klávesa \"Menu\""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr "Levá klávesa \"Windows\""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr "Pravá klávesa \"Windows\""
@@ -6156,7 +6267,29 @@ msgstr "Propletené přípojné body %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Odeberte nejdříve logické disky\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+msgid "a number"
+msgstr "číslo"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr "%d čísel oddělených čárkou"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr "%d znakových řetězců oddělených čárkou"
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr "čárkou oddělená čísla"
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated strings"
+msgstr "čárkou oddělené znakové řetězce"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -6198,10 +6331,6 @@ msgstr "1 tlačítko"
msgid "Generic 2 Button Mouse"
msgstr "Standardní dvoutlačítková myš"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Obecná"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "S kolečkem"
@@ -6266,38 +6395,54 @@ msgstr "Žádná"
msgid "No mouse"
msgstr "Bez myši"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Vyzkoušejte prosím, zda funguje myš"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Vyzkoušejte na myši,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "TOČIT KOLEČKEM!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-2,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Ukončit"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Další ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Předchozí"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Je to správně?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Informace"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Rozbal větev"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Sbal větev"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Přepnutí mezi abecedním a skupinovým řazením"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Připojení k Internetu"
@@ -6308,13 +6453,13 @@ msgid ""
"Some connections use pptp, a few ones use dhcp.\n"
"If you don't know, choose 'use pppoe'"
msgstr ""
-"Nejběžněji se pro připojení pomocí adsl používá pppoe.\n"
+"Nejběžněji se pro připojení pomocí ADSL používá pppoe.\n"
"Některá připojení používají pptp, některá pouze dhcp. Jestli si nejste "
"jistí, zvolte 'použít pppoe'"
#: ../../network/adsl.pm_.c:22
msgid "Alcatel speedtouch usb"
-msgstr "Alcatel speedtouch usb"
+msgstr "Alcatel speedtouch USB"
#: ../../network/adsl.pm_.c:22
msgid "use dhcp"
@@ -6344,7 +6489,7 @@ msgstr ""
"Ve vašem počítači nebyl nalezen žádný síťový adaptér.\n"
"Nemohu nastavit typ spojení."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Zvolte síťové rozhraní"
@@ -6359,7 +6504,7 @@ msgstr ""
msgid "no network card found"
msgstr "nebyla nalezena síťová karta"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Nastavuji síť"
@@ -6374,15 +6519,15 @@ msgstr ""
"DHCP servery. Toto jméno musí být úplné, jako například\n"
"'mybox.mylab.myco.com'."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Jméno počítače"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Průvodce nastavením sítě"
@@ -6437,7 +6582,7 @@ msgstr "Nastavení ISDN"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Vyberte si svého poskytovatele internetu.\n"
" Pokud není na seznamu, vyberte si Jiný"
@@ -6456,14 +6601,14 @@ msgstr "Protokol použitý ve zbytku světa"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Protokol použitý ve zbytku světa \n"
" žádný D-kanál (leased lines)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Který protokol chcete použít?"
#: ../../network/isdn.pm_.c:199
@@ -6487,7 +6632,8 @@ 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"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Jestli máte ISA kartu, měly by být hodnoty na následující obrazovce "
@@ -6504,13 +6650,13 @@ msgid "Continue"
msgstr "Pokračovat"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Kterou z těchto ISDN karet máte?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Našel jsem ISDN PCI kartu, jejíž typ ale neznám. Prosím zvolte si jednu z "
"následujícího seznamu PCI karet."
@@ -6529,47 +6675,47 @@ msgstr "Ke kterému sériovému portu je váš modem připojen?"
msgid "Dialup options"
msgstr "Možnosti vytáčení"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Jméno připojení"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Telefonní číslo"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Přihlašovací jméno"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Podle scénáře"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Pomocí terminálu"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Jméno domény"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "První DNS Server (nepovinný)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Druhý DNS Server (nepovinný)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6577,7 +6723,7 @@ msgstr ""
"\n"
"Můžete se odpojit nebo překonfigurovat připojení."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6585,11 +6731,11 @@ msgstr ""
"\n"
"Můžete překonfigurovat připojení."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "V současnosti jste připojeni k Internetu"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6597,32 +6743,32 @@ msgstr ""
"\n"
"Nemůžete se připojit k Internetu nebo překonfigurovat připojení."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "V současnosti nejste připojeni k Internetu."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Připojit"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Odpojit"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr "Nastavit připojení"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Nastavení a připojení k internetu"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Nyní se připravuje konfigurace %s připojení."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6641,12 +6787,12 @@ msgstr ""
"\n"
"Stiskněte OK pro pokračování."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Nastavení sítě"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6657,9 +6803,9 @@ msgstr ""
"Klikněte na Ok pro zachování nastavení nebo klikněte na Zrušit pro nové "
"nastavení připojení Internetu a k síti.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"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"
@@ -6669,66 +6815,72 @@ msgstr ""
"Nyní lze nastavit připojení k síti nebo internetu.\n"
"Pokud nechcete použít automatickou detekci, odznačte políčko.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Zvolte profil pro nastavení"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Použít autodetekci"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Expertní režim"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Detekuji zařízení..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Modemové připojení"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "detekováno na portu %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN připojení"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "detekováno %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "ADSL připojení"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "detekováno na rozhraní %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Kabelové připojení"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "detekováno kabelové připojení"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "Připojení k LAN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "detekovaná(é) síťová(é) karta(y)"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Zvolte si připojení, které chcete nastavit"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6738,23 +6890,23 @@ msgstr ""
"Vyberte si jeden, který chcete použít.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Internetové připojení"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Chcete se automaticky připojovat po startu počítače?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Nastavení sítě"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr "Je potřebné znovu spustit síť"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6765,7 +6917,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6775,7 +6927,7 @@ msgstr ""
"\n"
"Konfigurace bude nyní aktivována.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6783,19 +6935,19 @@ msgstr ""
"Doporučujeme po tomto kroku restartovat X Window,\n"
"aby se předešlo problémům se změnou jména počítače."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
"Vyskytl se problém během konfigurace.\n"
"Otestujte připojení k Internetu pomocí net_monitor nebo mcc. Pokud není "
"spojení funkční, bude potřeba asi znovu načíst konfiguraci"
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"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."
@@ -6804,7 +6956,7 @@ msgstr ""
"Klikněte na Ok pro zachování nastavení.\n"
"Modifikace následujících položek přepíše toto nastavení."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6814,38 +6966,42 @@ msgstr ""
"Každá položka musí být zadána jako IP adresa v 'desetinné' formě\n"
"(například 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Nastavuji síťové zařízení %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (ovladač %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP adresa"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Maska sítě"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Automatická IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+msgid "Start at boot"
+msgstr "Spustit při startu"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP adresa musí být ve formátu 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6856,64 +7012,64 @@ msgstr ""
"Toto jméno musí být úplné, jako 'mybox.mylab.myco.com'.\n"
"Pokud používáte bránu(gateway), můžete také zadat její adresu"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS server"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Brána (např. %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Zařízení brány(gateway)"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Nastavení proxy"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Sledovat id síťové karty (užitečné u notebooků)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Proxy by měla být http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Proxy by měla být ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Nastavení Internetu"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Chcete se nyní pokusit připojit k internetu?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Testuji připojení k internetu..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Počítač je nyní připojen k internetu"
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Z bezpečnostních důvodů bude spojení ukončeno."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6921,111 +7077,116 @@ msgstr ""
"Nepodařilo se připojit k Internetu.\n"
"Pokuste se překonfigurovat dané připojení."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Nastavení připojení"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Prosím vyplňte nebo zkontrolujte následující údaje"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ karty"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "DMA karty"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "IO karty"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "IO_0 karty"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "IO_1 karty"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Vaše osobní telefonní číslo"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
-msgstr "Jméno poskytovatele (např provider.net)"
+msgstr "Jméno poskytovatele (např. provider.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Telefonní číslo poskytovatele"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "DNS poskytovatele č.1 (volitelné)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "DNS poskytovatele č.2 (volitelné)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Výběr si zemi"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Typ vytáčení"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Rychlost připojení"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "Prodleva připojení (vteřiny)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Váš účet (uživatelské jméno)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Heslo vašeho účtu"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr "Velká Británie"
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "chyba připojování: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Rozšířené diskové oddíly nejsou na tomto systému podporovány"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Ve tabulce diskových oddílů je mezera, ale nemohu ji použít.\n"
"Jediné řešení je přesunout primární oddíly tak, abyste měli mezeru vedle\n"
"rozšířených oddílů."
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Obnova ze souboru %s neuspěla: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Špatný záložní soubor"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Chyba při zapisování do souboru %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7035,186 +7196,186 @@ msgstr ""
"Test na integritu dat selhal. \n"
"To znamená, že zápis na tento disk může skončit nepředvídaně"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "musíte mít"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "důležité"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "nejméně důležité"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "nedůležité"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "může se hodit"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Tiskový Systém pro Unix"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR Nové generace"
+msgstr "LprNG - LPR Nové generace"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Démon pro tiskárny"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Tisk bez ukládání do fronty"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
-msgstr "LPRng"
+msgstr "LprNG"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Místní tiskárna"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Vzdálená tiskárna"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Tiskárna na vzdáleném CUPS serveru"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Tiskárna na vzdálený lpd serveru"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Síťová tiskárna (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Tiskárna na serveru Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Tiskárna na Netware serveru"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Zadejte URI tiskového zařízení"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "Poslat tiskovou úlohu do příkazu"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Neznámý model"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "Místní tiskárny"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "Vzdálené tiskárny"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr " na paralelním portu \\/*%s"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", USB tiskárna \\/*%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", multifunkční na paralelním portu \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ", multifunkční zařízení na USB"
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ", multifunkční zařízení na HP JetDirect"
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ", multifunkční zařízení"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, c-format
msgid ", printing to %s"
msgstr ", při tisku na %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr "na LPD serveru \"%s\", tiskárna \"%s\""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", TCP/IP hostitel \"%s\", port %s"
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr "na serveru Windows \"%s\", sdílená jako \"%s\""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr "na severu Novell \"%s\", tiskárna \"%s\""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ", používá příkaz %s"
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr "Přímý tisk (bez ovladače)"
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(na %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(na tomto počítači)"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Na serveru CUPS \"%s\""
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Výchozí)"
@@ -7236,11 +7397,11 @@ msgstr ""
"V případě vzdáleného CUPS serveru nemusíte nastavovat tiskárny zde,\n"
"tiskárny budou automaticky detekovány."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
msgid "CUPS configuration"
msgstr "Nastavení CUPS"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
msgid "Specify CUPS server"
msgstr "Zadejte CUPS server"
@@ -7257,7 +7418,7 @@ msgstr ""
"Při tisku na vzdálený CUPS server v lokální síti není potřeba nic "
"nastavovat, CUPS server bude automaticky informovat o jeho tiskárnách. "
"Všechny známé tiskárny pro tento počítač jsou nyní vypsány v poli \"Vzdálené "
-"tiskárny\". v hlavní sekci nástroje Printerdrake. Pokud je CUPS na jiné "
+"tiskárny\". v hlavní sekci nástroje PrinterDrake. Pokud je CUPS na jiné "
"síti, musíte pro získání informací zadat IP adresu CUPS serveru a také "
"případně číslo portu, jinak nechte toto pole prázdné."
@@ -7281,7 +7442,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP adresa musí být ve formátu 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "Číslo portu musí být celé číslo!"
@@ -7289,7 +7450,7 @@ msgstr "Číslo portu musí být celé číslo!"
msgid "CUPS server IP"
msgstr "IP adresa CUPS serveru"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Port"
@@ -7297,20 +7458,12 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Automatické nastavení pro CUPS"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Detekuji zařízení ..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Otestovat porty"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr "Přidat novou tiskárnu"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7331,13 +7484,13 @@ msgstr ""
"Budete dotázáni na všechny potřebné informace pro nastavení tiskárny, můžete "
"si vybrat se všech tiskových ovladačů a typů připojení tiskárny."
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Místní tiskárna"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7367,13 +7520,13 @@ msgstr ""
"Může se stát, že některé počítače mohou zatuhnout při automatické detekci a "
"tehdy lze použít \"Expertní režim\" pro instalaci bez automatické detekce. "
"\"Expertní režim\" použijte také tehdy, pokud chcete nastavit vzdálenou "
-"tiskárnu(y) a printerdrake ji/je automaticky nenabídnul."
+"tiskárnu(y) a PrinterDrake ji/je automaticky nenabídl."
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr "Automatická detekce tiskáren"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7395,11 +7548,11 @@ msgstr ""
"hodnoty (typ zásobníku, kvalita tisku,...), zvolte \"Tiskárna\" v sekci "
"\"Hardware\" v řídícím centru Mandrake."
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr "Automatická detekce tiskáren"
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7408,40 +7561,44 @@ msgid ""
"\n"
"Do you really want to get your printers auto-detected?"
msgstr ""
-"Printerdrake dokáže automaticky detekovat tiskárny připojené přes paralelní "
+"PrinterDrake dokáže automaticky detekovat tiskárny připojené přes paralelní "
"nebo USB rozhraní, ale na některých systémech může automatická detekce "
"ZMRAZIT SYSTÉM A TAKÉ POŠKODIT SOUBORY! Provádíte to tedy na VLASTNÍ "
"NEBEZPEČÍ!\n"
"\n"
"Chcete opravdu použít automatickou detekci tiskárny?"
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "Provést autodetekci"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr "Nastavit tiskárnu manuálně"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Otestovat porty"
+
+#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
msgstr "Detekováno %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Tiskárna na paralelním portu \\/*%s"
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr "USB tiskárna \\/*%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
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, ..., "
@@ -7453,11 +7610,11 @@ msgstr ""
"ekvivalentní LPT1:, LPT2:, ...,první USB tiskárna: /dev/usb/lp0, druhá USB "
"tiskárna: /dev/usb/lp1,...)."
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
msgstr "Musíte zadat zařízení nebo jméno souboru!"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
@@ -7465,7 +7622,7 @@ msgstr ""
"Místní tiskárna nenalezena!\n"
"\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
@@ -7473,7 +7630,7 @@ msgstr ""
"Síťové tiskárny mohou být nainstalovány až po instalaci systému. V řídícím "
"centru Mandrake vyberte \"Hardware\" a potom \"Tiskárna\"."
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
@@ -7481,7 +7638,7 @@ msgstr ""
"Pro instalaci síťových tiskáren klikněte nejdříve na \"Zrušit\", přejděte do "
"\"Expertního režimu\" a potom opět klikněte na \"Přidat novou tiskárnu\"."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7489,7 +7646,7 @@ msgstr ""
"Tyto tiskárny byly automaticky detekovány, pokud není mezi nimi požadovaná "
"tiskárna, zadejte do políčka jméno zařízení/jméno souboru"
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7497,7 +7654,7 @@ msgstr ""
"Zde je seznam všech automaticky rozpoznaných tiskáren. Vyberte si tiskárnu, "
"kterou chcete nastavit nebo zadejte do políčka jméno zařízení/jméno souboru"
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7508,7 +7665,7 @@ msgstr ""
"automatická. Pokud nebyla tiskárna správně detekována nebo preferujete "
"vlastní nastavení tisku, zvolte \"Ruční konfigurace\"."
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7519,7 +7676,7 @@ msgstr ""
"plně automatická. Pokud nebyla tiskárna správně detekována nebo preferujete "
"vlastní nastavení tisku, zvolte \"Ruční konfigurace\"."
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7527,11 +7684,11 @@ msgstr ""
"Vyberte si port, ke kterému je tiskárna připojena nebo zadejte do políčka "
"jméno zařízení/jméno souboru"
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
msgstr "Vyberte port, ke kterému je vaše tiskárna připojena."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7539,52 +7696,66 @@ msgstr ""
" (Paralelní porty: /dev/lp0, /dev/lp1,... je ekvivalentní LPT1:, LPT2:, ...,"
"první USB tiskárna: /dev/usb/lp0, druhá USB tiskárna: /dev/usb/lp1,...)."
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
msgstr "Musíte vybrat/zadat tiskárnu/zařízení!"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
msgstr "Ruční nastavení"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
+#, fuzzy
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-"Je vaše tiskárna multifunkční zařízení od HP (OfficeJet, PSC, PhotoSmart "
-"LaserJet 1100/1200/1220/3200/3300 se skenerem)?"
+"Je vaše tiskárna multifunkční zařízení od HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 se skenerem), HP PhotoSmart P100 nebo 1315 nebo HP "
+"LaserJet 2200?"
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
msgstr "Instaluji balíček HPOJ..."
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr "Testují zařízení a nastavuji HPOJ..."
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
msgstr "Instaluji balíček SANE..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Instaluji balíčky..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr "Skenování na multifunkčním zařízení od HP"
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+#, fuzzy
+msgid "Photo memory card access on your HP multi-function device"
+msgstr "Skenování na multifunkčním zařízení od HP"
+
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr "Zpřístupňuji tiskový port pro CUPS ..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr "Načítám databázi tiskáren ..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Možnosti vzdálené lpd tiskárny"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7592,27 +7763,27 @@ msgstr ""
"Abyste mohli používat vzdálenou tiskovou frontu lpd, musíte zadat jméno "
"tiskového serveru a jméno tiskárny, kam má být posílán tisk."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Jméno vzdáleného počítače"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Jméno vzdálené tiskárny"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "Chybí jméno vzdáleného počítače!"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "Chybí jméno vzdálené tiskárny!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Možnosti SMB (Windows 9x/NT) tiskárny"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7624,35 +7795,35 @@ msgstr ""
"tiskového serveru, jméno sdílené tiskárny, vhodné uživatelské jméno, heslo a "
"informace o pracovní skupině."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "Jméno SMB serveru"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP adresa SMB serveru"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Sdílené jméno"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Pracovní skupina"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "Musí být zadáno buď jméno serveru nebo jeho IP adresa!"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "Chybí jméno pro sdílení přes Sambu!"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr "BEZPEČNOSTNÍ VAROVÁNÍ!"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7675,14 +7846,14 @@ msgid ""
"type in Printerdrake.\n"
"\n"
msgstr ""
-"Provádíte nastavení tisku s účtem na systému Windows. Kvůli chybě v klientu "
+"Provádíte nastavení tisku s účtem na systému Windows. Díky chybě v klientu "
"protokolu Samba je heslo při tisku posláno jako čistý text z příkazové "
-"řadky. Je tudíž možné, aby kdokoliv viděl toto heslo na obrazovce když si "
+"řádky. Je tudíž možné, aby kdokoliv viděl toto heslo na obrazovce když si "
"zadá příkaz např. \"ps auxwww\".\n"
"\n"
"Doporučujeme používat jednu z následujících alternativ (ve všech případech "
-"je dobré mít nastaven přístup pouze z počítačů z lokální sítě, respektivě za "
-"firewalem):\n"
+"je dobré mít nastaven přístup pouze z počítačů z lokální sítě, respektive za "
+"firewallem):\n"
"\n"
"Použít účet, který nemá nastaven žádné heslo, jako je \"GUEST\" nebo "
"speciální účet pouze pro účely tisku. Neodstraňujte ochranu heslem z běžného "
@@ -7690,10 +7861,10 @@ msgstr ""
"\n"
"Nastavte tiskárnu na Windows serveru tak, aby fungovala pod LPD protokolem. "
"Potom nastavte tisk na této tiskárně pomocí typy spojení \"%s\" v aplikaci "
-"Printerdrake.\n"
+"PrinterDrake.\n"
"\n"
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7703,10 +7874,10 @@ msgid ""
msgstr ""
"Nastavit na serveru s Windows tiskárnu, která bude přístupná pomocí IPP "
"protokolu a nastavit tisk z tohoto počítače pomocí spojení \"%s\" v aplikaci "
-"Printerdrake.\n"
+"PrinterDrake.\n"
"\n"
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7718,11 +7889,11 @@ msgstr ""
"\n"
"Chcete opravdu pokračovat v nastavení tiskárny tímto způsobem?"
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Možnosti NetWare tiskárny"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
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 "
@@ -7733,65 +7904,65 @@ msgstr ""
"serveru (Pozor! To může být odlišné od jeho jména pro TCP/IP!), jméno "
"tiskové fronty tiskárny, kterou chcete používat, uživatelské jméno a heslo."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Tiskový server"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Jméno tiskové fronty"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "Chybí jméno pro sdílení přes NCP!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "Chybí jméno tiskové fronty pro NCP!"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
-msgstr "Možnosti tiskárny pro TCP/socket"
+msgstr "Možnosti tiskárny pro TCP/Socket"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
"number is usually 9100, on other servers it can vary. See the manual of your "
"hardware."
msgstr ""
-"Abyste mohli tisknout na TCP nebo socketové tiskárně, musíte zadat jméno "
+"Abyste mohli tisknout na TCP nebo soketové tiskárně, musíte zadat jméno "
"počítače s tiskárnou a volitelně i číslo portu. Pokud máte HP JetDirect, "
"port je obvykle 9100, jinak se může měnit. Podívejte do manuálu k vašemu "
"hardware."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Jméno počítače s tiskárnou"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "Chybí jméno počítače s tiskárnou!"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "URI Tiskového Zařízení"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
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 ""
"Zde lze přímo zadat URI pro přístup k tiskárně. URI musí splňovat buď "
-"specifikaci CUPS nebo Foomatic. Taky pamatujte na to, že všechny URI nejsou "
+"specifikaci CUPS nebo Foomatic. Také pamatujte na to, že všechny URI nejsou "
"podporovány ve všech tiskových správcích."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "Musí být zadáno správné URI!"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -7799,27 +7970,23 @@ msgstr ""
"Každá tiskárna potřebuje jméno (např. \"tiskarna\"). Popis a umístění nemusí "
"být vyplněny. Jsou to komentáře pouze pro uživatele."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Jméno tiskárny"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Popis"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Umístění"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr "Načítám databázi tiskáren ..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
msgid "Your printer model"
msgstr "Model tiskárny"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7833,35 +8000,35 @@ msgid ""
"\n"
"%s"
msgstr ""
-"Printerdrake provedl porovnání modelu tiskárny, který byl zjištěn při auto-"
-"detekci s modelem obsaženým v jeho databázi a nabídnul nejlepší řešení. Tato "
+"PrinterDrake provedl porovnání modelu tiskárny, který byl zjištěn při auto-"
+"detekci s modelem obsaženým v jeho databázi a nabídl nejlepší řešení. Tato "
"volba může být špatná, zvlášť pokud není tiskárna obsažena v databázi. "
"Zkontrolujte, zda je volba správná a klepněte na \"Zvolený model je správný"
"\" a pokud není, volte \"Vybrat model ručně\". V další obrazovce potom bude "
"možné vybrat model tiskárny ručně.\n"
"\n"
-"Pro vaši tiskárnu Printerdrake nalezl:\n"
+"Pro vaši tiskárnu PrinterDrake nalezl:\n"
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
msgid "The model is correct"
msgstr "Zvolený model je správný"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
msgid "Select model manually"
msgstr "Vybrat model ručně"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Výběr modelu tiskárny"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Jaký model tiskárny máte?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7871,11 +8038,11 @@ msgid ""
msgstr ""
"\n"
"\n"
-"Zkontrolujte prosím, zda Printerdrake provedl automatickou detekci modelu "
+"Zkontrolujte prosím, zda PrinterDrake provedl automatickou detekci modelu "
"správně. Pokud je vyznačen nesprávný model, můžete ho změnit výběrem ze "
"seznamu nebo zvolte \"Raw printer\"."
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -7883,11 +8050,11 @@ msgstr ""
"Pokud není tiskárna v seznamu, vyberte kompatibilní nebo podobný model "
"(podívejte se do manuálu)"
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "Nastavení pro OKI win-tiskárnu"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7902,11 +8069,11 @@ msgstr ""
"port, nebo se tiskne přes server, připojte tiskárnu na první paralelní port. "
"Jinak tisk nebude pracovat. Typ připojení bude ovladač ignorovat."
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "Nastavení inkoustové tiskárny Lexmark"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7918,7 +8085,7 @@ msgstr ""
"tiskárnu na lokální port nebo ji nastavte na tom počítači, ke kterému bude "
"připojena."
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7938,7 +8105,7 @@ msgstr ""
"odsouhlasení licence. Pak můžete nastavit chování tiskové hlavy pomocí "
"tohoto programu."
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7954,22 +8121,22 @@ msgstr ""
"podavač) jsou nastaveny správně. Při tisku ve velmi vysoké kvalitě/rozlišení "
"bude tisk zřejmě pomalejší."
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Hodnota %s musí být celé číslo!"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "Hodnota %s musí být číslo!"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "Hodnota %s je mimo rozsah!"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7978,11 +8145,11 @@ msgstr ""
"Chcete opravdu nastavit tiskárnu \"%s\"\n"
"jako výchozí?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "Testovací stránka"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7994,39 +8161,39 @@ msgstr ""
"se na tiskárně s málo pamětí nemusí podařit vůbec. Ve většině případů stačí "
"vytisknout běžnou testovací stránku."
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "Bez testovací stránky"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Tisk"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "Standardní testovací stránka"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
-msgstr "Alternativní testovací stránka (letter)"
+msgstr "Alternativní testovací stránka (Letter)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "Alternativní testovací stránka (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "Testovací stránka s fotografií"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
msgstr "Netisknout testovací stránku"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Tisknu testovací stránku(y)"
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8041,7 +8208,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8049,15 +8216,15 @@ msgstr ""
"Zkušební stránka byl poslána na tiskárnu.\n"
"Může chvilku trvat než začne tisk.\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr "Proběhl tisk správně ?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr "Přímý tisk na tiskárnu"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8070,7 +8237,7 @@ msgstr ""
"<soubor>\". Grafické nástroje umožňují jednoduše vybrat tiskárny a měnit "
"jejich parametry.\n"
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
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 "
@@ -8080,8 +8247,8 @@ msgstr ""
"většině aplikací, ale nezadává se zde jméno souboru, které je pokaždé jiné v "
"závislosti na dané aplikaci.\n"
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -8094,18 +8261,18 @@ msgstr ""
"Jednoduše zadejte potřebné nastavení do příkazové řádky, např. \"%s<soubor>"
"\". "
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#, fuzzy, 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\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
"Všechny možnosti pro současnou tiskárnu jsou zobrazeny níže, nebo klikněte "
"na tlačítko \"Možnosti tiskárny\".%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8113,7 +8280,7 @@ msgstr ""
"Zde je seznam dostupných voleb pro nastavení tisku pro aktuální tiskárnu:\n"
"\n"
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8122,8 +8289,8 @@ msgstr ""
"Pro vytištění souboru z příkazové řádky (v terminálovém okně) použijte "
"příkaz \"%s<soubor>\".\n"
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8133,7 +8300,7 @@ msgstr ""
"většině aplikací, ale nezadává se zde jméno souboru, které je pokaždé jiné v "
"závislosti na dané aplikaci.\n"
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8141,7 +8308,7 @@ msgstr ""
"Všechny možnosti tisku pro současnou tiskárnu jsou zobrazeny níže, nebo "
"klikněte na tlačítko \"Možnosti tiskárny\"."
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8150,7 +8317,7 @@ msgstr ""
"Pro vytištění souboru z příkazové řádky (v terminálovém okně) použijte "
"příkaz \"%s<soubor>\" nebo \"%s<soubor>\".\n"
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8165,7 +8332,7 @@ msgstr ""
"pojmenovanou \"STOP Printer!\", který po kliknutí ihned zastaví "
"všechnytiskové úlohy. To je vhodné třeba pro případy uváznutí papíru.\n"
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -8178,38 +8345,49 @@ msgstr ""
"úlohu. Jednoduše zadejte potřebné nastavení do příkazové řádky, např. \"%"
"s<soubor>\".\n"
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Zavřít"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Tisknu/skenuji na \"%s\""
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Tisknu/skenuji na \"%s\""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Tisknu/skenuji na \"%s\""
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Tisknu na tiskárnu \"%s\""
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Zavřít"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "Možnosti tiskárny"
-#: ../../printerdrake.pm_.c:1766
-#, c-format
+#: ../../printerdrake.pm_.c:1802
+#, fuzzy, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
@@ -8222,38 +8400,30 @@ msgstr ""
"\n"
"Nepoužívejte pro toto zařízení \"scannerdrake\"!"
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-"Multifunkční zařízení od HP bylo nastaveno pro možnost skenování. Nyní lze "
-"skenovat příkazem \"ptal-hp %s scan ...\" z příkazového řádku. Skenování z "
-"grafického prostředí nebo z programu GIMP není zatím na tomto zařízení "
-"podporováno. Více informací naleznete v souboru \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\". Pokud máte HP LaserJet 1100 nebo 1200, lze skenovat "
-"pouze v případě, že máte nainstalovánu podporu pro skenování.\n"
-"\n"
-"Nepoužívejte pro toto zařízení \"scannerdrake\"!"
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr "Načítám data k tisku ..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "Přenést konfiguraci tiskárny"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8268,7 +8438,7 @@ msgstr ""
"ale tiskové úlohy nebudou přeneseny.\n"
"Ne všechny fronty lze přenést z následujích důvodů:\n"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8276,7 +8446,7 @@ msgstr ""
"CUPS nepodporuje tiskárny na serverech Novell nebo tiskárny, které posílají "
"data na skupinu příkazů.\n"
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -8284,11 +8454,11 @@ msgstr ""
"PDQ podporuje pouze místní tiskárny, vzdálené tiskárny LPD a tisk na "
"tiskárny přes sockety/TCP.\n"
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD ani LPRng nepodporují IPP tiskárny.\n"
+msgstr "LPD ani LprNG nepodporují IPP tiskárny.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8296,7 +8466,7 @@ msgstr ""
"Tiskové fronty, které nebyly vytvořeny tímto programem nebo přes \"foomatic-"
"configure\" nelze přenést."
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8306,7 +8476,7 @@ msgstr ""
"Také tiskárny používající PPD soubory od jejich výrobců nebo tiskárny s "
"nativními ovladači pro CUPS nelze přenést."
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8315,15 +8485,15 @@ msgstr ""
"\n"
"Označte tiskárnu, kterou chcete přenést a stiskněte \"Přenést\"."
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr "Nepřenášet tiskárny"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr "Přenést"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8332,13 +8502,13 @@ msgid ""
msgstr ""
"Tiskárna se jménem \"%s\" již na straně %s existuje.\n"
"Klikněte na \"Přenést\" pro přepsání.\n"
-"Taky můžete napsat nové jméno nebo ji přeskočit."
+"Také můžete napsat nové jméno nebo ji přeskočit."
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Jméno fronty může obsahovat pouze písmena, číslice a podtržítko"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8347,16 +8517,16 @@ msgstr ""
"Tiskárna se jménem %s již existuje,\n"
"chcete opravdu přepsat její konfiguraci?"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Nové jméno tiskárny"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr "Přenáším %s ..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8365,29 +8535,29 @@ msgstr ""
"Byla přenesena výchozí tiskárna (\"%s\"). Má se nastavit jako výchozí také "
"na vzdáleném tiskovém systému %s?"
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr "Občerstvuji tisková data ...."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr "Nastavení vzdálené tiskárny"
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "Spouštím síť ...."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr "Nastavit síť nyní"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "Síť není nastavena"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8398,11 +8568,11 @@ msgstr ""
"spojení, ale síť není zatím nastavena. Pokud budete pokračovat bez nastavení "
"sítě, nebude možné použít tiskárnu, kterou požadujete. Jak chcete pokračovat?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr "Pokračovat bez nastavení sítě"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8416,7 +8586,7 @@ msgstr ""
"Mandrake, v sekci \"Síť a Internet\"/\"Připojení\" a následně nastavte "
"tiskárnu také v řídícím centru v sekci \"Hardware\"/\"Tiskárna\""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
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 "
@@ -8425,24 +8595,24 @@ msgstr ""
"Síť nefunguje a nelze ji spustit. Prosím zkontrolujte nastavení hardware. "
"Pak se opět pokuste provést nastavení vzdálené tiskárny."
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr "Restartuji tiskový systém ..."
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "vysoká"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr "paranoidní"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Instaluji tiskový systém v bezpečnostní úrovni %s"
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8456,7 +8626,7 @@ msgid ""
"\n"
"Do you really want to configure printing on this machine?"
msgstr ""
-"Pokoušíte se instalovat tiskový systém %s na počítač, bežící v bezpečností "
+"Pokoušíte se instalovat tiskový systém %s na počítač, běžící v bezpečností "
"úrovni %s.\n"
"\n"
"Tiskový systém pracuje jako démon (proces na pozadí), který čeká na tiskové "
@@ -8467,11 +8637,11 @@ msgstr ""
"\n"
"Chcete opravdu nastavit tiskový systém na tomto počítači?"
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr "Spustit tiskový systém při startu systému"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8491,63 +8661,63 @@ msgstr ""
"\n"
"Chcete nastavit zpět automatický start tiskového systému?"
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr "Ověřují nainstalovaný software..."
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
-msgstr "Odebírám LPRng..."
+msgstr "Odebírám LprNG..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr "Odebírám LPD..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "Zvolte tiskový systém pro tiskárnu"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "Který tiskový systém chcete použít pro tisk?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Nastavuji tiskárnu \"%s\"..."
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
msgstr "Instaluji Foomatic ..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Možnosti tiskárny"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr "Připravuji PrinterDrake ...."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
msgid "Configuring applications..."
msgstr "Nastavování aplikací..."
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "Chtěli byste nastavit tiskárnu?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr "Tiskový systém: "
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
-msgstr "Printerdrake"
+msgstr "PrinterDrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -8559,7 +8729,7 @@ msgstr ""
"nastavit na vzdáleném CUPS serveru pro využití v aplikaci Star Office/"
"OpenOffice.org."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -8568,28 +8738,32 @@ msgstr ""
"Jsou nastaveny následující tiskárny. Dvojitým kliknutím na každou z nich je "
"možné je modifikovat, nastavit jako výchozí nebo o nich získat informace."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr "Obnovit seznam tiskáren (pro získání všech vzdálených CUPS tiskáren)"
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
msgid "Change the printing system"
msgstr "Změna tiskového systému"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Normání režim"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Konec"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr "Chcete nastavit další tiskárnu?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "Změnit nastavení tiskárny"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, c-format
msgid ""
"Printer %s\n"
@@ -8598,104 +8772,104 @@ msgstr ""
"Tiskárna %s\n"
"Co chcete změnit na této tiskárně?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr "Provést!"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "Typ připojení pro tiskárnu"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "Jméno tiskárny, popis, umístění"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr "Výrobce tiskárny, model, ovladač"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr "Výrobce tiskárny, model"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr "Nastavit tuto tiskárnu jako výchozí"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr "Přidat tuto tiskárnu do Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr "Odebrat tiskárnu ze Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
-msgstr "Tisk testovací(ch) stránky(nek)"
+msgstr "Tisk testovacích stránek"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
msgstr "Nápověda pro tisk na této tiskárně"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "Odebrat tiskárnu"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "Odebírám starou tiskárnu \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
+msgstr "Odebírám starou tiskárnu \"%s\"..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Výchozí tiskárna"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Tiskárna \"%s\" je nyní nastavena jako výchozí."
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr "Přidávám tiskárnu do Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr "Tiskárna \"%s\" byla úspěšně přidána do Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr "Přidání tiskárny \"%s\" do Star Office/OpenOffice.org se nezdařilo."
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr "Odebírám tiskárnu ze Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
"Tiskárna \"%s\" byla úspěšně odebrána z aplikace Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr "Odebrání tiskárny \"%s\" ze Star Office/OpenOffice.org se nezdařilo."
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Chcete opravdu odebrat tiskárnu \"%s\"?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Odebírám tiskárnu \"%s\" ..."
+msgid "Removing printer \"%s\"..."
+msgstr "Odebírám tiskárnu \"%s\"..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
#: ../../proxy.pm_.c:78
@@ -8779,24 +8953,62 @@ msgstr "Hesla nejsou shodná. Zkuste to znovu!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Nemůžu přidat oddíl do _naformátovaného_ RAID md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Nemůžu zapsat soubor %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid neuspěl"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid neuspěl (možná, že chybí raidtools?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Není dostatek oddílů pro RAID úrovně %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Tato úroveň musí být použita s rozmyslem. Sice můžete snadněji používat "
+"svůj\n"
+"systém, ale na druhou stranu je velmi citlivý: Nesmí být použit pro\n"
+"počítač připojený k Internetu. Pro přihlášení není zapotřebí žádné heslo."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+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 ""
+"S touto bezpečnostní úrovní je možné používat systém jako server.\n"
+"Bezpečnost je nyní dostatečně vysoká, aby bylo možné používat systém jako "
+"server, ke kterému\n"
+"je možné připojit mnoho klientů. Poznámka: pokud je počítač používán pouze "
+"jako klient pro připojení k Internetu, je lepší zvolit nižší úroveň."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "Rozšířené volby"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Volby"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Spustit zvukový systém ALSA (Advanced Linux Sound Architecture)"
@@ -8851,7 +9063,7 @@ msgstr ""
"HardDrake testuje hardware a umožňuje nový/změněný\n"
"hardware nastavit"
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr "Apache je WWW server. Je používán k poskytování HTML a CGI souborů."
@@ -8924,7 +9136,7 @@ msgstr ""
"Linux Virtual Server používaný pro sestavení vysoce výkonného\n"
"a dostupného serveru."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -9001,7 +9213,7 @@ msgstr ""
"a NIS. Portmap server musí být spuštěn na počítačích, které fungují jako\n"
"servery pro protokoly, které používají mechanismus RPC."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -9055,7 +9267,7 @@ msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
msgstr ""
-"Protokol rwho umožňuje vzdáleným(remote) uživatelům získat seznam\n"
+"Protokol rwho umožňuje vzdáleným uživatelům získat seznam\n"
"všech uživatelů přihlášených na počítači s démonem rwho (je to podobné\n"
"službě finger)."
@@ -9096,7 +9308,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Sdílení souborů"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "Systém"
@@ -9111,7 +9323,7 @@ msgstr "Databázové servery"
#: ../../services.pm_.c:170
#, c-format
msgid "Services: %d activated for %d registered"
-msgstr "Skužby: aktivováno %d z %d registrovaných"
+msgstr "Služby: aktivováno %d z %d registrovaných"
#: ../../services.pm_.c:186
msgid "Services"
@@ -9135,7 +9347,7 @@ msgid ""
"about this service, sorry."
msgstr ""
"Nejsou žádné další\n"
-"informace o službě, sorry."
+"informace o službě, promiňte."
#: ../../services.pm_.c:224
msgid "On boot"
@@ -9225,6 +9437,7 @@ msgstr ""
"GNU gcc kompilátor a další prostředky na vývoj Open Source aplikací"
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
msgstr "Řídící centrum Mandrake"
@@ -9285,7 +9498,7 @@ msgid ""
msgstr ""
"Chcete se dozvědět o Linuxu jednoduchou, rychlou a snadnou cestou? "
"Poskytujeme zdarma školení Linuxu, stejně jako testy vašich znalostí "
-"prostřednictvím online školícího centra MandrakeCampus"
+"prostřednictvím on-line školícího centra MandrakeCampus"
#: ../../share/advertising/10-MDKexpert.pl_.c:9
msgid "MandrakeExpert"
@@ -9346,6 +9559,15 @@ msgstr "http://www.mandrakesoft.com/sales/contact"
msgid "Installing packages..."
msgstr "Instaluji balíčky..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Prosím odhlaste se a pak stiskněte Ctrl-Alt-Backspace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Pro aktivaci změn se prosím znovu přihlaste na %s"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -9354,6 +9576,145 @@ msgstr ""
"Nemůžu přečíst vaši tabulku oddílů, možná je příliš narušená :(\n"
"Pokusím se pokračovat v čištění špatných oddílů"
+#: ../../standalone/drakTermServ_.c:189
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Nastavení Mandrake Terminal Server"
+
+#: ../../standalone/drakTermServ_.c:204
+msgid "Enable Server"
+msgstr "Zapnout server"
+
+#: ../../standalone/drakTermServ_.c:211
+msgid "Disable Server"
+msgstr "Vypnout server"
+
+#: ../../standalone/drakTermServ_.c:219
+msgid "Start Server"
+msgstr "Spustit server"
+
+#: ../../standalone/drakTermServ_.c:226
+msgid "Stop Server"
+msgstr "Zastavit server"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr "Disketa Etherboot/ISO"
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr "Startovací image ze sítě"
+
+#: ../../standalone/drakTermServ_.c:240
+msgid "Add/Del Users"
+msgstr "Přidat/Odebrat uživatele"
+
+#: ../../standalone/drakTermServ_.c:242
+msgid "Add/Del Clients"
+msgstr "Přidat/Odebrat klienty"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Nápověda"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr "Spouštěcí disketa"
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr "Spouštěcí ISO"
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr "Sestavit celé jádro -->"
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr "Bude to trvat několik minut."
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr "Nebylo zvoleno žádné jádro!"
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr "Sestavit jedinou NIC -->"
+
+#: ../../standalone/drakTermServ_.c:533
+msgid "No nic selected!"
+msgstr "Není zvolena žádná NIC!"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr "Sestavit všechna jádra -->"
+
+#: ../../standalone/drakTermServ_.c:550
+msgid "<-- Delete"
+msgstr "<-- Smazat"
+
+#: ../../standalone/drakTermServ_.c:557
+msgid "Delete All NBIs"
+msgstr "Smazat všechny NBI"
+
+#: ../../standalone/drakTermServ_.c:619
+msgid "Add User -->"
+msgstr "Přidat uživatele -->"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr "<-- Odebrat uživatele"
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr "Přidat klienta -->"
+
+#: ../../standalone/drakTermServ_.c:733
+msgid "<-- Del Client"
+msgstr "<-- Odebrat klienta"
+
+#: ../../standalone/drakTermServ_.c:739
+msgid "dhcpd Config..."
+msgstr "Nastavení dhcpd..."
+
+#: ../../standalone/drakTermServ_.c:886
+msgid "Write Config"
+msgstr "Zapsat nastavení"
+
+#: ../../standalone/drakTermServ_.c:944
+msgid "Please insert floppy disk:"
+msgstr "Prosím vložte disketu:"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr "Nelze pracovat s disketou!"
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr "Disketu nyní můžete vyjmout"
+
+#: ../../standalone/drakTermServ_.c:953
+msgid "No floppy drive available!"
+msgstr "Není dostupná žádná disketová mechanika!"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr "ISO image pro Etherboot je %s"
+
+#: ../../standalone/drakTermServ_.c:964
+#, fuzzy
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr "Něco neproběhlo správně!"
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr "Je nutné nejprve vytvořit soubor /etc/dhcpd.conf!"
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "Chyba!"
@@ -9404,6 +9765,10 @@ msgstr ""
"Vyberte prosím, který z kroků instalace má být proveden automaticky stejně "
"jako instalační program nebo bude ručně zadán"
+#: ../../standalone/drakautoinst_.c:83
+msgid "Creating auto install floppy"
+msgstr "Vytvářím disketu pro automatickou instalaci"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -9416,12 +9781,12 @@ msgstr ""
"\n"
"Parametry pro automatickou instalaci jsou přístupné v sekci nalevo"
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Gratuluji!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9429,28 +9794,19 @@ msgstr ""
"Disketa byla s úspěchem vytvořena.\n"
"Nyní lze provést znovu instalaci."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr "Automatická instalace"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr "Přidat položku"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr "Odstranit poslední položku"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
@@ -9460,7 +9816,7 @@ msgstr ""
" Report programu DrackBackup \n"
"\n"
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9472,19 +9828,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9496,62 +9840,86 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr "celkový průběh"
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr "Zálohovat systémové soubory..."
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
msgstr "Záložní soubory pevného disku..."
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
msgstr "Zálohovat soubory uživatelů..."
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr "Průběh zálohování na pevný disk... "
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
msgstr "Zálohovat další soubory..."
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, fuzzy, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
"seznam souborů poslaný na FTP : %s\n"
" "
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
+#, fuzzy
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
"\n"
-"(!) Problémy FTP spojení: nebylo možné poslat data pro zálohu přes FTP.\n"
+" Problémy FTP spojení: Nebylo možné poslat vaše soubory se zálohou přes "
+"FTP.\n"
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr "(!) Chyba při posílání pošty. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+msgid " Error during mail sending. \n"
+msgstr " Chyba při posílání pošty. \n"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
msgstr "Výběr souboru"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr "Vyberte soubory nebo adresáře a klikněte na 'Přidat'"
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -9559,106 +9927,100 @@ msgstr ""
"\n"
"Zvolte prosím všechny volby, které potřebujete.\n"
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr "Tato volba zazálohuje a obnoví všechny soubory v adresáři /etc.\n"
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr "Zálohovat systémové soubory ( adresář /etc )"
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr "Použít přírůstkovou zálohu (nepřepisovat starší zálohy)"
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Nezahrnout kritické soubory (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr "Tato volba dovolí obnovit různé verze adresáře /etc."
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
msgstr "Zvolte prosím všechny uživatele, které chcete zálohovat."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr "Nezahrnout cache prohlížeče"
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Použít přírůstkovou zálohu (nepřepisovat starší zálohy)"
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
msgstr "Odstranit vybrané"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr "Uživatelé"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
msgstr "Použít FTP připojení pro zálohu"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
msgstr "Zadejte prosím jméno počítače nebo IP."
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
"Zadejte adresář, do kterého\n"
" bude umístěna záloha."
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
msgstr "Zadejte své přihlašovací jméno"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
msgstr "Zadejte své heslo"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
msgstr "Pamatovat si heslo"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "FTP připojení"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Bezpečné připojení"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr "Použít pro zálohování CD/DVDROM"
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
msgstr "Vyberte si velikost CD média"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
msgstr "Zvolte pokud používáte CDRW média"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr "Pokud CDRW médium nejdříve smazat, zatrhněte"
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
@@ -9666,7 +10028,7 @@ msgstr ""
"Pokud chcete mít spouštěcí CD,\n"
" zatrhněte tuto volbu."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -9674,68 +10036,79 @@ msgstr ""
"Zadejte jméno vaší vypalovačky CD\n"
" např.: 1,0,0"
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
msgstr "Použít páskovou jednotku"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr "Zadejte jméno zařízení, na které se bude zálohovat"
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Pokud CDRW médium nejdříve smazat, zatrhněte"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
"Zadejte prosím maximální velikost\n"
-" povolenou pro Drakbackup"
+" povolenou pro DrakBackup"
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
+#: ../../standalone/drakbackup_.c:1497
+#, fuzzy
+msgid "Please enter the directory to save to:"
msgstr "Zadejte adresář, kam bude umístěna záloha:"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
msgstr "Použít kvóty pro záložní soubory."
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
msgstr "Síť"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
-msgstr "CDROM / DVDROM"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr "Pevný disk / NFS"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Změnit typ"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr "každou hodinu"
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr "každý den"
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr "každý týden"
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr "každý měsíc"
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
msgstr "Použít démona"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -9743,7 +10116,7 @@ msgstr ""
"Vyberte si interval mezi\n"
"jednotlivými zálohami"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
@@ -9751,71 +10124,67 @@ msgstr ""
"Prosím zvolte si\n"
"médium pro zálohy."
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Použít pro pevný disk démona"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "Použít pro síť démona"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+#, fuzzy
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr "Ujistěte se, že mezi službami je přítomen cron démon."
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr "Poslat report po záloze mailem na :"
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "Co"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "Kde"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "Kdy"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
msgstr "Další volby"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
msgstr "Nastavení pro DrakBackup"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
msgstr "Vyberte si, prosím, kam chcete zálohovat."
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr "na pevný disk"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr "přes síť"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
msgstr "Prosím vyberte si, co chcete zálohovat"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
msgstr "Zálohovat systém"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr "Zálohovat uživatele"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr "Vybrat uživatele manuálně"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
@@ -9823,7 +10192,7 @@ msgstr ""
"\n"
"Zdroje pro zálohu:\n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
@@ -9831,7 +10200,7 @@ msgstr ""
"\n"
"- Systémové soubory:\n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
@@ -9839,7 +10208,7 @@ msgstr ""
"\n"
"- Soubory uživatelů:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
@@ -9847,7 +10216,7 @@ msgstr ""
"\n"
"- Další soubory:\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
@@ -9856,16 +10225,45 @@ msgstr ""
"\n"
"- Uložit na pevný disk do adresáře: %s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Přípojení myši: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"- Uložit na FTP na počítač: %s\n"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
"\n"
"- Uložit na FTP na počítač: %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -9874,7 +10272,7 @@ msgstr ""
"\t\t uživatelské jméno: %s\n"
"\t\t cesta: %s \n"
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
@@ -9882,19 +10280,19 @@ msgstr ""
"\n"
"- Volby:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr "\tNezahrnout systémové soubory\n"
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr "\tZálohování používá tar a bzip2\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr "\tZálohování používá tar a gzip\n"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
@@ -9903,27 +10301,41 @@ msgstr ""
"\n"
"- Démon (%s) zahrnuje :\n"
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr "\t-Pevný disk.\n"
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr "\t-Sítí přes FTP.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr "\t-Sítí přes SSH.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t-Sítí přes FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t-Sítí přes FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Pro první spuštění použijte Průvodce nebo Rozšířené.\n"
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
@@ -9931,7 +10343,7 @@ msgstr ""
"Seznam dat pro obnovení:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
@@ -9939,132 +10351,135 @@ msgstr ""
"Seznam poškozených dat:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
msgid "Please uncheck or remove it on next time."
msgstr "Zrušte tuto volbu při dalším spuštění."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr "Záložní soubory jsou poškozené"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr " Všechna vybraná data byla "
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr " Úspěšně obnoveno na %s "
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
msgid " Restore Configuration "
msgstr " Obnovit konfiguraci "
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr "Obnovit také ostatní soubory."
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Seznam uživatelů pro obnovení (od každého bude obnovena pouze poslední "
"záloha)"
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
msgstr "Zálohovat systémové soubory před:"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
msgid "please choose the date to restore"
msgstr "Vyberte datum obnovení zálohy"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
msgstr "Použít pro zálohování pevný disk"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+msgid "Please enter the directory to save:"
+msgstr "Zadejte adresář, kam bude umístěna záloha:"
+
+#: ../../standalone/drakbackup_.c:2416
+msgid "FTP Connection"
+msgstr "FTP připojení"
+
+#: ../../standalone/drakbackup_.c:2424
+msgid "Secure Connection"
+msgstr "Bezpečné připojení"
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
msgstr "Obnovit z pevného disku."
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr "Zadejte adresář, kde jsou umístěny zálohy"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
msgstr "Vyberte další médium, kde jsou umístěny zálohy"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
msgid "Other Media"
msgstr "Další média"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
msgid "Restore system"
msgstr "Obnovit systém"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
msgstr "Obnovit uživatele"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
msgstr "Obnovit ostatní"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr "vyberte cestu pro obnovu (kromě / )"
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Provést novou zálohu před obnovou (pouze pro přírůstkovou zálohu)"
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr "Odebrat adresáře uživatele před obnovou."
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr "Obnovit všechny zálohy"
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
msgid "Custom Restore"
msgstr "Vlastní obnova"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Nápověda"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "Předchozí"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "Uložit"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
msgstr "Vytvořit zálohu"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
msgstr "Obnovit"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "Další"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -10072,7 +10487,7 @@ msgstr ""
"Dříve než budete obnovovat, vytvořte zálohu...\n"
"nebo ověřte, že daná cesta je správná."
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
@@ -10082,31 +10497,35 @@ msgstr ""
" vámi zvolený report nebyl odeslán\n"
" Proveďte prosím nastavení sendmailu"
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Seznam balíčků pro instalaci"
+#: ../../standalone/drakbackup_.c:2933
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Tyto balíčky budou instalovány"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
+#, fuzzy
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
"Chyba při posílání souborů přes FTP.\n"
" Prosím opravte nastavení pro FTP."
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
msgstr "Prosím zvolte data pro obnovu..."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
msgstr "Prosím zvolte si médium pro zálohy..."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
msgstr "Zkontrolujte prosím data pro zálohování..."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10114,75 +10533,75 @@ msgstr ""
"Nebyl nalezen konfigurační soubor, \n"
"klikněte na Průvodce nebo na Rozšířené."
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr "Vyvíjí se... čekejte prosím."
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
msgid "Backup system files"
msgstr "Zálohovat systémové soubory"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
msgid "Backup user files"
msgstr "Zálohovat uživatelské soubory"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
msgid "Backup other files"
msgstr "Zálohovat další soubory"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr "Celkový průběh"
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr "soubory poslané přes FTP"
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
msgid "Sending files..."
msgstr "Posílám soubory..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
-msgstr "Seznam dat, která budou na CROM."
+msgstr "Seznam dat, která budou na CDROM."
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
msgid "Please enter the cd writer speed"
msgstr "Zadejte rychlost vypalovací mechaniky"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr "Zadejte prosím jméno CD vypalovačky (např.: 1.0.0)"
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
msgstr "Zvolte, pokud chcete mít instalační CD spustitelné."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
msgid "Backup Now from configuration file"
msgstr "Zálohovat z konfiguračního souboru"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
msgid "View Backup Configuration."
msgstr "Prohlédnout konfiguraci zálohy."
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
msgid "Wizard Configuration"
msgstr "Průvodce konfigurací"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
msgid "Advanced Configuration"
msgstr "Rozšířená konfigurace"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
msgstr "Zálohovat nyní"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -10241,7 +10660,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10255,7 +10674,7 @@ msgstr ""
" nastavte myhostname a mydomain v /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -10331,7 +10750,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -10382,13 +10801,18 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10405,7 +10829,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
" Tento program je svobodný software; můžete ho šířit a/nebo modifikovat\n"
-" podle specifikace GNU General Public Licence, která byla publikáva\n"
+" podle specifikace GNU General Public Licence, která byla publikována\n"
" Free Software Foundation; buď verze 2, nebo (podle volby) pozdější verze.\n"
"\n"
" Tento program je distribuován s nadějí, že bude užitečný,\n"
@@ -10416,7 +10840,7 @@ msgstr ""
" nebo si o ní můžete napsat na adresu Free Software Foundation, Inc.,\n"
" 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -10491,7 +10915,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -10509,7 +10933,7 @@ msgstr ""
"ji pošlete na server.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10532,7 +10956,7 @@ msgstr ""
"data ručně.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -10611,99 +11035,526 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Instalace %s neuspěla. Stala se tato chyba:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr "Nástroj společnosti Mandrake pro hlášení chyb"
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr "Průvodce pro nové uživatele"
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr "Nástroj na synchronizaci"
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+msgid "Standalone Tools"
+msgstr "Samostatné nástroje"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr "HardDrake"
+
+#: ../../standalone/drakbug_.c:54
+msgid "Mandrake Online"
+msgstr "Mandrake Online"
+
+#: ../../standalone/drakbug_.c:55
+msgid "Menudrake"
+msgstr "Menudrake"
+
+#: ../../standalone/drakbug_.c:56
+msgid "Msec"
+msgstr "Msec"
+
+#: ../../standalone/drakbug_.c:57
+msgid "Remote Control"
+msgstr "Vzdálené ovládání"
+
+#: ../../standalone/drakbug_.c:58
+msgid "Software Manager"
+msgstr "Správce software"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr "Urpmi"
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr "Nástroj pro migraci z Windows"
+
+#: ../../standalone/drakbug_.c:61
+msgid "Userdrake"
+msgstr "UserDrake"
+
+#: ../../standalone/drakbug_.c:62
+msgid "Configuration Wizards"
+msgstr "Průvodci nastavením"
+
+#: ../../standalone/drakbug_.c:71
+msgid "Application:"
+msgstr "Aplikace:"
+
+#: ../../standalone/drakbug_.c:75
+msgid "Package: "
+msgstr "Balíček: "
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr "Jádro: "
+
+#: ../../standalone/drakbug_.c:83
+msgid "Release: "
+msgstr "Verze: "
+
+#: ../../standalone/drakbug_.c:87
+#, fuzzy
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+"\n"
+"\n"
+"Chcete-li poslat hlášení o chybě, klepněte na tlačítko pro nahlášení chyby.\n"
+"Otevře se okno s prohlížečem sítě Internet na adrese https://www.bugzilla."
+"com,\n"
+"kde najdete formulář k vyplnění. Výše uvedené informace budou na tento "
+"server\n"
+"taktéž přeneseny.\n"
+"\n"
+
+#: ../../standalone/drakbug_.c:101
+msgid "Not installed"
+msgstr "Není instalováno"
+
+#: ../../standalone/drakbug_.c:110
+msgid "Report"
+msgstr "Hlášení"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr "připojuji se k průvodci Bugzilla ..."
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr ""
+"Není k dispozici žádný prohlížeč sítě Internet! Prosím nainstalujte nějaký."
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Nastavení sítě (%d adaptéry(ů))"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profil: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Smazat profil..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Smazat profil:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Nový profil..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Zadejte jméno vytvářeného profilu (nový profil je vytvořen jako kopie "
+"vybraného) :"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Jméno počítače: "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Přístup na Internet"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Typ:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Brána(gateway):"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Rozhraní:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Status:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "Čekejte prosím"
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Nastavuji přístup na Internet..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "Nastavení LAN"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Ovladač"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Rozhraní"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protokol"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Status"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Nastavuji lokální síť..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "Klikněte pro spuštění průvodce ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Průvodce..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Použít"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Čekejte prosím... Aktivuji konfiguraci"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Připojen"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Nepřipojen"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Připojit..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Odpojit..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr "Varování, bylo detekováno jiné připojení k Internetu, zřejmě je to síť"
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Nemáte nakonfigurováno žádné rozhraní.\n"
+"Nastavte jej kliknutím na 'Konfigurovat'"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "Nastavení LAN"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Adaptér %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Protokol o spuštění"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Spustit při startu"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP klient"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "aktivovat nyní"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "deaktivovat nyní"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Toto rozhraní ještě nebylo nastaveno.\n"
+"Spusťte průvodce konfigurací z hlavního okna"
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Nemáte žádné připojení k Internetu.\n"
+"Vytvořte si jej kliknutím na 'Konfigurovat'"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Konfigurace připojení k internetu"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Konfigurace připojení k internetu"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Typ připojení:"
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parametry"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Brána(gateway)"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Ethernetová karta"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP klient"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "použití: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-iso8859-2,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Jméno modulu"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Velikost"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "vytváření zaváděcích disket"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "předvolené"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Chyba DrakFloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "verze jádra"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Obecné"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Expertní nastavení"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "volitelné argumenty pro mkinitrd"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Přidat modul"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "vnutit"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "pokud je potřeba"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "vynechat SCSI moduly"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "vynechat RAID moduly"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Odebrat modul"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Výstup"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Vytvořit disk"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Zkontrolujte, zda v je zařízení %s vloženo médium"
+
+#: ../../standalone/drakfloppy_.c:427
+#, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"V zařízení %s není žádné médium, nebo je médium chráněno proti zápisu.\n"
+"Vložte prosím nějaké."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Nelze provést fork: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Nelze korektně ukončit mkbootdisk: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr "Hledám instalované fonty"
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr "Odznačit instalované fonty"
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr "zpracovávám všechny fonty"
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
msgid "no fonts found"
msgstr "nebyly nalezeny žádné fonty"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "hotovo"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr "nelze nalézt žádné fonty v připojeném oddíle"
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr "Znovu vybrat správné fonty"
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr "nelze nalézt žádný font.\n"
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr "Hledat fonty mezi instalovanými"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr "Kopie fontu"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
msgid "True Type fonts installation"
-msgstr "Instalace fontů True Type"
+msgstr "Instalace písem True Type"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr "čekejte prosím, právě běží ttmkfdir... "
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr "Instalace True Type fontů je dokončena"
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr "Konverze fontů"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr "vytvářím type1inst"
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr "Odkazy na Ghostscript"
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr "konverze ttf fontů"
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr "konverze pfm fontů"
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr "Ignorovat dočasné soubory"
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr "Restartovat XFS"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr "Ignorovat soubory s fonty"
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
msgid "xfs restart"
msgstr "restart xfs"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10717,107 +11568,107 @@ msgstr ""
"- Fonty lze instalovat běžným způsobem. Ve výjimečných případech může špatný "
"font způsobit zamrznutí X serveru."
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
msgid "Fonts Importation"
msgstr "Zavádění fontů"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr "Načíst fonty z Windows"
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr "Odinstalovat fonty"
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Rozšířené volby"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
msgstr "Seznam fontů"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
msgid "Choose the applications that will support the fonts :"
msgstr "Zvolte aplikace, které podporují fonty:"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
msgstr "Obecné tiskárny"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr "Vyberte soubor s fontem nebo adresář a klikněte na 'Přidat'"
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
msgstr "Instalovat seznam"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr "klikněte zde, pokud jste si jisti."
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr "zde pokud si nejste jisti."
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr "Zrušit celý výběr"
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
msgid "Selected All"
msgstr "Vybrat vše"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
msgstr "Odebrat seznam"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr "Úvodní testy"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
msgstr "Kopírovat fonty do systému"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr "Instalovat & konvertovat fonty"
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
msgid "Post Install"
msgstr "Poinstalační nastavení"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
msgstr "Odebrat fonty ze systému"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
msgid "Post Uninstall"
msgstr "Nastavení po odebrání"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Sdílení Internetového Připojení"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr "Omlouváme se, ale podporujeme pouze jádra řady 2.4."
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Sdílení Internetového připojení je zapnuto"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10829,31 +11680,31 @@ msgstr ""
"\n"
"Co chcete dále dělat?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "vypnout"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "odmítnout"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "překonfigurovat"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Zakazuji servery..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Sdílení Internetového připojení je nyní vypnuto."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Sdílení Internetového připojení je vypnuto"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10865,19 +11716,19 @@ msgstr ""
"\n"
"Co chcete dále dělat?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "povolit"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Povoluji servery..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Sdílení Internetového připojení je nyní zapnuto."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10892,21 +11743,21 @@ msgstr ""
"\n"
"Pozn.: potřebujete vyhrazený síťový adaptér pro nastavení lokální sítě (LAN)."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Rozhraní %s (používá modul %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Rozhraní %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Ve vašem systému není žádný síťový adaptér!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10914,11 +11765,11 @@ msgstr ""
"Ve vašem počítači nebyl nalezen žádný síťový adaptér. Spusťte prosím program "
"pro nastavení hardware."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Síťové rozhraní"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10933,17 +11784,17 @@ msgstr ""
"\n"
"Na tomto adaptéru bude nastavena lokální síť."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr "Prosím zvolte si, ke kterému síťovému adaptéru bude připojena LAN."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr "Síťové rozhraní je již nastaveno"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10958,15 +11809,15 @@ msgstr ""
"\n"
"Lze to také provést ručně, ale musíte vědět, co děláte."
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr "Automatické přenastavení"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr "Zobrazit aktuální nastavení rozhraní"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10983,7 +11834,7 @@ msgstr ""
"IP atributy: %s\n"
"Ovladač: %s"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
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 C-Class Network that "
@@ -11002,32 +11853,32 @@ msgstr ""
"potřeby.\n"
"\n"
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr "Lokální síť"
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr "Adresa DHCP serveru"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr "Přenastavení rozhraní a DHCP serveru"
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
-msgstr "Číslo lokální síě nekončí na .0, zkouším znovu."
+msgstr "Číslo lokální sítě nekončí na .0, zkouším znovu."
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Našel jsem možný konflikt v současném nastavení LAN adresy pro %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Našel jsem existující nastavení firewallu!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -11035,20 +11886,20 @@ msgstr ""
"Varování! Bylo nalezeno existující nastavení firewallu. Po instalaci může "
"být zapotřebí nějaká ruční úprava."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Nastavuji..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Nastavuji skripty, instaluji software, startuji servery..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Problém s instalací balíčku %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11058,23 +11909,23 @@ msgstr ""
"Nyní lze použít tento počítač pro sdílení připojení k Internetu pro vaši "
"lokální síť, která používá automatickou konfiguraci sítě (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "Nastavení již bylo provedeno, ale nyní je vypnuto."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Nastavení již bylo provedeno, nyní je povoleno."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Není nastaveno žádné sdílení Internetového připojení."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Nastavení sdílení připojení k Internetu"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11089,214 +11940,6 @@ msgstr ""
"\n"
"Klikněte na Konfigurovat, pokud chcete spustit průvodce nastavením."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Nastavení sítě (%d adaptéry(ů))"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Smazat profil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Smazat profil:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Nový profil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Zadejte jméno vytvářeného profilu (nový profil je vytvořen jako kopie "
-"vybraného) :"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Jméno počítače: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Přístup na Internet"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Typ:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Brána(gateway):"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Rozhraní:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Čekejte prosím"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Nastavuji přístup na Internet..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Nastavení LAN"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Ovladač"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Rozhraní"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokol"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Status"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Nastavuji lokální síť..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Klikněte pro spuštění průvodce ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Průvodce..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Použít"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Čekejte prosím... Aktivuji konfiguraci"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Připojen"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Nepřipojen"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Připojit..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Odpojit..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr "Varování, bylo detekováno jiné připojení k Internetu, zřejmě je to síť"
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Nemáte nakonfigurováno žádné rozhraní.\n"
-"Nastavte jej kliknutím na 'Konfigurovat'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Nastavení LAN"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adaptér %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Protokol o spuštění"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Spustit při startu"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP klient"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "aktivovat nyní"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "deaktivovat nyní"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Toto rozhraní ještě nebylo nastaveno.\n"
-"Spusťte průvodce konfigurací z hlavního okna"
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Nemáte žádné připojení k Internetu.\n"
-"Vytvořte si jej kliknutím na 'Konfigurovat'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Konfigurace připojení k internetu"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Konfigurace připojení k internetu"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Typ připojení:"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametry"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Brána(gateway)"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernetová karta"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP klient"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Úroveň zabezpečení"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Řídící centrum"
@@ -11305,63 +11948,93 @@ msgstr "Řídící centrum"
msgid "Choose the tool you want to use"
msgstr "Zvolte si nástroj, který chcete použít"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\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 ""
+"Aplikace XawTV není nainstalovaná!\n"
+"\n"
+"\n"
+"Máte-li TV kartu a nástroj DrakX ji ani nerozpoznal (není přítomen\n"
+"modul bttv v \"/etc/modules\"), ani nenainstaloval aplikaci XawTV, pošlete\n"
+"prosím výsledek příkazu \"lspcidrake -v -f\" na adresu \"install"
+"\\@mandrakesoft.com\"\n"
+"s předmětem zprávy \"undetected TV card\".\n"
+"\n"
+"\n"
+"Tuto aplikaci můžete doinstalovat příkazem \"urpmi xawtv\" spuštěným \n"
+"v konzoli pod uživatelem root."
+
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
msgstr "Kanada (kabel)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
+msgstr "USA (broadcast)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr "USA (kabel)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr "USA (cable-hrc)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr "Čína (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
+msgstr "Čína (broadcast)"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr "Japonsko (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
+msgstr "Japonsko (broadcast)"
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr "Japonsko (kabel)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
msgstr "Východní Evropa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+msgid "France [SECAM]"
+msgstr "Francie [SECAM]"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
msgstr "Irsko"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
msgstr "Západní Evropa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
msgstr "Austrálie"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr "Nový Zéland"
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr "Jižní Afrika"
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr "Argentina"
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
@@ -11369,27 +12042,43 @@ msgstr ""
"Zadejte prosím\n"
"typ TV normy a zemi"
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr "Norma TV:"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr "Oblast :"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr "Probíhá vyhledávání TV kanálů ..."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr "Vyhledávám TV kanály"
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+msgid "There was an error while scanning for TV channels"
+msgstr "Nastala chyba při zkoumání TV kanálů"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr "Aplikace XawTV není nainstalovaná!"
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr "Přeji hezký den!"
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr "Nyní můžete spustit aplikaci XawTV (pod X Windows!)\n"
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr "Nebyla nalezena TV karta!"
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -11419,7 +12108,7 @@ msgstr "Jaké je rozložení vaší klávesnice?"
#: ../../standalone/keyboarddrake_.c:36
msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Chcete, aby se klávesa BackSpace chovala v konzoli jako Delete?"
+msgstr "Chcete, aby se klávesa Backspace chovala v konzoli jako Delete?"
#: ../../standalone/livedrake_.c:24
msgid "Change Cd-Rom"
@@ -11439,9 +12128,9 @@ msgstr "Nelze spustit aktualizaci na běžící systém !!!\n"
#: ../../standalone/localedrake_.c:32
msgid "The change is done, but to be effective you must logout"
-msgstr "Změny jsou provedeny, ale pro aktivaci je nutné provést logout"
+msgstr "Změny jsou provedeny, ale pro aktivaci je nutné provést odhlášení"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -11451,7 +12140,7 @@ msgstr "Zobrazit pouze pro vybraný den"
#: ../../standalone/logdrake_.c:102
msgid "/File/_New"
-msgstr "/_Soubor/_Nový"
+msgstr "/Soubor/_Nový"
#: ../../standalone/logdrake_.c:102
msgid "<control>N"
@@ -11489,10 +12178,6 @@ msgstr "/_Volby"
msgid "/Options/Test"
msgstr "/Volby/Test"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Nápověda"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr "/Nápověda/_O aplikaci..."
@@ -11527,7 +12212,7 @@ msgstr "vyhledat"
#: ../../standalone/logdrake_.c:185
msgid "A tool to monitor your logs"
-msgstr "Nástroj na monitorování logů"
+msgstr "Nástroj na sledování logů"
#: ../../standalone/logdrake_.c:186
msgid "Settings"
@@ -11553,7 +12238,7 @@ msgstr "Kalendář"
msgid "Content of the file"
msgstr "Obsah souboru"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr "Varovné zprávy přes Mail/SMS"
@@ -11562,11 +12247,11 @@ msgstr "Varovné zprávy přes Mail/SMS"
msgid "please wait, parsing file: %s"
msgstr "čekejte prosím, zpracovávám soubor: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
msgstr "Nastavení upozornění přes Mail/SMS"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
@@ -11576,63 +12261,94 @@ msgstr ""
"\n"
"Zde lze nastavit posílání varovných zpráv.\n"
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Jméno domény"
#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
+#, fuzzy
+msgid "Ftp Server"
+msgstr "Zastavit server"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Poštovní server postfix, server pro diskusní skupiny Inn"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "Spustit server"
#: ../../standalone/logdrake_.c:422
+#, fuzzy
+msgid "SSH Server"
+msgstr "NIS Server"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Služby"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Tiskový server"
+
+#: ../../standalone/logdrake_.c:431
msgid "service setting"
msgstr "nastavení služeb"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr "Pokud jedna z vybraných služeb nepoběží, obdržíte varovnou zprávu"
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
msgstr "nahrát volby"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr "Pokud bude hodnota vetší než zadané číslo, obdržíte varovnou zprávu"
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
msgstr "nastavení varování"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr "Nastavuje způsob, jakým bude systém posílat varovné hlášky"
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Uložit jako..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Jaký je typ vaší myši?"
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "nebylo nalezeno serial_usb\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Emulovat třetí tlačítko?"
+#: ../../standalone/printerdrake_.c:49
+msgid "Reading printer data ..."
+msgstr "Načítám údaje o tiskárně ..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "Detekuji zařízení ..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -11667,8 +12383,8 @@ msgid ""
"You can launch printerdrake from the Mandrake Control Center in Hardware "
"section."
msgstr ""
-"Skener %s musí být nastaven pomocí nástroje printerdrake.\n"
-"Spustit printerdrake lze z řídícího centra Mandrake v sekci Hardware"
+"Skener %s musí být nastaven pomocí nástroje PrinterDrake.\n"
+"Spustit PrinterDrake lze z řídícího centra Mandrake v sekci Hardware"
#: ../../standalone/scannerdrake_.c:107
#, c-format
@@ -11681,6 +12397,20 @@ msgstr ""
"Nyní lze skenovat dokumenty pomocí aplikace \"XSane\" z nabídky aplikací "
"Multimédia/Grafika."
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr "Některá zařízení v třídě hardware \"%s\" byla odstraněna:\n"
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+"\n"
+"Některá zařízení v třídě hardware \"%s\" byla přidána:\n"
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "Konfigurace firewallu"
@@ -11721,7 +12451,7 @@ msgstr "Volba typu instalace"
#: ../../steps.pm_.c:16
msgid "Hard drive detection"
-msgstr "Detekce hardisků"
+msgstr "Detekce pevných disků"
#: ../../steps.pm_.c:17
msgid "Configure mouse"
@@ -11977,11 +12707,11 @@ msgstr "Průvodce konfigurací firewallu"
#: ../../tinyfirewall.pm_.c:199
msgid "No (firewall this off from the internet)"
-msgstr "Ne (zakázat na firewalu)"
+msgstr "Ne (zakázat na firewallu)"
#: ../../tinyfirewall.pm_.c:200
msgid "Yes (allow this through the firewall)"
-msgstr "Ano (povolit na firewalu)"
+msgstr "Ano (povolit na firewallu)"
#: ../../tinyfirewall.pm_.c:232
msgid "Please Wait... Verifying installed packages"
@@ -12037,8 +12767,8 @@ msgid ""
"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
"gnumeric), pdf viewers, etc"
msgstr ""
-"Programy pro kancelář: textové procesory (kword, abiword), tabulkové "
-"procesory (kspread, gnumeric), prohlížeče pdf a další"
+"Programy pro kancelář: textové procesory (KWord, Abiword), tabulkové "
+"procesory (KSpread, Gnumeric), prohlížeče PDF a další"
#: ../../share/compssUsers:999
msgid "Audio-related tools: mp3 or midi players, mixers, etc"
@@ -12054,7 +12784,7 @@ msgstr "Pracovní stanice s KDE"
#: ../../share/compssUsers:999
msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm a další"
+msgstr "IceWM, Window Maker, Enlightenment, Fvwm a další"
#: ../../share/compssUsers:999
msgid "Multimedia - Video"
@@ -12062,7 +12792,8 @@ msgstr "Multimédia - video"
#: ../../share/compssUsers:999
msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr "Skupina programů pro mail, newsy, web, přenos souborů a chat"
+msgstr ""
+"Skupina programů pro poštu, diskusní skupiny, web, přenos souborů a chat"
#: ../../share/compssUsers:999
msgid "Database"
@@ -12070,7 +12801,7 @@ msgstr "Databáze"
#: ../../share/compssUsers:999
msgid "PostgreSQL or MySQL database server"
-msgstr "Databázové servery PostreSQL nebo MySQL"
+msgstr "Databázové servery PostgreSQL nebo MySQL"
#: ../../share/compssUsers:999
msgid "Tools to ease the configuration of your computer"
@@ -12081,10 +12812,6 @@ msgid "Multimedia - Sound"
msgstr "Multimédia - zvuk"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Utility"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Dokumentace"
@@ -12094,7 +12821,7 @@ msgstr "Konzolové nástroje"
#: ../../share/compssUsers:999
msgid "Postfix mail server, Inn news server"
-msgstr "Poštovní server postfix, server pro news Inn"
+msgstr "Poštovní server postfix, server pro diskusní skupiny Inn"
#: ../../share/compssUsers:999
msgid "Internet station"
@@ -12102,7 +12829,7 @@ msgstr "Internetová stanice"
#: ../../share/compssUsers:999
msgid "Multimedia station"
-msgstr "Multimédiální stanice"
+msgstr "Multimediální stanice"
#: ../../share/compssUsers:999
msgid "Configuration"
@@ -12142,11 +12869,11 @@ msgstr "Server"
#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm a další"
+msgstr "Gnome, IceWM, Window Maker, Enlightenment, Fvwm a další"
#: ../../share/compssUsers:999
msgid "Graphics programs such as The Gimp"
-msgstr "Grafické programy jako např. Gimp"
+msgstr "Grafické programy jako např. GIMP"
#: ../../share/compssUsers:999
msgid "DNS/NIS "
@@ -12162,7 +12889,7 @@ msgstr "Síťový server"
#: ../../share/compssUsers:999
msgid "Mail/Groupware/News"
-msgstr "Pošta/Groupware/News"
+msgstr "Pošta/Groupware/Diskuse"
#: ../../share/compssUsers:999
msgid "Game station"
@@ -12185,12 +12912,8 @@ msgid ""
"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
"browse the Web"
msgstr ""
-"Kolekce nástrojů pro čtení a posílaní mailů (pine, mutt, tin..) a pro "
-"prohlížení Webu"
-
-#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Archivace, emulátory, minitoring"
+"Kolekce nástrojů pro čtení a posílaní el. pošty a příspěvků do diskusních "
+"skupin (pine, mutt, tin..) a pro prohlížení Webu"
#: ../../share/compssUsers:999
msgid "Personal Finance"
@@ -12226,7 +12949,7 @@ msgstr "Editory, shelly, souborové nástroje, terminály"
#: ../../share/compssUsers:999
msgid "Programs to manage your finance, such as gnucash"
-msgstr "Programy na správu financí jako např. gnucash"
+msgstr "Programy na správu financí jako např. GnuCash"
#: ../../share/compssUsers:999
msgid "Personal Information Management"
@@ -12239,3 +12962,157 @@ msgstr "Multimédia - vypalování CD"
#: ../../share/compssUsers:999
msgid "Scientific Workstation"
msgstr "Vědecká stanice"
+
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "selhal běh fsck s návratovým kódem %d nebo signálem %d"
+
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Identifikace grafické karty: %s\n"
+
+#~ msgid "Choose options for server"
+#~ msgstr "Zvolte možnosti pro daný X server"
+
+#~ msgid "Monitor not configured"
+#~ msgstr "Monitor není nastaven"
+
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Grafická karta ještě není nastavena"
+
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Ještě nejsou zvolena rozlišení"
+
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "zkuste změnit některé parametry"
+
+#~ msgid "An error occurred:"
+#~ msgstr "Vyskytla se tato chyba:"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Test skončí automaticky za %d sekund"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Je to správné nastavení?"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Vyskytla se chyba, zkuste změnit některé parametry"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 server: %s"
+
+#~ msgid "Show all"
+#~ msgstr "Ukázat vše"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Připravuji nastavení X-Window"
+
+#~ msgid "What do you want to do?"
+#~ msgstr "Co chcete dělat?"
+
+#~ msgid "Change Monitor"
+#~ msgstr "Změnit monitor"
+
+#~ msgid "Change Graphics card"
+#~ msgstr "Změnit grafickou kartu"
+
+#~ msgid "Change Server options"
+#~ msgstr "Změnit parametry X Serveru"
+
+#~ msgid "Change Resolution"
+#~ msgstr "Změnit rozlišení"
+
+#~ msgid "Show information"
+#~ msgstr "Zobrazit informace"
+
+#~ msgid "Test again"
+#~ msgstr "Znovu vyzkoušet nastavení X"
+
+#~ msgid ""
+#~ "Description of the fields:\n"
+#~ "\n"
+#~ "Bus: this is the physical bus on which the device is plugged (eg: PCI, "
+#~ "USB, ...)\n"
+#~ "\n"
+#~ "Bus identification: \n"
+#~ "- pci devices : this list the vendor, device, subvendor and subdevice PCI "
+#~ "ids\n"
+#~ "\n"
+#~ "Description: this field describe the device\n"
+#~ "\n"
+#~ "Location on the bus: \n"
+#~ "- pci devices: this gives the PCI slot, device and function of this card\n"
+#~ "- eide devices: the device is either a slave or a master device\n"
+#~ "- scsi devices: the scsi bus and the scsi device ids\n"
+#~ "\n"
+#~ "Media class: class of hardware device\n"
+#~ "\n"
+#~ "Module: the module of the GNU/Linux kernel that handle that device\n"
+#~ "\n"
+#~ "Vendor: the vendor name of the device\n"
+#~ msgstr ""
+#~ "Vysvětlivky k polím:\n"
+#~ "\n"
+#~ "Sběrnice: fyzická sběrnice, do níž je zařízení zapojeno (např. PCI, "
+#~ "USB, ...)\n"
+#~ "\n"
+#~ "Identifikace sběrnice: \n"
+#~ "- PCI zařízení: zobrazuje ID dodavatele, zařízení, subdodavatele a "
+#~ "podzařízení\n"
+#~ "\n"
+#~ "Popis: Toto pole blíže popisuje zařízení.\n"
+#~ "\n"
+#~ "Umístění na sběrnici:\n"
+#~ "- zařízení PCI: určuje PCI slot, zařízení a funkce této karty\n"
+#~ "- zařízení EIDE: zařízení je buď \"slave\" nebo \"master\"\n"
+#~ "- zařízení SCSI: SCSI sběrnice a ID zařízení na SCSI sběrnici\n"
+#~ "\n"
+#~ "Třída médií: třída hardwarového zařízení\n"
+#~ "\n"
+#~ "Modul: modul jádra operačního systému GNU/Linux, který zařízení "
+#~ "obsluhuje\n"
+#~ "\n"
+#~ "Dodavatel: Jméno dodavatele zařízení\n"
+
+#~ msgid ""
+#~ "Your HP multi-function device was configured automatically to be able to "
+#~ "scan. Now you can scan from the command line with \"ptal-hp %s scan ..."
+#~ "\". Scanning via a graphical interface or from the GIMP is not supported "
+#~ "yet for your device. More information you will find in the \"/usr/share/"
+#~ "doc/hpoj-0.8/ptal-hp-scan.html\" file on your system. If you have an HP "
+#~ "LaserJet 1100 or 1200 you can only scan when you have the scanner option "
+#~ "installed.\n"
+#~ "\n"
+#~ "Do not use \"scannerdrake\" for this device!"
+#~ msgstr ""
+#~ "Multifunkční zařízení od HP bylo nastaveno pro možnost skenování. Nyní "
+#~ "lze skenovat příkazem \"ptal-hp %s scan ...\" z příkazového řádku. "
+#~ "Skenování z grafického prostředí nebo z programu GIMP není zatím na tomto "
+#~ "zařízení podporováno. Více informací naleznete v souboru \"/usr/share/doc/"
+#~ "hpoj-0.8/ptal-hp-scan.html\". Pokud máte HP LaserJet 1100 nebo 1200, lze "
+#~ "skenovat pouze v případě, že máte nainstalovánu podporu pro skenování.\n"
+#~ "\n"
+#~ "Nepoužívejte pro toto zařízení \"scannerdrake\"!"
+
+#~ msgid "Use Hard Drive with daemon"
+#~ msgstr "Použít pro pevný disk démona"
+
+#~ msgid "Use FTP with daemon"
+#~ msgstr "Použít pro síť démona"
+
+#~ msgid "Package List to Install"
+#~ msgstr "Seznam balíčků pro instalaci"
+
+#~ msgid "proftpd"
+#~ msgstr "proftpd"
+
+#~ msgid "sshd"
+#~ msgstr "sshd"
+
+#~ msgid "webmin"
+#~ msgstr "webmin"
+
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
diff --git a/perl-install/share/po/cy.po b/perl-install/share/po/cy.po
index 97fdf158a..ace5bdb10 100644
--- a/perl-install/share/po/cy.po
+++ b/perl-install/share/po/cy.po
@@ -1,38 +1,67 @@
# SOME DESCRIPTIVE TITLE.
-# Copyright (C) 1999 Free Software Foundation, Inc.
-# Copyright (c) 1999 MandrakeSoft
-# Dafydd Tomos <dafydd@imaginet.co.uk>, 1999
-# Rhoslyn Prys <rhoslyn.prys@ntlworld.com>, 2002
+# Copyright (C) YEAR Free Software Foundation, Inc.
+# Rhoslyn Prys <rhoslyn.prys@ntlworld.com>
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-11 12:35-0000\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2002-02-23 10:00-0000\n"
"Last-Translator: Rhoslyn Prys <rhoslyn.prys@ntlworld.com>\n"
-"Language-Team: Cymraeg/Welsh <cy@li.org>\n"
+"Language-Team: Cymraeg <cy@li.org>\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=ISO-8859-14\n"
+"Content-Type: text/plain; charset=iso-8859-14\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Ffurfweddu pob pen yn annibynnol"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Defnyddiwch estyniad Xinerama"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Ffurfweddu cerdyn \"%s\" (%s) yn unig"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "16 MB neu fwy"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Dewiswch wasanaethwr X"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "Gwasanaethwr X"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Ffurfweddiad amlben"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -40,41 +69,44 @@ msgstr ""
"Mae eich system yn cynnal ffurfweddiad amlben.\n"
"Beth hoffech ei wneud?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Cerdyn graffig"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Dewiswch faint y cof eich cerdyn graffeg"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Dewiswch gerdyn graffig"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "Ffurfweddiad XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Dewiswch wasanaethwr X"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Pa ffurfweddiad oXFree hoffech ei gael?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "Gwasanaethwr X"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Ffurfweddu pob pen yn annibynnol"
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Dewiswch yrrwr X"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Defnyddiwch estyniad Xinerama"
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "Gyrrwr X"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Ffurfweddu cerdyn \"%s\" (%s) yn unig"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree86: %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Pa ffurfweddiad oXFree hoffech ei gael?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s gyda cyflymu caledwedd 3D"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -85,33 +117,18 @@ msgstr ""
"Mae eich cerdyn yn cael ei gynnal gan XFree %s efallai bod gwell cefnogaeth "
"yn 2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Mae modd i'ch cerdyn gael cefnogaeth cyflymu caledwedd 3D gyda XFree %s"
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s gyda cyflymu caledwedd 3D"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Mae modd i'ch cerdyn gael cefnogaeth cyflymu caledwedd 3D gyda XFree %s \n"
-"SYLWER CEFNOGAETH ARBROFOL YW HWN AC FE ALL RHEWI EICH CYFRIFIADUR."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s gyda cyflymu caledwedd 3D ARBROFOL"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -124,31 +141,58 @@ msgstr ""
"Mae eich cerdyn yn cael ei gynnal gan XFree %s efallai bod gwell cefnogaeth "
"yn 2D."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Mae modd i'ch cerdyn gael cefnogaeth cyflymu caledwedd 3D gyda XFree %s \n"
+"SYLWER CEFNOGAETH ARBROFOL YW HWN AC FE ALL RHEWI EICH CYFRIFIADUR."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (gyrrwr gosod dangoswr)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Ffurfweddiad XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Dewiswch faint y cof eich cerdyn graffeg"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Dewiswch opsiynau ar gyfer y gwasanaethwr"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Cadw'r newid?\n"
+"Y ffurfweddiad presenol yw:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Dewiswch fonitor"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Arddull"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Generig"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Dadwneud"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -170,511 +214,326 @@ msgstr ""
"hynny.\n"
"Os oes gennych amheuaeth, dewiswch raddfa is."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Graddfa adfywio llorweddol"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Graddfa adfywio fertigol"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor heb ei ffurfweddu"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Cerdyn graffig heb ei ffurfweddu eto"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Cydraniad heb ei ddewis eto"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Ydych chi eisiau profi eich ffurfweddiad?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Rhybydd: gall profi'r cerdyn graffig hwn rewi eich cyfrifiadur"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Profi'r ffurfweddiad"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 lliw (8 did)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"ceisiwch newid rhai paramedrau"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 mil o liwiau (15 did)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Digwyddodd gwall:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 mil o liwiau (16 did)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Gadael mewn %d eiliad"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 miliwn o liwiau (24 did)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Ydi'r gosodiad hwn yn gywir?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 biliwn o liwiau (32 did)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Digwyddodd gwall, ceisiwch newid rhai paramedrau"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Cydraniadau"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Cydraniad"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Dewiswch y cydraniad a'r dyfnder lliw"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Cerdyn graffeg: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Gwasanaethwr XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Rhagor"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Diddymu"
+
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Iawn"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Modd Arbennigwr"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Dangos y cyfan"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Ydych chi eisiau profi eich ffurfweddiad?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Cydraniadau"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Profi'r ffurfweddiad"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Gosodiad yr yr allweddell: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Math o lygoden: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Dyfais llygoden: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "HorizSync Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "VertRefresh Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Cerdyn graffeg: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Dynodiad y cerdyn graffeg: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Cof graffeg: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Dyfnder lliw: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Cydraniad: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "GwasanaethwrXFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Gyrrwr XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Yn parataoi cyfluniad X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Beth ydych eisiau ei wneud?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Newid Monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Newid cerdyn Graffeg"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Dewisiadau newid Gwasanaethwr"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Newid Cydraniad"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Dangos gwybodaeth"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Profi eto"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Gadael"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Cadw'r newid?\n"
-"Y ffurfweddiad presenol yw:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X wrth ddechrau"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Hoffwn osod eich cyfrifiadur i gychwyn X yn awtomatig ar ôl cychwyn\n"
"Hoffech chi X i ddechrau wedi i chi ail-gychwyn?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Ail fewn gofnodwch i %s i wireddu'r newidiadau"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Allgofnodwch ac yna defnyddiwch Ctrl Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 lliw (8 did)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mil o liwiau (15 did)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mil o liwiau (16 did)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 miliwn o liwiau (24 did)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 biliwn o liwiau (32 did)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "16 MB neu fwy"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "VGA safonol, 640x480 ar 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Uwch VGA, 800x600 ar 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Cydnaws a 8514, 1024x768 rhyngleswyd ar 87 Hz (nid 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 rhyngleswyd ar 87Hz, 800x600 ar 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Extended Super VGA, 800x600 ar 60 Hz, 640x480 ar 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "SVGA di-rygnlesig, 1024x768 ar 60 Hz, 800x600 ar 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "SVGA Amledd Uchel, 1024x768 ar 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Aml-amledd sydd yn medru dangos 1280x1024 ar 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Aml-amledd sydd yn medru dangos 1280x1024 ar 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Aml-amledd sydd yn medru dangos 1280x1024 ar 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor sydd yn medru dangos 1600x1200 ar 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor sydd yn medru dangos 1600x1200 ar 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Adran gyntaf o'r rhaniad cychwyn"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Adran gyntaf o'r gyrrwr (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "Gosodiad SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Lle ydych chi eisiau gosod y llwythwr cychwyn?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "Gosodiad LILO/grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO gyda dewislen testun"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "Lilo gyda dewislen graffig"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Cychwyn o DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Prif ddewisiadau Bootloader"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Bootloader ar waith"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Gosodiad Bootloader"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Dyfais cychwyn"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (nid yw'n gweithio gyda hen BIOSau)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Cryno"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "cryno"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Modd fideo"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Oedi cyn cychwyn delwedd rhagosodedig"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Cyfrinair"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Cyfrinair (eto)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Cyfyngu dewisiadau llinell orchymyn"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "cyfyngu"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Glanhau /tmp bob tro fyddwch yn cychwyn"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Union faint o RAM os oes angen (canfod %dMB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Galluogi aml-broffil"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Rhowch maint RAM mewn MB"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Dewis Nid yw 'cyfyngu dewisiadau llinell orchymyn' o werth heb gyfrinair"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Ceisiwch eto"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Nid yw'r cyfrineiriau'n cydfynd"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Neges Init"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Agor Oedi Cadarnwedd"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Goramser cychwyn y cnewyllyn"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Galluogi cychwyn o CD?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Galluogi Cychwyn OF?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Systm Weithredu Rhagosodedig?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -688,83 +547,83 @@ msgstr ""
"\n"
"Gyda pha ddisg ydych chi'n cychwyn?"
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Dyma'r cofnodion gwahanol.\n"
"Mae modd i chi ychwanegu rhagor neu newid y rhai presennol."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Ychwanegu"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Gorffen"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Newid"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Pa fath o gofnod ydych chi eisiau ei ychwanegu?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Systwmau Gweithredu eraill (SunOS..)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Systemau Gweithredu Eraill (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Systemau gweithredu Eraill (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Delwedd"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Gwraidd"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Atodi"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Darllen-ysgrifennu"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabl"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Anniogel"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Label"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Rhagosodedig"
@@ -796,53 +655,78 @@ msgstr "Rhaid pennu rhaniad cyfnewid"
msgid "This label is already used"
msgstr "Mae'r label hwn yn cael ei ddefnyddio eisoes"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Wedi canfod rhyngwynebau %s %s"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Oes gennych un arall?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Oes gennych rhyngwynebau %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Na"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Iawn"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Gweler gwyboadeth am galedwedd"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Gosod gyrrwr ar gyfer cerdyn %s %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(modiwl %s)"
+#: ../../any.pm_.c:697
+#, fuzzy, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+"Medrwch ddarparu ddewisiadau i fodiwl %s.\n"
+"Sylwer: wrth greu unrhyw gyfeiriad bydd angen defnyddio rhagddodiad 0x fel "
+"'0x123'"
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Medrwch nawr ei ddewis i fodiwl. %s.\n"
+"Mae'r dewisiadau yn fformat ``name=value name2=value2 ...''.\n"
+"e.e, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Dewisiadau modiwl:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Pa yrrwr %s ddylwn drio?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -862,40 +746,15 @@ msgstr ""
"unrhyw\n"
"ddifrod"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Atoholi"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Enwi dewisiadau"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"Medrwch ddarparu ddewisiadau i fodiwl %s.\n"
-"Sylwer: wrth greu unrhyw gyfeiriad bydd angen defnyddio rhagddodiad 0x fel "
-"'0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Medrwch nawr ei ddewis i fodiwl. %s.\n"
-"Mae'r dewisiadau yn fformat ``name=value name2=value2 ...''.\n"
-"e.e, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Dewisiadau modiwl:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -904,50 +763,55 @@ msgstr ""
"Methodd llwytho modiwl %s\n"
"Hoffech chi drio eto gyda pharamedrau eraill?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "mynediad i raglenni X"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "mynediad i offer rpm"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "caniatáu \"su\""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "mynediad i ffeiliau gweinyddol"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(wedi ychwanegu %s yn barod)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Mae'r cyfrinair yn rhy syml"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Rhowch enw defnyddiwr"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Rhaid i'r enw defnyddiwr gynnwys dim ond llythrennau bach, rhifau, '-' a '_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Mae'r enw defnyddiwr wedi ei ychwanegu yn barod"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Mae'r enw defnyddiwr wedi ei ychwanegu yn barod"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Ychwanegu defnyddiwr"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -956,32 +820,32 @@ msgstr ""
"Rhowch enw defnyddiwr\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Derbyn defnyddiwr"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Enw cywir"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Enw defnyddiwr"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Cragen"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Eicon"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Awtomewngofnodi"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -990,87 +854,67 @@ msgstr ""
"defnyddiwr\n"
"Hoffech chi wneud hyn?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Dewis y defnyddiwr rhagosodedig:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Dewiswch y rheolwr ffenestr i rhedeg:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Dewiswch iaith i'w defnyddio."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr "Gallwch ddewis ieithoedd eraill fydd ar gael ar ôl gosod"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Popeth"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Caniatáu pob defnyddiwr"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Arddull"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "Dim rhannu"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Rhaid i becyn %s gael ei osod. Ydych chi am ei osod?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Medrwch allforio gan ddefnyddio NFS neu Samba. Pa un hoffech chi"
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Mae pecyn gorfodol %s ar goll"
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Dileu"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr "Cychwyn userdrake"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -1078,31 +922,31 @@ msgstr ""
"Mae rhannu yn ôl defnyddiwr yn defnyddio \"rhannu ffeiliau\" grwp.\n"
"Mae modd defnyddio userdrake i ychwanegu defnyddiwr i'r grwp."
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Croeso i Crackers"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Gwael"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Safonol"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Uchel"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
msgstr "Uwch"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoia"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1113,7 +957,7 @@ msgstr ""
"i'w\n"
"gysylltu ag eraill nag i'r Rhyngrwyd. Does dim cysylltiad drwy gyfrinair."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1121,7 +965,7 @@ msgstr ""
"Mae'r cyfrinair wedi ei alluogi, ond ni argymellir ei ddefnyddio fel "
"cyfrifiadur rhwydwaith."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1129,7 +973,7 @@ msgstr ""
"Dyma'r safon sy'n cael ei argymell ar gyfer diogelwch cyfrifiadur fydd yn "
"cael ei gysylltu â'r Rhyngrwyd fel cleient."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1137,13 +981,14 @@ msgstr ""
"Mae rhai cyfyngiadau, ac mae rhagor o wiriadau awtomatig yn cael eu rhedeg "
"bob nos"
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Gyda'r lefel diogelwch hwn, mae defnydd y system fel gwasanaethwr yn "
"bosibl.\n"
@@ -1152,34 +997,34 @@ msgstr ""
"cysylltiad gan amryw o gleientiaid. Sylwer: os mae cleient yn unig yw eich "
"peiriant ar y Rhyngrwyd, yna mae'n well i chi ddewis lefel is."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Wedi ei seilio ar y lefel flaenorol, ond mae'r system yn hollol gaeëdig.\n"
"Mae nodweddion diogelwch ar eu uchaf."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Dewiswch lefel diogelwch"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Lefel diogelwch"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Defnyddiwch libsafe ar gyfer gwasanaethwyr"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Llyfrgell sy'n diogelu rhag gorlif byffer ac ymosodiadau llinellau fformatio."
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1196,52 +1041,52 @@ 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_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Croeso i GRUB, y dewiswr systemau gweithredu!"
#. -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_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Defnyddiwch allweddi %c a %c i ddewis pa gofnod i'w amlygu."
#. -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_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Gwasgwch Enter i gychwyn y system weithredu, 'g' i olygu'r"
#. -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_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "gorchmynion cyn cychwyn, neu 'o' am y llinell orchymyn."
#. -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_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Bydd y cofnod wedi ei amlygu'n cychwyn yn awtomatig ymhen %d eiliad."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "dim digon o le yn /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Penbwrdd"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Dewislen Cychwyn"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Nid oes modd gosod y llwythwr cychwyn ar adran %s\n"
@@ -1254,15 +1099,19 @@ msgstr "nid yw cymorth wedi ei weithredu eto.\n"
msgid "Boot Style Configuration"
msgstr "Ffurfweddu'r Math o Gychwyn"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Ffeil"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Ffeil/_Gadael"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1297,14 +1146,14 @@ msgstr "Modd Yaboot"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Ryych yn defnyddio %s fel Rheolwr Cychwyn.\n"
"Cliciwch Ffurfweddu i gychwyn dewin gosod"
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Ffurfweddu"
@@ -1314,7 +1163,7 @@ msgid "System mode"
msgstr "Modd System"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Cychwyn y system X-Window o'r cychwyn"
#: ../../bootlook.pm_.c:148
@@ -1325,14 +1174,16 @@ msgstr "Na, tydw i ddim eisiau awto-mewngofnodi"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Iawn, rwyf eisiau awto-mewngofnodi gyda (defnyddiwr, penbwrdd)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "Iawn"
@@ -1380,7 +1231,7 @@ msgstr "Nid wyf yn medru creu lluniau o'r sgrin cyn rhannu"
msgid "Screenshots will be available after install in %s"
msgstr "Bydd lluniau o'r sgrin ar gale ar ôl gosod yn %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Ffrainc"
@@ -1388,7 +1239,7 @@ msgstr "Ffrainc"
msgid "Costa Rica"
msgstr "Costa Rica"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Gwlad Belg"
@@ -1412,11 +1263,12 @@ msgstr "Norwy"
msgid "Sweden"
msgstr "Sweden"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Yr Iseldiroedd"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "Yr Eidal"
@@ -1424,7 +1276,7 @@ msgstr "Yr Eidal"
msgid "Austria"
msgstr "Awstria"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "Yr Unol Daleithiau"
@@ -1432,8 +1284,8 @@ msgstr "Yr Unol Daleithiau"
msgid "Please make a backup of your data first"
msgstr "Gwnewch gopi wrth gefn o'ch data yn gyntaf"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Darllenwch yn ofalus!"
@@ -1447,11 +1299,12 @@ msgstr ""
"ddigon)\n"
"ar ddechrau'r ddisg."
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Gwall"
@@ -1459,11 +1312,11 @@ msgstr "Gwall"
msgid "Wizard"
msgstr "Dewin"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Dewiswch weithred"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1475,77 +1328,77 @@ msgstr ""
"Awgrymaf eich bod yn newid maint y rhaniad\n"
"(cliciwch arno, ac yna clicio \"Newid maint\"]"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Cliciwch ar raniad"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Manylion"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "jwrnaleiddiwyd FS?"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Gwag"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Arall"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Mathau ffeil-system:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Creu"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Math"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Defnyddiwch \"%s\" yn lle hynny"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Dileu"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Defnyddiwch \"Dad-osod\" yn gyntaf"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1553,97 +1406,102 @@ msgstr ""
"Wedi newid y math o raniad %s bydd yr holl ddata ar y rhaniad yn cael ei "
"golli"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Dewiswch raniad"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Dewiswch rhaniad arall"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Gadael"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Cyffredinol > Arbennigwr"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Arbennigwr > Cyffredinol"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Dadwneud"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Parhau beth bynnag?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Gorffen heb arbed"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Gorffen heb ysgrifennu y tabl rhaniadau?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "Ydych eisiau cadw newidiadau /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Awto ddynodi"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Clirio i gyd"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Rhagor"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "Gwybodaeth am y ddisg caled"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Mae pob rhaniad cynradd wedi ei ddefnyddio"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Alla'i ddim ychwanegu unrhyw raniadau ychwanegol"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr "I gael mwy o raniadau, dilëwch un er mwyn gallu creu rhaniad estynedig"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "Cadw'r tabl rhaniad"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "Adfer y tabl rhaniad"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Achub y tabl rhaniadau"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "Ail-lwytho'r tabl rhaniad"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "Cyfrwng symudadwy'n awto-osod"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Dewiswch ffeil"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1651,11 +1509,11 @@ msgstr ""
"Nid oes gan y tabl rhaniad wrth gefn yr un maint\n"
"Parhau?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Rhybudd"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1663,122 +1521,129 @@ msgstr ""
"Rhowch flopi yn y disg-yrrwr\n"
"Mi fydd yr holl wybodaeth ar y fflopi yma yn gael ei ddileu"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Yn trio achub y tabl rhaniadau"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Gwybodaeth fanwl"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Pwynt gosod"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Dewisiadau"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Newid maint"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Symud"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Fformatio"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Gosod"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Ychwanegu i RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Ychwanegu i LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Dad-osod"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Tynnu o RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Tynnu o LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Newid RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Defnyddiwch ar gyfer cylchol"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Creu rhaniad newydd"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Sector dechreuol: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Maint mewn MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Math o ffeilsystem: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Pwynt gosod:"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Dewis"
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+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/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "Tynnu'r ffeil cylch-ol?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Newid math y rhaniad"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Pa fath o system ffeil ydych chi eisiau?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Newid o ext2 i ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Lle'r hoffech chi odod y ffeil cylch-ol %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Lle ydych am osod dyfais %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1787,128 +1652,133 @@ msgstr ""
"gyfer cylch-ol\n"
"Tynnu'r cylch-ol yn gyntaf"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Cyfrifo ffiniau system ffeiliau FAT"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Newid maint"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Nid oes modd newid maint y rhaniad"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Dylai'r holl ddata ar y rhaniad gael ei ategu"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Ar ôl newid maint rhaniad %s, bydd yr holl ddata ar y rhaniad yma yn cael ei "
"golli"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Dewiswch y maint newydd"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Maint mewn MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Pa ddisg hoffech chi symud iddo?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sector"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Pa sector hoffech chi symud iddo?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Symud"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Yn symud rhaniad.."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Dewis RAID presennol i ychwanegu iddo"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "newydd"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Dewis LVM presennol i ychwanegu iddo"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "Enw LVM"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Niid oes modd defnyddio'r rhaniad ar gyfer cylch-ol"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Cylch-ol"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Enw ffeil cylch-ol"
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Rhowch enw ffeil"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr ""
"Mae'r ffeil yn cael ei ddweis eisoes gam gylch-ol arall, dewiswch un arall"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Mae'r ffeil yn bodoli eisoes. Defnyddiwch hwn?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Dewisiadau gosod"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Amrywiol"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "dyfais"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "lefel"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "maint darn"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Byddwch ofalus: mae'r weithred hon yn beryglus"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Pa fath o rhaniad %s"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Rhaid i becyn %s gael ei osod. Ydych chi am ei osod?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1920,7 +1790,7 @@ msgstr ""
"Naill ai nad ydych yn defnyddio LILO a ddim angen /boot neu byddwch yn "
"defnyddio LILO a ni fydd yn gweithio."
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1932,7 +1802,7 @@ msgstr ""
"Os ydych yn bwriadu defnyddio y rheolwr bwtio LILO, nodwch fe ddylech greu "
"rhaniad /boot"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1942,130 +1812,130 @@ msgstr ""
"Nid oes llwythwr cychwyn yn medru trin hwn heb rhaniad /boot\n"
"Cofiwch ychwanegu rhaniad /boot"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Mae tabl rhaniad disg-yrrwr %s am gael ei ysgrifennu i'r disg!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Mi fydd angen i chi ail-fwtio cyn i'r newidiadau gymeryd lle"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Wedi fformatio rhaniad %s, bydd yr holl ddata ar y rhaniad yn cael ei golli"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Fformatio"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Yn fformatio ffeil cylch-ol %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Yn fformatio rhaniad %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Cuddio ffeiliau"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Symud ffeiliau i'r rhaniad newydd"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"Mae cyfarwyddiadur %s eisoes yn cynnwys peth data\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "Symud ffeiliau i'r rhaniad newydd"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Copďo %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Tynnu %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "Mae rhaniad %s yn cael ei alw'n %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Dyfais: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Llythyren disg-yrrwr yn DOS: %s (dim ond dyfalu)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Math: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Enw :"
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Dechrau: sector %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Maint: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sector"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Silindr %d i silindr %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Wedi fformatio\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Heb ei fformatio\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Gosodwyd\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2074,7 +1944,7 @@ msgstr ""
"Ffeil(iau) Cylch-ol:\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2082,27 +1952,27 @@ msgstr ""
"Y rhaniad i'w bwtio fel rheol\n"
" (ar gyfer bwt MS-DOS, nid ar gyfer lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Lefel %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Maint darn %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "Disg RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Enw ffeil cylch-ol: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2114,7 +1984,7 @@ msgstr ""
"yw'r rhaniad hwn. Gwell gadael\n"
"llonnydd iddo.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2126,63 +1996,63 @@ msgstr ""
"hwn ar gyfer cychwyniad\n"
"dwbl eich system\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Maint: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometreg: %s silindr, %s pen, %s sector\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Gwybodaeth:"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "Diag LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Math tabl rhaniad: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "ar fws %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Dewisiadau: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "Allwedd amgryptio system ffeil : "
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "Dewiswch eich allwedd amgryptio system ffeiliau"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Mae'r allwedd amgryptio'n rhy syml ( mae'n rhaid bod o leiaf %d nod o hyd)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "Nid yw'r allweddi amgryptio'n cydfynd"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "Allwedd amgryptio"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "Allwedd amgryptio (eto)"
@@ -2191,35 +2061,65 @@ msgid "Change type"
msgstr "Newid y math"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Cliciwch ar gyfrwng"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Dilysu"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Rhyngrwyd"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Enw defnyddiwr"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Enw defnyddiwr"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "Parth NIS"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "Chwiliwch am wasanaethwyr"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "mi fethodd y %s fformatio o %s"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Nid wyf yn gwybod sut i fformatio %s ym math %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "methodd gosod rhaniad %s yng gnhyfeiriadur %s"
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "methodd fdisk gyda cod gadael %d neu arwydd %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "gwall dadosod %s: %s"
@@ -2236,67 +2136,321 @@ msgstr "gyda /usr"
msgid "server"
msgstr "Gwasanaethwr"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Does dim modd defnyddio JFS ar rhaniadau llai na 16MB"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Does dim modd defnyddio ReiserFS ar gyfer rhaniadau llai na 32MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Rjhaid i bwyntiau gosod gynnwys / arweiniol"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Mae yna eisoes raniad gyda pwynt gosod %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Does dim modd defnyddio Cyfrol Rhesymegol LVM ar gyfer pwynt gosod %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Dyai'r cyfeiriadur aros o fewn y system ffeilio gwraidd"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Mae angen gwir system ffeilio (ext2, reiserfs) ar gyfer y pwynt gosod\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Does dim modd defnyddio Cyfrol Rhesymegol LVM ar gyfer pwynt gosod %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "Nid oes digon o le ar gyfer awtoddynodi"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr "Dim i'w wneud"
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Gwall wrth agos %s ar gyfer ysgrifennu %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Digwyddodd gwall - ni chanfyddwyd dyfeisiadau dilys i greu systemau ffeil "
"arnynt. Gwiriwch eich caledwedd am ffynhonell yr anhawster."
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Does gennych chi ddim rhaniadau!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Defnyddio awto ganfod"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Generig"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Cof Cerdyn (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "gosodiad llwyth"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Newid y math"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Gadael"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Cymorth"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Cymorth"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Cymorth/_Ynghylch..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Llygoden"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Cof Cerdyn (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Diddymu"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Llygoden"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Disgrifiad"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Dilysu"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Dewiswch ffeil"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Dyfais mynedfa"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 fotwm"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Canfod disg caled"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Gweler gwyboadeth am galedwedd"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Dangos gwybodaeth"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Ffurfweddu llygoden"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "canfyddwyd ar borth %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Arhoswch"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d eiliad"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Tynnu argraffydd \"%s\"..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Atoholi"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2310,7 +2464,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2452,9 +2606,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2795,7 +2948,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2807,9 +2960,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2849,6 +3001,7 @@ msgstr ""
"angen ei fformatio gan y bydd DrakX yn ailysgrifennu'r holl ddisg."
#: ../../help.pm_.c:280
+#, fuzzy
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -2883,21 +3036,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2913,9 +3065,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Yn awr mae angen i chi ddewis lle ar eich disg caled i osod eich\n"
"system weithredu Linux Mandrake. Os yw eich disg caled yn wag neu\n"
@@ -3007,9 +3159,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3182,6 +3333,7 @@ msgstr ""
"Os nad ydych yn siwr beth i'w ddewis, dewiswch y rhagosodedig."
#: ../../help.pm_.c:442
+#, fuzzy
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"
@@ -3203,38 +3355,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3403,6 +3549,7 @@ msgid "Please be patient. This operation can take several minutes."
msgstr "Amynedd... Gall y weithred hon gymryd rhai munudau."
#: ../../help.pm_.c:547
+#, fuzzy
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
"installation or if you want to have greater control (\"Expert\"). You can\n"
@@ -3413,11 +3560,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3474,7 +3621,7 @@ msgstr ""
"oes gennych wybodaeth drylwyr o GNU/Linux, felly peidiwch â dewis hwn os\n"
" nad ydych yn gwybod beth rydych yn ei wneud."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3505,7 +3652,7 @@ msgstr ""
" cynnal.\n"
" "
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3534,7 +3681,7 @@ msgstr ""
"Sylwer bod modd gosod myw nag un iaith. Unwaith i chi ddewis unrhyw \n"
"leoleiddiad ychwanegol cliciwch y botwm \"Iawn\" i barhau."
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3561,7 +3708,7 @@ msgstr ""
"fod y gosodiadau'n gweithio. Os nad yw'r llygoden yn gweithio'n iawn pwyswch "
"ar y bylchwr neu [Return] i \"Dileu\" a dewis eto."
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3570,23 +3717,24 @@ msgstr ""
"yn\n"
"\"ttyS0\" yn GNU/Linux, e.e."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
+#, fuzzy
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3651,7 +3799,8 @@ msgstr ""
"weinyddu,\n"
" byddwch angen dewis \"Ffeiliau lleol\" ar gyfer dilysu."
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
+#, fuzzy
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3673,7 +3822,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3681,7 +3830,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3760,7 +3909,7 @@ msgstr ""
"\"Ychwanegu\" i greu enw newydd; a \"Gorffen\" i fynd ymlaen i'r cam nesaf "
"o'r gosod."
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3785,7 +3934,7 @@ msgstr ""
"disg\n"
" cychwyn ar gyfer y systemau gweithredu rheini!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3798,29 +3947,29 @@ msgstr ""
"Os nad ydych yn gwybod yn union beth rydych yn ei wneud, dewiswch \"First\n"
"sector of drive (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
+#, fuzzy
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3856,7 +4005,8 @@ msgstr ""
"gyffredinol, mae CUPS yn well am ei fod yn syml ac yn well wrth weithio ar "
"draws rhwydwaith."
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
+#, fuzzy
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3881,7 +4031,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"Mae DrakX yn canfod unrhyw ddyfais IDE sydd ar eich cyfrifiadur. Bydd yn\n"
@@ -3916,7 +4066,8 @@ msgstr ""
"(os\n"
" ydych wedi defnyddio'r caledwedd gyda Windows ar eich system)."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
+#, fuzzy
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3926,9 +4077,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3940,7 +4090,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" 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"
@@ -4018,7 +4168,8 @@ msgstr ""
"chi\n"
" bwyso ar [Tab] i weld dewisiadau'r cychwyn."
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
+#, fuzzy
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -4045,9 +4196,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -4090,10 +4240,11 @@ msgstr ""
" * System Weithredu Rhagosodedig: mae modd dewis pa system weithredu fydd\n"
"yn cychwyn drwy ragosodiad pan ddaw'r Open Firmware i ben."
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
+#, fuzzy
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -4101,12 +4252,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -4156,7 +4306,7 @@ msgstr ""
" yn cael ei ddangos yma. Mae modd clicio ar y botwm i newid y paramedrau\n"
" cysylltiedig."
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4166,7 +4316,7 @@ msgstr ""
"Mandrake Linux newydd. Byddwch ofalus, bydd yr holl ddata sydd arno'n\n"
"cael ei ddileu ac ni fydd modd ei adfer!"
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4184,7 +4334,7 @@ msgstr ""
"Cliciwch \" Diddymu\" i ddiddymu'r weithred hon heb golli unrhyw ddata a "
"rhaniadau sy'n bresennol ar y ddisg galed."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4195,12 +4345,12 @@ msgstr ""
"(mae ffeil %s ar goll), mae hyn yn golygu, fel arfer, nad yw eich disg "
"cychwyn yn cydweddu gyda'r cyfrwng Gosod (crëwch ddisg cychwyn meddal newydd)"
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr "Rhaid fformatio %s"
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4223,20 +4373,20 @@ msgstr ""
"\n"
"Ydych chi wir eisiau gosod y gwasanaethwyr hyn?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "Methu defnyddio darlledu heb parth NIS"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Rhowch ddisg meddal wedi ei fformatio i FAT yng ngyrrwr %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Nid yw 'r disg meddal hwn wedi ei fformatio i FAT"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4244,7 +4394,7 @@ msgstr ""
"I ddefnyddio'r dewis o becynnau wedi eu cadw, cychwynnwch y gosodiad gyda "
"``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Gwall wrth ddarllen ffeil %s"
@@ -4274,7 +4424,7 @@ msgstr "Rhaid cael rhaniad cyfnewid"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -4282,59 +4432,59 @@ msgstr ""
"\n"
"Parhau beth bynnag?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Rhaid bod gennych raniad FAT wedi ei osod yn /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Defnyddiwch le gwag"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Nid oes digon o le i ddynodi rhaniadau newydd"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Defnyddiwch y rhaniadau cyfredol"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Nid oes rhaniad cyfredol i'w ddefnyddio"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Defnyddiwch rhaniad Windows ar gyfer cylch-ol"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Pa raniad hoffech chi ei ddefnyddio ar gyfer Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Dewiswch y maint"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Maint rhaniad gwraidd mewn MB :"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Maint rhaniad cyfnewid mewn MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Defnyddiwch y lle gwag ar raniad Windows"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Pa raniad ydych chi am newid ei faint?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Mesur ffiniau system ffeilio Windows"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4343,11 +4493,14 @@ msgstr ""
"Nid yw'r newidiwr maint FAT yn medru trin eich rhaniad.\n"
"digwyddodd y gwall canlynol: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr "Mae eich rhaniad Windows yn rhy ysgyriog, rhedwch \"defrag\" yn gyntaf"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -4367,54 +4520,54 @@ msgstr ""
"Dylech hefyd wneud copi wrth gefn o'ch data.Pan rydych yn siwr, cliciwch "
"Iawn."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Pa faint ydych am ei gadw ar gyfer Windows ar"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "rhaniad %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Methodd newid maint FAT: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Nid oes rhaniadau FAT i newid eu maint neu i'w defnyddio fel cylch-ôl (neu "
"nad oes digon o le ar ôl)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Dileu'r ddisg gyfan"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Tynnu Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Mae gennych fwy nag un disg caled, ar ba un ydych am osod linux?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Bydd pob rhaniad a'u data yn cael ei ddileu ar yrrwr %s"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Rhannu disg unigol"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Defnyddiwch fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4423,11 +4576,11 @@ msgstr ""
"Medrwch rhannu %s\n"
"Wedi gorffen, peidiwch anghofio cadw gyda 'w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Does gennych ddim digon o le rhydd ar eich rhaniad Windows"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Methu canfod lle ar gyfer gosod"
@@ -4435,16 +4588,16 @@ msgstr "Methu canfod lle ar gyfer gosod"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Daeth dewin Rhannu DrakX o hyd i'r atebion canlynol:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Methodd rhannu: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Cychwyn y rhwydwaith"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Cau'r rhwydwaith"
@@ -4456,12 +4609,12 @@ msgstr ""
"Digwyddodd gwall ond wn i ddim sut i ddelio ag ef yn dwt.\n"
"Mae'n beryglus i barhau."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Pwynt gosod dyblyg %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4473,12 +4626,12 @@ msgstr ""
"Gwiriwch y CD-ROM ar gyfrifiadur wedi ei osod gan ddefnyddio \"rpm -qpl "
"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Croeso i %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Does dim gyrrwr disg meddal ar gael"
@@ -4488,9 +4641,9 @@ msgstr "Does dim gyrrwr disg meddal ar gael"
msgid "Entering step `%s'\n"
msgstr "Cychwyn cam '%s\"\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4500,198 +4653,152 @@ msgstr ""
"testunol. I wneud hynny, gwasgwch F1 wrth gychwyn ar y CD-ROM ac yna rhoi "
"'text'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Gosod Dosbarth"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr "Dewiswch un o'r dosbarthiadau canlynol o osodiad::"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Cyfanswm maint y grwpiau rydych wedi eu dewis yw tua %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Os hoffech chi osod llai na'r maint hwn\n"
-"dewiswch canran y pecynnau i'w gosod.\n"
-"\n"
-"Dim ond y pecynnau pwysicaf fydd yn cael eu gosod gyda chanran\n"
-"isel; tra bydd canran o 100% yn llwytho'r holl becynnau."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Dim ond ar gyfer %d%% o'r pecynnau hyn mae gennych le.\n"
-"\n"
-"Os hoffech osod llai na hyn,\n"
-"dewiswch canran y pecynnau rydych am eu gosod.\n"
-"Dim ond y pecynnau pwysicaf fydd yn cael eu gosod gyda chanran\n"
-"isel; tra bydd canran o %d%% yn llwytho'r gymaint o becynnau ag\n"
-"y mae modd."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Dydd modd eu dewis yn fwy penodol yn y cam nesaf."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Cyfanswm y pecynnau i'w gosod"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Dewis y Grwp Pecyn"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Dewis pecynnau unigol."
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Cyfanswm maint: %d/%d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Pecyn gwallus"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Enw: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Fersiwn: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Maint: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Pwysigrwydd: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "Nid oes modd i chi ddewis y pecyn hwn - does dim lle ar ol i'w osod"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Mae'r pecynnau canlynol i'w gosod"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Bydd y pecynnau canlynol yn cael eu tynnu"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Does dim modd i chi ddewis/dad-ddewis y pecyn"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Mae hwn yn becyn hanfodol, does dim modd ei ddad-ddewis"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Does dim mod dad-ddewis y pecyn, mae wedi ei osod yn barod"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Rhaid i'r pecyn gael ei uwchraddio\n"
"Ydych chi'n siwr eich bod am ei ddad-ddewis?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Does dim mod dad-ddewis y pecyn hwn. Rhaid ei ddiweddaru"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Dangoswch y pecynnau dewis awtomatig"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Gosodiad"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "LLwytho/Cadw ar ddisg meddal"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "Diweddaru'r dewis pecynnau"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "Gosodiad lleiaf"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Dewiswch y pecynnau hoffech chi eu gosod"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Gosod"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Amcangyfrif"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Amser yn weddill"
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Arhoswch, paratoi'r gosodiad"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d pecyn"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Gosod pecynnau %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Derbyn"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Gwrthod"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4705,17 +4812,17 @@ msgstr ""
"Rhowch yr CD-ROM sydd wedi ei labeli \"%s\" yn eich gyrrwr a chlicio Iawn\n"
"Os nad yw gennych, cliciwch Dileu i osgoi gosod o'r CD-ROM hwn."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Mynd yn ein blaen beth bynnag?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Roedd gwall wrth drefnu pecynnau"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Digwyddodd gwall wrth osod pecyn"
@@ -4789,11 +4896,11 @@ msgstr "Digwyddodd gwall"
msgid "Do you really want to leave the installation?"
msgstr "Ydych chi wir eisiau gadael y gosodiad?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Cytundeb trwyddedu"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4808,7 +4915,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -5026,109 +5133,113 @@ msgstr ""
"Barn, Paris - Ffrainc. Am unrhyw gwestiwn ynghylch yddogfen hon cysylltwch â "
"MandrakeSoft S.A. \n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Allweddell"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "Dewiswch gynllun eich alweddell"
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Dyma restr lawn o'r allweddellau ar gael"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Pa ddosbarth o osodiad ydych chi ei eisiau?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Gosod/Diweddaru"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Ydi hwn yn osodiad neu diweddariad?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Argymhellwyd"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Arbennigwr"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "Diweddaru"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "Diweddaru'r pecynnau'n unig"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Dewiswch math eich llygoden"
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Porth Llygoden"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Dewiswch ba borth cyfresol mae eich llygoden wedi cysylltu iddi"
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Efelychiad botymau"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Efelychiad Botwm 2"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Efelychiad Botwm 3"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Ffurfweddu cardiau PCMCIA..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Ffurfweddu IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "dim rhaniadau ar gael"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Sganio rhaniadau i ganfod pwyntiau gosod"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Dewiswch y pwyntiau gosod"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -5140,7 +5251,7 @@ msgstr ""
"\n"
"Ydych chi'n cytuno i golli'r holl raniadau?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -5148,7 +5259,7 @@ msgstr ""
"Methodd DrakX a darllen y tabl rhaniad yn gywir.\n"
"Mae'n beryglus parhau!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -5156,76 +5267,79 @@ msgstr ""
"Nid oes lle rhydd ar gyfer yr ymlwythwr 1MB! Bydd y gosodiad yn parhau, ond "
"i gychwyn y system bydd rhaid i chi greu rhaniad ymlwythwr yn DiskDrake"
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr "Ni chanfyddwyd rhaniad gwraidd i wneud diweddariad"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Rhaniad Gwraidd"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Beth yw'r rhaniad gwraidd (/) ar eich system?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Bydd angen i chi ail gychwyn cyn i'r newidiadau yn eich tabl rhaniad ddigwydd"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Dewiswch y rhaniadau rydych am eu fformatio"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Gwirio blociau gwallus?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Yn fformatio rhaniadau"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Creu a fformatio ffeil %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Dim digon o le cyfnewid i gyflawni'r gosodiad, ychwanegwch rhagor"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Chwilio am y pecynnau sydd ar gael"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
+msgstr "Chwilio am y pecynnau sydd ar gael"
+
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Canfod pecynnau i'w uwchraddio"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Does dim mod dad-ddewis y pecyn, mae wedi ei osod yn barod"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Nid oes gan eich system ddigon o le ar ôl ar gyfer gosodiad neu uwchraddiad "
"(%d> %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Cwblhawyd (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Lleiafswm (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Argymhellwyd (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5233,35 +5347,35 @@ msgstr ""
"Dewiswch llwytho neu ddewis cadw pecyn ar ddisg meddal.\n"
"Mae'r fformat yr un ar ddisgiau meddal wedi eu cynhyrchu drwy auto_install."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Llwytho o o ddisg meddal"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Llwytho o ddisg meddal"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Dewis pecynnau"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "Rhowch ddisg meddal yn cynnwys dewis pecynnau yn y peiriant"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Cadw ar ddisg meddal"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Mae'r maint ddewiswyd yn fwy na'r lle ar gael"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr "Math o osodiad"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5269,19 +5383,19 @@ msgstr ""
"Nid ydych wedi dewis unrhyw grwpiau o becynnau.\n"
"Dewiswch y gosodiad lleiaf rydych ei eisiau"
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "Gyda X"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr "Gyda dogfennaethelfennol (argymhellir!)"
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr "Gosodiad bychan iawn (yn arbennig dim urpmi)"
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5291,16 +5405,16 @@ msgstr ""
"Os nad oes gennych un ohonynt, Cliciwch Diddymu.\n"
"Os mae dim ond rhai CDau sydd ar goll, yna cliciwch Iawn."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom wedi ei labelu \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Paratoi'r gosodiad"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -5309,23 +5423,23 @@ msgstr ""
"Gosod pecyn %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Ffurfweddiad ôl osod"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Mewnosodwch y disg meddal Cychwyn ddefnyddiwyd yn gyrrwr %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Rhowch y disg meddal Diweddaru Modiwlau yng ngyrrwr %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5398,13 +5512,15 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
+#, fuzzy
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
@@ -5416,147 +5532,177 @@ msgstr ""
"\n"
"Ydych chi am osod y diweddariadau?"
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Cysylltu â'safle Mandrake Linux i estyn rhestr o'r drychau sydd ar gael"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Dewiswch ddrych lle mae modd estyn y pecynnau"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Cysylltu â'r drych i estyn y rhestr o becynnau sydd ar gael"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Pa un yw eich parth amser?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Cloc caledwedd wedi ei osod i GMT"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Cydweddi amser awtomatig (defnyddio NTP)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "Gweinydd NTP"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Gwasanaethwr CUPS pell"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Nid oes argraffydd"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
msgstr "A oes gennych gerdyn sain ISA?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr "Rhedwch \"sndconfig\" wedi'r gosodiad i ffurfweddu'ch cerdyn sain"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Heb ganfod cerdyn sain. Ceisiwch \"harddrake\" wedi'r gosodiad"
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Crynodeb"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Llygoden"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Cylchfa amser"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Argraffydd"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "Cerdyn ISDN"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Cerdyn sain"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "Cerdyn Teledu"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Windows (FAT32)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Ffeiliau lleol"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Gosod cyfrinair gwraidd"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Dim cyfrinair"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr "Mae'r cyfrinair yn rhy syml ( rhaid iddo fod o leiaf %d nod o hyd)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Dilysu"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "Dilysu LDAP"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "Sail dn LDAP"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "Gwasanaethwr LDAP"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "Dilysu LDAP"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "Parth NIS"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "Gwasanaethwr NIS"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Dilysu LDAP"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Estyn Ffontiau Windows"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "Gweinydd NTP"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -5587,19 +5733,19 @@ msgstr ""
"gyrrwr\n"
" cyntaf a chliciwch \"Iawn\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Gyrrwr disg meddal cyntaf"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Ail ddisg meddal"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Hepgor"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5624,7 +5770,7 @@ msgstr ""
"greu disg cychwyn ar gyfer eich system?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5638,28 +5784,28 @@ msgstr ""
"bydd creu disg cychwyn ar ddisg meddal 1.44Mb'n debygol o fethu,\n"
"oherwydd mae XFS yn gofyn am yrrwr mawr iawn)."
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Nid oes gyrrwr disg meddal ar gael"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Dewiswch y gyrrwr disg meddal i'w ddefnyddio i greu disg cychwyn"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
msgstr "Rhowch ddisg meddal yn %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Creu disg cychwyn"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Paratoi llwythwr cychwyn"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5673,11 +5819,11 @@ msgstr ""
"rhaid defnyddio BootX i gychwyn\n"
"eich peiriant."
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Ydych chi eisiau defnyddio aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5685,15 +5831,15 @@ msgstr ""
"Gwall gosod aboot, \n"
"ceisiwch orfodi gosodiad hyd yn oed os yw hynny'n dinistrio'r rhaniad cyntaf?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Gosod llwythwr cychwyn"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Methodd gosod llwythwr cychwyn. Digwyddodd y gwall canlynol:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5711,18 +5857,17 @@ msgstr ""
" Yna teipiwch: shut-down\n"
"Wrth gychwyn eto dylech weld anogwr y llwythwr cychwyn."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Rhowch ddisg meddal yng ngyrrwr %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Creu disg meddal awto gosod"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5732,7 +5877,8 @@ msgstr ""
"\n"
"Ydych chi wir eisiau gorffen?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5743,7 +5889,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5757,17 +5903,22 @@ msgstr ""
"Linux, cysylltwch a'r atodiad, sydd i'w gael yn:\n"
"\n"
"\n"
-"http://www.mandrakelinux.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Mae gwybodaeth ar ffurfweddu eich system ar gael ym mhenawdau ôl osod\n"
"yr Official Mandrake Linux User's Guide."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+#, fuzzy
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakesoft.com/sales/contact"
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Creu disg meddal awto gosod"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5782,15 +5933,15 @@ msgstr ""
"\n"
"Efallai byddai'n well gennych ai osod y gosodiad.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Awtomeiddwyd"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Ail chwarae"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Cadw'r dewis becynnau"
@@ -5817,44 +5968,24 @@ msgstr "consolehelper ar goll"
msgid "Choose a file"
msgstr "Dewis ffeil"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Uwch"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr "Elfennol"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Arhoswch"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Gwybodaeth"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Estyn y goeden"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Cau'r goeden"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Newid rhwng gwastad a'r grwp wedi ei ddidoli"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Dewis gwael, ceisiwch eto\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Eich dewis? (rhagosodedig %s)"
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -5863,31 +5994,35 @@ msgstr ""
"Gwybodaeth i'w gyflawyno:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Eich dewis? (0/1, rhagosodedig %s)"
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "Botwm '%s'.%s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+msgid "Do you want to click on this button?"
msgstr "Ydych chi eisiau clicio ar y botwm hwn?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Eich dewis? (rhagosodedig `%s'%s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Mae yna lawer i ddewis o (%s).\n"
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -5897,7 +6032,7 @@ msgstr ""
"neu wasgwch Enter i barhau.\n"
"Eich dewis?"
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -5906,327 +6041,327 @@ msgstr ""
"=>Hysbysiad, mae label wedi newid:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr "Ail-gyflwyno"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Tsiec (QWERTY)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Almaeneg"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Spaenaidd"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Ffinaidd"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Ffrengig"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norwyaidd"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Pwylaidd"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Rwsiaidd"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Swedaidd"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Bysellfwrdd DG"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Bysellfwrdd UDA"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Albaniaidd"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armenaidd (hen)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armenaidd (teipiadur)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armenaidd (ffonetig)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidjan (lladin)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgaidd"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr "Bwlgaraidd (ffonetig)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "Bwlgaraidd (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brasilaidd (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Belarusaidd"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Swisaidd (gosodiad Almaenig)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Swisaidd (gosodiad Ffrengig)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Tsiec (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Almaenaidd (dim bysellau marw)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Danaidd"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (UDA)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norwyaidd)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Swedaidd)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estonaidd"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgaidd (gosodiad \"Rwsiaidd\")"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgaidd (gosodiad \"Lladinaidd\")"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Groegaidd"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Hwngaraidd"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Croataidd"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Israelaidd"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Israelaidd (Ffonetig)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iranaidd"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Eislandaidd"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Eidalaidd"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Siapaëaidd 106 bysell"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Bysellfwrdd Coreaidd"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Lladin America"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Lithuenaidd AZERTY (hen)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Lithuenaidd AZERTY (newydd)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lithuenaidd \"rhes rhif\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lithuenaidd \"ffonetig\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "Latfiaidd"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Macedonaidd"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Isalmaenaidd"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Pwylaidd (gosodiad qwerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Pwylaidd (gosodiad qwerty)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portiwgalaidd"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Canada (Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Romanaidd (qwertz)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Romanaidd (qwerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Rwsiaidd (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slfenaidd"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slofacaidd (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovacaidd (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "Serbaidd (cyrilig)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr "Tamil"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Bysellfwrdd Thai"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Bysellfwrdd Tajig"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Twrcaidd (model traddodiadol \"F\")"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Twrcaidd (model modern \"Q\")"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Wcranaidd"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Bysellfwrdd UDA (rhyngwladol)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Fietnamëaidd \"rhes rhifol\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Iwgoslafaidd (lladin)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr "Bysell Alt dde"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr "Y ddwy fysell Shift gyda'i gilydd"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr "Bysellau Control a Shift gyda'i gilydd"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr "Bysell CapsLock"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr "Bysellau Ctrl ac Alt gyda'i gilydd"
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr "Bysellau Alt a Shift gyda'i gilydd"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr "Bysell \"Dewislen\""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr "Bysell \"Windows\" chwith"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr "Bysell \"Windows\" de"
@@ -6239,7 +6374,31 @@ msgstr "Gosodiadau cylch %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Tynnu'r cyfrolau rhesymegol yn gyntaf\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Rhif ffôn"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Fformatio rhaniadau"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -6282,10 +6441,6 @@ msgstr "1 botwm"
msgid "Generic 2 Button Mouse"
msgstr "Llygoden 2 Fotwm Generig"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Generig"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Olwyn"
@@ -6350,38 +6505,54 @@ msgstr "dim"
msgid "No mouse"
msgstr "Dim llygoden"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Profwch y llygoden"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "I ysgogi'r llygoden,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "SYMUDWCH YR OLWYN!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Gorffen"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Nesaf ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Cynt"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Ydi hyn yn gywir?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Gwybodaeth"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Estyn y goeden"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Cau'r goeden"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Newid rhwng gwastad a'r grwp wedi ei ddidoli"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Cysylltu â'r We"
@@ -6428,7 +6599,7 @@ msgstr ""
"Nid oes addasydd rhwydwaith ethernet wedi ei ganfod ar eich system.\n"
"Nid wyf yn medru gosod y math yma o gysylltiad."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Dewiswch rhag wyneb y rhwydwaith"
@@ -6442,7 +6613,7 @@ msgstr ""
msgid "no network card found"
msgstr "heb ganfod cerdyn rhwydwaith"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Ffurfweddu'r rhwydwaith"
@@ -6458,15 +6629,15 @@ msgstr ""
"yr enw gwesteiwr i weithio. Dylai eich enw gwesteiwr\n"
"fod yn enw cymhwysol llawn megis \"fymlwch.fynesg.fyco.com\""
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Enw gwesteiwr"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Dewin Ffurfweddu'r Rhwydwaith"
@@ -6522,7 +6693,7 @@ msgstr "Ffurfweddiad ISDN"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Dewiswch eich darparwr.\n"
"Os nad yw ar eich rhestr, dewiswch Heb ei Restri"
@@ -6541,14 +6712,14 @@ msgstr "Protocol ar gyfer gweddill y byd"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Protocol ar gyfer gweddill y byd\n"
" dim D-Channel (llinell les)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Pa brotocol ydych chi eisiau ei ddefnyddio?"
#: ../../network/isdn.pm_.c:199
@@ -6572,7 +6743,8 @@ 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"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Os oes gennych gerdyn, dylai'r gwerthoedd ar y sgrin nesaf fod yn gywir.\n"
@@ -6588,13 +6760,13 @@ msgid "Continue"
msgstr "Parhau"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Pa un yw eich cerdyn IDSN?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Rwyf wedi canfod cerdyn IDSN, ond nid wyf yn gwybod pa fath. Dewiswch un "
"cerdyn PCI ar y sgrin nesaf."
@@ -6611,47 +6783,47 @@ msgstr "Dewiswch ba borth cyfresol mae eich modem wedi cysylltu iddo."
msgid "Dialup options"
msgstr "Dewisiadau cyswllt ffôn"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Enw'r cysylltiad"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Rhif ffôn"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Dynodiad Mewngofnodi"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Seiliedig ar sgript"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Seiliedig ar derfynnell"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Enw parth"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Gwasanaethwr DNS Cyntaf (dewisol)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Ail Wasanaethwr DNS (dewisol)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6659,7 +6831,7 @@ msgstr ""
"\n"
"Medrwch ddatgysylltu neu ailffurfweddu eich cyswllt"
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6667,11 +6839,11 @@ msgstr ""
"\n"
"Medrwch ailffurfweddu eich cysylltiad"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Rydych wedi eich cysylltu â'r rhyngrwyd."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6679,32 +6851,32 @@ msgstr ""
"\n"
"Medrwch gysylltu â'r Rhyngrwyd neu ailffurfweddu eich cyswllt"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Nid ydych wedi eich cysylltu â'r rhyngrwyd."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Cysylltu"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Dadgysylltu"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr "Ffurfweddu'r gysylltiad"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Cysylltiad â'r rhyngrwyd a'i ffurfweddiad "
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Rydym am ffurfweddu cysylltiad %s"
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6723,12 +6895,12 @@ msgstr ""
"\n"
"Pwyswch Iawn i barhau."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Ffurfweddiad y Rhwydwaith"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6740,9 +6912,9 @@ msgstr ""
"Cliciwch Iawn i gadw eich ffurfweddiad, neu ddileu i ail ffurfweddi eich "
"cysylltiad Rhyngrwyd a Rhwydwaith.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"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"
@@ -6752,66 +6924,72 @@ msgstr ""
"Rydym ar fin ffurfweddi eich cysylltiad rhyngrwyd/rhwydwaith.\n"
"Os nad ydych am ddefnyddio awto ganfod, dad-diciwch y blwch dewis.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Dewiswch broffil i'w ffurfweddu"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Defnyddio awto ganfod"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Modd Uwch"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Canfod dyfeisiadau..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Cysylltiad modem arferol"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "canfyddwyd ar borth %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "Cysylltiad ISDN"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "canfyddwyd %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "Cysylltiad ADSL"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "canfyddwyd ar rhyngwyneb %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Cysylltiad cebl"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "canfyddwyd cysylltiad cebl"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "cysylltiad LAN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "cerdyn ethernet wedi ei ganfod"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Dewiiwch y math o gysylltiad rydych am ei ffurfweddu"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6821,23 +6999,23 @@ msgstr ""
"Dewiswch ba un rydych am ei ddefnyddio.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Cysylltiad â'r Rhyngrwyd"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Ydych chi eisiau agor y cysylltiad wrth gychwyn y cyfrifiadur?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Ffurfweddiad y rhwydwaith"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr "Rhaid ail gychwyn y rhwydwaith"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6848,7 +7026,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6858,7 +7036,7 @@ msgstr ""
"Bydd y ffurfweddiad yn cael ei osod ar eich system\n"
"\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6867,19 +7045,19 @@ msgstr ""
"amgylchedd X i osgoi unrhyw anawsterau'n perthyn i enwau gwesteiwr.\n"
"."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
"Digwyddod anhawsterau yn ystod y ffurfweddiad.\n"
"Profwch eich cysylltiad drwy net_monitor neu mcc. Os nad yw eich cysylltiad "
"yn gweithio, efallai y byddwch eisiau ailgychwyn y ffurfweddiad"
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"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."
@@ -6889,7 +7067,7 @@ msgstr ""
"Derbyniwch y cynnig i gadw'r ddyfais wedi ei ffurfweddi.\n"
"Bydd newid y meysydd islaw'n newid y ffurfweddiad."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6899,38 +7077,43 @@ msgstr ""
"Dylai pob eitem ei roi fel cyfeiriad IP nodiant collnod degymol\n"
"(e.e.1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Ffurfweddu dyfais rhwydwaith %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (gyrrwr %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "Cyfeiriad IP"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "IP awtomatig"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Cychwyn y peiriant"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "dylai cyfeiriad IP fod mewn fformat 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6942,64 +7125,64 @@ msgstr ""
"megis \"fymlwch.fynesg.fyngho.com\".\n"
"Medrwch hefyd gynnig eich cyfeiriad IP os oes gennych un"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "Gwasanaethwr DNS"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Mynedfa (e.e. %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Dyfais mynedfa"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Ffurfweddiad dirprwyon"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "Dirprwy HTTP"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "Dirprwy FTP"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Dilynnwch cyfernod cerdyn rhwydwaith (defnyddiol ar gyfer gliniadur)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Dylai dirprwyon fod yn gyfanrif!"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Dylai rhif porth fod yn ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Ffurfweddiad rhyngrwyd"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Hoffech chi gysylltu â'r Rhyngrwyd nawr?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Profi eich cysylltiad..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Mae'r system wedi cysylltu â'r Rhyngrwyd."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Am resymau diogelwch, bydd yn cael ei ddatgysylltu."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -7007,111 +7190,116 @@ msgstr ""
"Nid yw'n ymddangos i'ch system gysylltu â'r rhyngrwyd.\n"
"Ailffurfweddwch eich cysylltiad."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Ffurfweddiad y Cysylltiad"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Llanwch neu diciwch y maes islaw"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ y cerdyn"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Cof Cerdyn (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "IO'r Cerdyn"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "IO_O y cerdyn"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "IO_1 y cerdyn"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Eich rhif ffôn personol"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Enw darparwr (eng. darparwr.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Rhif ffôn y darparwr"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Dns 1 y darparwr (dewisol)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Dns 2 y darparwr (dewisol)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Dewiswch eich gwlad"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Modd deialu"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Cyflymder y cysylltiad"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "Oediad yn y cysylltiad (mewn eiliadau)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Mewngofnod Cyfrif (enw defnyddiwr)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Cyfrinair y Cyfrif"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "maethodd y gosodiad"
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Nid yw'r rhainad estynedig yncael ei gynnal ay y platfform hwn"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Mae gennych dwll yn nhabl eich rhaniad ond nid wyf yn medru ei ddefnyddio\n"
"Yr unig ateb yw i symud eich rhaniadau cynradd fel bo'r twll nesaf at y "
"rhaniadau estynedig "
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Methodd adfer o ffeil %s: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Ffeil wrth gefn gwallus"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Gwall wrth ysgrifennu i ffeil %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7121,186 +7309,186 @@ msgstr ""
"Mae prawf i fesur ei gyfanrwydd wedi methu. \n"
"Nid oes gwerth ysgrifennu i'r ddisg"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "rhaid cael"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "pwysig"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "hyfryd iawn"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "hyfryd"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "efallai"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Common Unix Printing System"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR New Generation"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Line Printer Daemon"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Argraffydd lleol"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Argraffydd pell"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Argraffydd ar wasanaethwr CUPS pell"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Argraffydd ar wasanaethwr lpd pell"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Argraffydd rhwydwaith (TCP/Soced)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Argraffydd ar wasanaethwr SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Argraffydd ar wasanaethwr NetWare"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Rhowch URI dyfais argraffydd"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "Peipio'r gwaith i orchymyn"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Model anhysbys"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "Argraffyddion Lleol"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "Argraffyddion Pell"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr " ar borth paralel \\/\"%s"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", argraffydd USB \\/\"%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", dyfais amlbwrpas ar borth paralel \\/\"%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ", dyfais amlbwrpas ar USB"
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ", dyfais amlbwrpas ar HP JetDirect"
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ",dyfais amlbwrpas"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, c-format
msgid ", printing to %s"
msgstr ", argraffu i %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr "ar wasanaethwr LPD \"%s\", argraffydd \"%s\""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", gwesteiwr TCP/IP \"%s\", porth %s"
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr "ar wasanaethwr Windows \"%s\", rhannu \"%s\""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr "ar wasanaethwr Novell \"%s\", argraffydd \"%s\""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ", defnyddio gorchymyn %s"
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr "Argraffydd crai (dim gyrrwr)"
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(ar %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(ar y peiriant hwn)"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Ar wasanaethwr CUPS \"%s\""
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr "(Rhagosodedig)"
@@ -7322,11 +7510,11 @@ msgstr ""
"Nid oes angen ffurfweddu argraffyddion ar wasanaethwyr CUPS pell: byddant yn "
"cael eu canfod yn awtomatig."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
msgid "CUPS configuration"
msgstr "Furfweddiad CUPS"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
msgid "Specify CUPS server"
msgstr "Enwch wasanaethwr CUPS"
@@ -7370,7 +7558,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "Dylai cyfeiriad IP edrych fel 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "Dylai rhif porth fod yn gyfanrif!"
@@ -7378,7 +7566,7 @@ msgstr "Dylai rhif porth fod yn gyfanrif!"
msgid "CUPS server IP"
msgstr "IP gwasanaethwr CUPS"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Porth"
@@ -7386,20 +7574,12 @@ msgstr "Porth"
msgid "Automatic CUPS configuration"
msgstr "Furfweddiad CUPS Awtomatig"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Canfod dyfeisiadau..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Profwch y pyrth"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr "Ychwanegu argraffydd newydd"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7422,13 +7602,13 @@ msgstr ""
"yn rhoi mynediad i'r holl yrwyr argraffyddion sydd ar gael, dewisiadau "
"gyrwyr a mathau o gysylltiadau argraffyddion."
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Argraffydd Lleol"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7459,11 +7639,11 @@ msgstr ""
"awto ganfod. Defnyddiwch \"Modd Arbenigwr\" printdrake pan fyddwch am osod "
"argraffydd pell os nad yw printerdrake yn ei restri'n awtomatig."
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr "Awto ganfod argraffyddion"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7483,11 +7663,11 @@ msgstr ""
"gosodiadau dewis rhagosodedig (mewnflwch papur, ansawdd y printiad,...0, "
"dewiswch \"Argraffydd\" yn adran \"Caledwedd\" Canolfan Rheoli Mandrake."
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr "Awto ganfod Argraffyddion"
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7502,33 +7682,37 @@ msgstr ""
"\n"
"Ydych eisiau i'ch argraffydd gael ei awto ganfod?"
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "Defnyddio awto ganfod"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr "Gosod argraffydd gyda llaw"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Profwch y pyrth"
+
+#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
msgstr "Canfyddwyd %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Argraffydd ar borth paralel \\/\"%s"
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr "Argraffydd USB \\/\"%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
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, ..., "
@@ -7540,11 +7724,11 @@ msgstr ""
"dev/,...., cyfatebol i LPT1:, LPT2,..., argraffydd USB 1af: /dev/usb/lp0, "
"ail argraffydd USB: /dev/usb/lp1,...)."
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
msgstr "Rhaid cynnig enw dyfais neu ffeil!"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
@@ -7552,7 +7736,7 @@ msgstr ""
"Heb ganfood argraffydd lleol!\n"
"\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
@@ -7560,7 +7744,7 @@ msgstr ""
"Dim ond ar ôl cwblhau'r gosodiad mae modd gosod argraffyddion rhwydwaith. "
"Dewiswch \"Caledwedd\" ac yna \"Argraffydd\" yng Nghanolfan Rheoli Mandrake"
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
@@ -7568,7 +7752,7 @@ msgstr ""
"I osod argraffyddion rhwydwaith, cliciwch \"Diddymu\", trowch i \"Modd "
"Arbenigwr\", clicio \"Ychwanegu argraffydd newydd\" eto."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7576,7 +7760,7 @@ msgstr ""
"Cafodd yr argraffydd canlynol ei awto ganfod, os nad hwn yw'r un rydych am "
"ei ffurfweddu, rhowch enw dyfais/enw ffeil ar y llinell mewnbwn."
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7585,7 +7769,7 @@ msgstr ""
"argraffydd rydych am ei osod neu rhowch enw dyfais/ffeil yn y llinell "
"mewnbwn."
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7597,7 +7781,7 @@ msgstr ""
"byddai'n well gennych ffurfweddiad unigryw i'ch argraffydd, cychwynnwch "
"\"Ffurfweddiad gyda Llaw\"."
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7610,7 +7794,7 @@ msgstr ""
"well gennych ffurfweddiad unigryw i'ch argraffydd, cychwynnwch "
"\"Ffurfweddiad gyda Llaw\"."
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7618,11 +7802,11 @@ msgstr ""
"Dewiswch y porth y mae eich argraffydd wedi cysylltu iddo neurhowch enw "
"dyfais/ffeil ar y ninell mewnbwn"
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
msgstr "Dewiswch y porth mae'r argraffydd wedi cysylltu iddo."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7630,52 +7814,65 @@ msgstr ""
" (Pyrth paralel: /dev/lp0, /dev/lp1, ..., yn cyfateb i LPT1:, LPT2:, ..., "
"argraffydd USB cyntaf: /dev/usb/lp0, ail argraffydd USB : /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
msgstr "Rhaid dewis/rhoi argraffydd/dyfais!"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
msgstr "Ffurfweddiad gyda llaw"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
+#, fuzzy
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
"A yw eich argraffydd yn ddyfais amlbwrpas gan HP (OfficeJet, PSC, "
"PhotoSmart LaserJet 1100/1200/1220/3200/3300 gyda sganiwr)"
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
msgstr "Gosod pecynnau HPOJ"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr "Gwirio a ffurfweddu dyfais HPOJ..."
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
msgstr "Gosod pecynnau SANE"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Gosod pecynnau..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr "Sganio eich dyfais HP aml bwrpas"
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+#, fuzzy
+msgid "Photo memory card access on your HP multi-function device"
+msgstr "Sganio eich dyfais HP aml bwrpas"
+
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr "Gwneud porth argraffydd ar gael ar gyfer CUPS"
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr "Darllen cronfa ddata argraffydd..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Dewisiadau Argraffydd lpd Pell"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7683,27 +7880,27 @@ msgstr ""
"I ddefnyddio argraffydd lpd pell, rhaid darparu enw gwesteiwr gwasanaethwr "
"yr argraffydd ac enw'r argraffydd ar y gwasanaethwr hwnnw."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Enw gwesteiwr pell"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Enw'r argraffydd pell"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "Mae enw'r gwesteiwr pell ar goll!"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "Mae enw'r argraffydd pell ar goll!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Dewisiadau Argraffydd SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7716,35 +7913,35 @@ msgstr ""
"rydych am gael mynediad iddo ac unrhyw enw defnyddiwr, cyfrinair a "
"gwybodaeth am grwp gwaith perthynol."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "Gwasanaethwr gwesteiwr SMB"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP Gwasanaethwr SMB"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Rhannu enw"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Grwp gwaith"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "Rhaid rhoi un ai enw'r gwasanaethwr neu IP'r gwasanaethwr!"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "Mae enw rhannu Samba ar goll!"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7768,7 +7965,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7777,7 +7974,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7785,11 +7982,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Dewisiadau Argraffydd NetWare"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
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 "
@@ -7801,27 +7998,27 @@ msgstr ""
"â'r rhes waith argraffu am yr argraffydd rydych am gael mynediad iddo ac "
"unrhyw enw defnyddiwr a chyfrinair perthnasol."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Gwasanaethwr Argraffydd"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Enw Rhes Argraffu"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "Mae enw gwasanaethwr NCP ar goll!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "Mae enw rhes NCP ar goll"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
msgstr "Dewisiadau Argraffydd TCP/Soced"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -7833,19 +8030,19 @@ msgstr ""
"porth, fel rheol, yw 9100, gall amrywio ar wasanaethwyr eraill. Gweler "
"llawlyfr eich caledwedd"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Enw'gwesteiwr yr argraffydd"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "Mae enw'r gwesteiwr argraffu ar goll!"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "URI Dyfais Argraffu"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
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 "
@@ -7855,11 +8052,11 @@ msgstr ""
"gyflawni manylyn un ai CUPS neu Foomatic. Sylwer nad yw pob math o URI cyn "
"cael eu cynnal gan bob sbwlydd ."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "Rhaid cynnig URI dilys!"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -7867,27 +8064,23 @@ msgstr ""
"Mae pob argraffydd angen enw (e.e. \"argraffydd\". Nid oes angen llanw "
"meysydd Disgrifiad a Lleoliad. Lle ar gyfer sylwadau'r defnyddiwr sydd yma."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Enw'r argraffydd"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Disgrifiad"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Lleoliad"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr "Paratoi cronfa ddata argraffydd..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
msgid "Your printer model"
msgstr "Model eich argraffydd"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7913,24 +8106,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
msgid "The model is correct"
msgstr "Mae'r model yn gywir"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
msgid "Select model manually"
msgstr "Dewiswch y model gyda llaw"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Dewis model yr argraffydd"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Pa fath o argraffydd sydd gennych?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7944,7 +8137,7 @@ msgstr ""
"Chwiliwch am y model cywir pan fo'r cyrchwr yn sefyll ar y model anghywir "
"neu ar \"Argraffydd bras\"."
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -7952,11 +8145,11 @@ msgstr ""
"Nid yw eich argraffydd wedi ei rhestri, dewiswch un cyfatebol (gw. llawlyfr "
"eich argraffydd) neu un tebyg."
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "Ffurfweddiad OKI winprinter "
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7973,11 +8166,11 @@ msgstr ""
"brawf. Os na wnewch chi hynny, ni fydd yr argraffydd yn gweithio. Bydd eich "
"gosodiad ynghylch ymath o gysylltiad yn cael ei anwybyddu gan y gyrrwr."
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "Ffurfweddiad inkjet Lexmark"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7988,7 +8181,7 @@ msgstr ""
"argraffyddion lleol, yn unig. Cysylltwch eich argraffydd i borth lleol neu "
"ffurfweddwch ef i'r peiriant mae'n gysylltiedig ag ef."
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -8010,7 +8203,7 @@ msgstr ""
"dudalennau'r alinio'r pen argraffu gyda \"lexmarkmaintain\" a newid "
"gosodiadau aliniad y pen gyda'r rhaglen."
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -8027,22 +8220,22 @@ msgstr ""
"argraffiad ansawdd/cydraniad uchel iawn yn medru arafu'r argraffu'n "
"sylweddol.."
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Rhaid i ddewis %s fod yn gyfanrif"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "Rhaid i ddewis %s fod yn rhif!"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "Dewis %s allan o amrediad!"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8051,11 +8244,11 @@ msgstr ""
"Ydych chi am osod argraffydd (\"%s\")\n"
"fel yr argraffydd rhagosodedig?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "Tudalennau prawf"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8067,39 +8260,39 @@ msgstr ""
"ei argraffu ac ar argraffydd laser heb lawer o gof mae'n bosibl na ddaw o "
"gwbl. Yn y rhan fwyaf o achosion, mae'r prawf tudalen safonol yn ddigonol."
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "Dim tudalennau prawf"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Argraffu"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "Tudalen prawf safonnol"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr "Prawf tudalen arall (Llythyr)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "Prawf tudalen arall (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "Tudalen prawf llun"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
msgstr "Peidiwch argraffu tudalennau prawf"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Argraffu tudalen(nau) prawf..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8114,7 +8307,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8122,15 +8315,15 @@ msgstr ""
"Mae tudalen(nau) prawf wedi eu hanfon at yr argraffydd.\n"
"Gall gymryd amser cyn i'r argraffydd gychwyn.\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr "A weithiodd hwnnw'n iawn?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr "Argraffydd bras"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8143,7 +8336,7 @@ msgstr ""
"\"xpp <file>\" neu \"kprinter <file>\". Mae'r offeryn graffigol yn caniatáu "
"chi ddefnyddio'r argraffydd ac i newid gosodiadau dewis yn hawdd.\n"
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
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 "
@@ -8153,8 +8346,8 @@ msgstr ""
"deialogau argraffu mewn nifer o raglenni, ond yma nid ydynt yn darparu'r "
"enw ffeil am fod y ffeil i'r argraffydd yn cael ei ddarparu gan y rhaglen.\n"
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -8167,11 +8360,11 @@ msgstr ""
"tasg argraffu penodol. Ychwanegwch y gosodiadau angenrheidiol i'r llinell "
"gorchymyn, e.e \"%s <file>\". "
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#, fuzzy, 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\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
"Er mwyn cael gwybodaeth am y dewisiadau sydd ar gael ar gyfer yr argraffydd "
@@ -8179,7 +8372,7 @@ msgstr ""
"dewis argraffu\"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8188,7 +8381,7 @@ msgstr ""
"presennol:\n"
"\n"
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8197,8 +8390,8 @@ msgstr ""
"I argraffu ffeil o'r llinell orchymyn (ffenestr terfynnell) defnyddiwch "
"orchymyn \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8208,7 +8401,7 @@ msgstr ""
"nifer o raglenni. Ond peidiwch â rhoi'r enw ffeil yma oherwydd bod y ffeil "
"i'w argraffu wedi ei ddarparu gan y rhaglen.\n"
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8216,7 +8409,7 @@ msgstr ""
"I edrych ar y rhestr o'r dewisiadau sydd ar gael ar gyfer yr argraffydd "
"cyfredol cliciwch ar fotwm \"Rhestr dewisiadau argraffu\"."
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8225,7 +8418,7 @@ msgstr ""
"I argraffu ffeil o'r llinell orchymyn (ffenestr terfynnell) defnyddiwch y "
"gorchymyn \"%s <file>\" or \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8242,7 +8435,7 @@ msgstr ""
"fydd yn stopio 'r holl waith argraffu'n syth pan fyddwch yn ei glicio. Mae "
"hyn yn ddefnyddiol pan fydd y papur wedi mynd yn sownd, ag ati.\n"
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -8255,38 +8448,49 @@ msgstr ""
"ar gyfer tasg argraffu penodol. Ychwanegwch y gosodiadau angenrheidiol i'r "
"llinell gorchymyn, e.e \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Cau"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Argraffu/Sganio ar \"%s\""
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Argraffu/Sganio ar \"%s\""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Argraffu/Sganio ar \"%s\""
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Argraffu ar argraffydd \"%s\""
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Cau"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "Rhestr ddewis argraffu"
-#: ../../printerdrake.pm_.c:1766
-#, c-format
+#: ../../printerdrake.pm_.c:1802
+#, fuzzy, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
@@ -8300,38 +8504,30 @@ msgstr ""
"\n"
"Peidiwch defnyddio \"scannerdrake\" ar gyfer y ddyfais hon."
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-"Mae eich dyfais aml bwrpas HP wedi cael ei ffurfweddu'n awtomatig i fedru "
-"sganio. Medrwch sganio o'r llinell orchymyn gyda \"ptal-hp %s scan ...\".. "
-"Nid yw sganio drwy gyfrwng rhyng wyneb graffigol na GIMP yn cael ei gynnal "
-"eto ar gyfer eich dyfais. Mae rhagor o wybodaeth i'w gael yn ffeil \"/usr/"
-"share/doc/hpoj-0.8/ptal-hp-scan.html\" ar eich system. Os oes gennych HP "
-"LaserJet 1100 neu 1200 yna dim ond os oes gennych y dewis sganio wedi ei "
-"osod mae modd sganio.\n"
-"Peidiwch defnyddio \"scannerdrake\" ar gyfer y ddyfais hon."
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr "Darllen data argraffydd..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "Trosglwyddo ffurfweddiad yr argraffydd"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8346,7 +8542,7 @@ msgstr ""
"cael eu trosi, ond ni fydd y gwaith argraffu'n cael eu trosi.\n"
"Ni fydd yr holl waith argraffu'n cael eu trosi, am y rhesymau canlynol:\n"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8354,18 +8550,18 @@ msgstr ""
"Nid yw CUPS yn cefnogi argraffyddion ar wasanaethwyr Novell neu "
"argraffyddion sy'n anfon data mewn gorchymyn ffurf -rhydd.\n"
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
"Mae PDQ yn cynnal argraffyddion lleol, LDP pell, a Socket/TCP, yn unig.\n"
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "Nid yw LPD na LPRng yn cynnal argraffyddion IPP.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8373,7 +8569,7 @@ msgstr ""
"Yn ogystal, nid oes modd trosglwyddo rhesi grewyd gan y rhaglen hon na "
"\"foomatic-configure\"."
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8383,7 +8579,7 @@ msgstr ""
"Hefyd nid oes modd trosglwyddo argraffyddion ffurfweddwyd gyda ffeiliau PPD "
"ddarparwyd gan eu gwneuthurwyr na gyrrwyr CUPS brodorol."
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8393,15 +8589,15 @@ msgstr ""
"Nodwch yr argraffydd rydych am ei drosglwddo a chliciwch\n"
"\"Trosglwyddo\"."
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr "Peidio trosglwyddo argraffydd"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr "Trosglwyddo"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8412,12 +8608,12 @@ msgstr ""
"Cliciwch \"Trosglwyddo\" i ysgrifennu drosto.\n"
"Mae modd i chi osod enw newydd arno neu ei hepgor."
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"Dylai enw'r argraffydd gynnwys llythrennau, rhifau a'r tanlinellu, yn unig"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8426,16 +8622,16 @@ msgstr ""
"Mae argraffydd \"%s\" yn bodoli eisoes,\n"
"ydych chi wir eisiau ailysgrifennu ei ffurfweddiad?"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Enw'r argraffydd newydd"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr "Trosglwyddo %s..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8445,29 +8641,29 @@ msgstr ""
"(\"%s\"). A ddylai fod yn argraffydd rhagosodedig y system argraffu newydd %"
"s ?"
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr "Adnewyddu data'r argraffydd..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr "Ffurfweddiad argraffydd pell"
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "Cychwyn y rhwydwaith..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr "Ffurfweddwch y rhwydwaith"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "Nid yw swyddogaethau'r rhwydwaith wedi ei ffurfweddu"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8479,11 +8675,11 @@ msgstr ""
"fynd ymlaen heb ffurfweddiad rhwydwaith, ni bydd modd i chi ddefnyddio'r "
"argraffydd rydych yn ei ffurfweddu ar hyn o bryd. Beth ydych am ei wneud?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr "Mynd yn eich blaen heb ffurfweddu'r rhwydwaith"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8499,7 +8695,7 @@ msgstr ""
"argraffydd, eto gan ddefnyddio Canolfan Rheoli Mandrake, adran \"Caledwedd\"/"
"\"Argraffydd\""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
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 "
@@ -8509,24 +8705,24 @@ msgstr ""
"Gwiriwch eich ffurfweddiad a'ch caledwedd. Yna ceisiwch ail ffurfweddi eich "
"argraffydd."
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr "Ailgychwyn system argraffu..."
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "uchel"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr "Paranoia"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Gosod system argraffu yn lefel diogelwch %s"
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8550,11 +8746,11 @@ msgstr ""
"\n"
"Ydych chi wir eisiau ffurfweddu argraffu ar y peiriant hwn?"
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr "Cychwyn y system argraffu wrth gychwyn y cyfrifiadur"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8576,63 +8772,63 @@ msgstr ""
"\n"
"Ydych chi am i'r cychwyn awtomatig gael ei droi ymlaen eto?"
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr "Gwirio'r meddalwedd sydd wedi ei osod..."
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr "Tynnu LPRng..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr "Tynnu LPD..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "Dewiswch Sbwlydd Argraffydd"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "Pa system argraffu(sbwlydd) ydych chi am ei ddefnyddio?"
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2310
+#, fuzzy, c-format
+msgid "Configuring printer \"%s\"..."
msgstr "Ffurfweddu argraffydd \"%s\" ..."
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
msgstr "Gosod Foomatic..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Dewisiadau argraffydd"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr "Paratoi PrinterDrake..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
msgid "Configuring applications..."
msgstr "Ffurfweddi'u rhaglenni"
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "Hoffech chi ffurfweddu argraffu?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr "System argraffu."
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -8644,7 +8840,7 @@ msgstr ""
"amdano; neu i wneud argraffydd CUPS pell ar gael ar gyfer Star Office/"
"OpenOffice.org."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -8653,29 +8849,33 @@ msgstr ""
"Mae'r argraffyddion canlynol wedi eu ffurfweddi. Cliciwch ar un i newid ei "
"osodiadau; ei wneud yn argraffydd rhagosodedig; i edrych am wybodaeth amdano."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Adnewyddu rhestr argraffyddion (dangos pob argraffydd CUPS pell sydd ar gael)"
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
msgid "Change the printing system"
msgstr "Newidiwch y system argraffu"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Modd Arferol"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Gadael"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr "Ydych chi eisiau ffurfwedu argraffydd arall?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "Newid ffurfweddiad yr argraffydd"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, c-format
msgid ""
"Printer %s\n"
@@ -8684,69 +8884,69 @@ msgstr ""
"Argraffydd %s\n"
"Beth ydych am ei newid ar yr argraffydd hwn?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr "Gwna!!"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "Math o gyswllt argraffydd"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "Enw'r argraffydd, disgrifiad, lleoliad"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr "Gwneuthurwr yr argraffydd, model, gyrrwr"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr "Gwneuthurwr yr argraffydd, model"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr "Gosod yr argraffydd fel y rhagosodedig"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr "Ychwanegwchyr argraffydd hwn i Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr "Tynnwch yr argraffydd hwn o Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr "Argraffu tudalennau prawf"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
msgstr "Gwybod sut i ddefnyddio'r argraffydd"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "Tynnu argraffydd"
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2857
+#, fuzzy, c-format
+msgid "Removing old printer \"%s\"..."
msgstr "Tynnu hen argraffydd \"%s\"..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Argraffydd rhagosodedig"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Mae argraffydd \"%s\" wedi ei osod fel yr argraffydd rhagosodedig."
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr "Ychwanegu argraffydd i Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
@@ -8754,17 +8954,17 @@ msgstr ""
"Mae argraffydd \"%s\" wedi ei ychwanegu'n llwyddiannus i Star Office/"
"OpenOffice.org."
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
"Wedi methu ag ychwanegu argraffydd \"%s\" i Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr "Tynnu'r argraffydd o Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
@@ -8772,19 +8972,19 @@ msgstr ""
"Cafodd argraffydd \"%s\" ei dynnu'n llwyddiannus o Star Office/OpenOffice."
"org."
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr "Methwyd â thynnu argraffydd \"%s\" o Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Ydych chi wir eisiau tynnu argraffydd \"%s\""
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2909
+#, fuzzy, c-format
+msgid "Removing printer \"%s\"..."
msgstr "Tynnu argraffydd \"%s\"..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -8869,24 +9069,63 @@ msgstr "Nid yw'r cyfrineiriau'n cydweddi. Rhowch gynnig arall arni!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Methu ychwanegu rhaniad to_formatted_RAID md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Methu ysgrifenu ffeil %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "methodd mkraid"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "methodd mkraid (efallai bod raidtools ar goll)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Dim digon o raniadau ar gyfer RAID lefel %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Rhaid defnyddio'r lefel hwn a gofal. Mae'n gwneud eich system yn haws ei\n"
+"ddefnyddio ond mae'n sensitif iawn: rhaid peidio ei ddefnyddio fel peiriant "
+"i'w\n"
+"gysylltu ag eraill nag i'r Rhyngrwyd. Does dim cysylltiad drwy gyfrinair."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+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 ""
+"Gyda'r lefel diogelwch hwn, mae defnydd y system fel gwasanaethwr yn "
+"bosibl.\n"
+"Mae diogelwch yn ddigon uchel i ddefnyddio'r system fel gwasanaethwr sy'n "
+"derbyn\n"
+"cysylltiad gan amryw o gleientiaid. Sylwer: os mae cleient yn unig yw eich "
+"peiriant ar y Rhyngrwyd, yna mae'n well i chi ddewis lefel is."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "Dewisiadau Uwch"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Dewisiadau"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Cychwynnwch system sain ALSA (Pensaernďaeth Sain Linux Uwch)"
@@ -8945,7 +9184,7 @@ msgstr ""
"Mae HardDrake yn rhedeg archwiliwr caledwedd, a gall yn ôl \n"
"eich dewis, ffurfweddu caledwedd newydd neu sydd wedi newid."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -9021,7 +9260,7 @@ msgstr ""
"Mae Gwasanaethwr Rhith Linux yn cael ei ddefnyddio i adeiladu \n"
"gwasanaethwyr cyflym a chyraeddadwy."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -9104,7 +9343,7 @@ msgstr ""
"sy'n\n"
"gwneud defnydd o fecanwaith RPC."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -9202,7 +9441,7 @@ msgstr "Rhyngrwyd"
msgid "File sharing"
msgstr "Rhannu Ffeiliau"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "System"
@@ -9330,6 +9569,7 @@ msgstr ""
"gcc GNU yn ogystal ag amgylcheddau datblygiadol Cod Agored gorau oll"
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
msgstr "Canolfan Rheoli Mandrake"
@@ -9451,6 +9691,15 @@ msgstr "http://www.mandrakesoft.com/sales/contact"
msgid "Installing packages..."
msgstr "Gosod pecynnau..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Allgofnodwch ac yna defnyddiwch Ctrl Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Ail fewn gofnodwch i %s i wireddu'r newidiadau"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -9459,6 +9708,160 @@ msgstr ""
"Methu darllen eich tabl rhaniadau. Mae'n rhy lwgr i mi :[\n"
"Af ymlaen i flancio rhaniadau gwael"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Trosglwyddo ffurfweddiad yr argraffydd"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Gwasanaethwr Cronfa Ddata"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Gwasanaethwr Cronfa Ddata"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "Gwasanaethwr NIS"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "Gwasanaethwr NIS"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Ychwanegu defnyddiwr"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "Cleient DHCP"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Cymorth"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Heb gysylltu"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Dileu"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Dewis Popeth"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Ychwanegu defnyddiwr"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "Cleient DHCP"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Ffurfweddu..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "ailffurfweddu"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Mewnosodwch y disg meddal Cychwyn ddefnyddiwyd yn gyrrwr %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Does dim gyrrwr disg meddal ar gael"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "Gwall!"
@@ -9508,6 +9911,11 @@ msgstr ""
"Dewiswch ar gyfer pob cam a fydd yn ail chwarae fel eich gosodiad, neu a "
"fydd gyda llaw"
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Creu disg meddal awto gosod"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -9520,12 +9928,12 @@ msgstr ""
"\n"
"Mae paramedrau'r awto osod i'w cael yn yr adran ar y chwith"
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Llongyfarchiadau!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9533,28 +9941,19 @@ msgstr ""
"Mae'r disg meddal wedi ei gynhyrchu'n llwyddiannus. \n"
"Medrwch ail chwarae eich gosodiad."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr "Awto Gosod"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr "Ychwanegu eitem"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr "Tynnu'r eitem olaf"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
@@ -9564,7 +9963,7 @@ msgstr ""
" Adroddiad DrakBackup \n"
"\n"
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9576,19 +9975,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9600,63 +9987,87 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr "cyfanswm y cynnydd"
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr "Ffeiliau system wrth gefn"
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
msgstr "Ffeiliau cadw wrth gefn y Disg Caled"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
msgstr "Ffeiliau Defnyddiwr Cadw wrth Gefn..."
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr "Cynnydd Disg Caled wrth Gefn..."
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
msgstr "Cadw wrth gefn ffeiliau eraill..."
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, fuzzy, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
"rhestr ffeil yrrwyd gan FTP: %s\n"
" "
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
+#, fuzzy
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
"\n"
"(!) anhawster cysylltiad FTP: Nid oedd yn bosibl anfon eich ffeiliau wrth "
"gefn drwy FTP.\n"
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
msgstr "(!) Gwall wrth anfon e-bost. \n"
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
msgstr "Dewis ffeiliau"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr "Dewiswch y ffeiliau neu gyfeiriaduron a chliciwch 'Ychwanegu'"
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -9664,26 +10075,26 @@ msgstr ""
"\n"
"Gwiriwch pob dewis sydd angen arnoch.\n"
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Mae'r dewisiadau hyn yn medru cadw wrth gefn ac adfer pob ffeil yn eich "
"cyfeiriadur /etc.\n"
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr "Cadw wrth gefn ffeiliau System. ( cyfeiriadur /etc )"
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr "Cadw wrth gefn cynyddol (peidio disodli hen ffeiliau wrth gefn)"
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Peidio cynnwys ffeiliau hanfodol (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -9691,83 +10102,77 @@ msgstr ""
"Gyda'e dewis hwn medrwch adfer unrhyw fersiwn\n"
"o'ch cyfeiriadur /etc."
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
msgstr "Gwiriwch pob defnyddiwr rydych am eu cynnwys yn eich cadw wrth gefn."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr "Peidio cynnwys storfa'r porwr"
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Defnyddio Cadw wrth Gefn Cynyddol (peidio disodli hen gadw wrth gefn)"
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
msgstr "Tynnu'r Dewis"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr "Defnyddwyr"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
msgstr "Defnyddiwch cysylltiad FTP i gadw wrth gefn"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
msgstr "Rhowch enw'r gwesteiwr neu'r IP"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
"Rhowch y cyfeiriadur i osod y cadw\n"
"wrth gefn ar y gwesteiwr hwn."
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
msgstr "Rhowch eich mewngofnod"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
msgstr "Rhowch eich cyfrinair"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
msgstr "Cofiwch y cyfrinair"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "Cysylltiad FTP"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Cysylltiad Diogel"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr "Defnyddiwch yr CD/DVDROM i gadw wrth gefn"
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
msgstr "Dewiswch eich gofod CD"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
msgstr "Gwiriwch os ydych yn defnyddio cyfrwng CDRW"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr "Gwiriwch os ydych am ddileu eich CDRW cyn"
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
@@ -9775,7 +10180,7 @@ msgstr ""
"Gwiriwch os ydych am gynnwys\n"
" cychwyn gosod ar eich CD"
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -9783,16 +10188,21 @@ msgstr ""
"Rhowch enw dyfais eich Ysgrifennwr CD\n"
"ex: 0,1,0"
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
msgstr "Defnyddiwch dâp i gadw wrth gefn"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr "Rhowch enw dyfais i'w ddefnyddio ar gyfer cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Gwiriwch os ydych am ddileu eich CDRW cyn"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -9800,51 +10210,57 @@ msgstr ""
"Rhowch y maint mwyaf\n"
"i'w ganiatáu ar gyfer Drakbackup"
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
+#: ../../standalone/drakbackup_.c:1497
+#, fuzzy
+msgid "Please enter the directory to save to:"
msgstr "Rhowch y cyfeiriadur i gadw iddo:"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
msgstr "Defnyddiwch y cwota ar gyfer ffeiliau wrth gefn"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
msgstr "Rhwydwaith"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
-msgstr "CDROM / DVDROM"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr "Disg Caled / NFS"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Math"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr "bob awr"
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr "bob dydd"
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr "bob wythnos"
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr "bob mis"
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
msgstr "Defnyddiwch ddaemon"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -9852,7 +10268,7 @@ msgstr ""
"Dewiswch faint o amser\n"
"fydd rhwng pob cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
@@ -9860,72 +10276,68 @@ msgstr ""
"Dewiswch y cyfrwng ar\n"
"gyfer cadw wrth gefn..."
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Defnyddiwch y Disg Caled gyda'i ddaemon"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "Defnyddiwch FTP gyda daemon"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+#, fuzzy
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
"Gwnewch yn siwr bod daemon cron yn cael ei gynnwys yn eich gwasanaethau"
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr "Anfonwch adroddiad e-bost wedi pob cadw wrth gefn i :"
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "Beth"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "Lle"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "Pryd"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
msgstr "Dewisiadau Eraill"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
msgstr "Ffurfweddiad Drakbackup"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
msgstr "Dewiswch i le rydych am gadw ffeiliau wrth gefn"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr "ar Ddisg Caled"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr "ar draws Rhwydwaith"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
msgstr "Dewiswch beth rydych am ei gadw wrth gefn"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
msgstr "System cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr "Defnyddwyr Cadw wrth Gwfn"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr "Dewis defnyddwyr gyda llaw"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
@@ -9933,7 +10345,7 @@ msgstr ""
"\n"
"Ffynhonell Cadw wrth Gefn:\n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
@@ -9941,7 +10353,7 @@ msgstr ""
"\n"
"- Ffeiliau System: \n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
@@ -9949,7 +10361,7 @@ msgstr ""
"\n"
"- Ffeiliau Defnyddiwr:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
@@ -9957,7 +10369,7 @@ msgstr ""
"\n"
"- Ffeiliau Eraill: \n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
@@ -9966,16 +10378,45 @@ msgstr ""
"\n"
"Cadw ar Ddisg caled ar lwybr: %s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Dyfais llygoden: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"- Cadw ar FTP ar y gwesteiwr: %s\n"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
"\n"
"- Cadw ar FTP ar y gwesteiwr: %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -9984,7 +10425,7 @@ msgstr ""
"\t\t enw defnyddiwr:%s\n"
"\t\t ar lwybr: %s \n"
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
@@ -9992,19 +10433,19 @@ msgstr ""
"\n"
"-Dewisiadau:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr "\tPeidiwch cynnwys Ffeiliau System\n"
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr "\t Bydd Cadw wrth gefn yn defnyddio tar a bzip2\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr "\tBydd Cadw wrth Gefn yn defnyddio tar a gzip\n"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
@@ -10013,27 +10454,41 @@ msgstr ""
"\n"
"- Daemon (%s) i gynnwys :\n"
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr "\t-Disg Caled.\n"
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr "\t-Rhwydwaith drwy FTP.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr "\t-Rhwydwaith drwy SSH.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t-Rhwydwaith drwy FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t-Rhwydwaith drwy FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Dim ffurfweddiad, cliciwch Dewin neu Uwch.\n"
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
@@ -10041,7 +10496,7 @@ msgstr ""
"Rhestr o ddata i'w adfer:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10049,134 +10504,137 @@ msgstr ""
"Rhestr o ddata llwgr:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
msgid "Please uncheck or remove it on next time."
msgstr "Dad-diciwch hwn neu ei dynnu'r tro nesaf."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr "Mae'r ffeiliau wrth gefn wedi eu llygru"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr " Mae eich dewis data wedi ei "
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr " Ei adfer yn Llwyddiannus ar %s "
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
msgid " Restore Configuration "
msgstr " Adfer y Furfweddiad"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr "Iawn i adfer ffeiliau eraill"
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Rhestr defnyddwyr i'w adfer ( dim ond y diweddaraf yn ôl y defnyddwyr, sy'n "
"bwysig )"
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
msgstr "Cadw'r ffeiliau system wrth gefn cyn:"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
msgid "please choose the date to restore"
msgstr "dewiswch y data i'w adfer"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
msgstr "Defnyddiwch y Ddisg Caled ar gyfer cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+msgid "Please enter the directory to save:"
+msgstr "Rhowch y cyfeiriadur i gadw iddo:"
+
+#: ../../standalone/drakbackup_.c:2416
+msgid "FTP Connection"
+msgstr "Cysylltiad FTP"
+
+#: ../../standalone/drakbackup_.c:2424
+msgid "Secure Connection"
+msgstr "Cysylltiad Diogel"
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
msgstr "Adfer o'r Ddisg Caled."
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr "Rhowch y cyfeiriadur lle mae'r ffeiliau wrth gefn yn cael eu cadw"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
msgstr "Dewis cyfrwng arall i adfer ohono"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
msgid "Other Media"
msgstr "Cyfrwng Arall"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
msgid "Restore system"
msgstr "Adfer y system"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
msgstr "Adfer Defnyddwyr"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
msgstr "Adfer Arall"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr "dewis llwybr arall i adfer ( yn lle / )"
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Gwnewch cadw wrth gefn newydd cyn adfer ( ar gyfer cadw wrth gefn cynyddol "
"yn unig )"
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr "Tynnu cyfeiriaduron defnyddiwr cyn adfer."
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr "Adfer pob cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
msgid "Custom Restore"
msgstr "Adfer Dewisol"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Cymorth"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "Cynt"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "Gorffen"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
msgstr "Adeiladu Cadw wrth Gefn"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
msgstr "Adfer"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "Nesaf"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -10184,7 +10642,7 @@ msgstr ""
"Crëwch gadw wrth gefn cyn ei adfer...\n"
" neu gwiriwch fod eich llwybr i'w gadw'n gywir."
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
@@ -10194,31 +10652,35 @@ msgstr ""
" chafodd eich adroddiad e-bost mo'i anfon\n"
" Ffurfweddwch eich sendmail"
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Rhestr Pecynnau i'w Gosod"
+#: ../../standalone/drakbackup_.c:2933
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Mae'r pecynnau canlynol i'w gosod"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
+#, fuzzy
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
"Gwall wrth anfon ffeil drwy FTP.\n"
" Cywirwch eich ffurfweddiad FTP."
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
msgstr "Dewiswch y data i'w adfer..."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
msgstr "Dewiswch y cyfrwng ar gyfer cadw wrth gefn..."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
msgstr "Dewiswch y data i'w gadw wrth gefn..."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10226,75 +10688,75 @@ msgstr ""
"Ni chanfyddwyd y ffeil ffurfweddu \n"
"cliciwch Dewin neu Uwch."
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr "O dan ddatblygiad...arhoswch."
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
msgid "Backup system files"
msgstr "Ffeiliau System Cadw wrth Gefn"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
msgid "Backup user files"
msgstr "Ffeiliau Defnyddiwr Cadw wrth Gefn"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
msgid "Backup other files"
msgstr "Cadw'r ffeiliau eraill wrth gefn"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr "Cyfanswm Cynydd"
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr "anfon ffeil drwy FTP"
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
msgid "Sending files..."
msgstr "Anfon ffeiliau..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr "Rhestr data i'w gynnwys ar CDROM"
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
msgid "Please enter the cd writer speed"
msgstr "Rhowch gyflymder yr ysgrifennydd CD"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr "Rhowch enw dyfais eich Ysgrifennydd CD (ex: 0,1,0)"
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
msgstr "Ticiwch os ydych eisiau cynnwys cychwyn gosod ar eich CD."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
msgid "Backup Now from configuration file"
msgstr "Cadwch wrth Gefn eich ffeiliau ffurfweddu"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
msgid "View Backup Configuration."
msgstr "Edrych ar Ffurfweddiad Cadw wrth Gefn"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
msgid "Wizard Configuration"
msgstr "Ffurfweddiad y Dewin"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
msgid "Advanced Configuration"
msgstr "Ffurfweddiad Uwch"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
msgstr "Cadw wrth Gefn Nawr"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -10352,7 +10814,7 @@ msgstr ""
" ...\n"
" \n"
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10361,7 +10823,7 @@ msgid ""
"\n"
msgstr "\n"
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -10438,7 +10900,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -10487,13 +10949,18 @@ msgstr ""
"\\n\n"
"\n"
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Hawlfraint(H 2001 MandrakeSoft gan DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10525,7 +10992,7 @@ msgstr ""
" Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n"
"MA 02111-1307, USA"
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -10601,7 +11068,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -10620,7 +11087,7 @@ msgstr ""
"cyn ei anfon i'r gwasanaethwr.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10642,7 +11109,7 @@ msgstr ""
"bwysig eich bod yn ofalus a pheidio newid y ffeiliau\n"
"data wrth gefn gyda llaw.\n"
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -10722,99 +11189,532 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Mae gosod %s wedi methu. Digwyddodd y gwall canlynol:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Offer y Consol"
+
+#: ../../standalone/drakbug_.c:53
+#, fuzzy
+msgid "HardDrake"
+msgstr "ar Ddisg Caled"
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "MandrakeConsulting"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "MandrakeStore"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Llygoden"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Argraffydd pell"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Rhannu enw"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Printerdrake"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Dewin Ffurfweddu'r Rhwydwaith"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Dilysu"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Dewis pecynnau"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Arhoswch"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Wedi'r dad osod"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "porth"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Bydd lluniau o'r sgrin ar gale ar ôl gosod yn %s"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Ffurfweddiad y rhwydwaith (%d addasydd)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Proffil:"
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Proffl dileu"
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Proffil i'w ddileu:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Proffil newydd..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Enw'r proffil i'w greu ( mae'r proffil newydd yn cael ei greu fel copi o'r "
+"un cyfredol):"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Enw gwesteiwr:"
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Mynediad i'r Rhyngrwyd"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Math: "
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Mynedfa:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Rhyngwyneb:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Statws"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "Arhoswch"
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Ffurfweddu Mynediad i'r We..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "Ffurfweddiad y Rhwydwaith Lleol"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Gyrrwr"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Rhyngwyneb"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protocol"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Stad"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Ffurfweddu'r Rhwydwaith Lleol..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "Cliciwch yma i gychwyn y dewin ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Dewin..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Gosod"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Arhoswch...Gosod y ffurfweddiad"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Wedi cysylltu"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Heb gysylltu"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Cysylltu..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Dadgysylltu..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+"Rhybudd, mae cysylltiad arall gyda'r rhyngrwyd wedi ei ganfod, efallai'n "
+"defnyddio eich rhwydwaith."
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Nid oes gennych unrhyw rhagwynebau wedi\n"
+"eu ffurfweddio. Ffurfweddwch nhw'n gyntaf\n"
+"drwy glicio ar 'Ffurfweddu'"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "Ffurfweddiad Rhwydwaith Lleol (LAN)"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Addasydd %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Protocol Cychwyn"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Cychwyn y peiriant"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "Cleient DHCP"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "cychwyn nawr"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "dad weithredu nawr"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Nid yw'r rhag wyneb hwn wedi ei ffurfweddu eto.\n"
+"Cychwynnwch y dewin ffurfweddi yn y brif ffenestr."
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Nid oes gennych cysylltiad â'r rhyngrwyd.\n"
+"Crëwch un drwy glicio ar 'Ffurfweddu'"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Ffurfweddiad cysylltiad â'r Rhyngrwyd"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Ffurfweddu Cysylltiad â'r Rhyngrwyd"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Math o gyswllt:"
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Paramedrau"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Mynedfa"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Cerdyn Ethernet"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "Cleient DHCP"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "defnydd: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Enw'r modiwl"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Maint"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "creu disg cychwyn"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "rhagosodedig"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Gwall Drakfloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "fersiwn cnewyllyn"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Cyffredinol"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Maes Uwch"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "ymresymiad dewisol mkinitrd"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Ychwanegu modiwl"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "grym"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "os oes angen"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "peidio cynnwys modiwlau scsi"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "peidio cynnwys modiwlau raid"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Tynnu modiwl"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Allbwn"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Adeiladu'r ddisg"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Gwnewch yn siwr fod y deunydd ar gael ar gyfer y ddyfais %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"Does dim cyfrwng i'r dyfais %s.\n"
+"Rhowch un i mewn.."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Methu fforchio: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Methu cau mkbootdisk yn iawn:\n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr "Chwilio am ffontiau wedi eu gosod"
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr "Tynnu ffontiau wedi eu gosod"
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr "pob ffont"
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
msgid "no fonts found"
msgstr "heb ganfod ffontiau"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "gorffen"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr "methu canfod unrhyw ffont yn eich rhaniad gosodedig"
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr "Ailddewis y ffontiau cywir"
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr "methu cnafod unrhyw ffontiau.\n"
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr "Chwilio am ffontiau yn y rhestr gosod"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr "Copďo ffontiau"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
msgid "True Type fonts installation"
msgstr "Gosod ffontiau True Type"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr "arhoswch yn ystod ttmkfdir..."
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr "Wedi gosod True Type"
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr "Trosiad ffontiau"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr "adeiladu math 1inst"
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr "cyfeirio Ghostscript"
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr "trosi ffontiau ttf "
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr "trosi ffontiau pfm"
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr "Llethu ffeiliau dros dro"
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr "Ail gychwyn XFS"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr "Llethu ffeiliau Ffontiau"
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
msgid "xfs restart"
msgstr "ail gychwyn xfs"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10828,107 +11728,107 @@ msgstr ""
"- Medrwch osod y ffontiau yn y dull arferol. Mewn achosion prin, gall "
"ffontiau ffug rewi eich Gwasanaethwr X"
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
msgid "Fonts Importation"
msgstr "Mewnforio Ffontiau"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr "Estyn Ffontiau Windows"
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr "Dad osod Ffontiau"
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Dewisiadau Uwch"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
msgstr "Rhestr Ffontiau"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
msgid "Choose the applications that will support the fonts :"
msgstr "Dewiswch y rhaglenni fydd yn cynnal ffontiau:"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
msgstr "Argraffyddion Generig"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr "Dewiswch ffeil neu gyfeiriadur y ffont a chlicio 'Ychwanegu'"
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
msgstr "Gosod Rhestr"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr "cliciwch yma os ydych yn siwr."
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr "yma os nad."
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr "Dad ddewis Popeth"
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
msgid "Selected All"
msgstr "Dewis Popeth"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
msgstr "Rhestr Tynnu"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr "Prawf Init"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
msgstr "Copďo'r ffontiau ar eich system!"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr "Gosod a throsi ffontiau"
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
msgid "Post Install"
msgstr "Wedi'r Gosod"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
msgstr "Tynnu ffontiau oddi ar eich system!"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
msgid "Post Uninstall"
msgstr "Wedi'r dad osod"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Rhannu Cysylltiad â'r Rhyngrwyd"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Mae Rhannu Cysylltiad â'r Rhyngrwyd wedi ei alluogi"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10940,31 +11840,31 @@ msgstr ""
"\n"
"Beth hoffech ei wneud?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "dymunol"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "gwrthod"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "ailffurfweddu"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Analluogi gwasanaethwyr..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Mae rhannu cysylltiad â'r Rhyngrwyd wedi ei analluogi."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Mae Rhannu Cysylltiad a'r Rhyngrwyd wedi ei analluogi"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10976,19 +11876,19 @@ msgstr ""
"\n"
"Beth hoffech ei wneud?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "galluogi"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Galluogi gwasanaethwyr..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Mae rhannu cysylltiad â'r Rhyngrwyd wedi ei alluogi."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -11005,21 +11905,21 @@ msgstr ""
"Sylwer: bydd angen Addasydd Rhwydwaith un-pwrpas i greu Rhwydwaith Lleol "
"(LAN)."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Rhyngwyneb %s (gan ddefnyddio modiwl %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Rhagwyneb %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Nid oes addasydd rhwydwaith ar eich system!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -11027,11 +11927,11 @@ msgstr ""
"Nid oes addasydd rhwydwaith ethernet wedi ei ganfod ar eich system. Rhedwch "
"yr offeryn ffurfweddu caledwedd."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Rhyngwyneb rhwydwaith"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11046,7 +11946,7 @@ msgstr ""
"\n"
"Rwyf ar fin gosod eich Rhwydwaith Lleol gyda'r addasydd hwnnw.."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -11054,11 +11954,11 @@ msgstr ""
"Dewiswch ba addasyddion rhwydwaith fydd yn cael eu cysylltu â'ch Rhwydwaith "
"Lleol."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr "Mae rhag wyneb y rhwydwaith wedi ei ffurfwedu eisoes"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11074,15 +11974,15 @@ msgstr ""
"Medrwch ei wneud gyda llaw ond mae'n rhaid i chi wybod beth ydych yn ei "
"wneud."
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr "Ail ffurfweddiad awtomatig"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr "Dangoswch y ffurfweddiad rhag wyneb cyfredol"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11099,7 +11999,7 @@ msgstr ""
"Priodweddau IP: %s\n"
"Gyrrwr: %s"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
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 C-Class Network that "
@@ -11118,33 +12018,33 @@ msgstr ""
"Neu, medraf ail ffurfweddu eich rhag wyneb ac (ail)ffurfweddi gwasanaethwr "
"DHCP ar eich cyfer.\n"
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr "Rhwydwaith Lleol Dosbarth C"
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr "Gwasanaethwr DHCP IP (Hwn)"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr "Ail ffurfweddi rhag wyneb a gwasanaethwr DHCP"
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Nid yw'r Rhwydwaith Leol yn terfynnu gyda '.0', tynnu allan."
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Canfuwyd gwrthdaro posib yng nghyfeiriad LAN ffurfweddiad presennol %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Wedi canfod ffurfweddiad mur gwarchod!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -11152,20 +12052,20 @@ msgstr ""
"Rhybudd! Mae ffurfweddiad mur gwarchod wedi ei ganfod. Efallai bydd angen "
"atgyweirio gyda llaw ar ôl y gosodiad."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Ffurfweddu..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Ffurfweddio sgriptiau, gosod meddalwedd, cychwyn gwasanaethwyr..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Anhawster wrth osod pecyn %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11175,23 +12075,23 @@ msgstr ""
"Gallwch rannu cysylltiad â'r Rhyngrwyd gyda chyfrifiaduron eraill ar eich "
"Rhwydwaith Lleol gan ddefnyddio ffurfweddiad rhwydwaith awtomatig (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "Mae'r gosodiad wedi ei gyflawnu, mae wedi ei anallluogi ar hyn o bryd."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Mae'r gosodiad wedi ei gyflawnu, mae wedi ei allluogi ar hyn o bryd."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Nid oes Rhannu Cysylltiad â'r Rhyngrwyd wedi eu ffurfweddu o'r blaen."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Ffurfweddiad rhannu cysylltiad â'r Rhyngrwyd"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11206,217 +12106,6 @@ msgstr ""
"\n"
"Cliciwch Ffurfweddu i gychwyn y dewin gosod."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Ffurfweddiad y rhwydwaith (%d addasydd)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Proffil:"
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Proffl dileu"
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Proffil i'w ddileu:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Proffil newydd..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Enw'r proffil i'w greu ( mae'r proffil newydd yn cael ei greu fel copi o'r "
-"un cyfredol):"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Enw gwesteiwr:"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Mynediad i'r Rhyngrwyd"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Math: "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Mynedfa:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Rhyngwyneb:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Statws"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Arhoswch"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Ffurfweddu Mynediad i'r We..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Ffurfweddiad y Rhwydwaith Lleol"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Gyrrwr"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Rhyngwyneb"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protocol"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Stad"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Ffurfweddu'r Rhwydwaith Lleol..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Cliciwch yma i gychwyn y dewin ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Dewin..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Gosod"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Arhoswch...Gosod y ffurfweddiad"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Wedi cysylltu"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Heb gysylltu"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Cysylltu..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Dadgysylltu..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Rhybudd, mae cysylltiad arall gyda'r rhyngrwyd wedi ei ganfod, efallai'n "
-"defnyddio eich rhwydwaith."
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Nid oes gennych unrhyw rhagwynebau wedi\n"
-"eu ffurfweddio. Ffurfweddwch nhw'n gyntaf\n"
-"drwy glicio ar 'Ffurfweddu'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Ffurfweddiad Rhwydwaith Lleol (LAN)"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Addasydd %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Protocol Cychwyn"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Cychwyn y peiriant"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "Cleient DHCP"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "cychwyn nawr"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "dad weithredu nawr"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Nid yw'r rhag wyneb hwn wedi ei ffurfweddu eto.\n"
-"Cychwynnwch y dewin ffurfweddi yn y brif ffenestr."
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Nid oes gennych cysylltiad â'r rhyngrwyd.\n"
-"Crëwch un drwy glicio ar 'Ffurfweddu'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Ffurfweddiad cysylltiad â'r Rhyngrwyd"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Ffurfweddu Cysylltiad â'r Rhyngrwyd"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Math o gyswllt:"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Paramedrau"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Mynedfa"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Cerdyn Ethernet"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "Cleient DHCP"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Gosod y lefel diogelwch"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Canolfan Rheoli"
@@ -11425,89 +12114,128 @@ msgstr "Canolfan Rheoli"
msgid "Choose the tool you want to use"
msgstr "Dewiswch yr offeryn rydych am ei ddefnyddio"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\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 ""
+
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
msgstr "Canada (cabl)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+#, fuzzy
+msgid "USA (broadcast)"
msgstr "UDA (bcast)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr "UDA (cabl)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr "UDA (cable-hrc)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "China (broadcast)"
msgstr "Tseina (bcast)"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "Japan (broadcast)"
msgstr "Siapan (bcast)"
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr "Siapan (cable)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
msgstr "Dwyrain Ewrop"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Ffrainc"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
msgstr "Iwerddon"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
msgstr "Gorllewin Ewrop"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
msgstr "Awstralia"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr "Zeland Newydd"
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr "De Affrica"
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr "Yr Ariannin"
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr "Rhowch eich safon teledu a gwlad"
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr "Safon Teledu:"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr "Ardal:"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr "Wrthi'n sganio am sianeli Teledu ..."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr "Sganio am Sianel Teledu"
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Digwyddodd gwall wrth osod pecyn"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -11553,7 +12281,7 @@ msgstr ""
"Mae'r newid wedi ei gyflawni, ond i fod yn effeithiol mae'n rhaid i chi "
"allgofnodi"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -11579,7 +12307,7 @@ msgstr "<control>O"
#: ../../standalone/logdrake_.c:104
msgid "/File/_Save"
-msgstr "/File/_Cawd"
+msgstr "/Ffeil/_Cawd"
#: ../../standalone/logdrake_.c:104
msgid "<control>S"
@@ -11587,7 +12315,7 @@ msgstr "<control>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
-msgstr "/File/Cawd _fel"
+msgstr "/Ffeil/Cawd _fel"
#: ../../standalone/logdrake_.c:106
msgid "/File/-"
@@ -11601,10 +12329,6 @@ msgstr "/_Dewisiadau"
msgid "/Options/Test"
msgstr "/Dewisiadau/Test"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Cymorth"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr "/Cymorth/_Ynghylch..."
@@ -11665,7 +12389,7 @@ msgstr "Calendr"
msgid "Content of the file"
msgstr "Cynnwys y ffeil"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr "Rhybudd E-bost/SMS"
@@ -11674,11 +12398,11 @@ msgstr "Rhybudd E-bost/SMS"
msgid "please wait, parsing file: %s"
msgstr "arhoswch, dosbarthu ffeil: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
msgstr "Rhybudd ffurfweddiad E-bost/SMS"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
@@ -11688,63 +12412,95 @@ msgstr ""
"\n"
"Yma bydd modd i chi osod y system rhybuddio.\n"
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Enw parth"
#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
+#, fuzzy
+msgid "Ftp Server"
+msgstr "Gwasanaethwr NIS"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Gwasanaethwr e-bost Postfix, gwasanaethwr newyddion Inn"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "Gwasanaethwr NIS"
#: ../../standalone/logdrake_.c:422
+#, fuzzy
+msgid "SSH Server"
+msgstr "Gwasanaethwr NIS"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Gwasanaethau"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Gwasanaethwr Argraffydd"
+
+#: ../../standalone/logdrake_.c:431
msgid "service setting"
msgstr "gosodiad gwasanaeth"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr "Byddwch yn derbyn rhybudd os na fydd un o'r gwasanaethu hyn yn rhedeg"
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
msgstr "gosodiad llwyth"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr "Byddwch yn derbyn rhybudd os yw'r llwyth yn uwch na'r gwerth hwn"
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
msgstr "ffurfweddiad rhybudd"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr "Ffurfweddiwch y ffordd mae'r system yn eich rhybuddio"
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Cadw fel..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Dewiswch math eich llygoden"
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "neb ganfod serial_usb\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Efelychu'r trydydd botwm?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Darllen data argraffydd..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "Canfod dyfeisiadau..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -11789,6 +12545,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "Ffurfweddiad Mur Gwarchod"
@@ -12196,10 +12964,6 @@ msgid "Multimedia - Sound"
msgstr "Aml-gyfrwng - Sain"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Gwaasanaethau"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Dogfennaeth"
@@ -12304,10 +13068,6 @@ msgstr ""
"ac i bori'r We"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Archifio, efelychwyr, monitro"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Cyllid Personol"
@@ -12355,17 +13115,206 @@ msgstr "Aml-gyfrwng - Llosgi CD"
msgid "Scientific Workstation"
msgstr "Gweithfan Gwyddonol"
-#~ msgid "About"
-#~ msgstr "Allwedd amgryptio (eto)"
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "methodd fdisk gyda cod gadael %d neu arwydd %d"
+
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Dynodiad y cerdyn graffeg: %s\n"
+
+#~ msgid "Choose options for server"
+#~ msgstr "Dewiswch opsiynau ar gyfer y gwasanaethwr"
+
+#~ msgid "Monitor not configured"
+#~ msgstr "Monitor heb ei ffurfweddu"
-#~ msgid " Help "
-#~ msgstr " Cymorth"
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Cerdyn graffig heb ei ffurfweddu eto"
+
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Cydraniad heb ei ddewis eto"
+
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "ceisiwch newid rhai paramedrau"
+
+#~ msgid "An error occurred:"
+#~ msgstr "Digwyddodd gwall:"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Gadael mewn %d eiliad"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Ydi'r gosodiad hwn yn gywir?"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Digwyddodd gwall, ceisiwch newid rhai paramedrau"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "Gwasanaethwr XFree86: %s"
+
+#~ msgid "Show all"
+#~ msgstr "Dangos y cyfan"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Yn parataoi cyfluniad X-Window"
+
+#~ msgid "What do you want to do?"
+#~ msgstr "Beth ydych eisiau ei wneud?"
+
+#~ msgid "Change Monitor"
+#~ msgstr "Newid Monitor"
+
+#~ msgid "Change Graphics card"
+#~ msgstr "Newid cerdyn Graffeg"
+
+#~ msgid "Change Server options"
+#~ msgstr "Dewisiadau newid Gwasanaethwr"
+
+#~ msgid "Change Resolution"
+#~ msgstr "Newid Cydraniad"
+
+#~ msgid "Show information"
+#~ msgstr "Dangos gwybodaeth"
+
+#~ msgid "Test again"
+#~ msgstr "Profi eto"
+
+#~ msgid ""
+#~ "Your HP multi-function device was configured automatically to be able to "
+#~ "scan. Now you can scan from the command line with \"ptal-hp %s scan ..."
+#~ "\". Scanning via a graphical interface or from the GIMP is not supported "
+#~ "yet for your device. More information you will find in the \"/usr/share/"
+#~ "doc/hpoj-0.8/ptal-hp-scan.html\" file on your system. If you have an HP "
+#~ "LaserJet 1100 or 1200 you can only scan when you have the scanner option "
+#~ "installed.\n"
+#~ "\n"
+#~ "Do not use \"scannerdrake\" for this device!"
+#~ msgstr ""
+#~ "Mae eich dyfais aml bwrpas HP wedi cael ei ffurfweddu'n awtomatig i fedru "
+#~ "sganio. Medrwch sganio o'r llinell orchymyn gyda \"ptal-hp %s scan ..."
+#~ "\".. Nid yw sganio drwy gyfrwng rhyng wyneb graffigol na GIMP yn cael ei "
+#~ "gynnal eto ar gyfer eich dyfais. Mae rhagor o wybodaeth i'w gael yn ffeil "
+#~ "\"/usr/share/doc/hpoj-0.8/ptal-hp-scan.html\" ar eich system. Os oes "
+#~ "gennych HP LaserJet 1100 neu 1200 yna dim ond os oes gennych y dewis "
+#~ "sganio wedi ei osod mae modd sganio.\n"
+#~ "Peidiwch defnyddio \"scannerdrake\" ar gyfer y ddyfais hon."
+
+#~ msgid "Use Hard Drive with daemon"
+#~ msgstr "Defnyddiwch y Disg Caled gyda'i ddaemon"
+
+#~ msgid "Use FTP with daemon"
+#~ msgstr "Defnyddiwch FTP gyda daemon"
+
+#~ msgid "Package List to Install"
+#~ msgstr "Rhestr Pecynnau i'w Gosod"
+
+#~ msgid "proftpd"
+#~ msgstr "proftpd"
+
+#~ msgid "sshd"
+#~ msgstr "sshd"
+
+#~ msgid "webmin"
+#~ msgstr "webmin"
+
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
+
+#~ msgid "Setting security level"
+#~ msgstr "Gosod y lefel diogelwch"
+
+#~ msgid "Graphics card"
+#~ msgstr "Cerdyn graffig"
+
+#~ msgid "Select a graphics card"
+#~ msgstr "Dewiswch gerdyn graffig"
+
+#~ msgid "Choose a X driver"
+#~ msgstr "Dewiswch yrrwr X"
+
+#~ msgid "X driver"
+#~ msgstr "Gyrrwr X"
+
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "Rhybydd: gall profi'r cerdyn graffig hwn rewi eich cyfrifiadur"
+
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "VGA safonol, 640x480 ar 60 Hz"
+
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Uwch VGA, 800x600 ar 56 Hz"
+
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "Cydnaws a 8514, 1024x768 rhyngleswyd ar 87 Hz (nid 800x600)"
+
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 rhyngleswyd ar 87Hz, 800x600 ar 56 Hz"
+
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Extended Super VGA, 800x600 ar 60 Hz, 640x480 ar 72 Hz"
+
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "SVGA di-rygnlesig, 1024x768 ar 60 Hz, 800x600 ar 72 Hz"
+
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "SVGA Amledd Uchel, 1024x768 ar 70 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Aml-amledd sydd yn medru dangos 1280x1024 ar 60 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Aml-amledd sydd yn medru dangos 1280x1024 ar 74 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Aml-amledd sydd yn medru dangos 1280x1024 ar 76 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Monitor sydd yn medru dangos 1600x1200 ar 70 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Monitor sydd yn medru dangos 1600x1200 ar 76 Hz"
+
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Cyfanswm maint y grwpiau rydych wedi eu dewis yw tua %d MB.\n"
+
+#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
+#~ msgstr ""
+#~ "Os hoffech chi osod llai na'r maint hwn\n"
+#~ "dewiswch canran y pecynnau i'w gosod.\n"
+#~ "\n"
+#~ "Dim ond y pecynnau pwysicaf fydd yn cael eu gosod gyda chanran\n"
+#~ "isel; tra bydd canran o 100% yn llwytho'r holl becynnau."
#~ msgid ""
-#~ "XawTV isn't installed ...\n"
-#~ "You should install it.\n"
-#~ " Just type \"urpmi xawtv\""
+#~ "You have space on your disk for only %d%% of these packages.\n"
+#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
#~ msgstr ""
-#~ "Nid yw XawTV wedi ei osod ...\n"
-#~ "Dylech ei osod.\n"
-#~ " Teipiwch \"urpmi xawtv\""
+#~ "Dim ond ar gyfer %d%% o'r pecynnau hyn mae gennych le.\n"
+#~ "\n"
+#~ "Os hoffech osod llai na hyn,\n"
+#~ "dewiswch canran y pecynnau rydych am eu gosod.\n"
+#~ "Dim ond y pecynnau pwysicaf fydd yn cael eu gosod gyda chanran\n"
+#~ "isel; tra bydd canran o %d%% yn llwytho'r gymaint o becynnau ag\n"
+#~ "y mae modd."
+
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Dydd modd eu dewis yn fwy penodol yn y cam nesaf."
+
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Cyfanswm y pecynnau i'w gosod"
+
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Dewiswch lefel diogelwch"
diff --git a/perl-install/share/po/da.po b/perl-install/share/po/da.po
index 6edcd2ac1..183a924d1 100644
--- a/perl-install/share/po/da.po
+++ b/perl-install/share/po/da.po
@@ -1,46 +1,70 @@
-# Danish translation of/Dansk oversćttelse af
-# Mandrake Linux DrakX.
-# Copyright (C) 1999-2001 MandrakeSoft
-#
-# In order of activity:
-# 1, Keld Simonsen <keld@dkuug.dk>, 2000-2002
-# 2, Jacob Nordfalk <nordfalk@mobilixnet.dk>, 2001-2002
-# 3, Troels Liebe Bentsen <tlb@iname.com>, 1999-2000
-# 4, Nikolaj Berg Amondsen <mr_nba@get2net.dk>, 2000
-# 5, Jacob Sparre Andersen, <sparre@sslug.dk>, 2000
-# 6, Kenneth Christiansen, <kenneth@ripen.dk>, 2000
-# 7, Jens Burkal <jburkal@get2net.dk>, 1999
-# 8, Mads Stenhuus Hansen <msh@com.dtu.dk>, 1999
+# danish drakbootdisk
+# Copyright (C) 2000 Free Software Foundation, Inc.
+# Keld Simonsen <keld@dkuug.dk>, 2000-2002.
+# Troels Liebe Bentsen <tlb@iname.com> 2000.
+#
+# Reviewed: keld@dkuug.dk 2001-08-22
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-13 13:04+0100\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2002-07-28 15:07+0200\n"
"Last-Translator: Keld Simonsen <keld@dkuug.dk>\n"
-"Language-Team: Danish <dansk@klid.dk>\n"
+"Language-Team: dansk <dansk@klid.dk>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Konfigurér alle skćrme uafhćngigt"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kb"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Brug Xinerama-udvidelse"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kb"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Konfigurér kun kort \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 Mb"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 Mb"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 Mb"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 Mb"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 Mb"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 Mb"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 Mb eller mere"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Vćlg en X-server"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X-server"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Flerskćrms-konfiguration"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -48,41 +72,44 @@ msgstr ""
"Dit system understřtter konfiguration af flere skćrme\n"
"Hvad vil du gřre?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Grafikkort"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Vćlg hukommelsesmćngde for dit grafikkort"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Vćlg et grafikkort"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "XFree konfiguration"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Vćlg en X-server"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Hvilken konfiguration af XFree řnsker du?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X-server"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Konfigurér alle skćrme uafhćngigt"
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Vćlg en X-driver"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Brug Xinerama-udvidelse"
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "X-driver"
+#: ../../Xconfig/card.pm_.c:379
+#, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Konfigurér kun kort \"%s\"%s"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Hvilken konfiguration af XFree řnsker du?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s med 3D hardware acceleration"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -91,34 +118,18 @@ msgstr ""
"Dit kort kan have 3D acceleration, men kun med XFree %s.\n"
"Dit kort er understřttet af XFree %s som kan have bedre understřttelse i 2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Dit kort kan have 3D hardware accelerations-understřttelse med XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s med 3D hardware acceleration"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Dit kort kan have 3D acceleration understřttelse, men kun med XFree %s,\n"
-"VIGTIGT: Dette er eksperimentelt og kan fĺ din maskine til at lĺse eller gĺ "
-"ned."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s med EKSPERMENTAL 3d hardware acceleration"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -130,31 +141,58 @@ msgstr ""
"ned.\n"
"Dit kort er understřttet af XFree %s som kan have bedre understřttelse i 2D."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Dit kort kan have 3D acceleration understřttelse, men kun med XFree %s,\n"
+"VIGTIGT: Dette er eksperimentelt og kan fĺ din maskine til at lĺse eller gĺ "
+"ned."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installations-skćrmdriver)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree konfiguration"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Vćlg hukommelsesmćngde for dit grafikkort"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Vćlg server-indstillinger"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Behold ćndringer?\n"
+"Nuvćrende konfiguration er:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Vćlg en skćrmtype"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Skćrm"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Tilpasset"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Standard"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+msgid "Vendor"
+msgstr "Producent"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -178,513 +216,327 @@ msgstr ""
"Hvis du er i tvivl, břr du vćlge en opsćtning, som du med SIKKERHED ved\n"
"at din skćrm kan klare."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Vandret opdateringsfrekvens"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Lodret opdateringsfrekvens"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Skćrm ikke konfigureret"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Grafikkort er endnu ikke konfigureret"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Oplřsninger ikke valgt endnu"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Řnsker du at afprřve konfigurationen?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-"Advarsel: afprřvning af dette grafikkort kan fĺ din maskine til at lĺse"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Test konfigurationen"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 farver (8 bit)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"prřv at ćndre nogle parametre"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 tusinde farver (15 bit)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "En fejl opstod:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 tusinde farver (16 bit)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Vender tilbage om %d sekunder"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 millioner (24 bit)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Er dette den korrekte indstilling?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 milliarder farver (32 bit)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "En fejl opstod, prřv at ćndre nogle parametre"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Oplřsninger"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Oplřsning"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Vćlg oplřsning og farvedybde"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Grafikkort: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86-server: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Mere"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Annullér"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "O.k."
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Ekspert-udgave"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Vis alle"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Řnsker du at afprřve konfigurationen?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Oplřsninger"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Test konfigurationen"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Tastatur-type: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Muse-type: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Muse-enhed: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Skćrm: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Skćrms vandrette frekvens: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Skćrms lodrette frekvens: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Grafikkort: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Grafikkort identifikation: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Grafik-hukommelse: %s kb\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Farvedybde: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Oplřsninger %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86-server: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 driver: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Forbereder konfiguration af X"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Hvad řnsker du at gřre?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Skift skćrmtype"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Skift grafikkort"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Foretag ćndringer i server-indstillinger"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Skift oplřsning"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Vis information"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Test igen"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Afslut"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Behold ćndringer?\n"
-"Nuvćrende konfiguration er:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "Start X ved systemstart"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Jeg kan sćtte din maskine op til automatisk at starte X ved\n"
"opstart. Řnsker du at starte X hver gang du genstarter?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Log ind i %s igen for at aktivere ćndringerne"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Log ud og tryk herefter pĺ Ctrl-Alt-Bak"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 farver (8 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 tusinde farver (15 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 tusinde farver (16 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 millioner (24 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 milliarder farver (32 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kb"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kb"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 Mb eller mere"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standard-VGA, 640x480 ved 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super-VGA, 800x600 ved 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 kompatibel, 1024x768 ved 87 Hz interlaced (ikke 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 ved 87 Hz interlaced, 800x600 ved 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Udvidet Super-VGA, 800x600 ved 60 Hz, 640x480 ved 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Non-Interlaced SVGA, 1024x768 ved 60 Hz, 800x600 ved 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Hřjfrekvens SVGA, 1024x768 ved 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frekvens, som kan klare 1280x1024 ved 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frekvens, som kan klare 1280x1024 ved 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frekvens, som kan klare 1280x1024 ved 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Skćrm, som kan klare 1600x1200 ved 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Skćrm, som kan klare 1600x1200 ved 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Fřrste sektor af opstartspartition"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Fřrste sektor pĺ disken (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "SILO-installering"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Hvor vil du placere opstartsprogrammet?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "LILO/grub-installering"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO med tekstmenu"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO med grafisk menu"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Start fra DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Systemopstarterens hovedindstillinger"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Systemopstarter der skal bruges"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Systemopstarterens installation"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Opstartsenhed"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (virker ikke med gamle BIOS'er)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Kompakt"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "kompakt"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Videoindstilling"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Ventetid fřr opstart af forvalgt styresystem"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Adgangskode"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Adgangskode (igen)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Begrćns kommandolinie-indstillinger"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "begrćns"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Rens /tmp ved hver systemopstart"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Prćcis RAM-mćngde, hvis pĺkrćvet (fandt %d Mb)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Aktivér multiprofiler"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Angiv RAM-střrrelse i Mb"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Indstillingen ``Begrćns kommandolinie-indstillinger'' er intet vćrd uden\n"
"en adgangskode"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Prřv igen"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Adgangskoderne stemmer ikke overens"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Init-besked"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Ĺben firmwareforsinkelse"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Ventetid fřr kerneopstart"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Skal det vćre muligt at starte fra CD?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Skal det vćre muligt at starte fra OF?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Forvalgt styresystem?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -698,83 +550,83 @@ msgstr ""
"\n"
"Hvilket drev starter du op fra?"
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Her er fřlgende typer indgange.\n"
"Du kan tilfřje flere eller ćndre de eksisterende."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Tilfřj"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Fćrdig"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Ćndr"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Hvilken type řnsker du at tilfřje"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Andet styresystem (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Andet styresystem (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Andet styresystem (Windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Billede"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Rod"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Vedhćft"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Lćs-skriv"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabel"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Usikker"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Mćrkat"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Forvalgt"
@@ -806,53 +658,77 @@ msgstr "Du skal angive en root-partition"
msgid "This label is already used"
msgstr "Denne mćrkat er allerede brugt"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Fandt %s %s grćnsesnit"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Har du én til?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Har du nogen %s grćnsesnit?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Nej"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Ja"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Se info for maskinel"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Installerer driver for %s kort %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+"Du kan nu angive parametre til modul %s.\n"
+"Bemćrk at alle adresser břr indtastes med foranstillet 0x, fx '0x123'"
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Du kan nu sćtte parametre til modulet %s.\n"
+"Parametrene er i formatet ``navn=vćrdi navn2=vćrdi2 ...''.\n"
+"F.eks., ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Modulindstillinger:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Hvilken %s driver skal jeg prřve?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -872,39 +748,15 @@ msgstr ""
"burde\n"
"ikke forĺrsage nogen skader."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Automatisk sondering"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Specificér parametre"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"Du kan nu angive parametre til modul %s.\n"
-"Bemćrk at alle adresser břr indtastes med foranstillet 0x, fx '0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Du kan nu sćtte parametre til modulet %s.\n"
-"Parametrene er i formatet ``navn=vćrdi navn2=vćrdi2 ...''.\n"
-"F.eks., ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Modulindstillinger:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -913,49 +765,53 @@ msgstr ""
"Indlćsning af modul %s mislykkedes.\n"
"Řnsker du at prřve igen med andre parametre?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "adgang til X-programmer"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "adgang til rpm-vćrktřjer"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "tillad \"su\""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "adgang til administrative filer"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(har allerede tilfřjet %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Adgangskoden er for simpel"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Indtast et brugernavn"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Brugernavnet mĺ kun indeholde smĺ bogstaver, tal, `-' og `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+msgid "The user name is too long"
+msgstr "Dette brugernavn er for langt"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Dette brugernavn eksisterer allerede"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Tilfřj bruger"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -964,32 +820,32 @@ msgstr ""
"Indtast en bruger\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Acceptér bruger"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Rigtige navn"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Brugernavn"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Skal"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Ikon"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -997,57 +853,57 @@ msgstr ""
"Jeg kan sćtte din maskine op til automatisk at logge en bestemt bruger pĺ.\n"
"Řnsker du at bruge denne finesse?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Vćlg den forvalgte bruger:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Vćlg den vindueshĺndtering du řnsker at benytte:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Vćlg det sprog, der skal bruges."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr ""
"Du kan vćlge andre sprog der vil vćre tilgćngelige efter installationen"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Alt"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Tillad alle brugere"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Tilpasset"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "Ingen fildeling"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Pakken %s skal vćre installeret. Řnsker du at installere den?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Du kan eksportere med NFS eller Samba. Hvilken vil du bruge"
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Krćvet pakke %s mangler"
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
@@ -1058,31 +914,11 @@ msgstr ""
"Tilladelse af dette vil sćtte brugere i stand til simpelthen at klikke pĺ "
"'Fildeling' i konqueror og nautilus.\n"
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Annullér"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr "Start userdrake"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -1090,31 +926,31 @@ msgstr ""
"Deling per bruger bruger gruppen 'fileshare'. \n"
"Du kan bruge userdrake til at tilfřje en bruger til denne gruppe."
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Velkommen til Crackere"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Ringe"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Standard"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Hřj"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
msgstr "Hřjere"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoid"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1125,7 +961,7 @@ msgstr ""
"eller har forbindelse til Internettet. Der er ikke nogen kontrol af "
"adgangskoder."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1133,7 +969,7 @@ msgstr ""
"Kontrol af adgangskode er nu aktiveret, men brug som netvćrksmaskine er "
"stadig ikke anbefalet."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1141,7 +977,7 @@ msgstr ""
"Dette er standard sikkerheds-anbefalingen for en maskine\n"
" med forbindelse til Internettet som klient. "
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1149,51 +985,52 @@ msgstr ""
"Der er allerede nogle begrćnsninger, og flere automatiske kontroller bliver "
"křrt hver nat."
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Med dette sikkerhedsniveau kan brug som server komme pĺ tale.\n"
"Sikkerheden er nu hřj nok til at systemet kan bruges som server som tillader "
"forbindelser fra mange klienter. Bemćrk: hvis din maskine kun er en klient "
"pĺ internettet břr du hellere vćlge et lavere niveau."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Baseret pĺ det foregĺende niveau, men systemet er nu helt lukket.\n"
"Sikkerhedsfaciliteterne er nu pĺ deres hřjeste niveau."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Vćlg sikkerhedniveau"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Sikkerhedsniveau"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Brug libsafe for servere"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Et bibliotek som beskytter mod angreb via bufferoverlřb og formatstrenge."
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr "Sikkerhedsadministrator (brugernavne eller e-post)"
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1218,52 +1055,52 @@ 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_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Velkommen til GRUB styresystemsvćlgeren!"
#. -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_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Brug tasterne %c og %c til at vćlge mellem mulighederne."
#. -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_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Tryk 'enter' for at starte det valgte OS, 'e' for at redigere"
#. -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_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "kommandoerne fřr opstart, eller 'c' for en kommandolinie."
#. -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_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Den fremhćvede mulighed vil blive startet automatisk om %d sekunder."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "Ikke nok plads i /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Skrivebord"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Start-menu"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Du kan ikke installere opstartsindlćseren pĺ en %s-partition\n"
@@ -1276,17 +1113,21 @@ msgstr "endnu er ingen hjćlp implementeret.\n"
msgid "Boot Style Configuration"
msgstr "Konfiguration af opstartsudseende"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Fil"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Fil/_Afslut"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
-msgstr "<kontrol>Q"
+msgstr "<Ctrl>Q"
#: ../../bootlook.pm_.c:91
msgid "NewStyle Categorizing Monitor"
@@ -1319,14 +1160,14 @@ msgstr "Yaboot modus"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Du bruger for řjeblikket % som opstartshĺndterer.\n"
"Klik pĺ Konfigurér for at starte opsćtnings-vejlederen."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Konfigurér"
@@ -1336,7 +1177,7 @@ msgid "System mode"
msgstr "Systemmodus"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Start X-vinduessystemet efter opstart"
#: ../../bootlook.pm_.c:148
@@ -1347,16 +1188,18 @@ msgstr "Nej, jeg řnsker ikke automatisk login"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ja, jeg řnsker automatisk login med denne (bruger, skrivebord)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
-msgstr "OK"
+msgstr "O.k."
#: ../../bootlook.pm_.c:229
#, c-format
@@ -1402,7 +1245,7 @@ msgstr "Kan ikke lave řjebliksbilleder fřr partitionering"
msgid "Screenshots will be available after install in %s"
msgstr "Řjebliksbilleder vil vćre tilgćngelige efter installation i %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Frankrig"
@@ -1410,7 +1253,7 @@ msgstr "Frankrig"
msgid "Costa Rica"
msgstr "Costa Rica"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Belgien"
@@ -1434,11 +1277,12 @@ msgstr "Norge"
msgid "Sweden"
msgstr "Sverige"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Holland"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "Italien"
@@ -1446,7 +1290,7 @@ msgstr "Italien"
msgid "Austria"
msgstr "Řstrig"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "U.S.A."
@@ -1454,8 +1298,8 @@ msgstr "U.S.A."
msgid "Please make a backup of your data first"
msgstr "Lav gerne en sikkerhedkopi af dine data fřrst"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Lćs omhyggeligt!"
@@ -1468,11 +1312,12 @@ msgstr ""
"Hvis du planlćgger at bruge Yaboot, skal du huske at efterlade fri plads pĺ\n"
"begyndelsen af disken (2048 sektorer skulle vćre nok)"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Fejl"
@@ -1480,11 +1325,11 @@ msgstr "Fejl"
msgid "Wizard"
msgstr "Vejleder"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Vćlg handling"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1496,144 +1341,149 @@ msgstr ""
"Jeg anbefaler, at du ćndrer střrrelsen pĺ partitionen\n"
"(klik pĺ den, og klik herefter pĺ \"Střrrelsesćndring\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Klik pĺ en partition"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Detaljer"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "Journaliserende FS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Tom"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Andet"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Filsystems-typer:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Opret"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Type"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Benyt ``%s'' i stedet"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Slet"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Benyt ``Afmontér'' fřrst"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Efter type-ćndring af partition %s vil alle data pĺ denne partition gĺ tabt"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Vćlg en partition"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Vćlg en ny partition"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Afslut"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Normal -> Ekspert"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Ekspert -> Normal"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Fortryd"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Fortsćt alligevel?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Afslut uden at gemme"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Afslut uden at skrive partitionstabellen?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "Řnsker du at gemme /etc/fstab-ćndringerne?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Allokér automatisk"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Slet alt"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Mere"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "Drev-information"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Alle primćre partitioner er brugt"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Kan ikke tilfřje flere partitioner"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1641,31 +1491,31 @@ msgstr ""
"For at du kan fĺ flere partitioner, skal du slette én, sĺ der kan oprettes "
"en udvidet partition"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "Gem partitionstabel"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "Genskaber partitionstabel"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Redder partitionstabel"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "Genindlćs partitionstabel"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "Automontering af flytbare medier"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Vćlg fil"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1673,11 +1523,11 @@ msgstr ""
"Kopien af partitionstabellen har ikke samme střrrelse\n"
"Fortsćt alligevel?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Advarsel"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1685,122 +1535,129 @@ msgstr ""
"Indsćt en diskette i diskettedrevet\n"
"Alle data pĺ disketten vil blive slettet"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Forsřger at redde partitionstabellen"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Detaljeret information"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Monteringssti"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Valg"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Střrrelsesćndring"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Flyt"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formatér"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Montér"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Tilfřj til RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Tilfřj til LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Afmontér"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Fjern fra RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Fjern fra LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Ćndr RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Loopback anvendelse"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Opret en ny partition"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Startsektor: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Střrrelse i Mb: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Filsystemstype: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Monteringssti: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Prćference: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+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/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "Fjern loopback-filen?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Skift partitionstype"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Hvilket filsystem řnsker du at bruge?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Skifter fra ext2 til ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Hvor řnsker du at montere loopback-fil %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Hvor řnsker du at montere partitionen %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1809,127 +1666,132 @@ msgstr ""
"loopback.\n"
"Fjern loopback fřrst"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Udregner FAT-filsystemets grćnser"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Ćndrer střrrelsen"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Střrrelsen pĺ denne partition kan ikke ćndres"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Det břr laves en backup af alle data pĺ denne partition"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Efter ćndring af střrrelsen af partition %s vil alle data pĺ denne partition "
"gĺ tabt"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Vćlg den nye střrrelse"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Ny střrrelse i Mb: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Hvilken disk řnsker du at flytte den til?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Hvilken sektor řnsker du at flytte den til?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Flytter"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Flytter partition..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Vćlg en eksisterende RAID som skal udvides"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "ny"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Vćlg en eksisterende LVM som skal udvides"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "LVM-navn?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Denne partition kan ikke bruges til loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Loopback-filnavn: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Giv et filnavn"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Filen er allerede brugt af en anden loopback, vćlg en anden fil"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Filen findes allerede. Skal den bruges?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Modulindstillinger"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Diverse"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "enhed"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "niveau"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "enhedsstřrrelse"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Vćr forsigtig: denne operation er farlig."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Hvilken slags partitionering?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Pakken %s krćves. Řnsker du at installere den?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1941,7 +1803,7 @@ msgstr ""
"fungere, eller du kan undlade at benytte LILO, hvilket vil betyde, at du "
"ikke har brug for /boot"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1953,7 +1815,7 @@ msgstr ""
"partition. Hvis du řnsker at benytte LILO, skal du oprette en /boot "
"partition indenfor 1024-cylinder grćnsen."
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1963,130 +1825,130 @@ msgstr ""
"Ingen systemopstarter kan hĺndtere dette uden en /boot partition.\n"
"Sĺ vćr omhyggelig med at tilfřje en /boot partition"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Partitionstabellen for disk %s vil nu blive skrevet pĺ disken!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Du skal genstarte maskinen for at aktivere ćndringerne"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Efter formatering af partitionen %s vil alle data pĺ denne partition gĺ tabt"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Formaterer"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formaterer loopback-fil %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Formaterer partition %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Skjul filer"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Flyt filer til den nye partition"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"Katalog %s indeholder allerede nogen data\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "Flytter filer til den nye partition"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Kopierer %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Fjerner %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "partition %s er nu kendt som %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Enhed: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS-drevbogstav: %s (bare et gćt)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Type: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Navn: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Start: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Střrrelse: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sektorer"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cylinder %d til %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Formateret\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Ikke formateret\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Monteret\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2095,7 +1957,7 @@ msgstr ""
"Loopback-fil(er):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2103,27 +1965,27 @@ msgstr ""
"Partition som opstartes som standard\n"
" (gćlder kun MS-DOS-opstart, ikke LILO)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Niveau %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Enhedsstřrrelse %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-diske %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback-filnavn: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2135,7 +1997,7 @@ msgstr ""
"en driver-partition, du skal\n"
"sandsynligvis lade den vćre.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2147,63 +2009,63 @@ msgstr ""
"partition er for at\n"
"dual-boote dit system.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Střrrelse: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Opbygning: %s cylindre, %s hoveder, %s sektorer\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-diske %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partitionstabel-type: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
-msgid "on bus %d id %d\n"
-msgstr "pĺ bus %d id %d\n"
+msgid "on channel %d id %d\n"
+msgstr "pĺ kanal %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Valg: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "Krypteringsnřgle for filsystem"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "Vćlg din krypteringsnřgle for filsystemet"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Denne krypteringsnřgle er for nem at gćtte (skal mindst vćre pĺ %d tegn)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "Krypteringsnřglerne stemmer ikke overens"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "Krypteringsnřgle"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "Krypteringsnřgle (igen)"
@@ -2212,35 +2074,62 @@ msgid "Change type"
msgstr "Skift type"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Klik pĺ et medie"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr "Kan ikke logge ind med brugernavn %s (forkert adgangskode?)"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+msgid "Domain Authentication Required"
+msgstr "Domćnegodkendelse pĺkrćvet"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Another one"
+msgstr "En anden"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Which username"
+msgstr "Hvilket brugernavn"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+"Intast venligst dit brugernavn, din adgangskode og dit domćnenavn for at fĺ "
+"adgang til denne vćrt."
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+msgid "Username"
+msgstr "Brugernavn"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+msgid "Domain"
+msgstr "Domćne"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "Sřg efter servere"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatering af %s mislykkedes"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ved ikke hvordan man formaterer %s som type %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "montering af partition %s i katalog %s mislykkedes"
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck afsluttet med fejlkode %d eller signal %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "fejl ved afmontering af %s: %s"
@@ -2257,69 +2146,311 @@ msgstr "med /usr"
msgid "server"
msgstr "server"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Du kan ikke bruge JFS pĺ partitioner mindre end 16Mb"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Du kan ikke bruge ReiserFS pĺ partitioner mindre end 32Mb"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Monteringsstier skal begynde med /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Der findes allerede en partition med monterings-sti %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Du kan ikke bruge et LVM logisk delarkiv for monteringspunkt %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Dette katalog břr ligge pĺ rod-filsystemet"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
-"Du skal have et rigtigt filsystem (ext2, reiserfs) til dette "
-"monteringspunkt\n"
+"Du skal have et rigtigt filsystem (ext2/ext3, reiserfs, xfs eller jfs) til "
+"dette monteringspunkt\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Du kan ikke bruge et krypteret filsystem for monteringspunkt %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "Ikke nok fri plads til at tildele nye partitioner automatisk"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr "Ingenting at lave"
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Fejl ved ĺbning af %s for skrivning: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Der er opstĺet en fejl - der kunne ikke findes nogen gyldige enheder, hvor "
"der kan oprettes nye filsystemer. Undersřg din maskine for at finde ĺrsagen "
"til problemet"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Du har ikke nogen partitioner!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+msgid "Auto-detect"
+msgstr "Automatisk detektion"
+
+#: ../../harddrake/bttv.pm_.c:64
+msgid "Unknown|Generic"
+msgstr "Ukendt|generisk"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr "Ukendt|CPH05X (bt878) [mange leverandřrer]"
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr "Ukendt|CPH06X (bt878) [mange leverandřrer]"
+
+#: ../../harddrake/bttv.pm_.c:193
+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 ""
+"For de fleste moderne tv-kort vil bttv-modulet fra GNU/Linux-kernen blot "
+"automatisk finde de rette parametre.\n"
+"Hvis dit kort ikke findes korrekt, kan du gennemtvinge den rette tuner og "
+"korttyper her. Bare vćlg dit tv-korts parametre om nřdvendigt"
+
+#: ../../harddrake/bttv.pm_.c:196
+msgid "Card model :"
+msgstr "Kortmodel:"
+
+#: ../../harddrake/bttv.pm_.c:197
+msgid "PLL setting :"
+msgstr "PLL-opsćtning:"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr "Antal fangningsbuffere:"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr "Antal fangningsbuffere for mmap-fangning"
+
+#: ../../harddrake/bttv.pm_.c:199
+msgid "Tuner type :"
+msgstr "Tuner-type:"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr "Radio-understřttelse:"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr "aktivér radio-understřttelse"
+
+#: ../../harddrake/ui.pm_.c:12
+msgid "/_Quit"
+msgstr "/_Afslut"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Hjćlp"
+
+#: ../../harddrake/ui.pm_.c:14
+msgid "/_Help..."
+msgstr "/_Hjćlp..."
+
+#: ../../harddrake/ui.pm_.c:15
+msgid "/_About..."
+msgstr "/_Om..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Modul"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Kort mem (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Annullér"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr "Bus"
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "Module"
+msgstr "Modul"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr "Medieklasse"
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Beskrivelse"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+msgid "Bus identification"
+msgstr "Bus-identifikation"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr "Sted pĺ bussen"
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Vćlg fil"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Gateway enhed"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 knapper"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+msgid "Harddrake2 version "
+msgstr "Harddrake2 version "
+
+#: ../../harddrake/ui.pm_.c:122
+msgid "Detected hardware"
+msgstr "Fundet maskinel"
+
+#: ../../harddrake/ui.pm_.c:136
+msgid "Informations"
+msgstr "Informationer"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr "Křr konfigurationsvćrktřj"
+
+#: ../../harddrake/ui.pm_.c:158
+msgid "Configure module"
+msgstr "Konfigurér modul"
+
+#: ../../harddrake/ui.pm_.c:168
+msgid "Detection in progress"
+msgstr "Sřgning udfřres"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Vent venligst"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr "primćr"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "secondary"
+msgstr "sekundćr"
+
+#: ../../harddrake/ui.pm_.c:260
+#, c-format
+msgid "Running \"%s\" ..."
+msgstr "Křrer \"%s\" ..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr "Om Harddrake"
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+"Dette er HardDrake, et Mandrake-vćrktřj for konfigurering af maskinel.\n"
+"Version:"
+
+#: ../../harddrake/ui.pm_.c:281
+msgid "Author:"
+msgstr "Forfatter:"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr "Harddrake hjćlp"
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2333,7 +2464,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2461,9 +2592,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2807,7 +2937,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2819,9 +2949,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2890,21 +3019,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2920,9 +3048,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Nu skal du vćlge hvor pĺ din harddisk du vil installere dit Mandrake Linux-"
"operativsystem. Hvis disken er tom eller et eksisterende operativsystem "
@@ -3006,9 +3134,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3198,38 +3325,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3395,11 +3516,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3454,7 +3575,7 @@ msgstr ""
"svćrt hvis du ikke har sĺ godt et kendskab til GNU/Linux, sĺ lad vćre med at "
"vćlge dette, medmindre du véd hvad du laver."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3479,7 +3600,7 @@ msgstr ""
"Klik pĺ 'mere'-tasten for at blive prćsenteret for den fulde \n"
"liste af understřttede tastaturer."
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3503,7 +3624,7 @@ msgstr ""
"Bemćrk at flere sprog kan installeres samtidigt. Nĺr du er fćrdig med at "
"vćlge yderligere sprog, sĺ klik O.k. for at fortsćtte."
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3530,7 +3651,7 @@ msgstr ""
"om indstillerne er gode. Hvis musen ikke virker korrekt, tryk da pĺ "
"mellemrumstangenten eller vognretur for at 'Annullere' og vćlg forfra."
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3538,23 +3659,23 @@ msgstr ""
"Vćlg den rigtige port. For eksempel er navnet for COM1-porten under MS "
"Windows 'ttyS0' under GNU/Linux."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3611,7 +3732,7 @@ msgstr ""
"Hvis din maskine ikke er forbundet til noget administreret netvćrk, řnsker "
"du nok at vćlge Lokale filer for autentificering"
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3633,7 +3754,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3641,7 +3762,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3710,7 +3831,7 @@ msgstr ""
"for at ćndre eller fjerne den; 'Tilfřj' opretter en ny indgang; og 'Fćrdig' "
"fortsćtter til det nćste installationstrin."
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3733,7 +3854,7 @@ msgstr ""
"Men sĺ har du brug for en opstartsdiskette for at starte disse "
"operativsystemer!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3747,29 +3868,28 @@ msgstr ""
"Med mindre du véd prćcist hvad du gřr, břr du vćlge Fřrste sektor pĺ drevet\n"
"(MBR)."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3805,7 +3925,7 @@ msgstr ""
"separat kanaliserings-konstruktion, sĺ brug lprNG. Ellers er CUPS at "
"foretrćkke, da det er simplere og bedre til at fungere over netvćrk."
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3830,7 +3950,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"DrakX er nu ved at bestemme alle IDE-enheder der er tilstede pĺ din maskine. "
@@ -3856,7 +3976,7 @@ msgstr ""
"fra Microsoft Windows (hvis du brugte dette udstyr med Windows pĺ dit "
"system)."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3866,9 +3986,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3880,7 +3999,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" 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"
@@ -3951,7 +4070,7 @@ msgstr ""
"ogsĺ blive fremhćvet med en '*', hvis du trykker Tab for at se "
"opstartsvalgene."
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3978,9 +4097,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -4016,10 +4134,10 @@ msgstr ""
" * Forvalgt styresystem: Du kan vćlge hvilket forvalgt styresystem der skal "
"startes nĺr Open Firmwareforsinkelsen er udlřbet."
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -4027,12 +4145,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -4075,7 +4192,7 @@ msgstr ""
"blive vist her. Du kan klikke pĺ knappen for at ćndre de tilhřrende "
"parametre."
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4085,7 +4202,7 @@ msgstr ""
"partition. Vćr forsigtig, alle data som er pĺ der, vil gĺ tabt og vil ikke "
"kunne genskabes!"
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4102,7 +4219,7 @@ msgstr ""
"Klik pĺ 'Annulér' for at anullere denne handling uden at tabe nogen data og "
"partitioner der er tilstede pĺ dette diskdrev."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4113,12 +4230,12 @@ msgstr ""
"mangler), dette betyder normalt at din opstartsdiskette ikke stemmer overens "
"med installationsmediet (lav en nyere opstartsdiskette)"
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr "Du skal ogsĺ formatere %s"
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4142,20 +4259,20 @@ msgstr ""
"\n"
"Řnsker du virkelig at installere disse servere?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "Kan ikke bruge rundkastning uden noget NIS-domćne"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Indsćt en tom diskette i diskette-drev %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Denne diskette er ikke formatteret til FAT"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4163,7 +4280,7 @@ msgstr ""
"For at bruge dette gemte pakkevalg, start installationen op med``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Fejl ved lćsning af filen %s"
@@ -4194,7 +4311,7 @@ msgstr "Du skal tildele en partition til Swap"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -4202,59 +4319,59 @@ msgstr ""
"\n"
"Fortsćt alligevel?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Du skal have en FAT-partition monteret under /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Brug fri plads"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Ikke nok fri plads til at tildele nye partitioner"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Brug eksisterende partition"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Der er ingen eksisterende partition der kan bruges"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Brug Windows partitionen til Loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Hvilken partition vil du benytte som Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Vćlg střrrelserne"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Rod-partitions střrrelse i Mb: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Swap-partitions střrrelse i Mb: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Brug den frie plads pĺ Windows-partitionen"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Hvilken partition řnsker du at ćndre střrrelse pĺ?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Udregner Windows-filsystemets grćnser"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4263,11 +4380,14 @@ msgstr ""
"Programmet til at ćndre střrrelse pĺ FAT kan ikke behandle din partition, \n"
"den fřlgende fejl opstod: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr "Din Windows partition er for fragmenteret, křr 'defrag' fřrst"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -4286,54 +4406,54 @@ msgstr ""
"defrag) og sĺ genstarte installationen. Du břr ogsĺ tage en sikkerhedskopi "
"af dine data. Tryk pĺ Ok, hvis du er helt sikker."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Hvilken střrrelse řnsker du at at beholde Windows pĺ?"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "partition %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT střrrelsesćndring mislykkedes: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Der er ingen FAT-partitioner at ćndre střrrelse pĺ, eller bruge som loopback "
"(eller ikke nok plads tilbage)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Slet hele disken"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Fjern Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Du har mere end et diskdrev, hvilken řnsker du at installere Linux pĺ?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Alle eksisterende partitioner og deres data vil gĺ tabt pĺ drev %s"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Brugerdefineret disk-opdeling"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Brug fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4342,11 +4462,11 @@ msgstr ""
"Du kan nu partitionere %s.\n"
"Nĺr du er fćrdig, sĺ husk at gemme med 'w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Du har ikke nok fri plads pĺ din Windows-partition"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Kan ikke finde plads til installering"
@@ -4354,16 +4474,16 @@ msgstr "Kan ikke finde plads til installering"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX partitionerings-vejlederen fandt de fřlgende lřsninger:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Partitionering mislykkedes: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Bringer netvćrket op"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Lukker netvćrket ned"
@@ -4376,12 +4496,12 @@ msgstr ""
"pćn mĺde.\n"
"Fortsćt pĺ eget ansvar!"
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Duplikér monterings-sti %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4393,12 +4513,12 @@ msgstr ""
"Tjek cdrom'en pĺ en fćrdiginstalleret maskine ved brug af \"rpm -qpl "
"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Velkommen til %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Intet tilgćngeligt diskettedrev"
@@ -4408,9 +4528,9 @@ msgstr "Intet tilgćngeligt diskettedrev"
msgid "Entering step `%s'\n"
msgstr "Gĺr til trin `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4420,200 +4540,154 @@ msgstr ""
"i stedet\n"
"Dette gřres ved at trykke 'F1' ved opstart fra cdrommen, og sĺ skrive 'text'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Installationsmetode"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr "Vćlg en af de fřlgende installations-mĺder:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Den totale střrrelse af de grupper du har valg er cirka %d Mb.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Hvis du řnsker at installere mindre end denne střrrelse,\n"
-"sĺ vćlg procentdelen af pakker som du vil installere.\n"
-"\n"
-"En lav procentdel vil kun installere de vigtigste pakker;\n"
-"en procentdel pĺ 100%% vil installere alle valgte pakker."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Du har kun plads pĺ din disk til %d%% af disse pakker.\n"
-"\n"
-"Hvis du řnsker at installere mindre end denne střrrelse,\n"
-"sĺ vćlg procentdelen af pakker som du vil installere.\n"
-"En lav procentdel vil kun installere de vigtigste pakker;\n"
-"en procentdel pĺ %d%% vil installere sĺ mange pakker som muligt."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr ""
-"Du har mulighed for at vćlge dem mere prćcist i nćste installationstrin"
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Procentandel pakker til installation"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Valg af pakkegrupper"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Individuelt pakkevalg"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Total střrrelse: %d / %d Mb"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Dĺrlig pakke"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Navn: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Version: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Střrrelse: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Vigtighed: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Du kan ikke vćlge denne pakke, da der ikke er nok plads tilbage til at "
"installere den"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "De fřlgende pakker vil blive installeret"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "De fřlgende pakker vil blive afinstalleret"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Du kan ikke vćlge/fravćlge denne pakke"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Dette er en nřdvendig pakke, den kan ikke vćlges fra"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Du kan ikke fravćlge denne pakke. Den er allerede installeret"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Denne pakke skal opgraderes\n"
"Er du sikker pĺ at du vil fravćlge den?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Du kan ikke fravćlge denne pakke. Den skal opgraderes"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Vis automatisk valgte pakker"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Installér"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Indlćs/gem pĺ diskette"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "Opdaterer pakkevalg"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "Minimal installation"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Vćlg pakker som skal installeres"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Installerer"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Beregnes"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Resterende tid "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Vent venligst, forbereder installationen"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d pakker"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Installerer pakke %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Acceptér"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Nćgt"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4628,17 +4702,17 @@ msgstr ""
"gjort\n"
"Hvis du ikke har den sĺ tryk pĺ Annullér, sĺ undgĺs installation fra denne cd"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Fortsćt alligevel?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Der opstod en fejl ved sorteringen af pakkerne:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Der opstod en fejl ved installeringen af pakkerne:"
@@ -4707,12 +4781,12 @@ msgstr "Der er opstĺet en fejl"
msgid "Do you really want to leave the installation?"
msgstr "Řnsker du virkelig at forlade installationen?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Licensaftale"
# Mangler
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4727,7 +4801,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -4918,109 +4992,113 @@ msgstr ""
"rette domstol i Paris, Frankrig. Ved spřrgsmĺl omkring dette dokument, "
"kontakt venligst MandrakeSoft S.A. \n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr "Er du sikker pĺ at du afviser licensen?"
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Tastatur"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "Vćlg dit tastaturlayout."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Her er den komplette liste over tilgćngelige tastaturer"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Hvilken installations-klasse řnsker du?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Installér/Opdatér"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Er dette en nyinstallation eller en opdatering?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Anbefalet"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Ekspert"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "Opgradering"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "Opgradér kun pakker"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Vćlg muse-type."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Muse-port"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Vćlg hvilken seriel port din mus er forbundet til."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Emulering af knapper"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Emulering af knap 2"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Emulering af knap 3"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Konfigurerer PCMCIA kort..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Konfigurerer IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "ingen ledige partitioner"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Skanner partitioner for at finde monteringspunkter"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Vćlg monterings-stierne"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -5032,14 +5110,14 @@ msgstr ""
"\n"
"Er du indforstĺet med at řdelćgge alle partitionerne?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
msgstr ""
"DiskDrake kunne ikke lćse partitionstabellen korrekt. Fortsćt pĺ eget ansvar!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -5047,75 +5125,76 @@ msgstr ""
"Det er ikke plads for 1 MB bootstrap! Installationen vil fortsćtte, men for "
"at starte dit system op, skal du lave en bootstrap partition i DiskDrake"
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr "Ingen rodpartition fundet til opgradering"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Rod-partition"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Hvilken partition indeholder systemets rod-partition (/)?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Du skal genstarte for at aktivere ćndringerne i partitionstabellen"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Vćlg partitioner der skal formateres"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Led efter beskadigede blokke?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Formaterer partitioner"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Opretter og formaterer fil %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Ikke nok swap-plads til at gennemfřre installationen, tilfřj mere"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Leder efter tilgćngelige pakker og genopbygger rpm-database..."
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "Leder efter tilgćngelige pakker"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Leder efter pakker som skal opgraderes"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+msgid "Looking at packages already installed..."
+msgstr "Leder efter pakker der allerede er installeret..."
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Dit system har ikke nok plads tilbage til en installation eller opgradering "
"(%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Alting (%dMb)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimum (%d Mb)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Anbefalet (%d Mb)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5123,35 +5202,35 @@ msgstr ""
"Vćlg indlćs eller gem pakkevalg pĺ diskette.\n"
"Formatet er det samme som for auto_install-genererede disketter."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Indlćs fra diskette"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Indlćser fra diskette"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Valg af pakker"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "Indsćt en diskette med pakkevalget"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Gem pĺ diskette"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Valgt střrrelse er střrre end tilgćngelig plads"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr "Installationstype"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5159,19 +5238,19 @@ msgstr ""
"Du har ikke valgt nogen gruppe af pakker.\n"
"Vćlg den minimale installation du řnsker"
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "Med X"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr "Med basal dokumentation (anbefalet!)"
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr "Virkelig minimal installation (specielt ingen urpmi)"
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5181,16 +5260,16 @@ msgstr ""
"Hvis du ikke har nogen af disse cd'er, klik Annullér.\n"
"Hvis kun nogen cd'er mangler, fravćlg dem, og klik sĺ Ok."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cdrom med etikette '%s'"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Forbereder installationen"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -5199,23 +5278,23 @@ msgstr ""
"Installerer pakke %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Konfiguration efter installation"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Indsćt opstartsdisketten i diskette-drevet %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Indsćt Opdater moduler-disketten i drev %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5262,8 +5341,8 @@ msgstr ""
"\n"
"Derudover skal kunder og/eller slutbrugere vćre opmćrksomme pĺ ikke at bryde "
"lokale love fra dit/jeres lokalomrĺde. Skulle en kunde og/eller slutbruger "
-"ikke respektere det lokale omrĺdes love, vil han/de blive udsat for seriřse "
-"sanktioner.\n"
+"ikke respektere det lokale omrĺdes love, vil han/de blive udsat for "
+"alvorlige sanktioner.\n"
"\n"
"Under ingen omstćndigheder kan Mandrakesoft eller deres producenter og/eller "
"leverandřrer holdes ansvarlig for speciel, indirekte eller tilfćldig skade "
@@ -5281,13 +5360,14 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
@@ -5299,147 +5379,176 @@ msgstr ""
"\n"
"Řnsker du at installere opdateringerne?"
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Kontakter Mandrake Linux netsted for at hente listen over tilgćngelige spejle"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Vćlg det spejl hvorfra pakkerne skal hentes"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Kontakter spejlet for at hente listen af tilgćngelige pakker"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Hvad er din tidszone?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Maskin-ur sat til GMT"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatisk tidssynkronisering (ved hjćlp af NTP)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "NTP-server"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Ekstern CUPS server"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Ingen printer"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
msgstr "Har du et ISA-lydkort?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr "Křr \"sndconfig\" efter installation for at konfigurere dit lydkort"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Intet lydkort genkendt. Prřv at křre \"harddrake\" efter installation"
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Oversigt"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Mus"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Tidszone"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Printer"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "Internt ISDN-kort"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Lydkort"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV-kort"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+msgid "Windows PDC"
+msgstr "Windows PDC"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Lokale filer"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Sćt root-adgangskode"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Ingen adgangskode"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr "Dette kodeord er for nemt at gćtte (det skal mindst vćre pĺ %d tegn)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Identifikation"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "Autentificering LDAP"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "LDAP grundlćggende dn"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "LDAP-server"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "Autentificering NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS-domćne"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS-server"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+msgid "Authentication Windows PDC"
+msgstr "Autentificering Windows PDC"
+
+#: ../../install_steps_interactive.pm_.c:1139
+msgid "Windows Domain"
+msgstr "Windows Domain"
+
+#: ../../install_steps_interactive.pm_.c:1140
+msgid "PDC Server Name"
+msgstr "Navn pĺ PDC-server"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+"For at fĺ dette til at virke pĺ en W2K PDC skal du nok have administratoren "
+"til at křre: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" "
+"everyone /add - og genstarte serveren"
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -5467,19 +5576,19 @@ msgstr ""
"Hvis du řnsker at lave en opstartsdiskette til dit system, indsćt en "
"diskette i dit fřrste diskettedrev og tryk 'Ok'."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Fřrste diskette-drev"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Andet diskette-drev"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Spring over"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5504,7 +5613,7 @@ msgstr ""
"Vil du lave en opstartsdiskette til dit system?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5518,28 +5627,28 @@ msgstr ""
"oprettelse af en opstartsdiskette pĺ en 1.44 Mb diskette vil formentlig\n"
"mislykkes, fordi XFS krćver en meget stor driver)."
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Der er desvćrre ikke noget tilgćngeligt diskette-drev"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Vćlg det diskette-drev, du vil benytte til at lave boot-disketten"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
msgstr "Indsćt en diskette i %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Oprette opstartsdiskette"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Forbereder opstarter"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5550,11 +5659,11 @@ msgstr ""
"opstartsindlćseren vil ikke virke for dig. Installationen vil fortsćtte, men "
"du skal bruge BootX for at starte din maskine."
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Řnsker du at bruge aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5563,15 +5672,15 @@ msgstr ""
"forsřg at gennemtvinge installation selv om dette kan řdelćgge den fřrste "
"partition?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Installerer systemopstarter"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Installation af opstarter mislykkedes. Den fřlgende fejl opstod:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5588,18 +5697,17 @@ msgstr ""
" Skriv sĺ: shut-down\n"
"Ved nćste opstart burde du se systemstarteren."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Indsćt en tom diskette i drev %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Laver autoinstallations-diskette"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5609,7 +5717,8 @@ msgstr ""
"\n"
"Er du sikker pĺ du řnsker du at lukke nu?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5620,7 +5729,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5634,17 +5743,22 @@ msgstr ""
"Errata pĺ:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information om konfigurering af dit system kan du finde i kapitlet om efter-"
"installation i den Officielle Mandrake Linux Brugervejledning."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+#, fuzzy
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakesoft.com/sales/contact"
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Laver autoinstallations-diskette"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5658,15 +5772,15 @@ msgstr ""
"\n"
"Du foretrćkker mĺske at afspille installationen igen\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automatisk"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Afspil igen"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Gem pakke-valg"
@@ -5693,44 +5807,24 @@ msgstr "konsolhjćlper mangler"
msgid "Choose a file"
msgstr "Vćlg en fil"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Avanceret"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr "Basal"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Vent venligst"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Udvid trć"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Sammenfold trć"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Skift mellem flad og gruppesorteret"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Dĺrligt valg, prřv igen\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Dit valg? (standard %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -5739,31 +5833,35 @@ msgstr ""
"Indgange som du skal udfylde:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Dit valg? (0/1, standard '%s') "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "Knap '%s': %s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+msgid "Do you want to click on this button?"
msgstr "Řnsker du at klikke pĺ denne knap?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr " indtast 'void' for tom indgang"
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Dit valg? (standard '%s'%s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Der er mange ting at vćlge imellem (%s).\n"
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -5773,7 +5871,7 @@ msgstr ""
"Eller tryk retur for at fortsćtte.\n"
"Dit valg? "
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -5782,327 +5880,327 @@ msgstr ""
"=> Bemćrk, en etikette ćndredes:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr "Indsend igen"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Tjekkisk (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Tysk"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Spansk"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finsk"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Fransk"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norsk"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Polsk"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Russisk"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Svensk"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Britisk"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Amerikansk"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Albansk"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armensk (gammel)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armensk (skrivemaskine)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armensk (fonetisk)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidiansk (latin)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgisk"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr "Bulgarsk (fonetisk)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "Bulgarsk (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brasiliansk (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Hviderussisk"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Schweizisk (Tysk layout)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Schweizisk (Fransk layout)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Tjekkisk (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Tysk (ingen dřde taster)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Dansk"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (norsk)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak (svensk)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estisk"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgisk (russisk layout)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgisk (Latin layout)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Grćsk"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Ungarsk"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Kroatisk"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Israelsk"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Israelsk (Fonetisk)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iransk"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islandsk"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Italiensk"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Japansk 106 taster"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Koreansk tastatur"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latinamerikansk"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Litauisk AZERTY (gammel)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Litauisk AZERTY (ny)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litauisk \"talrćkke\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litauisk \"fonetisk\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "Lettisk"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Makedonisk"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Hollandsk"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Polsk (polsk layout)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Polsk (polsk layout)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugisisk"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Canadisk (Québec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Russisk (qwertz)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Russisk (qwerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Russisk (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slovensk"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovakisk (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovakisk (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "Serbisk (kyrillisk)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr "Tamil"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thailandsk"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Tajik tastatur"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Tyrkisk (traditionel \"F\" model)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Tyrkisk (moderne \"Q\" model)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukrainsk"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Amerikansk (internaltionalt)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamesisk \"talrćkke\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Jugoslavisk (latinsk)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr "Hřjre alt-tast"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr "Begge taster samtidigt"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr "Kontrol- og skiftetaster samtidigt"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr "CapsLock-tast"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr "Ctrl- og alt-taster samtidigt"
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr "Alt og Shift-taster samtidigt"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr "'Menu'-tast"
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr "Venstre Windows-tast"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr "Hřjre Windows-tast"
@@ -6115,7 +6213,29 @@ msgstr "Cirkulćre monteringer %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Fjern de logiske delarkiver fřrst\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+msgid "a number"
+msgstr "et tal"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr "%d kommaseparerede tal"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr "%d kommaseparerede strenge"
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr "kommaseparerede tal"
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated strings"
+msgstr "kommaseparerede strenge"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -6158,10 +6278,6 @@ msgstr "1 knap"
msgid "Generic 2 Button Mouse"
msgstr "Standard 2-knaps mus"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Standard"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Hjul"
@@ -6226,38 +6342,54 @@ msgstr "ingenting"
msgid "No mouse"
msgstr "Ingen mus"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Test musen"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "For at aktivere musen,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "FLYT PĹ HJULET!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Afslut"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Nćste ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Forrige"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Er dette korrekt?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Info"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Udvid trć"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Sammenfold trć"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Skift mellem flad og gruppesorteret"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Lav forbindelse til Internettet"
@@ -6304,7 +6436,7 @@ msgstr ""
"Der blev ikke fundet nogen ethernet netvćrksadapter pĺ dit system.\n"
"Kan ikke sćtte denne forbindelsetype op."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Vćlg netvćrksgrćnsesnit"
@@ -6319,7 +6451,7 @@ msgstr ""
msgid "no network card found"
msgstr "kunne ikke finde noget netkort"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Konfigurerer netvćrk"
@@ -6335,15 +6467,15 @@ msgstr ""
"Dit vćrtsnavn břr vćre et fuldt kvalificeret vćrtsnavn,\n"
"fx 'minpc.mitfirma.dk'."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Vćrtsnavn"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Konfigurér netvćrk"
@@ -6400,7 +6532,7 @@ msgstr "ISDN konfiguration"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Vćlg din udbyder.\n"
" Hvis de ikke er i listen, vćlg Ikke listet"
@@ -6419,14 +6551,14 @@ msgstr "Protokol for resten af verden"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Protokol for resten af verden \n"
" ingen D-kanal (lejet linje)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Hvilken protokol řnsker du at bruge?"
#: ../../network/isdn.pm_.c:199
@@ -6450,7 +6582,8 @@ 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"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Hvis du har et ISA kort burde vćrdiene i nćste billede vćre rigtige.\n"
@@ -6466,13 +6599,13 @@ msgid "Continue"
msgstr "Fortsćt"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Hvilket er dit ISDN-kort?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Jeg har opdaget et ISDN PCI-kort, men jeg ved ikke hvilken type. Vćlg et PCI-"
"kort i nćste skćrmbillede."
@@ -6489,47 +6622,47 @@ msgstr "Angiv hvilken seriel port dit modem er forbundet til."
msgid "Dialup options"
msgstr "Opkaldsindstillinger"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Navn pĺ forbindelsen"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Telefonnummer"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Brugernavn"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Skript-baseret"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Terminal-baseret"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Domćnenavn"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Fřrste DNS-server (valgfri)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Anden DNS-server (valgfri)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6538,7 +6671,7 @@ msgstr ""
"Du kan lukke forbindelsen til Internettet eller genkonfigurere din "
"forbindelse."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6546,11 +6679,11 @@ msgstr ""
"\n"
"Du kan genkonfigurere din forbindelse"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Du har forbindelse til Internettet nu."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6558,32 +6691,32 @@ msgstr ""
"\n"
"Du kan lave forbindelse til Internettet eller omkonfigurere din forbindelse."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Du er ikke forbundet til Internettet nu."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Tilslut"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Afbryd"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr "Konfigurér forbindelsen"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Internetforbindelse & -konfiguration"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Vi skal nu konfigurere opkoblingen '%s'."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6602,12 +6735,12 @@ msgstr ""
"\n"
"Tryk OK for at begynde."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Konfigurér netvćrk"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6619,9 +6752,9 @@ msgstr ""
"Klik OK for at beholde din konfiguration, eller annullér for at "
"omkonfigurere din Internet- og netvćrksforbindelse.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"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"
@@ -6631,66 +6764,72 @@ msgstr ""
"Vi skal til at konfigurere din internet- eller netvćrksforbindelse.\n"
"Hvis du ikke řnsker at bruge autodetektering, sĺ fravćlg afkrydsningsboksen\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Vćlg profilen der skal konfigureres"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Brug automatisk detektion"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Eksperttilstand"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Detekterer enheder..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Normal modemforbindelse"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "Detekteret pĺ port %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN-forbindelse"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "Detekteret %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "ADSL opkobling"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "Detekteret pĺ grćnseflade %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Kabelforbindelse"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "Kabelopkobling detekteret"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "Lokalnet-konfiguration"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "ethernet-kort detekteret"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Vćlg den opkobling, du řnsker at konfigurere"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6700,23 +6839,23 @@ msgstr ""
"Venligst vćlg den du řnsker at bruger.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Internet opkobling"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Řnsker du at starte din forbindelse ved opstart?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Netvćrks konfiguration"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr "Netvćrket skal startes op igen"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6727,7 +6866,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6737,7 +6876,7 @@ msgstr ""
"Konfigurationen vil nu blive anvendt pĺ dit system.\n"
"\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6745,19 +6884,19 @@ msgstr ""
"Derefter anbefaler vi at du genstarter dit X-miljř for\n"
"at undgĺ problemer med det ćndrede vćrtsnavn"
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
"Problemer indtraf under konfigurationen.\n"
"Afprřv din forbindelse med net_monitor eller mcc. Hvis din forbindelse ikke "
"virker, kan du prřve at genstarte konfigurationen."
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"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."
@@ -6767,7 +6906,7 @@ msgstr ""
"Ved kun at trykke pĺ OK beholder du den nuvćrende konfiguration.\n"
"Ćndringer i felterne nedenunder vil overskrive denne konfiguration."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6776,38 +6915,42 @@ msgstr ""
"Indtast IP konfigurationen for denne maskine. Hvert felt skal udfyldes\n"
"med en IP adresse i `dotted-decimal' notation (for eksempel 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Konfigurerer netvćrksenheden %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (drivprogram %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP-adresse"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Netmaske"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Automatisk IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+msgid "Start at boot"
+msgstr "Start ved opstart"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP adresse skal have formatet 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6819,64 +6962,64 @@ msgstr ""
"f.eks. minpc.mitfirma.dk. Hvis du ikke har nogen ekstra navne-servere,\n"
"sĺ lad navne-server-felterne vćre blanke."
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS-server"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (fx %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Gateway enhed"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Konfiguration af mellemvćrt (proxy)"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP-proxy"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP-proxy"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Fřlg id for netvćrkskort (nyttigt for bćrbare)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Proxy skal vćre http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Proxy skal vćre ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Internet-konfiguration"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Řnsker du at forsřge at skabe forbindelse til Internettet nu?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Tester din forbindelse..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Systemet er ikke forbundet til Internettet nu."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Af sikkerhedsgrunde vil det blive afbrudt nu."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6884,111 +7027,116 @@ msgstr ""
"Det lader ikke til at dit system har forbindelse til Internettet.\n"
"Prřv at omkonfigurere din forbindelse."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Forbindelses-konfiguration"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Udfyld eller markér feltet nedenunder"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "Kort IRQ"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Kort mem (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "Kort IO"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "Kort IO_0"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "Kort IO_1"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Dit personlige telefonnummer"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Navn pĺ udbyder (f.eks. udbyder.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Udbyders telefonnummer"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Udbyder DNS 1 (valgfri)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Udbyder DNS 2 (valgfri)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Vćlg dit land"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Opringningsmĺde"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Opkoblingshastighed"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "Opkoblingens tidsudlřb (i sekunder)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Konto-login (brugernavn)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Kodeord for konto"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr "Storbritannien"
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "montering mislykkedes: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Udvidet partition ikke understřttet pĺ denne platform"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Du har plads tilovers i din partitionstabel, men jeg kan ikke udnytte den.\n"
"Den eneste lřsning er at flytte dine primćre partitioner, sĺledes at\n"
"\"hullet\" bliver placeret ved siden af de udvidede partitioner."
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Genskabning fra fil %s mislykkedes: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Fejl i sikkerhedskopien"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Fejl ved skrivning til fil %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6998,186 +7146,186 @@ msgstr ""
"En test for at tjekke integriteten af data er mislykkedes. \n"
"Dette betyder at alt pĺ disken vil ende som tilfćldigt snavs"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "skal have"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "vigtigt"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "meget rart"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "rart"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "mĺske"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Common Unix Printing System"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR New Generation"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Line Printer Dćmon"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Lokal printer"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Ekstern printer"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Printer pĺ ekstern CUPS server"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Printer pĺ ekstern lpd server"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Netvćrksprinter (TCP/sokkel)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Printer pĺ SMB/Windows 95/98/NT server"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Printer pĺ en NetWare server"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Indtast en printerenheds-URI"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "kanalisér opgave ind i kommando"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Ukendt model"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "Lokale printere"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "Eksterne printere"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr " pĺ parallelport \\/*%s"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", USB printer \\/*%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", multi-funktions-enhed pĺ parallel port \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ", multi-funktions-enhed pĺ USB"
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ", multi-funktions-enhed pĺ HP JetDirect"
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ", multi-funktions-enhed"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, c-format
msgid ", printing to %s"
msgstr ", skriver til %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr "pĺ LPD-server \"%s\", printer \"%s\""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", TCP/IP vćrt \"%s\", port %s"
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr "pĺ Windows-server \"%s\", deling \"%s\""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr "pĺ Novell-server \"%s\", printer \"%s\""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ", med kommando %s"
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr "Rĺ printer (ingen driver)"
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(pĺ %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(pĺ denne maskine)"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Pĺ CUPS-server '%s'"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Forvalgt)"
@@ -7199,11 +7347,11 @@ msgstr ""
"Eksterne CUPS-servere behřver du ikke at konfigurere her: \n"
"disse printere vil automatisk blive fundet."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
msgid "CUPS configuration"
msgstr "CUPS-Konfiguration"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
msgid "Specify CUPS server"
msgstr "Angiv CUPS server"
@@ -7245,7 +7393,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP-adressen břr se ud som 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "Port-nummeret břr vćre et heltal!"
@@ -7253,7 +7401,7 @@ msgstr "Port-nummeret břr vćre et heltal!"
msgid "CUPS server IP"
msgstr "CUPS-serverens IP"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Port"
@@ -7261,20 +7409,12 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Automatisk CUPS-konfiguration"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Sřger efter enheder..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Afprřv porte"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr "Tilfřj en ny printer"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7296,13 +7436,13 @@ msgstr ""
"giver dig adgang til alle tilgćngelige printerdrivere, drivermuligheder og "
"opkoblingstyper for printere."
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Lokal printer"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7334,11 +7474,11 @@ msgstr ""
"řnsker at opsćtte udskrift pĺ en ekstern printer og Printerdrake ikke lister "
"denne automatisk."
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr "Auto-opdagelse af printere"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7361,11 +7501,11 @@ msgstr ""
"řnsker at ćndre pĺ standard-indstillingerne (papirbakke, printkvalitet ...), "
"sĺ vćlg 'Printer' i 'Udstyr'-afsnittet i Mandrake Kontrolcentret."
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr "Auto-opdagelse af printere"
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7381,33 +7521,37 @@ msgstr ""
"\n"
"Řnsker du virkeligt at fĺ dine printere automatisk opdaget?"
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "Udfřr automatisk detektion"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr "Opsćt printer manuelt"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Afprřv porte"
+
+#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
msgstr "Fandt %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Printer pĺ parallel port \\/*%s"
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr "USB-printer \\/*%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
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, ..., "
@@ -7419,11 +7563,11 @@ msgstr ""
"dev/lp1 ..., svarende til LPT1:, LPT2: ..., fřrste USB-printer: /dev/usb/"
"lp0, 2. USB-printer: /dev/usb/lp1 ...)."
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
msgstr "Du skal indtaste en enhed eller et filnavn!"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
@@ -7431,7 +7575,7 @@ msgstr ""
"Ingen lokal printer fundet!\n"
"\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
@@ -7439,7 +7583,7 @@ msgstr ""
"Netvćrksprintere kan kun installeres efter installeringen. Vćlg 'Udstyr' og "
"dernćst 'Printer' i Mandrake kontrolcentret."
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
@@ -7447,7 +7591,7 @@ msgstr ""
"For at installere netvćrksprintere skal du klikke pĺ 'Annullér', skifte til "
"'Ekspert-version' og klikke pĺ 'Tilfřj en ny printer' igen."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7455,7 +7599,7 @@ msgstr ""
"Den fřlgende printer blev opdaget automatisk. Hvis det ikke er den du řnsker "
"at opsćtte sĺ indtast et enhedsnavn/filnavn pĺ inddatalinjen"
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7463,7 +7607,7 @@ msgstr ""
"Her er en liste over alle automatisk opdagede printere. Vćlg den printer du "
"řnsker at opsćtte eller indtast et enhedsnavn/filnavn pĺ inddatalinjen"
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7475,7 +7619,7 @@ msgstr ""
"eller hvis du foretrćkker en tilpasset printerkonfiguration, sĺ slĺ 'Manuel "
"konfiguration' til."
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7488,7 +7632,7 @@ msgstr ""
"foretrćkker en tilpasset printerkonfiguration, sĺ slĺ 'Manuel konfiguration' "
"til."
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7496,11 +7640,11 @@ msgstr ""
"Angiv hvilken port din printer er forbundet til eller indtast et enhedsnavn/"
"filnavn pĺ inddatalinjen"
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
msgstr "Angiv hvilken port din printer er forbundet til."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7508,52 +7652,65 @@ msgstr ""
"(parallelporte: /dev/lp0, /dev/lp1 ..., svarende til LPT1:, LPT2: ..., "
"fřrste USB-printer: /dev/usb/lp0, 2. USB-printer: /dev/usb/lp1 ...)."
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
msgstr "Du skal vćlge eller indtaste en printer/enhed!"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
msgstr "Manuel konfiguration"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
+#, fuzzy
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
"Er din printer en multi-funktionsenhed fra HP (OfficeJet, PSC, PhotoSmart, "
"LaserJet 1100/1200/1220/3200/3300 med skanner)?"
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
msgstr "Installerer HPOJ-pakke..."
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr "Tjekker enhed og konfigurerer HPOJ ..."
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
msgstr "Installerer SANE-pakke..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Installerer pakker..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr "Skanner pĺ din HP multi-funktionsenhed"
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+#, fuzzy
+msgid "Photo memory card access on your HP multi-function device"
+msgstr "Skanner pĺ din HP multi-funktionsenhed"
+
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr "Gřr printerport tilgćngelig for CUPS ..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr "Lćser database over printere ..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Parametre til ekstern lpd"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7561,27 +7718,27 @@ msgstr ""
"For at bruge en ekstern printer, skal du opgive vćrtsnavnet\n"
"for printerserveren og navnet pĺ printeren pĺ denne server."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Eksternt vćrtsnavn"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Eksternt printernavn"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "Eksternt vćrtsnavn mangler"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "Det eksterne vćrtsnavn mangler!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT)-printer indstillinger"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7593,35 +7750,35 @@ msgstr ""
"IP-adressen pĺ printerserveren, sĺ vel som delenavnet for printeren du vil "
"bruge samt nřdvendig information om brugernavn, adgangskode og arbejdsgruppe."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "SMB-servervćrt"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "SMB-serverens IP"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Dele-navn"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Arbejdsgruppe"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "Enten servernavnet eller serverens IP skal angives!"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "Samba-delenavn mangler!"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr "SIKKERHEDSADVARSEL!"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7664,7 +7821,7 @@ msgstr ""
"Opsćt dernćst udskrift fra denne maskine med '%s'-opkoblingstypen i "
"Printerdrake.\n"
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7676,7 +7833,7 @@ msgstr ""
"protokollen, og opsćt udskrift fra denne maskine med '%s'-opkoblingstypen i "
"Printerdrake.\n"
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7688,11 +7845,11 @@ msgstr ""
"\n"
"Řnsker du virkelig at fortsćtte med at opsćtte din printer som du gřr nu?"
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "NetWare printer-parametre"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
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 "
@@ -7704,27 +7861,27 @@ msgstr ""
"navnet!) sĺvel som křnavnet for den printer du vil benytte samt om "
"nřdvendigt et brugernavn og en adgangskode."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Printer-server"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Printerkř-navn"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "NCP-servernavn mangler!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "NCP-křnavn mangler!"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
msgstr "TCP/Sokkel-printer-parametre"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -7735,19 +7892,19 @@ msgstr ""
"printeren, og eventuelt portnummer. Pĺ HP JetDirect-servere er portnummeret "
"normalt 9100, pĺ andre servere varierer det. Tjek manualen for dit udstyr."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "printer-vćrtsnavn"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "printer-vćrtsnavn mangler!"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Printer-enheds URI"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
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 "
@@ -7757,11 +7914,11 @@ msgstr ""
"CUPS- eller Foomatic-standarden. Bemćrk at ikke alle typer URIer "
"understřttes af alle kř-behandlere."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "En korrekt URI skal opgives!"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -7770,27 +7927,23 @@ msgstr ""
"Beskrivelsen og lokaliseringsfelterne behřver ikke \n"
"udfyldes. De er kommentarer til brugerne."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Navn pĺ printer"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Beskrivelse"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Placering"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr "Forbereder printerdatabase: ..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
msgid "Your printer model"
msgstr "Din printermodel"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7815,24 +7968,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
msgid "The model is correct"
msgstr "Modellen er korrekt"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
msgid "Select model manually"
msgstr "Vćlg model manuelt"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Valg af printermodel"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Hvilken printermodel har du?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7848,7 +8001,7 @@ msgstr ""
"nĺr markřren stĺr pĺ en forkert model, eller\n"
"pĺ 'Rĺ printer'."
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -7856,11 +8009,11 @@ msgstr ""
"Hvis din printer ikke er listet, sĺ vćlg en kompatibel (se printermanual) "
"eller en lignende printer."
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "OKI konfiguration af winprinter"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7876,11 +8029,11 @@ msgstr ""
"parallelle port fřr du udskriver en prřveside. Ellers vil printeren ikke "
"virke. Din opsćtning af forbindelsestype vil blive ignoreret af driveren."
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "Lexmark inkjet konfiguration"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7892,7 +8045,7 @@ msgstr ""
"din printer til en lokal port eller konfigurér den pĺ den maskine, den er "
"forbundet til."
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7914,7 +8067,7 @@ msgstr ""
"'lexmarkmaintain', og justér opsćtningen af justeringen af hovedet med dette "
"program."
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7930,22 +8083,22 @@ msgstr ""
"enhed, ekstra bakker) er sat rigtigt. Bemćrk at en meget god "
"udskriftskvalitet kan gřre udskriften betydeligt langsommere."
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Valg %s skal vćre et helt tal!"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "Valg %s skal vćre et tal!"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "Valg %s er udenfor omrĺde!"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7954,11 +8107,11 @@ msgstr ""
"Řnsker du fremover at bruge printeren \"%s\"\n"
"som standard?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "Testsider"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7970,39 +8123,39 @@ msgstr ""
"laserprintere med for lidt hukommelse vil den mĺske ikke skrives ud i det "
"hele taget. Som regel vil det vćre nok at udskrive standard-testsiden."
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "Ingen testsider"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Udskriv"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "Standard testside"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr "Alternativ testside (letter)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "Alternativ testside (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "Fototestside"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
msgstr "Udskriv ikke nogen testsider"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Udskriver testsider..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8017,7 +8170,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8025,15 +8178,15 @@ msgstr ""
"Testsider er sendt til printeren.\n"
"Det kan tage lidt tid fřr printeren starter.\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr "Fungerer det korrekt?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr "Rĺ printer"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8046,7 +8199,7 @@ msgstr ""
"'kprinter <fil>'. De grafiske vćrktřjer lader dig vćlge printeren og ćndre "
"indstillingerne pĺ en nem mĺde.\n"
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
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 "
@@ -8056,8 +8209,8 @@ msgstr ""
"udskriftsdialogerne i mange programmer, men lad vćre med at angive filnavnet "
"her, fordi filen der skal udskrives leveres af programmet.\n"
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -8070,11 +8223,11 @@ msgstr ""
"bestemt udskriftsjob. Tilfřj blot de řnskede indstillinger til "
"kommandolinjen, fx '%s <fil>\". "
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#, fuzzy, 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\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
"Hvilke muligheder der er for den aktuelle printer kan du enten lćse pĺ "
@@ -8082,7 +8235,7 @@ msgstr ""
"s.\n"
"\n"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8090,7 +8243,7 @@ msgstr ""
"Her er en liste over tilgćngelige printmuligheder for den aktuelle printer:\n"
"\n"
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8099,8 +8252,8 @@ msgstr ""
"For at udskrive en fil fra kommandolinjen (terminalvinduet) brug da "
"kommandoen '%s <fil>'.\n"
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8110,7 +8263,7 @@ msgstr ""
"udskriftsdialogerne i mange programmer, men lad vćre med at angive filnavnet "
"her, fordi filen der skal udskrives leveres af programmet.\n"
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8118,7 +8271,7 @@ msgstr ""
"For at fĺ en liste af tilgćngelige muligheder for den aktuelle printer kan "
"du klikke pĺ knappen 'Liste med printermuligheder'."
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8127,7 +8280,7 @@ msgstr ""
"For at udskrive en fil fra kommandolinjen (terminalvinduet) brug da "
"kommandoen '%s <fil>' eller '%s <fil>'.\n"
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8143,7 +8296,7 @@ msgstr ""
"řjeblikkeligt nĺr du klikker pĺ den. Dette er fx nyttigt hvis papiret "
"krřller sammen.\n"
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -8156,38 +8309,49 @@ msgstr ""
"for et bestemt udskriftsjob. Tilfřj blot de řnskede indstillinger til "
"kommandolinjen, fx '%s <fil>'.\n"
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Luk"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Udskriver eller skanner pĺ '%s'"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Udskriver eller skanner pĺ '%s'"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Udskriver eller skanner pĺ '%s'"
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Udskriver pĺ printeren '%s'"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Luk"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "Liste med printermuligheder"
-#: ../../printerdrake.pm_.c:1766
-#, c-format
+#: ../../printerdrake.pm_.c:1802
+#, fuzzy, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
@@ -8200,38 +8364,30 @@ msgstr ""
"\n"
"Brug ikke \"scannerdrake\" pĺ denne enhed!"
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-"Din HP-multifunktionsenhed blev konfigureret automatisk til at kunne skanne. "
-"Nu kan du skanne med 'ptal-hp %s scan ...' fra kommandolinjen. Skanning via "
-"en grafisk grćnseflade eller fra GIMP er endnu ikke understřttet for din "
-"enhed. Du kan finde mere information i filen \"/usr/share/doc/hpoj-0.8/ptal-"
-"hp-scan.html\" pĺ dit system. Hvis du har en HP LaserJet 1100 eller 1200 kan "
-"du kun skanne nĺr du har skannermuligheden installeret pĺ udstyret.\n"
-"\n"
-"Brug ikke \"scannerdrake\" pĺ denne enhed!"
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr "Lćser printerdata ..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "Overfřr printerkonfiguration"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8246,7 +8402,7 @@ msgstr ""
"opgaver.\n"
"Ikke alle křer kan overfřres pĺ grund af:\n"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8254,7 +8410,7 @@ msgstr ""
"CUPS understřtter ikke printere pĺ Novellservere eller printere som sender "
"dataene ind i en frit-formet kommando.\n"
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -8262,11 +8418,11 @@ msgstr ""
"PDQ understřtter kun lokale printere, eksterne LPD printere, og Sokkel/TCP "
"printere.\n"
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD og LPRng understřtter ikke IPP printere.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8274,7 +8430,7 @@ msgstr ""
"Desuden kan křer lavet med dette program eller \"foomatic -configure\" ikke "
"overflyttes."
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8284,7 +8440,7 @@ msgstr ""
"Printere konfigureret med PPD-filerne, som producenten har lavet, eller med "
"CUPS egne drivere kan heller ikke overflyttes."
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8294,15 +8450,15 @@ msgstr ""
"Vćlg printerene som du vil overflytte og klik\n"
"\"Overfřr\"."
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr "Overfřr ikke printere"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr "Overfřr"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8313,11 +8469,11 @@ msgstr ""
"Klik \"Overfřr\" for at overskrive.\n"
"Du kan ogsĺ give et nyt printernavn, eller overspringe denne printer."
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Navn pĺ printer břr kun indeholde bogstaver, tal og understregen _"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8326,16 +8482,16 @@ msgstr ""
"Printeren \"%s\" eksisterer allerede,\n"
"řnsker du virkelig at overskrive dens konfiguration?"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Nyt printernavn"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr "Overfřrer %s ..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8344,29 +8500,29 @@ msgstr ""
"Du har overfřrt din tidligere standard-printer '%s', skal den ogsĺ vćre "
"standard-printer under det nye printersystem %s?"
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr "Opfrisker printerdata ..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr "Konfiguration af en ekstern printer"
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "Starter netvćrk ..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr "Konfigurér netvćrket nu"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "Netvćrksfunktionalitet ikke konfigureret"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8378,11 +8534,11 @@ msgstr ""
"fortsćtte uden en netvćrkskonfiguration, vil du ikke kunne bruge printeren "
"som du konfigurerer nu. Hvordan řnsker du at fortsćtte?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr "Fortsćt med konfigurering af netvćrk"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8397,7 +8553,7 @@ msgstr ""
"'Forbindelse', og konfigurér derefter printeren ogsĺ med Mandrake "
"Kontrolcenter, afsnittet om 'Maskinel'/'Printer'"
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
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 "
@@ -8406,24 +8562,24 @@ msgstr ""
"Netvćrksadgangen křrte ikke og kunne ikke startes. Tjek din konfiguration og "
"dit udstyr. Prřv derefter at konfigurere din eksterne printer igen."
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr "Genstarter printsystemet ..."
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "hřj"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr "paranoid"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Installerer et printersystem pĺ sikkerhedsniveauet %s"
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8448,11 +8604,11 @@ msgstr ""
"\n"
"Řnsker du virkelig at konfigurere udskrivning pĺ denne maskine?"
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr "Starter printsystemet ved opstart"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8472,63 +8628,63 @@ msgstr ""
"\n"
"Řnsker du at have den automatiske opstart af printsystemet slĺet til igen?"
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr "Tjekker installeret programmel..."
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr "Fjerner LPRng..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr "Fjerner LPD..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "Vćlg printerkř-behandler"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "Hvilket printersystem (spooler) řnsker du at bruge?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Konfigurerer printer '%s'..."
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
msgstr "Installerer Foomatic..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Printer-muligheder"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr "Forbereder PrinterDrake ..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
msgid "Configuring applications..."
msgstr "Konfigurerer programmer..."
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "Vil du gerne konfigurere udskrivning?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr "Printsystem: "
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -8540,7 +8696,7 @@ msgstr ""
"information om den; eller for at gřre en ekstern CUPS-printer tilgćngelig "
"for Star Office/OpenOffice.org.org."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -8550,29 +8706,33 @@ msgstr ""
"dens indstillinger, for at gřre den til standard-printer, eller for at se "
"information om den."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Opfrisk printerliste (for at vise alle tilgćngelige eksterne CUPS-printere)"
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
msgid "Change the printing system"
msgstr "Ćndr printsystemet"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Normal udgave"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Afslut"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr "Řnsker du at konfigurere en anden printer?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "Ćndr printerkonfiguration"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, c-format
msgid ""
"Printer %s\n"
@@ -8581,104 +8741,104 @@ msgstr ""
"Printer %s\n"
"Hvad řnsker du at forandre pĺ, pĺ denne printer?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr "Gřr det!"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "Printeropkoblingstype"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "Printernavn, beskrivelse, sted"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr "Printerproducent, model, driver"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr "Printerproducent, model"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr "Sćt printeren som standard-printer"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr "Tilfřj denne printer til Star Office/OpenOffice.org.org"
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr "Fjern denne printer fra Star Office/OpenOffice.org.org"
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr "Udskriver testsider"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
msgstr "Véd hvordan denne printer bruges"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "Fjern printer"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "Fjerner gammel printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
+msgstr "Fjerner gammel printer \"%s\"..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Standard printer"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Printeren '%s' er nu sat som standard-printer."
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr "Tilfřjer printer til Star Office/OpenOffice.org.org"
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr "Printeren \"%s\" blev tilfřjet til Star Office/OpenOffice.org.org."
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
"Kunne ikke tilfřje printeren \"%s\" til Star Office/OpenOffice.org.org."
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr "Fjerner printer fra Star Office/OpenOffice.org.org"
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr "Printeren \"%s\" blev fjernet fra Star Office/OpenOffice.org.org."
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr "Kunne ikke fjerne printeren \"%s\" fra Star Office/OpenOffice.org.org."
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Řnsker du virkelig at fjerne printeren \"%s\"?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Fjerner printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
+msgstr "Fjerner printer \"%s\"..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
#: ../../proxy.pm_.c:78
@@ -8762,24 +8922,61 @@ msgstr "Adgangskoderne stemmer ikke overens. Prřv igen!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Kan ikke tilfřje en partition til _formatéret_ RAID md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Kan ikke skrive filen %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid fejlede"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid fejlede (mĺske mangler raidtools?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ikke nok partitioner til at benytte RAID level %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Dette niveau skal bruges med omtanke. Det gřr dit system nemmere at bruge, "
+"men er meget sĺrbart: det mĺ ikke bruges til en maskine der er i et netvćrk "
+"eller har forbindelse til Internettet. Der er ikke nogen kontrol af "
+"adgangskoder."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+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 ""
+"Med dette sikkerhedsniveau kan brug som server komme pĺ tale.\n"
+"Sikkerheden er nu hřj nok til at systemet kan bruges som server som tillader "
+"forbindelser fra mange klienter. Bemćrk: hvis din maskine kun er en klient "
+"pĺ internettet břr du hellere vćlge et lavere niveau."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "Avancerede muligheder"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Valg"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Start ALSA (Advanced Linux Sound Architecture) lydsystemet"
@@ -8836,7 +9033,7 @@ msgstr ""
"HardDrake křrer en sřgning efter maskinel, og kan konfigurere nyt/ćndret "
"maskinel."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr "Apache er en webserver. Den bruges til at betjene HTML-filer og CGI."
@@ -8909,7 +9106,7 @@ msgstr ""
"Linux Virtuel Server, brugt til at bygge en server med hřj ydelse og\n"
"tilgćngelighed."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -8986,7 +9183,7 @@ msgstr ""
"NFS og NIS. Portmap serveren skal křre pĺ maskiner som bruger protokoller "
"der udnytter RPC mekanismen"
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -9082,7 +9279,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Fildeling"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "System"
@@ -9211,6 +9408,7 @@ msgstr ""
"gcc-oversćtteren og de bedste Ĺben Kildekode-udviklingsmiljřer"
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
msgstr "Mandrake Kontrolcenter"
@@ -9332,6 +9530,15 @@ msgstr "http://www.mandrakesoft.com/sales/contact"
msgid "Installing packages..."
msgstr "Installerer pakker..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Log ud og tryk herefter pĺ Ctrl-Alt-Bak"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Log ind i %s igen for at aktivere ćndringerne"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -9340,6 +9547,145 @@ msgstr ""
"Jeg kan ikke lćse din partitionstabel, den er for řdelagt :(\n"
"Jeg vil forsřge mig med at slette de beskadigede partitioner"
+#: ../../standalone/drakTermServ_.c:189
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Konfiguration af Mandrake Terminalserver"
+
+#: ../../standalone/drakTermServ_.c:204
+msgid "Enable Server"
+msgstr "Aktivér server"
+
+#: ../../standalone/drakTermServ_.c:211
+msgid "Disable Server"
+msgstr "Deaktivér server"
+
+#: ../../standalone/drakTermServ_.c:219
+msgid "Start Server"
+msgstr "Start server"
+
+#: ../../standalone/drakTermServ_.c:226
+msgid "Stop Server"
+msgstr "Stop server"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr "Etherboot diskette/ISO"
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr "Opstartsbilleder for netopstart"
+
+#: ../../standalone/drakTermServ_.c:240
+msgid "Add/Del Users"
+msgstr "Tilfřj/slet brugere"
+
+#: ../../standalone/drakTermServ_.c:242
+msgid "Add/Del Clients"
+msgstr "Tilfřj/slet klienter"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Hjćlp"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr "Start fra sdiskette"
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr "Start fra ISO"
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr "Opbyg hele kernen -->"
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr "Dette vil tage nogle fĺ minutter."
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr "Ingen kerne valgt!"
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr "Byg enkel NIC -->"
+
+#: ../../standalone/drakTermServ_.c:533
+msgid "No nic selected!"
+msgstr "Ingen NIC valgt!"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr "Byg alle kerner -->"
+
+#: ../../standalone/drakTermServ_.c:550
+msgid "<-- Delete"
+msgstr "<-- Slet"
+
+#: ../../standalone/drakTermServ_.c:557
+msgid "Delete All NBIs"
+msgstr "Slet alle NBI'er"
+
+#: ../../standalone/drakTermServ_.c:619
+msgid "Add User -->"
+msgstr "Tilfřj bruger -->"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr "<-- Slet bruger"
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr "Tilfřj klient -->"
+
+#: ../../standalone/drakTermServ_.c:733
+msgid "<-- Del Client"
+msgstr "<-- Slet klient"
+
+#: ../../standalone/drakTermServ_.c:739
+msgid "dhcpd Config..."
+msgstr "Konfigurér dhcpd..."
+
+#: ../../standalone/drakTermServ_.c:886
+msgid "Write Config"
+msgstr "Udskriv konfiguration"
+
+#: ../../standalone/drakTermServ_.c:944
+msgid "Please insert floppy disk:"
+msgstr "Indsćt diskette:"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr "Kunne ikke fĺ adgang til disketten!"
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr "Diskette kan fjernes nu"
+
+#: ../../standalone/drakTermServ_.c:953
+msgid "No floppy drive available!"
+msgstr "Intet tilgćngeligt diskettedrev!"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr "Etherboot ISO-aftryk er %s"
+
+#: ../../standalone/drakTermServ_.c:964
+#, fuzzy
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr "Noget gik galt!"
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr "Skal oprette /etc/dhcpd.conf fřrst!"
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "Fejl!"
@@ -9391,6 +9737,10 @@ msgstr ""
"Vćlg for hvert skridt om det skal vćre som under installationen, eller "
"manuelt"
+#: ../../standalone/drakautoinst_.c:83
+msgid "Creating auto install floppy"
+msgstr "Laver autoinstallations-diskette"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -9403,12 +9753,12 @@ msgstr ""
"\n"
"Parametrene for autokonfigurationen kan ses i afsnittene til venstre"
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Tillykke!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9416,28 +9766,19 @@ msgstr ""
"Disketten er blevet genereret.\n"
"Du kan nu gennemfřre installationen igen."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr "Autoinstallation"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr "Tilfřj et element"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr "Fjern det sidste element"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
@@ -9447,7 +9788,7 @@ msgstr ""
" DrakBackup Rapport \n"
"\n"
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9459,19 +9800,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9483,63 +9812,86 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr "total fremdrift"
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr "Sikkerhedskopiér systemfiler..."
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
msgstr "Sikkerhedskopifiler for disk..."
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
msgstr "Sikkerhedskopiér brugerfiler..."
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr "Fremdrift for sikkerhedskopiering af disk..."
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
msgstr "Sikkerhedskopiér andre filer..."
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, fuzzy, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
"filliste sending via FTP: %s\n"
" "
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
+#, fuzzy
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
+"FTP.\n"
+msgstr ""
+"\n"
+"FTP forbindelsesproblem: Det var ikke muligt at sende dine backupfiler via "
"FTP.\n"
+
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
"\n"
-"(!) FTP forbindelsesproblem: Det var ikke muligt at sende dine backupfiler "
-"via FTP.\n"
+msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr "(!) Fejl ved afsendelse af post. \n"
+#: ../../standalone/drakbackup_.c:914
+msgid " Error during mail sending. \n"
+msgstr " Fejl ved afsendelse af post. \n"
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
msgstr "Valg af filer"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr "Vćlg filerne eller katalogerne og klik pĺ 'Tilfřj'"
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -9547,26 +9899,26 @@ msgstr ""
"\n"
"Markér alle muligheder som du behřver.\n"
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Disse valgmuligheder kan sikkerhedskopiere og genskabe alle filer i dit /etc "
"katalog.\n"
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr "Lav sikkerhedkopi af dine systemfiler. ( /etc kataloget)"
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr "Brug inkrementalbackup (overskriv ikke gamle sikkerhedskopier)"
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Medtag ikke kritiske filer (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -9574,83 +9926,77 @@ msgstr ""
"Med denne valgmulighed vil du vćre i stand til at kunne genskabe\n"
"enhver version af dit /etc katalog."
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
msgstr "Markér alle brugere som du vil have med i din sikkerhedskopi."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr "Medtag ikke cache for netlćser"
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Brug inkrementalbackup (overskriv ikke gamle sikkerhedskopier)"
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
msgstr "Fjern valgte"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr "Brugere"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
msgstr "Brug FTP forbindelse til sikkerhedskopiering"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
msgstr "Indtast vćrtsnavn eller IP."
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
"Indtast kataloget hvori\n"
" sikkerhedskopien skal lćgges pĺ denne maskine."
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
msgstr "Indtast dit brugernavn"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
msgstr "Indtast din adgangskode"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
msgstr "Husk denne adgangskode"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "FTP forbindelse"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Sikker forbindelse"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr "Brug CD/DVDROM til sikkerhedskopiering"
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
msgstr "Vćlg din cd-plads"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
msgstr "Markér om du bruger et CDRW-medie"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr "Markér om du vil slette din CDRW fřr ny skrivning"
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
@@ -9658,7 +10004,7 @@ msgstr ""
"Markér om du řnsker at medtage\n"
" installeringsopstart pĺ din cd."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -9666,16 +10012,21 @@ msgstr ""
"Indtast din CD-brćnders enhedsnavn\n"
" fx: 0,1,0"
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
msgstr "brug bĺnd til sikkerhedskopieringen"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr "Indtast endhedsnavnet der skal bruges til sikkerhedskopiering"
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Markér om du vil slette din CDRW fřr ny skrivning"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -9683,51 +10034,57 @@ msgstr ""
"Indtast den maksimale střrrelse\n"
" tilladt for Drakbackup"
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
+#: ../../standalone/drakbackup_.c:1497
+#, fuzzy
+msgid "Please enter the directory to save to:"
msgstr "Indtast kataloget der skal gemmes:"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
msgstr "Brug kvoter for sikkerhedskopieringsfiler"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
msgstr "Netvćrk"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
-msgstr "CDROM / DVDROM"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr "Diskdrev / NFS"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Type"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr "timeligt"
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr "dagligt"
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr "ugentligt"
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr "mĺnedligt"
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
msgstr "Brug dćmon"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -9735,7 +10092,7 @@ msgstr ""
"Vćlg tidsinterval mellem\n"
"hver sikkerhedskopiering"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
@@ -9743,71 +10100,67 @@ msgstr ""
"Vćlg mediet for\n"
"sikkerhedskopiering."
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Brug diskdrev med dćmon"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "Brug FTP med dćmon"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+#, fuzzy
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr "Forsikr dig gerne at cron-dćmonen er med i dine tjenester."
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr "Send epost-rapport efter hver sikkerhedskopiering til:"
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "Hvad"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "Hvor"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "Hvornĺr"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
msgstr "Flere muligheder"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
msgstr "Drakbackup konfiguration"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
msgstr "Vćlg hvor du řnsker at sikkerhedskopiere"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr "pĺ diskdrev"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr "over netvćrk"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
msgstr "Vćlg hvad du vil sikkerhedkopiere"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
msgstr "Lav sikkerhedskopi af system"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr "Lav sikkerhedskopi af brugere"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr "Hĺndpluk bruger"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
@@ -9815,7 +10168,7 @@ msgstr ""
"\n"
"Kilder for sikkerhedskopi: \n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
@@ -9823,7 +10176,7 @@ msgstr ""
"\n"
"- Systemfiler:\n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
@@ -9831,7 +10184,7 @@ msgstr ""
"\n"
"- Brugerfiler:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
@@ -9839,7 +10192,7 @@ msgstr ""
"\n"
"- Andre filer:\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
@@ -9848,16 +10201,45 @@ msgstr ""
"\n"
"- Gem til diskdrev pĺ stien: %s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Muse-enhed: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"- Gem via FTP pĺ vćrt : %s\n"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
"\n"
"- Gem via FTP pĺ vćrt : %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -9866,7 +10248,7 @@ msgstr ""
"\t\t brugernavn: %s\n"
"\t\t pĺ sti: %s \n"
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
@@ -9874,19 +10256,19 @@ msgstr ""
"\n"
"- Muligheder:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr "\tMedtag ikke systemfiler\n"
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr "\tSikkerhedskopiering bruger tar og bzip2\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr "\tSikkerhedskopiering bruger tar og gzip\n"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
@@ -9895,27 +10277,41 @@ msgstr ""
"\n"
"- Dćmon (%s) indeholder:\n"
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr "\t-Diskdrev.\n"
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr "\t-cdrom.\n"
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr "\t-Netvćrk via FTP.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr "\t-Netvćrk via SSH.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t-Netvćrk via FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t-Netvćrk via FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Ingen konfiguration, klik pĺ Vejleder eller Avanceret.\n"
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
@@ -9923,7 +10319,7 @@ msgstr ""
"Liste over data som skal genskabes:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
@@ -9931,130 +10327,133 @@ msgstr ""
"Liste over data der er řdelagt:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
msgid "Please uncheck or remove it on next time."
msgstr "Afmarkér eller fjern det gerne nćste gang."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr "Sikkerhedskopifiler er řdelagte"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr " Alle dine valgte data er blevet "
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr " genskabt uden fejl pĺ %s "
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
msgid " Restore Configuration "
msgstr " Genskab konfiguration "
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr "O.k. at genskabe de andre filer."
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr "Brugerliste at genskabe (kun den nyeste dato per bruger er vigtig)"
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
msgstr "Lav sikkerhedskopi af systemfiler fřr:"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
msgid "please choose the date to restore"
msgstr "Vćlg dato for genskabning"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
msgstr "Brug disk til sikkerhedskopiering"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+msgid "Please enter the directory to save:"
+msgstr "Indtast kataloget der skal gemmes:"
+
+#: ../../standalone/drakbackup_.c:2416
+msgid "FTP Connection"
+msgstr "FTP forbindelse"
+
+#: ../../standalone/drakbackup_.c:2424
+msgid "Secure Connection"
+msgstr "Sikker forbindelse"
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
msgstr "Genskab fra disk."
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr "Indtast kataloget hvor sikkerhedskopier gemmes"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
msgstr "Vćlg et andet medie at genskabe fra"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
msgid "Other Media"
msgstr "Andet medie"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
msgid "Restore system"
msgstr "Genskab system"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
msgstr "Genskab brugere"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
msgstr "Genskab andet"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr "vćlg sti at genskabe (i stedet for / )"
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Lav ny sikkerhedskopi fřr genskabning (kun for inkrementalbackupper)."
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr "Fjern brugerkataloger fřr genskabning."
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr "Genskab alle sikkerhedskopier"
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
msgid "Custom Restore"
msgstr "Tilpasset genskabelse"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Hjćlp"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "Forrige"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "Gem"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
msgstr "Opbyg sikkerhedskopien"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
msgstr "Genskab"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "Nćste"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -10062,7 +10461,7 @@ msgstr ""
"Lav sikkerhedskopieringen fřr genskablesen af den...\n"
" eller efterse at stien til gemning er korrekt."
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
@@ -10072,31 +10471,35 @@ msgstr ""
" din rapport blev ikke sendt\n"
" Konfigurér venligst sendmail"
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Pakkeliste til installation"
+#: ../../standalone/drakbackup_.c:2933
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "De fřlgende pakker vil blive installeret"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
+#, fuzzy
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
"Fejl ved sending af fil via FTP.\n"
" Ret venligst din FTP-konfiguration."
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
msgstr "Udvćlg de data du vil genskabe..."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
msgstr "Vćlg medie for sikkerhedskopi..."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
msgstr "Vćlg data for sikkerhedskopi..."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10104,75 +10507,75 @@ msgstr ""
"ingen konfigurationsfil fundet \n"
"klik pĺ Vejleder eller Avanceret."
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr "Under udvikling ... vent venligst:-)"
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
msgid "Backup system files"
msgstr "Lav sikkerhedskopi af systemfiler"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
msgid "Backup user files"
msgstr "Lav sikkerhedskopi af brugerfiler"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
msgid "Backup other files"
msgstr "Lav sikkerhedskopi af andre filer"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr "Total fremdrift"
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr "Filer sendes via FTP"
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
msgid "Sending files..."
msgstr "Sender filer..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr "Dataliste som skal medtages pĺ cdrom."
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
msgid "Please enter the cd writer speed"
msgstr "Indtast hastighed pĺ cd-brćnder"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr "Indtast navnet pĺ enheden for din cd-brćnder (fx: 0,1,0)"
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
msgstr "Markér om du řnsker at medtage installeringsopstart pĺ din cd."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
msgid "Backup Now from configuration file"
msgstr "Lav sikkerhedskopi nu ud fra konfigurationsfil"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
msgid "View Backup Configuration."
msgstr "Se konfiguration af sikkerhedskopiering."
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
msgid "Wizard Configuration"
msgstr "Konfiguration med vejleder"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
msgid "Advanced Configuration"
msgstr "Avanceret konfiguration"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
msgstr "Lav sikkerhedskopiering nu"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -10232,7 +10635,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10246,7 +10649,7 @@ msgstr ""
" sćtte myhostname eller mydomain i /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -10322,7 +10725,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -10371,13 +10774,18 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft ved DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10409,7 +10817,7 @@ msgstr ""
"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,\n"
"USA."
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -10483,7 +10891,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -10501,7 +10909,7 @@ msgstr ""
"fřr den sendes til ftp-serveren.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10523,7 +10931,7 @@ msgstr ""
"Det er vigtigt at vćre forsigtig og ikke ćndre sikkerhedskopieringens\n"
"datafiler i hĺnden.\n"
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -10601,99 +11009,525 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Installationen af %s mislykkedes. Fřlgende fejl opstod:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr "Mandrake vćrktřj til fejlrapportering"
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr "Fřrstegangshjćlper"
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr "Synkroniseringsvćrktřj"
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+msgid "Standalone Tools"
+msgstr "Fritstĺende vćrktřjer"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr "HardDrake"
+
+#: ../../standalone/drakbug_.c:54
+msgid "Mandrake Online"
+msgstr "Mandrake Online"
+
+#: ../../standalone/drakbug_.c:55
+msgid "Menudrake"
+msgstr "Menudrake"
+
+#: ../../standalone/drakbug_.c:56
+msgid "Msec"
+msgstr "Msek"
+
+#: ../../standalone/drakbug_.c:57
+msgid "Remote Control"
+msgstr "Ekstern kontrol"
+
+#: ../../standalone/drakbug_.c:58
+msgid "Software Manager"
+msgstr "Programmeladministration"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr "Urpmi"
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr "Migrationsvćrktřj for MS Windows"
+
+#: ../../standalone/drakbug_.c:61
+msgid "Userdrake"
+msgstr "Userdrake"
+
+#: ../../standalone/drakbug_.c:62
+msgid "Configuration Wizards"
+msgstr "Vejledere til konfiguration"
+
+#: ../../standalone/drakbug_.c:71
+msgid "Application:"
+msgstr "Applikation:"
+
+#: ../../standalone/drakbug_.c:75
+msgid "Package: "
+msgstr "Pakke: "
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr "Kerne:"
+
+#: ../../standalone/drakbug_.c:83
+msgid "Release: "
+msgstr "Udgave: "
+
+#: ../../standalone/drakbug_.c:87
+#, fuzzy
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+"\n"
+"\n"
+"For at indsende en fejlrapport klik da pĺ rapport-knappen.\n"
+"Dette vil ĺbne et vindue i en netlćser pĺ https://www.bugzilla.com\n"
+" hvor du vil finde en formular der kan udfyldes. Informationen vist ovenfor "
+"vil blive overfřrt til den server\n"
+"\n"
+
+#: ../../standalone/drakbug_.c:101
+msgid "Not installed"
+msgstr "Ikke installeret"
+
+#: ../../standalone/drakbug_.c:110
+msgid "Report"
+msgstr "Rapport"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr "Opkobler til vejleder for Bugzilla"
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Ingen netlćser til stede! Installér venligts én"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Netvćrkskonfiguration (%d adaptorer)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profil: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Slet profil..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Profil der skal slettes:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Ny profil..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Navnet pĺ profilen der skal oprettes (den nye profil oprettes som en \n"
+"kopi af den nuvćrende) :"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Vćrtsnavn: "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Internetadgang"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Type:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Gateway:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Grćnseflade:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Status:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "Vent venligst"
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Konfigurér Internetadgang..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "LAN konfiguration"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Drivprogram"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Grćnseflade"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protokol"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Status"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Konfigurér lokalnetvćrk..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "Klik her for at starte vejlederen ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Vejleder..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Anvend"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Vent venligst... Sćtter konfigurationen i anvendelse"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Tilsluttet"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Ikke tilsluttet"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Tilslut..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Afbrud..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+"Advarsel, en anden internetforbindelse er blevet fundet, der mĺske bruger "
+"dit netvćrk"
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Du har ingen konfigurerede grćnsesnit.\n"
+"Konfigurér disse fřrst ved at klikke pĺ 'Konfigurér'"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "LAN konfiguration"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Adapter %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Opstartsprotokol"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Startede med opstart"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP-klient"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "aktivér nu"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "deaktivér nu"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Dette grćnsesnit er ikke blevet konfigureret endnu.\n"
+"Start konfigurationsvejlederen i hovedvinduet"
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Du har ingen internet-opkobling.\n"
+"Opret én fřrst ved at klikke pĺ 'Konfigurér'"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Konfiguration af Internetforbindelse"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Konfiguration af Internetforbindelse"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Type af forbindelse"
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parametre"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Gateway"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Ethernet-kort"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP-Klient"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "brug: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Modulnavn"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Střrrelse"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "fremstilling af opstartsdiskette"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "standard"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "DrakFloppy fejl: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "kerne-version"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Generelt"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Ekspertomrĺde"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrd valgfrie argumenter"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Tilfřj et modul"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "tving"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "hvis nřdvendigt"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "undgĺ scsi-moduler"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "undgĺ raid-moduler"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Fjern et modul"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Uddata"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Opbyg disken"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Forsikr dig at der er et medie tilstede i enheden %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"Der er ikke noget media, eller det er skrivebeskyttet, i enhed %s.\n"
+"Indsćt venligst noget."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Kan ikke fork(): %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Kan ikke lukke mkbootdisk ordentligt: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr "Sřg efter installerede skrifttyper"
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr "Fravćlg installerede skrifttyper"
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr "fortolk alle skrifttyper"
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
msgid "no fonts found"
msgstr "kunne ikke finde nogen skrifttyper"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "fćrdig"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr "Kunne ikke finde nogen skrifttyper i dine monterede partitioner"
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr "Genvćlg korrekte skrifttyper"
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr "Kunne ikke finde nogen skrifttyper.\n"
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr "Sřg efter skrifttyper i installeret liste"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr "Kopi af skrifttyper"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
msgid "True Type fonts installation"
msgstr "Installation af True Type-skrifttyper"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr "Vent venligst pĺ ttmkfdir..."
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr "Installation af True Type fćrdig"
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr "Konvertering af skrifttyper"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr "opbyg type1inst"
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr "Ghostscript referencer"
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr "Konvertering af ttf-skrifttyper"
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr "Konvertering af pfm-skrifttyper"
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr "Undertryk midlertidige filer"
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr "Genstart XFS"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr "Undertryk skrifttypefiler"
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
msgid "xfs restart"
msgstr "genstart af xfs"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10707,107 +11541,107 @@ msgstr ""
"-Du kan installere skrifttyperne pĺ normal mĺde. I sjćldne tilfćlde kan "
"fejlbehćftede skrifttyper fĺ din X-server til at hćnge."
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
msgid "Fonts Importation"
msgstr "Import af skrifttyper"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr "Hent skrifttyper fra Windows"
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr "Afinstallér skrifttyper"
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Avancerede muligheder"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
msgstr "Liste over skrifttyper"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
msgid "Choose the applications that will support the fonts :"
msgstr "Vćlg de programpakker som vil understřtte skrifttyperne:"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
msgstr "Generelle printere"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr "Vćlg skrifttypefilen eller -kataloget oh klik pĺ 'Tilfřj'"
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
msgstr "Installationsliste"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr "Klik her hvis du er sikker."
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr "Her hvis ikke."
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr "Fravalgte alt"
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
msgid "Selected All"
msgstr "Valgte alt"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
msgstr "Fjern liste"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr "Begyndelsestester"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
msgstr "Kopiér skrifttyper pĺ dit system"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr "Installér og konvertér skrifttyper"
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
msgid "Post Install"
msgstr "Efterbehandling for installering"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
msgstr "Fjern skrifttyper pĺ dit system"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
msgid "Post Uninstall"
msgstr "Efterbehandling for afinstallering"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Deling af internetforbindelse"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr "Desvćrre, vi understřtter kun 2.4-kerner."
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Deling af internetforbindelse er slĺet til"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10819,31 +11653,31 @@ msgstr ""
"\n"
"Hvad řnsker du at gřre?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
-msgstr "de-aktivér"
+msgstr "deaktivér"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
-msgstr "trćd af"
+msgstr "forkast"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "genkonfigurér"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Slĺr servere fra..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Deling af internetforbindelse er nu slĺet fra"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Deling af internetforbindelse er slĺet fra"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10854,19 +11688,19 @@ msgstr ""
"Den er de-aktiveret for nćrvćrende\n"
"Hvad řnsker du at gřre?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "aktivér"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Aktiverer servere..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Deling af internetforbindelse er nu slĺet til"
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10882,21 +11716,21 @@ msgstr ""
"Bemćrk: du skal bruge en dediceret netvćrksadapter, for at lave et lokalt "
"netvćrk (LAN)."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Grćnseflade %s (benytter modul %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Grćnseflade %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Ikke nogen netvćrksadapter i dit system!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10904,11 +11738,11 @@ msgstr ""
"Ingen ethernet netvćrksadapter er blevet fundet pĺ dit system. Křr venligst "
"vćrktřjet til maskinel konfiguration."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Netvćrksgrćnsesnit"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10923,17 +11757,17 @@ msgstr ""
"\n"
"Jeg skal til at sćtte dit lokalnet pĺ med den adapter."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr "Vćlg hvilken netvćrksadapter som skal forbindes til dit lokalnet."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr "Netvćrksgrćnsesnit allerede konfigureret"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10948,15 +11782,15 @@ msgstr ""
"\n"
"Du kan gřre det i hĺnden, men du skal vide hvad du gřr."
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr "Automatisk rekonfiguration"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr "Vis aktuelle grćnsesnitskonfiguration"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10973,7 +11807,7 @@ msgstr ""
"IP-attribut: %s\n"
"Driver: %s"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
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 C-Class Network that "
@@ -10994,32 +11828,32 @@ msgstr ""
"server for dig.\n"
"\n"
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr "C-klasse lokalnetvćrk"
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr "(Denne) DHCP-servers IP-adresse"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr "Rekonfigurér grćnsesnit og DHCP-server"
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Lokalnetvćrket endte ikke med `.0', stĺr af."
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Mulig LAN-adresse konflikt fundet i konfigurationen til %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Brandmurkonfiguration fundet!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -11027,20 +11861,20 @@ msgstr ""
"Advarsel! En eksisterende brandmurkonfiguration er blevet fundet. Du skal "
"muligvis lave manuelle rettelser efter installationen."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Konfigurerer..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Konfigurerer skript, installerer programmel, starter servere..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Problemer med installation af %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11050,23 +11884,23 @@ msgstr ""
"Du kan nu dele din internetforbindelse med andre maskiner pĺ dit lokale "
"netvćrk, ved at bruge DHCP."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "Indstilling er allerede gjort. men er de-aktiveret for nćrvćrende."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Indstilling er allerede gjort. og er for nćrvćrende aktiv."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Deling af Internetforbindelse har aldrig vćret konfigureret."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Konfiguration af deling af internetforbindelse"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11081,216 +11915,6 @@ msgstr ""
"Klik pĺ Konfigurér for at starte programmet til at dele din "
"internetforbindelse!"
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Netvćrkskonfiguration (%d adaptorer)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Slet profil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Profil der skal slettes:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Ny profil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Navnet pĺ profilen der skal oprettes (den nye profil oprettes som en \n"
-"kopi af den nuvćrende) :"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Vćrtsnavn: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Internetadgang"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Type:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Grćnseflade:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Vent venligst"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Konfigurér Internetadgang..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "LAN konfiguration"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Drivprogram"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Grćnseflade"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokol"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Status"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Konfigurér lokalnetvćrk..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Klik her for at starte vejlederen ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Vejleder..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Anvend"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Vent venligst... Sćtter konfigurationen i anvendelse"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Tilsluttet"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Ikke tilsluttet"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Tilslut..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Afbrud..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Advarsel, en anden internetforbindelse er blevet fundet, der mĺske bruger "
-"dit netvćrk"
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Du har ingen konfigurerede grćnsesnit.\n"
-"Konfigurér disse fřrst ved at klikke pĺ 'Konfigurér'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "LAN konfiguration"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adapter %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Opstartsprotokol"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Startede med opstart"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP-klient"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "aktivér nu"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "deaktivér nu"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Dette grćnsesnit er ikke blevet konfigureret endnu.\n"
-"Start konfigurationsvejlederen i hovedvinduet"
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Du har ingen internet-opkobling.\n"
-"Opret én fřrst ved at klikke pĺ 'Konfigurér'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Konfiguration af Internetforbindelse"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Konfiguration af Internetforbindelse"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Type af forbindelse"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametre"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernet-kort"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP-Klient"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Indstiller sikkerhedsniveau"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Kontrolcenter"
@@ -11299,89 +11923,134 @@ msgstr "Kontrolcenter"
msgid "Choose the tool you want to use"
msgstr "Vćlg det vćrktřj du řnsker at benytte"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\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 ""
+"XawTV er ikke installeret!\n"
+"\n"
+"\n"
+"Hvis du har et tv-kort, men DrakX hverken har fundet det (intet bttv\n"
+"modul i \"/etc/modules\") eller installeret xawtv, sĺ indsend venligst\n"
+"resultaterne af \"lspcidrake -v -f\" til \"install\\@mandrakesoft.com\"\n"
+"med emnet \"undetected TV card\".\n"
+"\n"
+"\n"
+"Du kan installere det ved at indtaste \"urpmi xawtv\" som root, pĺ en "
+"kommandolinje."
+
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
msgstr "Canada (kabel)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
+msgstr "USA (broadcast)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr "USA (kabel)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr "USA (kabel-hrc)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr "Kina (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
+msgstr "Kina (broadcast)"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
+msgstr "Japan (broadcast)"
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr "Japan (kabel)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
msgstr "Řsteuropa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+msgid "France [SECAM]"
+msgstr "Frankrig [SECAM]"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
msgstr "Irland"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
msgstr "Vesteuropa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
msgstr "Australien"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr "New Zealand"
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr "Sydafrika"
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr "Argentina"
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr "Indtast din tv-standard og land"
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
-msgstr "TV-standard:"
+msgstr "Tv-standard:"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr "Omrĺde:"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr "Skanning for tv-kanaler i gang..."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr "Skanner for tv-kanaler"
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+msgid "There was an error while scanning for TV channels"
+msgstr "Der opstod en fejl ved skanninge efter tv-kanaler"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr "XawTV er ikke installeret!"
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr "Hav det godt!"
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr "Nu kan du křre xawtv (under X Window!)!\n"
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr "Intet tv-kort genkendt!"
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -11433,7 +12102,7 @@ msgstr "Kan ikke starte levende opgradering!!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr "Ćndringen er fortaget, men for at vćre effektiv skal du logge ud"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -11481,13 +12150,9 @@ msgstr "/_Indstillinger"
msgid "/Options/Test"
msgstr "/Indstillinger/Test"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Hjćlp"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
-msgstr "/Hjćlp/_Om"
+msgstr "/Hjćlp/_Om..."
#: ../../standalone/logdrake_.c:118
msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
@@ -11545,7 +12210,7 @@ msgstr "Kalender"
msgid "Content of the file"
msgstr "Indhold af filen"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr "Post og SMS pĺmindelse"
@@ -11554,11 +12219,11 @@ msgstr "Post og SMS pĺmindelse"
msgid "please wait, parsing file: %s"
msgstr "vent venligst, fortolker filen: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
msgstr "Post og SMS pĺmindelseskonfiguration"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
@@ -11568,64 +12233,95 @@ msgstr ""
"\n"
"Her vil du kunne opsćtte pĺmindelsessystemet\n"
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Domćnenavn"
#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
+#, fuzzy
+msgid "Ftp Server"
+msgstr "NIS-server"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Postfix postserver, Inn nyhedsserver"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "Start server"
#: ../../standalone/logdrake_.c:422
+#, fuzzy
+msgid "SSH Server"
+msgstr "NIS-server"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Tjenester"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Printer-server"
+
+#: ../../standalone/logdrake_.c:431
msgid "service setting"
msgstr "Opsćtning af tjenester"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
"Du vil modtage en advarsel hvis en af de valgte tjenester ikke lćngere křrer"
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
msgstr "indlćs opsćtning"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr "Du vil modtage en advarsel hvis belastningen er hřjere end denne vćrdi"
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
msgstr "advarsels-konfiguration"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr "Konfigurerer mĺden systemet vil advare dig pĺ"
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Gem som..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Vćlg muse-type."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "ingen seriel_usb fundet\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Emulering af tredje knap?"
+#: ../../standalone/printerdrake_.c:49
+msgid "Reading printer data ..."
+msgstr "Lćser printerdata ..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "Sřger efter enheder..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -11673,9 +12369,23 @@ msgstr ""
"Din %s-skanner er blevet konfigureret.\n"
"Du kan nu skanne dokumenter med 'XSane' fra Multimedie/grafik iprogrammenuen."
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr "Nogen enheder i maskinelklassen '%s' blev fjernet:\n"
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+"\n"
+"Nogen enheder i maskinelklassen '%s' blev tilfřjet:\n"
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
-msgstr "Brandmurskonfiguration"
+msgstr "Konfiguration af brandmur"
#: ../../standalone/tinyfirewall_.c:44
msgid "Firewalling configuration"
@@ -12075,10 +12785,6 @@ msgid "Multimedia - Sound"
msgstr "Multimedie - Lyd"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Vćrktřjer"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Dokumentation"
@@ -12183,10 +12889,6 @@ msgstr ""
"til at browse pĺ nettet"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arkivering, emulering, overvĺgning"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Personlig řkonomi"
@@ -12232,51 +12934,304 @@ msgstr "Multimedie - CD-brćnding"
msgid "Scientific Workstation"
msgstr "Videnskabelig arbejdsstation"
-#~ msgid "About"
-#~ msgstr "Om"
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "fsck afsluttet med fejlkode %d eller signal %d"
+
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Grafikkort identifikation: %s\n"
+
+#~ msgid "Choose options for server"
+#~ msgstr "Vćlg server-indstillinger"
+
+#~ msgid "Monitor not configured"
+#~ msgstr "Skćrm ikke konfigureret"
+
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Grafikkort er endnu ikke konfigureret"
+
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Oplřsninger ikke valgt endnu"
+
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "prřv at ćndre nogle parametre"
+
+#~ msgid "An error occurred:"
+#~ msgstr "En fejl opstod:"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Vender tilbage om %d sekunder"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Er dette den korrekte indstilling?"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "En fejl opstod, prřv at ćndre nogle parametre"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86-server: %s"
+
+#~ msgid "Show all"
+#~ msgstr "Vis alle"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Forbereder konfiguration af X"
+
+#~ msgid "What do you want to do?"
+#~ msgstr "Hvad řnsker du at gřre?"
-#~ msgid " Help "
-#~ msgstr " Hjćlp "
+#~ msgid "Change Monitor"
+#~ msgstr "Skift skćrmtype"
+
+#~ msgid "Change Graphics card"
+#~ msgstr "Skift grafikkort"
+
+#~ msgid "Change Server options"
+#~ msgstr "Foretag ćndringer i server-indstillinger"
+
+#~ msgid "Change Resolution"
+#~ msgstr "Skift oplřsning"
+
+#~ msgid "Show information"
+#~ msgstr "Vis information"
+
+#~ msgid "Test again"
+#~ msgstr "Test igen"
+
+#~ msgid ""
+#~ "Description of the fields:\n"
+#~ "\n"
+#~ "Bus: this is the physical bus on which the device is plugged (eg: PCI, "
+#~ "USB, ...)\n"
+#~ "\n"
+#~ "Bus identification: \n"
+#~ "- pci devices : this list the vendor, device, subvendor and subdevice PCI "
+#~ "ids\n"
+#~ "\n"
+#~ "Description: this field describe the device\n"
+#~ "\n"
+#~ "Location on the bus: \n"
+#~ "- pci devices: this gives the PCI slot, device and function of this card\n"
+#~ "- eide devices: the device is either a slave or a master device\n"
+#~ "- scsi devices: the scsi bus and the scsi device ids\n"
+#~ "\n"
+#~ "Media class: class of hardware device\n"
+#~ "\n"
+#~ "Module: the module of the GNU/Linux kernel that handle that device\n"
+#~ "\n"
+#~ "Vendor: the vendor name of the device\n"
+#~ msgstr ""
+#~ "Beskrivelse af felterne:\n"
+#~ "\n"
+#~ "Bus: dette er den fysiske bus, som enheden er tilsluttet (fx: PCI, "
+#~ "USB, ...)\n"
+#~ "\n"
+#~ "Bus identifikation: \n"
+#~ "- pci-enheder: dette viser producenten, enheden, underproducent og "
+#~ "underenhed PCI id'er\n"
+#~ "\n"
+#~ "Beskrivelse: dette felt beskriver enheden\n"
+#~ "\n"
+#~ "Placering pĺ bussen: \n"
+#~ "- pci-enheder: dette giver PCI slottet, enheden og funktionen for dette "
+#~ "kort\n"
+#~ "- eide-enheder: enheden er enten en slave- eller mester-enhed\n"
+#~ "- scsi-enheder: scsi-bussen og scsi enheds-id'er\n"
+#~ "\n"
+#~ "Medieklasse: maskinelenhedens klasse\n"
+#~ "\n"
+#~ "Modul: modulet i GNU/Linux-kernen som hĺndterer denne enhed\n"
+#~ "\n"
+#~ "Producent: Navnet pĺ producenten af enheden\n"
#~ msgid ""
-#~ "XawTV isn't installed ...\n"
-#~ "You should install it.\n"
-#~ " Just type \"urpmi xawtv\""
+#~ "Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+#~ "1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart P100 or 1315 or "
+#~ "an HP LaserJet 2200?"
#~ msgstr ""
-#~ "XawTV er ikke installeret ...\n"
-#~ "Dř břr installere den.\n"
-#~ " Bare skriv \"urpmi xawtv\""
+#~ "Er din printer en multi-funktionsenhed fra HP (OfficeJet, PSC, LaserJet "
+#~ "1100/1200/1220/3200/3300 med skanner), en HP Photosmart P100 eller en HP "
+#~ "LaserJet 2200?"
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
+#~ 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\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Hvilke muligheder der er for den aktuelle printer kan du enten lćse pĺ "
+#~ "listen vist nedenfor, eller klikke pĺ knappen 'liste med "
+#~ "printermuligheder'%s.\n"
+#~ "\n"
#~ msgid ""
-#~ "Can't access kernel modules corresponding to your kernel (file %s is "
-#~ "missing)"
+#~ "Your HP multi-function device was configured automatically to be able to "
+#~ "scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to "
+#~ "specify the scanner when you have more than one) from the command line or "
+#~ "with the graphical interfaces \"xscanimage\" or \"xsane\". If you are "
+#~ "using the GIMP, you can also scan by choosing the appropriate point in "
+#~ "the \"File\"/\"Acquire\" menu. Call also \"man scanimage\" and \"man sane-"
+#~ "hp\" on the command line to get more information.\n"
+#~ "\n"
+#~ "Do not use \"scannerdrake\" for this device!"
#~ msgstr ""
-#~ "Kan ikke fĺ fat i kernemoduler svarende til din kerne (fil %s mangler)"
+#~ "Din HP-multifunktionsenhed blev konfigureret automatisk til at kunne "
+#~ "skanne. Nu kan du skanne med 'scanimage' ('scanimage -d hp:%s' for at "
+#~ "angive skanneren hvis du har mere end én) fra kommandolinjen eller med "
+#~ "den grafiske grćnseflade 'xscanimage' eller 'xsane'. Hvis du bruger GIMP "
+#~ "kan du ogsĺ skanne ved at vćlge det passende punkt i menuen 'Filer/Hent'. "
+#~ "Brug ogsĺ 'man scanimage' og 'man sane-hp' pĺ kommandolinjen for at fĺ "
+#~ "mere information\n"
+#~ "\n"
+#~ "Brug ikke \"scannerdrake\" pĺ denne enhed!"
+
+#~ msgid ""
+#~ "Your HP multi-function device was configured automatically to be able to "
+#~ "scan. Now you can scan from the command line with \"ptal-hp %s scan ..."
+#~ "\". Scanning via a graphical interface or from the GIMP is not supported "
+#~ "yet for your device. More information you will find in the \"/usr/share/"
+#~ "doc/hpoj-0.8/ptal-hp-scan.html\" file on your system. If you have an HP "
+#~ "LaserJet 1100 or 1200 you can only scan when you have the scanner option "
+#~ "installed.\n"
+#~ "\n"
+#~ "Do not use \"scannerdrake\" for this device!"
+#~ msgstr ""
+#~ "Din HP-multifunktionsenhed blev konfigureret automatisk til at kunne "
+#~ "skanne. Nu kan du skanne med 'ptal-hp %s scan ...' fra kommandolinjen. "
+#~ "Skanning via en grafisk grćnseflade eller fra GIMP er endnu ikke "
+#~ "understřttet for din enhed. Du kan finde mere information i filen \"/usr/"
+#~ "share/doc/hpoj-0.8/ptal-hp-scan.html\" pĺ dit system. Hvis du har en HP "
+#~ "LaserJet 1100 eller 1200 kan du kun skanne nĺr du har skannermuligheden "
+#~ "installeret pĺ udstyret.\n"
+#~ "\n"
+#~ "Brug ikke \"scannerdrake\" pĺ denne enhed!"
+
+#~ msgid ""
+#~ "Please enter the directory to\n"
+#~ " put the backup on this host."
+#~ msgstr ""
+#~ "Indtast kataloget hvori\n"
+#~ " sikkerhedskopien skal lćgges pĺ denne maskine."
+
+#~ msgid "Use Hard Drive with daemon"
+#~ msgstr "Brug diskdrev med dćmon"
+
+#~ msgid "Use FTP with daemon"
+#~ msgstr "Brug FTP med dćmon"
+
+#~ msgid "Please be sure that the cron daemon is included in your services."
+#~ msgstr "Forsikr dig gerne at cron-dćmonen er med i dine tjenester."
+
+#~ msgid "Package List to Install"
+#~ msgstr "Pakkeliste til installation"
+
+#~ msgid "proftpd"
+#~ msgstr "proftpd"
+
+#~ msgid "sshd"
+#~ msgstr "sshd"
+
+#~ msgid "webmin"
+#~ msgstr "webmin"
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
-#~ msgid "None"
-#~ msgstr "Ingenting"
+#~ msgid "Setting security level"
+#~ msgstr "Indstiller sikkerhedsniveau"
-#~ msgid "Choose a default printer!"
-#~ msgstr "Vćlg en forvalgt printer!"
+#~ msgid "Graphics card"
+#~ msgstr "Grafikkort"
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Brug/Opfrisk printerliste"
+#~ msgid "Select a graphics card"
+#~ msgstr "Vćlg et grafikkort"
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Du kan nu give dens parametre til modul %s."
+#~ msgid "Choose a X driver"
+#~ msgstr "Vćlg en X-driver"
-#~ msgid "mount failed"
-#~ msgstr "montering mislykkedes"
+#~ msgid "X driver"
+#~ msgstr "X-driver"
+
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr ""
+#~ "Advarsel: afprřvning af dette grafikkort kan fĺ din maskine til at lĺse"
+
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Standard-VGA, 640x480 ved 60 Hz"
+
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super-VGA, 800x600 ved 56 Hz"
+
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514 kompatibel, 1024x768 ved 87 Hz interlaced (ikke 800x600)"
+
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 ved 87 Hz interlaced, 800x600 ved 56 Hz"
+
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Udvidet Super-VGA, 800x600 ved 60 Hz, 640x480 ved 72 Hz"
+
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Non-Interlaced SVGA, 1024x768 ved 60 Hz, 800x600 ved 72 Hz"
+
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "Hřjfrekvens SVGA, 1024x768 ved 70 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Multi-frekvens, som kan klare 1280x1024 ved 60 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Multi-frekvens, som kan klare 1280x1024 ved 74 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Multi-frekvens, som kan klare 1280x1024 ved 76 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Skćrm, som kan klare 1600x1200 ved 70 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Skćrm, som kan klare 1600x1200 ved 76 Hz"
#~ msgid ""
-#~ "The characters of your language can't be displayed in console,\n"
-#~ "so the messages will be displayed in english during installation"
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Den totale střrrelse af de grupper du har valg er cirka %d Mb.\n"
+
+#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
-#~ "Tegnene i dit sprog kan ikke vises i konsollen\n"
-#~ "sĺ beskederne vil blive vist pĺ engelsk under installationen"
+#~ "Hvis du řnsker at installere mindre end denne střrrelse,\n"
+#~ "sĺ vćlg procentdelen af pakker som du vil installere.\n"
+#~ "\n"
+#~ "En lav procentdel vil kun installere de vigtigste pakker;\n"
+#~ "en procentdel pĺ 100%% vil installere alle valgte pakker."
+
+#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
+#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
+#~ msgstr ""
+#~ "Du har kun plads pĺ din disk til %d%% af disse pakker.\n"
+#~ "\n"
+#~ "Hvis du řnsker at installere mindre end denne střrrelse,\n"
+#~ "sĺ vćlg procentdelen af pakker som du vil installere.\n"
+#~ "En lav procentdel vil kun installere de vigtigste pakker;\n"
+#~ "en procentdel pĺ %d%% vil installere sĺ mange pakker som muligt."
+
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr ""
+#~ "Du har mulighed for at vćlge dem mere prćcist i nćste installationstrin"
+
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Procentandel pakker til installation"
+
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Vćlg sikkerhedniveau"
diff --git a/perl-install/share/po/de.po b/perl-install/share/po/de.po
index 9629e8953..fa927b580 100644
--- a/perl-install/share/po/de.po
+++ b/perl-install/share/po/de.po
@@ -1,38 +1,67 @@
-# german translation of DrakX (cooker/gi/perl-install/share/po/de.po).
-# Copyright (C) 1999,2000,2001 MandrakeSoft.
-# Dr. Hinrich GĂśhlmann <hgoehlmann@gmx.de>, 1999,2000
-# Stefan Siegel <siegel@linux-mandrake.com>, 1999,2000,2001,2002
-# Daniel Haischt <daniel.haischt@student.fh-reutlingen.de>, 2000
-# Peer Dunker <peer46@gmx.net>, 2001
+# german transltion of drakflopy
+# Copyright (C) 2000, 2001 MandrakeSoft S.A.
+# Stefan Siegel <siegel@linux-mandrake.com>, 2000, 2001.
+#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-10 11:56+0100\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2001-08-20 17:48+0200\n"
"Last-Translator: Stefan Siegel <siegel@linux-mandrake.com>\n"
-"Language-Team: German <cooker-i18n@linux-mandrake.com>\n"
+"Language-Team: German <de@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Alle Karten getrennt konfigurieren"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 KB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Xinerama Erweiterung verwenden"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 KB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Nur Karte „%s“ (%s) konfigurieren"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB oder mehr"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Wählen Sie einen X Server"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X Server"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Mehrkarten-Einstellung"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -40,41 +69,44 @@ msgstr ""
"Ihr System erlaubt die Verwendung einer Mehrkarten Konfiguration.\n"
"Was wollen Sie tun?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Grafikkarte"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Wählen Sie die Speichergröße Ihrer Grafikkarte"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Wählen Sie Ihre Grafikkarte"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "XFree konfigurieren"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Wählen Sie einen X Server"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Welche XFree-Konfiguration wollen Sie verwenden?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X Server"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Alle Karten getrennt konfigurieren"
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Wählen Sie einen X Treiber"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Xinerama Erweiterung verwenden"
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "X Treiber"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Nur Karte „%s“ (%s) konfigurieren"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Welche XFree-Konfiguration wollen Sie verwenden?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s mit 3D-Hardwarebeschleunigung"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -84,33 +116,17 @@ msgstr ""
"XFree %s. Ihre Karte wird auch von XFree %s unterstĂźtzt, wodurch Sie \n"
"bessere 2D-UnterstĂźtzung erhalten kĂśnnen."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Ihre Grafikkarte kann mit XFree %s 3D-hardwarebeschleunigt werden."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s mit 3D-Hardwarebeschleunigung"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Ihre Karte kann 3D-hardwarebeschleunigt werden, allerdings nur mit \n"
-"XFree %s. BEMERKUNG: DIESE FUNKTION IST NOCH IM EXPERIMENTIERSTADIUM \n"
-"UND KANN ZUM STEHENBLEIBEN IHRES RECHNERS FÜHREN."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s mit EXPERIMENTELLER 3D-Hardwarebeschleunigung"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -123,31 +139,59 @@ msgstr ""
"XFree %s unterstĂźtzt, wodurch Sie bessere 2D-UnterstĂźtzung erhalten \n"
"kĂśnnen."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Ihre Karte kann 3D-hardwarebeschleunigt werden, allerdings nur mit \n"
+"XFree %s. BEMERKUNG: DIESE FUNKTION IST NOCH IM EXPERIMENTIERSTADIUM \n"
+"UND KANN ZUM STEHENBLEIBEN IHRES RECHNERS FÜHREN."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (Installationsbildschirmtreiber)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree konfigurieren"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Wählen Sie die Speichergröße Ihrer Grafikkarte"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Wählen Sie die Einstellungen fßr den Server"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Die Änderungen beibehalten?\n"
+"Momentan wäre dies:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Wählen Sie Ihren Monitor"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Benutzerdefiniert"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Generisch"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Rßckgängig"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -168,516 +212,328 @@ msgstr ""
"kÜnnten. Im Zweifelsfall wählen Sie bitte eine konservativere \n"
"Einstellung."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Horizontale Wiederholfrequenz"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Vertikale Wiederholfrequenz"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Ihr Monitor ist nicht konfiguriert"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Ihre Grafikkarte ist noch nicht konfiguriert"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Die AuflÜsungen wurden noch nicht ausgewählt"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "MĂśchten Sie die vorgenommenen Einstellungen prĂźfen?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Warnung: Testen dieser Grafikkarte kann Ihren Rechner anhalten"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "PrĂźfen der Einstellungen"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 Farben (8 Bit)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"Versuchen Sie bitte, einige Einstellungen zu ändern"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32.000 Farben (15 Bit)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Ein Fehler ist aufgetreten:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65.000 Farben (16 Bit)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Verlassen in %d Sekunden"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 Millionen Farben (24 Bit)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Ist dies richtig?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 Milliarden Farben (32 Bit)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr ""
-"Ein Fehler ist aufgetreten. Versuchen Sie bitte, einige Parameter zu ändern"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "AuflĂśsungen"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "AuflĂśsung"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Wählen Sie bitte AuflÜsung und Farbtiefe"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Grafikkarte: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 Server: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Mehr"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr " Abbruch "
+
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "OK"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Experten-Modus"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Alle anzeigen"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "MĂśchten Sie die vorgenommenen Einstellungen prĂźfen?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "AuflĂśsungen"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "PrĂźfen der Einstellungen"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Tastaturtyp: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Maustyp: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Mausschnittstelle: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Monitor Horiz. Frequenz: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Monitor Vert. Frequenz: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Grafikkarte: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Grafikkartenidentifikation: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Grafikkartenspeicher: %s KB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Farbtiefe: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "AuflĂśsung: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 Server: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 Treiber: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "X-Window Konfiguration vorbereiten"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Was wollen Sie machen?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Monitor ändern"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Grafikkarte ändern"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Server Einstellungen ändern"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "AuflÜsung ändern"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Informationen anzeigen"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Nochmals testen"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Verlassen"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Die Änderungen beibehalten?\n"
-"Momentan wäre dies:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X zur Startzeit"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Ich kann GNU/Linux so einrichten, dass bei jedem Systemstart\n"
"automatisch die grafische Oberfläche (= der X Server) aktiviert wird.\n"
"Wollen Sie, dass X nach jedem Neustart direkt zur VerfĂźgung steht?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr ""
-"Bitte loggen Sie sich erneut in %s ein, \n"
-"um die Änderungen wirksam werden zu lassen."
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Bitte loggen Sie sich aus, und drĂźcken Sie Ctrl-Alt-RĂźcktaste"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 Farben (8 Bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32.000 Farben (15 Bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65.000 Farben (16 Bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 Millionen Farben (24 Bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 Milliarden Farben (32 Bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 KB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 KB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB oder mehr"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standard VGA, 640×480 bei 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800×600 bei 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 kompatibel, 1024×768 bei 87 Hz, interlaced (kein 800×600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024×768 bei 87 Hz, interlaced und 800×600 bei 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Extended Super VGA, 800×600 bei 60 Hz und 640×480 bei 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Non-Interlaced SVGA, 1024×768 bei 60 Hz und 800×600 bei 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Hochfrequenz SVGA, 1024×768 bei 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Mehrfrequenz mit der Fähigkeit für 1280×1024 bei 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Mehrfrequenz mit der Fähigkeit für 1280×1024 bei 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Mehrfrequenz mit der Fähigkeit für 1280×1024 bei 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Ihr Monitor kann 1600×1200 bei 70 Hz darstellen"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Ihr Monitor kann 1600×1200 bei 76 Hz darstellen"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Erster Sektor der Boot-Partition"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Erster Sektor der Platte (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "SILO Installation"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Wo soll der Betriebssystemstarter installiert werden?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "LILO/Grub Installation"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO mit TextmenĂź"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO mit grafischem MenĂź"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Boot von DOS/Windows aus (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Haupt-Optionen des Betriebssystemstarters"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Zu verwendender Betriebssystemstarter"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Installation des Betriebssystemstarters"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Boot Gerät"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (funktioniert nicht mit alten BIOS Versionen)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Kompakt"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "Kompakt"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Video Modus"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Wartezeit vorm Starten des Standard Betriebssystems"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Passwort"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Passwort (erneut)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Gebrauch der Kommandozeilen-Parameter einschränken"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "Einschränken"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Die Partition /tmp bei jedem Systemstart säubern"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Geben Sie, falls nötig, die genaue RAM Größe an (%d MB gefunden)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Mehrere Profile einschalten"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Geben Sie die RAM Größe in MB an"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Die Option „Gebrauch der Kommandozeilen-Parameter einschränken“ ist ohne \n"
"Angabe eines Passworts wirkungslos"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Bitte versuchen Sie es erneut"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Die PasswĂśrter stimmen nicht Ăźberein"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Init Nachricht"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Open Firmware VerzĂśgerung"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "BS-StartverzĂśgerung fĂźr den Kern"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "BS-Start von CD erlauben"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Open Firmware Start erlauben"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Standard BS"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -692,83 +548,83 @@ msgstr ""
"\n"
"Von welchem Verzeichnis wollen Sie starten?"
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Hier sind die verschiedenen Einträge.\n"
"Sie kÜnnen weitere hinzufßgen oder existierende ändern."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "HinzufĂźgen"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Fertig"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Ändern"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Welche Art Eintrag wollen Sie hinzufĂźgen?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Anderes Betriebssystem (SunOS ...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Anderes Betriebssystem (MacOS ...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Anderes Betriebssystem (Windows ...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Kern"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Verzeichnisbaumwurzel"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Übergeben"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Init-RamDisk"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Schreiben/Lesen"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabelle"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Unsicher"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Identifikator"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Standard"
@@ -800,53 +656,77 @@ msgstr "Sie mĂźssen die Verzeichnisbaumwurzel festlegen"
msgid "This label is already used"
msgstr "Dieser Eintrag existiert bereits"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Schnittstelle(n) %s %s gefunden"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "VerfĂźgen Sie Ăźber weitere?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "VerfĂźgen Sie Ăźber %s Schnittstellen?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Nein"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Ja"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Hardware Informationen anzeigen"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Installation des Treibers fĂźr die Karte %s %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(Modul %s)"
+#: ../../any.pm_.c:697
+#, fuzzy, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+"Sie mĂźssen nun die Optionen fĂźr Modul %s angeben.\n"
+"Bedenken Sie, dass Adressen alle mit „0x“ beginnen müssen, etwa „0x300“"
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Sie mĂźssen nun die Optionen fĂźr Modul %s angeben.\n"
+"Optionen haben die Form „name=wert name2=wert2“.\n"
+"Beispielsweise: „io=0x300 irq=7“"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Modul-Optionen:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Welchen %s-Treiber soll ich versuchen?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -864,39 +744,15 @@ msgstr ""
"Treiber kann in seltenen Fällen zum „Hängenbleiben“ des Rechners führen, was "
"jedoch keine Hardwareschäden nach sich ziehen sollte)"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Automatische Erkennung"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Optionen angeben"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"Sie mĂźssen nun die Optionen fĂźr Modul %s angeben.\n"
-"Bedenken Sie, dass Adressen alle mit „0x“ beginnen müssen, etwa „0x300“"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Sie mĂźssen nun die Optionen fĂźr Modul %s angeben.\n"
-"Optionen haben die Form „name=wert name2=wert2“.\n"
-"Beispielsweise: „io=0x300 irq=7“"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Modul-Optionen:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -905,51 +761,56 @@ msgstr ""
"Laden von Modul %s schlug Fehl.\n"
"Wollen Sie es erneut mit anderen Parametern versuchen?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "Zugriff auf X-Programme"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "Zugriff auf RPM-Werkzeuge"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "„su“ erlauben"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "Zugriff auf Verwaltungsdateien"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(%s wurde bereits hinzugefĂźgt)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Dieses Passwort ist zu einfach"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Bitte geben Sie ein Benutzerkennzeichen an"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Das Benutzerkennzeichen sollte nur aus Kleinbuchstaben, Ziffern, \n"
"„-“ und „_“ bestehen"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Dieses Benutzerkennzeichen existiert bereits"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Dieses Benutzerkennzeichen existiert bereits"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Benutzer hinzufĂźgen"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -958,32 +819,32 @@ msgstr ""
"Benutzerkennzeichen einrichten\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Benutzer akzeptieren"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Benutzername"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Benutzerkennzeichen"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Symbol"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -992,60 +853,60 @@ msgstr ""
"ein Benutzer angemeldet wird.\n"
"Wollen Sie davon Gebrauch machen?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Wählen Sie den Standard-Nutzer:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Wählen Sie den Window-Manager, den Sie verwenden wollen:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Bitte wählen Sie die zu verwendende Sprache."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr ""
"Sie kÜnnen andere Sprachen auswählen, die nach der Installation zur "
"VerfĂźgung stehen."
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Alle"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Allen Benutzern erlauben"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Benutzerdefiniert"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "Kein Teilen"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Das Paket %s muss installiert sein. Soll ich es installieren?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
"Sie kĂśnnen die Dateien mittels Samba oder NFS anbieten. Welche Variante "
"wollen Sie?"
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Das zwingend benötigte Paket „%s“ fehlt."
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
@@ -1058,31 +919,11 @@ msgstr ""
"Mit „Benutzerdefiniert“ können Sie eine Einstellung pro Kennzeichen "
"vornehmen.\n"
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Abbruch"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr "Userdrake starten"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -1091,31 +932,31 @@ msgstr ""
"Sie kĂśnnen UserDrake verwenden, um Benutzerkennzeichen in diese Gruppe "
"aufzunehmen."
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Cracker-Spielplatz"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Schwach"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Standard"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Hoch"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
msgstr "HĂśher"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoid"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1126,7 +967,7 @@ msgstr ""
"der Rechner nicht als Netzwerkrechner (LAN oder Modem) verwendet werden, \n"
"da Angreifer mangels Passwort an Ihre Daten gelangen kĂśnnen!"
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1134,7 +975,7 @@ msgstr ""
"Passwortabfragen sind nun eingeschaltet, aber die Verwendung als \n"
"Netzwerkrechner kann hier nicht empfohlen werden."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1142,7 +983,7 @@ msgstr ""
"Das ist die Standard-Sicherheitsebene fĂźr Rechner, mit Internetzugang \n"
"als Klient."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1150,13 +991,14 @@ msgstr ""
"Es gibt bereits mehr Restriktionen und jede Nacht werden automatische "
"Sicherheitstests durchgefĂźhrt."
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Mit dieser Sicherheitsebene wird es mĂśglich, das System als einen \n"
"Server zu verwenden.\n"
@@ -1166,38 +1008,38 @@ msgstr ""
"Klient ins Internet gehen, besser eine niedrigere Sicherhetsebene \n"
"verwenden sollte."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Diese Ebene bietet die selbe Funktionalität, wie die vorherige. Jedoch ist \n"
"das System nun komplett geschlossen. Es ist die hĂśchste Sicherheitsebene."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Wählen Sie eine Sicherheitsebene"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Sicherheitsebene"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "„libsafe“ bei Servern verwenden"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr "Eine Bibliothek, die gegen sog. „buffer overflow“-Angriffe schützt."
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1221,52 +1063,52 @@ 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_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Willkommen zum Betriebssystem-Starter GRUB!"
#. -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_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Verwenden Sie die Tasten %c und %c um ein Betriebssystem zu w„hlen."
#. -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_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Zum Starten des BS drcken Sie <Return>. Mit <e> k”nnen Sie das"
#. -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_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "Kommando vorher editieren, mit <c> erhalten Sie eine Kommandozeile."
#. -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_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "In %d Sekunden wird das gew„hlte BS automatisch gestartet."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "Sie haben nicht genug Platz in „/boot“"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Arbeitsoberfläche"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Start-MenĂź"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr ""
@@ -1281,15 +1123,19 @@ msgstr "Es steht noch keine Hilfe zur VerfĂźgung.\n"
msgid "Boot Style Configuration"
msgstr "Konfiguration der Boot-Einstellungen"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Datei"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
-msgstr "/Datei/_Beenden"
+msgstr "/Datei/B_eenden"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1324,14 +1170,14 @@ msgstr "Yaboot Modus"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Sie verwenden momentan „%s“ als Betriebssystemstarter.\n"
"Wählen Sie „Konfigurieren“, wenn Sie den Assistenten starten wollen."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Konfigurieren"
@@ -1341,7 +1187,7 @@ msgid "System mode"
msgstr "System-Modus"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "X-Window nach dem Hochfahren automatisch starten "
#: ../../bootlook.pm_.c:148
@@ -1352,16 +1198,18 @@ msgstr "Nein ich will kein Autologin"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ja ich will Autologin mit diesem Kennzeichen und dieser Oberfläche"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
-msgstr "OK"
+msgstr " Ok "
#: ../../bootlook.pm_.c:229
#, c-format
@@ -1408,7 +1256,7 @@ msgstr ""
msgid "Screenshots will be available after install in %s"
msgstr "Die Bildschim-Schnappschüsse liegen nach der Installation unter „%s“"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Frankreich"
@@ -1416,7 +1264,7 @@ msgstr "Frankreich"
msgid "Costa Rica"
msgstr "Costa Rica"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Belgien"
@@ -1440,11 +1288,12 @@ msgstr "Norwegen"
msgid "Sweden"
msgstr "Schweden"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Holland"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "Italien"
@@ -1452,7 +1301,7 @@ msgstr "Italien"
msgid "Austria"
msgstr "Östereich"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "Vereinigte Staaten von Amerika"
@@ -1460,8 +1309,8 @@ msgstr "Vereinigte Staaten von Amerika"
msgid "Please make a backup of your data first"
msgstr "Bitte machen Sie erst eine Sicherheitskopie Ihrer Daten!"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Lesen Sie bitte aufmerksam!"
@@ -1474,11 +1323,12 @@ msgstr ""
"Wenn Sie aboot verwenden wollen, mĂźssen Sie ausreichend Platz am Anfang \n"
"der Platte lassen (2048 Sektoren reichen aus)."
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Fehler"
@@ -1486,11 +1336,11 @@ msgstr "Fehler"
msgid "Wizard"
msgstr "Assistent"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Wählen Sie ein Aktion aus"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1502,77 +1352,77 @@ msgstr ""
"Ich rate Ihnen, diese Partition erst zu verkleinern\n"
"(Wählen Sie sie an und drücken Sie dann „Größe verändern“)"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Bitte klicken Sie auf eine Partition"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Details"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "Journalisierendes FS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Auslagerung"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Leer"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Andere"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Dateisystemtypen:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Erzeugen"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Typ"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Verwenden Sie stattdessen „%s“"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "LĂśschen"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Verwenden Sie erst „umount“"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1580,67 +1430,72 @@ msgstr ""
"Nach Änderung des Partitionstyps von %s, werden sämtliche Daten darauf "
"gelĂśscht"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Wählen Sie eine Partition"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Wählen Sie eine andere Partition"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Verlassen"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "In den Experten-Modus wechseln"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "In den Normal-Modus wechseln"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Rßckgängig"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Wollen Sie trotzdem fortfahren?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Beenden ohne speichern"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Beenden ohne die Partitionstabelle zu speichern?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "Möchten Sie die vorgenommenen Änderungen in „/etc/fstab“ speichern?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Automatisches Erstellen"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Alles lĂśschen"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Mehr"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "Festplatten-Informationen"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Alle Primärpartitionen sind in Gebrauch"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Ich kann keinen weiteren Partitionen hinzufĂźgen"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1648,31 +1503,31 @@ msgstr ""
"Um mehr Partitionen einrichten zu kÜnnen, mßssen Sie zunächst eine Partition "
"löschen und anschließend eine erweiterte Partition erzeugen"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "Partitionstabelle schreiben"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "Partitionstabelle wiederherstellen"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Partitionstabelle retten"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "Partitionstabelle neu laden"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "Wechselmedien automatisch Einhängen"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Datei auswählen"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1680,11 +1535,11 @@ msgstr ""
"Die gesicherte Partitionstabelle hat nicht dieselbe Größe\n"
"Soll trotzdem fortgefahren werden?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Warnung"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1692,122 +1547,129 @@ msgstr ""
"Legen Sie eine Diskette in das Laufwerk\n"
"Alle Daten auf dieser Diskette werden gelĂśscht!"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Ich Versuche, die Partitionstabelle zu retten"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "AusfĂźhrliche Informationen"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Einhängpunkt"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Optionen"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Größe verändern"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Bewegen"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formatieren"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Einhängen"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Zum RAID hinzufĂźgen"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Zum LVM hinzufĂźgen"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Aushängen"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "LĂśschen aus dem RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "LĂśschen aus dem LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "RAID modifizieren"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Als Loopback verwenden"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Erzeuge eine neue Partition"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Anfangssektor: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Größe in MB:"
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Dateisystemtyp: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Einhängpunkt: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Einstellung: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+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/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "Die Loopback-Datei entfernen?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Partitionstyp ändern"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Welches Dateisystem wollen Sie verwenden?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Konvertiere ext2 zu ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Wo wollen Sie die Loopback-Datei %s einhängen?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Wo wollen Sie das Gerät %s einhängen?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1815,130 +1677,135 @@ msgstr ""
"Ich kann diesen Einhängpunkt nicht zurßcksetzen, da diese Partition als \n"
"Loopback verwendet wird. Bitte entfernen Sie erst diesen Loopback."
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Errechne die Grenzen des FAT Dateisystems"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Neuberechnen der Größe"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Die Größe dieser Partition kann ich nicht ändern"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Sie sollten ein Backup sämtlicher Daten dieser Partition erstellen"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Durch Veränderung der Partitionsgröße von %s, gehen sämtliche Daten darauf "
"verloren"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Wählen Sie die neue Größe"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Neue Größe in MB:"
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Zu welcher Platte wollen Sie wechseln?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Zu welchem Sektor wollen Sie wechseln?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "wechsele"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Bewege Partition..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Wählen Sie einen vorhandenen RAID"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "Neu"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Wählen Sie einen vorhandenen LVM"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "LVM Name?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Diese Partition kann nicht als Loopback verwendet werden"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Name der Loopback-Datei: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Dateinamen angeben"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr ""
"Diese Datei wird bereits von einer anderen Loopback-VerknĂźpfung verwendet, "
"wählen Sie eine andere Datei."
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr ""
"Es existiert bereits eine Datei mit diesem Namen. Soll ich sie verwenden?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Einhäng-Optionen"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Verschiedene"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "Gerät"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "Level"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "Blockgröße"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Vorsicht: Diese Aktion ist gefährlich."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Welcher Partitionstyp?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Das Paket %s muss installiert sein. Soll ich es installieren?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1951,7 +1818,7 @@ msgstr ""
"verwenden \n"
"LILO nicht, dann benötigen Sie keine „/boot“ Partition."
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1964,7 +1831,7 @@ msgstr ""
"Betriebssystemstarter einsetzen wollen, vergessen Sie bitte nicht, eine „/"
"boot“ Partition anzulegen!"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1976,131 +1843,131 @@ msgstr ""
"„/boot“-Partition arbeiten. Sie sollten also daran denken, eine solche \n"
"Partition zu erstellen."
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Die Partitionstabelle der Platte „%s“ wird gespeichert!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Sie mßssen Ihren Rechner neu starten, damit die Veränderungen wirksam werden"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Nach Formatieren der Partition %s, werden sämtliche Daten darauf gelÜscht"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Formatiere"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatiere Loopback-Datei %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Formatiere Partition %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Dateien verstecken"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Dateien auf die neue Partition verschieben."
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"Das Verzeichnis „%s“ enthält bereits Daten\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "Dateien auf die neue Partition verschieben."
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Kopiere: %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Entferne: %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "Die Partition %s heißt nun %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Gerät: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS Laufwerksbuchstabe: %s (vermutlich?)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Typ:"
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Name: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Anfang: Sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Größe: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s Sektoren"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Zylinder %d bis %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Formatiert\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Nicht formatiert\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Eingehängt\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2109,7 +1976,7 @@ msgstr ""
"Loopback Datei(en):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2117,27 +1984,27 @@ msgstr ""
"Partition wird standardmäßig geladen\n"
" (fĂźr MS-DOS Boot, nicht jedoch fĂźr LILO)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Level %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Blockgröße %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID Platten %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Dateiname des Loopbacks: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2150,7 +2017,7 @@ msgstr ""
"Partition handelt. Sie sollten sie\n"
"daher unverändert lassen.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2163,63 +2030,63 @@ msgstr ""
"Betriebssysteme auf dem selben\n"
"Rechner.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Größe: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrie: %s Zylinder, %s KĂśpfe, %s Sektoren\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM Platten %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partitionstabellen Typ: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "auf Bus %d ID %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Optionen: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "Dateisystem-SchlĂźssel"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "Wählen Sie Ihren Dateisystem-Schlßssel (Passwort)"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Dieses Passwort ist zu einfach (es muss mindestens %d Zeichen lang sein)!"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "Die PasswĂśrter stimmen nicht Ăźberein"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "SchlĂźssel"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "SchlĂźssel (erneut)"
@@ -2228,39 +2095,67 @@ msgid "Change type"
msgstr "Typ ändern"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Bitte wählen Sie ein Medium"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Authentifizierung"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Internet"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Benutzerkennzeichen"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Benutzerkennzeichen"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS Domain"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "Server suchen"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatieren von %s schlug Fehl"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr ""
"Ich bin nicht in der Lage, %s mit einem Dateisystem vom Typ %s zu "
"formatieren."
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "Das Einhängen der Partition %s in das Verzeichnis %s schlug fehl."
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-"Der Dateisystemcheck (fsck) schlug fehl mit dem RĂźckgabewert %d oder Signal %"
-"d."
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "Fehler beim Aushängen von %s: %s"
@@ -2277,75 +2172,329 @@ msgstr "mit „/usr“"
msgid "server"
msgstr "Server"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
"Sie kĂśnnen JFS nicht fĂźr Partitionen verwenden, die kleiner als 16MB sind!"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
"Sie kĂśnnen ReiserFS nicht fĂźr Partitionen verwenden, die kleiner als 32MB "
"sind!"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Einhängpunkte mßssen mit einem / beginnen."
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Es gibt bereits eine Partition, mit dem Einhängpunkt %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
"Sie kÜnnen kein logisches LVM Medium fßr den Einhängpunkt %s verwenden."
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Dieses Verzeichnis muss in der Verzeichnisbaumwurzel bleiben"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Sie benĂśtigen ein echtes GNU/Linux Dateisystem (Ext2, ReiserFS) fĂźr \n"
"diesen Einhängpunkt.\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
"Sie kÜnnen kein verschlßsseltes Medium fßr den Einhängpunkt %s verwenden."
# ../../diskdrak1
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "Nicht genug freier Platz, damit ich selbst Partition anlegen kann."
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr "Nichts zu tun."
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Fehler beim Öffnen von %s zum Schreiben: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Ein Fehler ist aufgetreten - es wurden keine gßltigen Geräte gefunden, auf "
"denen neue Dateisysteme erstellt werden kĂśnnen. Bitte ĂźberprĂźfen Sie Ihre "
"Hardware(-Konfiguration) auf mĂśgliche Fehler und falsche Einstellungen."
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Sie haben keine Partitionen!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Autoerkennung durchfĂźhren"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Generisch"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Karten Mem (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Einstellungen laden"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Typ ändern"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Verlassen"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Hilfe"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Hilfe"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Hilfe/_Über ..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Maus"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Karten Mem (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr " Abbruch "
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Maus"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Beschreibung"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Authentifizierung"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Datei auswählen"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Gateway Gerät"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 Tasten"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Festplatten suchen"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Hardware Informationen anzeigen"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Informationen anzeigen"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Maus konfigurieren"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "an Prot %s gefunden"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Bitte warten"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d Sekunden"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Drucker „%s“ entfernen ..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Automatische Erkennung"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
#: ../../help.pm_.c:13
@@ -2361,7 +2510,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2400,7 +2549,7 @@ msgstr ""
"kÜnnen Sie ihn hier nach Belieben verändern. Dann geben Sie Ihrem Konto ein\n"
"Passwort. FĂźr ein Benutzerkennzeichen ist dieses zwar nicht von so\n"
"herausragender Bedeutung wie das fĂźr ÂťrootÂŤ, doch Sie sollten trotzdem\n"
-"etwas Sorgfalt walten lassen. Immerhin sind es Ihre Daten...\n"
+"etwas Sorgfalt walten lassen. Immerhin sind es Ihre Daten ...\n"
"\n"
"Klicken Sie auf „Benutzer akzeptieren“, um das Kennzeichen zu erstellen.\n"
"Anschließend können Sie direkt weitere Benutzer hinzufügen. Wenn Sie allen\n"
@@ -2505,9 +2654,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2701,7 +2849,7 @@ msgstr ""
"schalten Sie jedoch zuvor, falls nÜtig, die dafßr benÜtigten Geräte ein,\n"
"damit „DrakX“ sie automatisch erkennen kann.\n"
"\n"
-"Mandrake Linux bietet Ihnen die MĂśglichkeit, Ihre Internet-Verbindung\n"
+"Mandrake Linux bietet Ihnen die MÜglichkeit, Ihre Internet-Ver­bindung\n"
"bereits während der Installation zu konfigurieren. Zur Auswahl stehen\n"
"folgende Verbindungsarten: HerkĂśmmliches Modem, ISDN Modem, ADSL\n"
"Verbindung, Kabelmodem oder eine einfache LAN Verbindung (Ethernet).\n"
@@ -2778,7 +2926,7 @@ msgstr ""
"GNU/Linux arbeitet mit GMT (Greenwich Mean Time) und Ăźbersetzt diese anhand\n"
"der Zeitzone in Ihre lokale Zeit.\n"
"\n"
-"Da MicrosoftWindows(TM) nicht sinnvoll mit GMT umgehen kann, mĂźssen Sie\n"
+"Da Microsoft Windows(TM) nicht sinnvoll mit GMT umgehen kann, mĂźssen Sie\n"
"„Nein“ wählen, falls Sie auch ein Betriebssystem aus dem Hause Microsoft\n"
"auf Ihrem Rechner „beherbergen“\n"
"\n"
@@ -2847,7 +2995,7 @@ msgid ""
"modern graphics card. Then choose \"Test again\" to be sure."
msgstr ""
"Es kann Ihnen passieren, dass der erste Versuch noch nicht korrekt ist (Der\n"
-"Schirm ist zu klein, liegt zu weit rechts oder links...). Daher werden Sie\n"
+"Schirm ist zu klein, liegt zu weit rechts oder links ...). Daher werden Sie\n"
"selbst dann mit der Frage konfrontiert, wenn der „DrakX“-Server sich\n"
"starten lies, „DrakX“ also davon ausgehen könnte, dass alles in Ordnung\n"
"ist. Sie erhalten daher eine Liste von gĂźltigen Modi, aus denen Sie\n"
@@ -2879,7 +3027,7 @@ msgstr ""
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2891,9 +3039,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2903,11 +3050,11 @@ msgid ""
"you do not need. You will not have to format it since DrakX will rewrite\n"
"the whole disk."
msgstr ""
-"Die Mandrake LinuxCD-ROM hat einen eingebauten Rettungsmodus. Sie erreichen\n"
-"ihn durch Starten von CD-ROM, und DrĂźcken von ÂťF1ÂŤ bei Bootbeginn. Geben\n"
-"Sie dann ÂťrescueÂŤ an der Eingabeaufforderung ein. Falls Ihr Rechner nicht\n"
-"von CD-ROM starten kann, sollten Sie diesen Punkt unbedingt aus zwei\n"
-"GrĂźnden abarbeiten:\n"
+"Die Mandrake Linux CD-ROM hat einen eingebauten Rettungsmo­dus. Sie\n"
+"erreichen ihn durch Starten von CD-ROM, und DrĂźcken von ÂťF1ÂŤ bei\n"
+"Bootbeginn. Geben Sie dann ÂťrescueÂŤ an der Eingabeaufforderung ein. Falls\n"
+"Ihr Rechner nicht von CD-ROM starten kann, sollten Sie diesen Punkt\n"
+"unbedingt aus zwei GrĂźnden abarbeiten:\n"
"\n"
" * Wenn „DrakX“ den Betriebssystemstarter installiert, schreibt es den\n"
"Boot-Sektor (MBR) Ihrer primären Festplatte neu (außer Sie wollen einen\n"
@@ -2968,21 +3115,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2998,9 +3144,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Sie mĂźssen nun entscheiden, wo auf Ihrer/n Festplatte(n) Ihr Mandrake Linux\n"
"System installiert werden soll. Sofern alles leer ist bzw. ein\n"
@@ -3035,10 +3181,9 @@ msgstr ""
"Festplatte(n) automatisch partitioniert werden; Sie mĂźssen sich also um\n"
"nichts weiter kĂźmmern.(*)\n"
"\n"
-" * „Verwende existierende“: Der Assistent hat eine oder mehrere "
-"existierende\n"
-"Linux Partitionen auf Ihrer Platte gefunden. Wählen Sie diese Schaltfläche,\n"
-"falls Sie sie behalten wollen.\n"
+" * „Verwende existierende“: Der Assistent hat eine oder mehrere\n"
+"existierende Linux Partitionen auf Ihrer Platte gefunden. Wählen Sie diese\n"
+"Schaltfläche, falls Sie sie behalten wollen.\n"
"\n"
" * „Komplette Platte löschen“: Falls Sie alle Daten Ihrer Platte verlieren,\n"
"und sie durch Ihr neues Mandrake Linux System ersetzen wollen, wählen Sie\n"
@@ -3046,17 +3191,17 @@ msgstr ""
"gemacht werden kann.\n"
"\n"
" * „Freien Platz der Windows Partition verwenden“: Falls der gesamte\n"
-"Plattenplatz aktuell fĂźr MicrosoftWindows(TM) verschwendet ist, mĂźssen Sie\n"
+"Plattenplatz aktuell fĂźr Microsoft Windows(TM) verschwendet ist, mĂźssen Sie\n"
"fĂźr Linux Platz schaffen. Um dies zu erreichen, kĂśnnen Sie entweder Ihre\n"
-"MicrosoftWindows(TM) Partition(en) samt Daten löschen (siehe „Komplette\n"
+"Microsoft Windows(TM) Partition(en) samt Daten löschen (siehe „Komplette\n"
"Platte löschen“ oder „Experten-Modus“) oder Ihre Windows Partition\n"
"verkleinern. Letzteres geht ohne Datenverlust. Sie sollten diese Variante\n"
"wählen, falls Sie beide Betriebssysteme (Windows und Mandrake Linux)\n"
"nebeneinander nutzen wollen.\n"
"\n"
-" Bevor Sie sich fĂźr diese Variante entscheiden, sei hier noch einmal "
-"betont,\n"
-"dass das bedeutet, Sie haben weniger Platz fĂźr Windows als momentan.\n"
+" Bevor Sie sich fĂźr diese Variante entscheiden, sei hier noch einmal\n"
+"betont, dass das bedeutet, Sie haben weniger Platz fĂźr Windows als\n"
+"momentan.\n"
"\n"
" * „Windows(TM) löschen“: Bei dieser Variante werden alle Windows\n"
"Partitionen gelĂśscht und die Platte(n) komplett neu partitioniert.\n"
@@ -3097,9 +3242,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3127,18 +3271,16 @@ msgstr ""
" Es gibt zwei verschiedene Alternativen, nachdem Sie diese Schaltfläche\n"
"aktiviert haben:\n"
"\n"
-" * „Erneut abspielen“: Diese Installation ist nur teilweise automatisch, "
-"da\n"
-"der Partitionierungsschritt (aber nur dieser!) immer noch interaktiv\n"
+" * „Erneut abspielen“: Diese Installation ist nur teilweise automatisch,\n"
+"da der Partitionierungsschritt (aber nur dieser!) immer noch interaktiv\n"
"vonstatten geht.\n"
"\n"
" * „Automatisiert“: Vollautomatische Installation: Die Festplatte wird\n"
"vollständig reorganisiert. Alle darauf vorhandenen Daten gehen verloren!\n"
"\n"
-" Diese Funktion ist besonders nĂźtzlich, wenn man eine Menge von "
-"identischer\n"
-"Rechner einrichten will. Weitere Informationen erhalten Sie auch auf der\n"
-"Seite Auto install\n"
+" Diese Funktion ist besonders nĂźtzlich, wenn man eine Menge von\n"
+"identischer Rechner einrichten will. Weitere Informationen erhalten Sie\n"
+"auch auf der Seite Auto install\n"
"\n"
" * „Paketauswahl speichern“: (*) Sie speichern damit die Paketauswahl, die\n"
"Sie vorher getroffen haben. Wenn Sie später eine erneute Installation\n"
@@ -3317,38 +3459,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3473,7 +3609,7 @@ msgid ""
"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
"disk or partition is called \"C:\")."
msgstr ""
-"Es wurde mehr als nur eine MicrosoftWindows(TM) Partition auf Ihrer Platte\n"
+"Es wurde mehr als nur eine Microsoft Windows(TM) Partition auf Ihrer Platte\n"
"gefunden. Bitte wählen Sie welche Sie verkleinern wollen, um Ihr neues\n"
"Betriebssystem Mandrake Linux installieren zu kĂśnnen.\n"
"\n"
@@ -3522,11 +3658,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3560,7 +3696,7 @@ msgstr ""
"Wählen Sie:\n"
"\n"
" * „Installieren“: Entfernt komplett ältere Versionen von Mandrake Linux,\n"
-"die noch installiert sind um genau zu sein kĂśnnen Sie je nach aktuellem\n"
+"die noch installiert sind - um genau zu sein kĂśnnen Sie je nach aktuellem\n"
"Inhalt Ihrer Platte auch einige ältere Linux- oder anderweitige Partitionen\n"
"unangetastet behalten.\n"
"\n"
@@ -3593,7 +3729,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3621,7 +3757,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3649,7 +3785,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3680,7 +3816,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3690,23 +3826,23 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3771,7 +3907,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3793,7 +3929,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3801,7 +3937,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3845,9 +3981,8 @@ msgstr ""
" * „LILO mit grafischem Menü“: Falls Sie „LILO“ mit seiner grafischen\n"
"Oberfläche bevorzugen.\n"
"\n"
-" * „LILO mit Textmenü“: Falls Sie „LILO“ mit Textmenü als Ihren "
-"Favoriten\n"
-"ansehen.\n"
+" * „LILO mit Textmenü“: Falls Sie „LILO“ mit Textmenü als Ihren\n"
+"Favoriten ansehen.\n"
"\n"
" * „Boot Gerät“: Normalerweise müssen Sie hier nichts ändern („/dev/hda“),\n"
"Sie kĂśnnten jedoch den Starter auch auf der zweiten Platte installieren,\n"
@@ -3863,7 +3998,7 @@ msgstr ""
"irgendwie Ihr Mandrake Linux-System zu starten, wenn Sie hier keinen\n"
"Betriebssystemstarter installieren (durch Auswahl von „Abbruch“). Stellen\n"
"Sie auch sicher, dass Sie wissen was Sie tun, wenn Sie hier Einstellungen\n"
-"verändern... !!\n"
+"verändern ... !!\n"
"\n"
"Durch wählen der Schaltfläche „Fortgeschritten“ erhalten Sie etliche\n"
"Optionen, die dem fortgeschrittenen Anwender vorbehalten bleiben.\n"
@@ -3873,7 +4008,7 @@ msgstr ""
"installierten Betriebssysteme starten lässt.\n"
"\n"
"Sollte sich auf Ihrem Rechner bereits ein anderes Betriebssystem befinden,\n"
-"so wird dieses sofern es erkannt wird automatisch zu dem StartmenĂź\n"
+"so wird dieses - sofern es erkannt wird - automatisch zu dem StartmenĂź\n"
"hinzugefĂźgt. Hier kĂśnnen Sie noch einige Feineinstellungen fĂźr die\n"
"bestehenden Optionen vornehmen. Markieren Sie einen bestehenden Eintrag und\n"
"betätigen Sie die Schaltfläche „Ändern“, um ihn anzupassen oder zu löschen;\n"
@@ -3882,7 +4017,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3910,7 +4045,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3926,29 +4061,28 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3988,7 +4122,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -4013,15 +4147,15 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"„DrakX“ versucht nun alle IDE Festplatten Ihres Systems zu finden. Unter\n"
-"Anderem sucht „DrakX“ auch nach PCISCSI-Karten, die es kennt, um sie\n"
+"Anderem sucht „DrakX“ auch nach PCI SCSI-Karten, die es kennt, um sie\n"
"automatisch mit dem richtigen Treiber einzubinden.\n"
"\n"
-"Falls Sie Ăźber keinen SCSI Adapter verfĂźgen, es sich um einen ISASCSI\n"
-"Adapter handelt oder um einen PCISCSI Adapter, bei dem „DrakX“ nicht weiß,\n"
+"Falls Sie Ăźber keinen SCSI Adapter verfĂźgen, es sich um einen ISA SCSI\n"
+"Adapter handelt oder um einen PCI SCSI Adapter, bei dem „DrakX“ nicht weiß,\n"
"welcher Treiber funktioniert, werden Sie gebeten, „DrakX“ zu helfen.\n"
"\n"
"Ist in Ihrem Rechner kein SCSI Adapter, wählen Sie einfach „Nein“. Sollten\n"
@@ -4041,7 +4175,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -4051,9 +4185,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -4065,7 +4198,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" 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"
@@ -4114,7 +4247,7 @@ msgstr ""
"klassische Apple-Mäuse von Hause aus mit 2 fehlenden Maustasten\n"
"ausgeliefert werden. Hier einige Beispiele:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" 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"
@@ -4124,21 +4257,18 @@ msgstr ""
"ohne dass das Start-Gerät zur Verfßgung steht oder um ein RamDisk Abbild\n"
"fßr den BS-Start in Notfällen zur Verfßgung zu haben.\n"
"\n"
-" * „Größe der Init-RamDisk“: Standardmäßig ist eine RamDisk 4096 Bytes "
-"groß.\n"
-"Sollten Sie eine größere RamDisk benötigen, können Sie das mit diesem\n"
+" * „Größe der Init-RamDisk“: Standardmäßig ist eine RamDisk 4096 Bytes\n"
+"groß. Sollten Sie eine größere RamDisk benötigen, können Sie das mit diesem\n"
"Parameter einstellen.\n"
"\n"
-" * „Schreiben/Lesen“: Normalerweise wird die Verzeichnisbaumwurzel zuerst "
-"im\n"
-"Nur-Lese-Modus eingehängt, um eine Dateisystem Verifikation durchfßhren zu\n"
-"kĂśnnen, bevor das Betriebssystem seinen Dienst aufnimmt. Diesen Umstand\n"
+" * „Schreiben/Lesen“: Normalerweise wird die Verzeichnisbaumwurzel zuerst\n"
+"im Nur-Lese-Modus eingehängt, um eine Dateisystem Verifikation durchfßhren\n"
+"zu kĂśnnen, bevor das Betriebssystem seinen Dienst aufnimmt. Diesen Umstand\n"
"kĂśnnen Sie hier abstellen.\n"
"\n"
-" * „NoVideo“: Sollte sich die Apple Grafik-Hardware als extrem "
-"problematisch\n"
-"erweisen, können Sie diesen Parameter verwenden um im sog. „novideo“-Modus,\n"
-"also im FrameBuffer-Modus zu starten.\n"
+" * „NoVideo“: Sollte sich die Apple Grafik-Hardware als extrem\n"
+"problematisch erweisen, kĂśnnen Sie diesen Parameter verwenden um im sog.\n"
+"„novideo“-Modus, also im FrameBuffer-Modus zu starten.\n"
"\n"
" * „Standard“: Wählt diesen Eintrag als Standard Linux-Kern, den Sie durch\n"
"Drücken von [Enter] an der „Yaboot“ Eingabeaufforderung gestartet bekommen.\n"
@@ -4148,7 +4278,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -4175,9 +4305,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -4194,11 +4323,10 @@ msgstr ""
" * „Init Nachricht“: Ein Text, der vor der Eingabeaufforderung angezeigt\n"
"wird.\n"
"\n"
-" * „Boot Gerät“: Hiermit wird angegeben, wohin die Informationen zum "
-"Starten\n"
-"Ihres GNU/Linux Systems geschrieben werden sollen. Sie sollten in einem\n"
-"frĂźheren Schritt bereits eine Boot-Partition angelegt haben, um diese Daten\n"
-"zu beherbergen.\n"
+" * „Boot Gerät“: Hiermit wird angegeben, wohin die Informationen zum\n"
+"Starten Ihres GNU/Linux Systems geschrieben werden sollen. Sie sollten in\n"
+"einem frĂźheren Schritt bereits eine Boot-Partition angelegt haben, um diese\n"
+"Daten zu beherbergen.\n"
"\n"
" * „Open Firmware Verzögerung“: Im Gegensatz zu „LILO“, stehen mit „Yaboot“\n"
"zwei VerzĂśgerungen zur VerfĂźgung. Die erste VerzĂśgerung wird in Sekunden\n"
@@ -4221,10 +4349,10 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -4232,12 +4360,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -4255,42 +4382,36 @@ msgstr ""
"Hier bekommen Sie verschiedene Parameter Ihres Systems angezeigt. Je nach\n"
"vorhandener Hardware sehen Sie hier (oder eben nicht) folgende Einträge:\n"
"\n"
-" * „Maus“: Kontrollieren Sie die konfigurierte Maus und betätigen Sie, "
-"falls\n"
-"notwendig, die Schaltfläche.\n"
+" * „Maus“: Kontrollieren Sie die konfigurierte Maus und betätigen Sie,\n"
+"falls notwendig, die Schaltfläche.\n"
"\n"
-" * „Tastatur“: Kontrollieren Sie die aktuelle Tastaturvorgabe und wählen "
-"Sie\n"
-"die Schaltfläche, falls Sie die Vorgabe ändern wollen.\n"
+" * „Tastatur“: Kontrollieren Sie die aktuelle Tastaturvorgabe und wählen\n"
+"Sie die Schaltfläche, falls Sie die Vorgabe ändern wollen.\n"
"\n"
-" * „Zeitzone“: „DrakX“ versucht die Zeitzone anhand der gewählten Sprache "
-"zu\n"
-"„erraten“. Es ist jedoch möglich, dass Sie sich nicht in dem Land befinden,\n"
-"das die vorgegebene Sprache erahnen lässt. In diesem Fall sollten Sie die\n"
-"Schaltfläche anwählen, um die Uhr entsprechend Ihrer lokalen Zeitzone zu\n"
-"setzen.\n"
+" * „Zeitzone“: „DrakX“ versucht die Zeitzone anhand der gewählten Sprache\n"
+"zu „erraten“. Es ist jedoch möglich, dass Sie sich nicht in dem Land\n"
+"befinden, das die vorgegebene Sprache erahnen lässt. In diesem Fall sollten\n"
+"Sie die Schaltfläche anwählen, um die Uhr entsprechend Ihrer lokalen\n"
+"Zeitzone zu setzen.\n"
"\n"
" * „Drucker“: Durch Anwahl der Schaltfläche „Kein Drucker“ starten Sie den\n"
"Druckerassistenten.\n"
"\n"
-" * „Soundkarte“: Falls eine Soundkarte in Ihrem Rechner gefunden wurde, "
-"wird\n"
-"sie hier angezeigt. Es ist jedoch keine Änderung während der Installation\n"
-"mĂśglich.\n"
+" * „Soundkarte“: Falls eine Soundkarte in Ihrem Rechner gefunden wurde,\n"
+"wird sie hier angezeigt. Es ist jedoch keine Änderung während der\n"
+"Installation mĂśglich.\n"
"\n"
-" * „TV-Karte“: Falls eine TV-Karte in Ihrem Rechner gefunden wurde, wird "
-"sie\n"
-"hier angezeigt. Es ist jedoch keine Änderung während der Installation\n"
+" * „TV-Karte“: Falls eine TV-Karte in Ihrem Rechner gefunden wurde, wird\n"
+"sie hier angezeigt. Es ist jedoch keine Änderung während der Installation\n"
"mĂśglich.\n"
"\n"
-" * „ISDN Karte“: Falls eine ISDN Karte in Ihrem Rechner gefunden wurde, "
-"wird\n"
-"sie hier angezeigt. Durch Anwahl der Schaltfläche kÜnnen Sie die Parameter\n"
-"ändern."
+" * „ISDN Karte“: Falls eine ISDN Karte in Ihrem Rechner gefunden wurde,\n"
+"wird sie hier angezeigt. Durch Anwahl der Schaltfläche kÜnnen Sie die\n"
+"Parameter ändern."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4302,7 +4423,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4320,7 +4441,7 @@ msgstr ""
"Wählen Sie „Abbruch“, um die vorhandenen Daten unangetastet zu lassen und\n"
"die Operation abzubrechen."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4332,12 +4453,12 @@ msgstr ""
"Installationsmedium Ăźbereinstimmt (Bitte erstellen Sie eine neue "
"Startdiskette). "
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr "Sie mĂźssen auch %s formatieren."
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4362,22 +4483,22 @@ msgstr ""
"\n"
"Wollen Sie diese Server wirklich installieren?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr ""
"Ich kann kein Broadcast machen,\n"
"da keine NIS Domäne angegeben wurde"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Legen Sie eine leere, FAT formatierte Diskette in Laufwerk %s ein."
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Diese Diskette ist nich FAT formatiert"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4385,7 +4506,7 @@ msgstr ""
"Um diese gespeicherte Paketauswahl zu verwenden, starten Sie die \n"
"Installation bitte mit: „boot defcfg=floppy“"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Fehler beim Lesen der Datei %s"
@@ -4415,7 +4536,7 @@ msgstr "Sie benĂśtigen eine Auslagerungspartition"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -4423,59 +4544,59 @@ msgstr ""
"\n"
"Wollen Sie trotzdem fortfahren?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Sie müssen eine FAT Partition in „/boot/efi“ eingehängt haben."
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Freien Platz verwenden"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Nicht genug freier Platz, um die neue Partition anlegen zu kĂśnnen."
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Verwende existierende Partition(en)"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Es gibt keine existierende Partition, die ich verwenden kann."
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Auf der Windows Partition Loopbacks anlegen"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Auf welche Partition wollen Sie Linux4Win installieren?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Wählen Sie die Größen"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Größe der Verzeichnisbaumwurzel-Partition in MB: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Größe der Auslagerungspartition in MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Den freien Platz der Windows Partition verwenden"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Bei welcher Partition wollen Sie die Größe ändern?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Errechne die Grenzen des Windows Dateisystems"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4485,13 +4606,16 @@ msgstr ""
"Partition nicht arbeiten. Folgender Fehler trat auf:\n"
"%s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"Ihre Windows-Partition ist zu sehr fragmentiert.\n"
"Starten Sie bitte erst „defrag“ unter Windows."
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -4512,59 +4636,59 @@ msgstr ""
"Sie sollten natĂźrlich generell Sicherheitskopien Ihrer Daten angelegt\n"
"haben. Falls dies der Fall ist, kĂśnnen Sie mit OK fortfahren."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Wieviel Platz benĂśtigen sie noch fĂźr Windows auf"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "Partition %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT Größenanpassung schlug Fehl: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Sie haben keine FAT Partition, deren Größe ich anpassen kann, bzw. die\n"
"ich als Loopback verwenden kann (mĂśglicherweise haben Sie auch einfach\n"
"nur nichtmehr genĂźgend freien Speicher)."
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Komplette Platte lĂśschen"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Windows(TM) lĂśschen"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
"Sie haben mehr als eine Festplatte.\n"
"Auf welche soll GNU/Linux installiert werden?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"SÄMTLICHE existierende Partitionen samt der derauf befindlichen Daten \n"
"auf Laufwerk %s gehen dabei verloren"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Benutzerdefinierte Partitionierung"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Fdisk verwenden"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4574,11 +4698,11 @@ msgstr ""
"Vergessen Sie nicht die Einstellungen mittels ,w` zu speichern, \n"
"sobald Sie fertig sind."
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Sie haben nicht genug freien Platz auf Ihrer Windows Partition."
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Ich finde nicht genug Platz fĂźr die Installation."
@@ -4586,16 +4710,16 @@ msgstr "Ich finde nicht genug Platz fĂźr die Installation."
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Der DrakX Partitionierungsassistent fand folgende LĂśsung:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Das Partitionieren schlug Fehl: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Netzwerkverbindung herstellen"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Netzwerkverbindung trennen"
@@ -4607,12 +4731,12 @@ msgstr ""
"Es trat ein Fehler auf. Ich weiß jedoch nicht, wie ich damit sinnvoll \n"
"umgehen soll. Sie kĂśnnen fortfahren, jedoch auf eigenes Risiko!"
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Den Einhängpunkt %s kopieren"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4624,12 +4748,12 @@ msgstr ""
"Testen Sie die CD-ROM auf einem Linux-Rechner mittels „rpm -qpl \n"
"Mandrake/rpms/*.rpm“\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Willkommen auf %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Kein Disketten-Laufwerk verfĂźgbar"
@@ -4639,9 +4763,9 @@ msgstr "Kein Disketten-Laufwerk verfĂźgbar"
msgid "Entering step `%s'\n"
msgstr "Beginn von Schritt „%s“\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4652,203 +4776,158 @@ msgstr ""
"Installationsstart und geben Sie „text“ an der Eingabeaufforderung \n"
"ein."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Installationsart"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr "Bitte wählen Sie eine der folgenden Installationsklassen:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Die Gesamtgröße der zu installierenden Pakete beträgt etwa %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Falls Sie weniger als diese Menge installieren wollen, \n"
-"geben Sie (in Prozent) an, wie viele Pakete Sie installieren wollen.\n"
-"\n"
-"Ein geringer Prozentsatz installiert nur die wichtigsten Pakete;\n"
-"100%% installiert alle ausgewählten Pakete."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Sie haben nur Platz fßr %d%% der ausgewählten Pakete. \n"
-"\n"
-"Falls Sie weniger als diese Menge installieren wollen, \n"
-"geben Sie (in Prozent) an, wie viele Pakete Sie installieren wollen.\n"
-"Ein geringer Prozentsatz installiert nur die wichtigsten Pakete;\n"
-"%d%% installiert so viele Pakete wie mĂśglich."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Im nächsten Schritt kÜnnen Sie genauer auswählen"
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Prozent der zu installierenden Pakete"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Auswahl der Paketgruppen"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Individuelle Paketauswahl"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Gesamtgröße: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "UngĂźltiges Paket"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Name: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Version: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Größe: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Wichtigkeit: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Sie kÜnnen dieses Paket nicht auswählen, da Sie nicht genug Plattenplatz "
"haben."
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Die folgenden Pakete werden installiert werden"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Die folgenden Pakete werden entfernt"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Sie kÜnnen dieses Paket nicht auswählen/es aus der Auswahl entfernen."
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Dieses Paket ist existenziell, sie kĂśnnen es nicht deselektieren"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr ""
"Sie kĂśnnen dieses Paket nicht aus der Auswahl entfernen. \n"
"Es ist bereits installiert!"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Dieses Paket muss aktualisiert werden.\n"
"Sind Sie sicher, dass Sie es aus der Auswahl entfernen wollen?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr ""
"Sie kĂśnnen dieses Paket nicht aus der Auswahl entfernen. \n"
"Es muss aktualisiert werden!"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Anzeige automatisch markierter Pakete"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Installation"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Laden von/Speichern auf Diskette"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "Erneuere Paket Auswahl"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "Minimal-Installation"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Zu installierende Pakete auswählen"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Installation wird durchgefĂźhrt"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Schätzung"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Verbleibende Zeit "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Bitte warten, bereite Installation vor"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d Pakete"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Installation des Pakets %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Akzeptieren"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "ZurĂźckweisen"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4863,17 +4942,17 @@ msgstr ""
"dann drĂźcken Sie OK.\n"
"Falls Sie sie nicht vorliegen haben, drĂźcken Sie Abbruch."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Wollen Sie trotzdem fortfahren?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Bei der Anforderung folgender Pakete trat ein Fehler auf:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Bei der Installation der Pakete trat ein Fehler auf:"
@@ -4948,11 +5027,11 @@ msgstr "Es ist ein Fehler aufgetreten"
msgid "Do you really want to leave the installation?"
msgstr "MĂśchten Sie die Installation wirklich beenden?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Lizenz"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4967,7 +5046,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -5291,109 +5370,113 @@ msgstr ""
"litige. Pour toute question relative au prĂŠsent document, veuillez \n"
"contacter MandrakeSoft S.A.\n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Tastatur"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "Bitte wählen Sie Ihren Tastaturtyp."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Hier die Liste aller Tastaturen"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Welche Installationsart wollen Sie durchfĂźhren?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Installation/Aktualisierung"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Handelt es sich um eine Installation oder eine Aktualisierung?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Empfehlenswert"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Experte"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "Aktualisierung"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "Nur Pakete aktualisieren"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Bitte wählen Sie Ihren Maustyp."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Maus Port"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Bitte wählen Sie den seriellen Anschluss, an dem Ihre Maus hängt."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Tastenemulation"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Emulation der 2. Taste"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Emulation der 3. Taste"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "PCMCIA Karten konfigurieren ..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "IDE konfigurieren"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "Keine Partition verfĂźgbar"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Durchsuchen der Partitionen, um die Einhängpunkte zu finden."
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Wählen Sie die Einhängpunkte"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -5406,7 +5489,7 @@ msgstr ""
"\n"
"Sind Sie einverstanden, dass ich die problematischen Partitionen lĂśsche?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -5414,7 +5497,7 @@ msgstr ""
"DiskDrake ist nicht in der Lage, Ihre Partitionstabelle korrekt zu \n"
"interpretieren. Sie kĂśnnen fortfahren, jedoch auf eigenes Risiko!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -5423,80 +5506,85 @@ msgstr ""
"Installation wird fortgesetzt, Sie mĂźssen jedoch eine Start-Partition mit "
"DiskDrake erstellen."
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr ""
"Es wurde keine Verzeichnisbaumwurzel gefunden, die aktualisiert werden kann."
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Verzeichnisbaumwurzel"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Welche Partition ist Ihre Verzeichnisbaumwurzel?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Sie müssen Ihren Rechner neu starten, um die Änderungen \n"
"der Partitionstabelle wirksam werden zu lassen."
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Zu formatierende Partitionen auswählen"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Soll ich nach defekten BlĂścken suchen?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Partitionen formatieren"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Erzeugen und formatieren der Datei %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Der Swap-Bereich ist zu klein, um die Installation zu ermĂśglichen! \n"
"Bitte vergrößern Sie den Bereich."
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Suche nach vorhandenen Paketen"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
+msgstr "Suche nach vorhandenen Paketen"
+
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Finden der zu aktualisierenden Pakete"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr ""
+"Sie kĂśnnen dieses Paket nicht aus der Auswahl entfernen. \n"
+"Es ist bereits installiert!"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Es steht auf Ihrem System nicht genĂźgend Speicherplatz fĂźr die \n"
"Installation bzw. Aktualisierung zur VerfĂźgung (%d > %d)."
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Komplett (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimal (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Empfohlen (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5505,36 +5593,36 @@ msgstr ""
"oder darauf gespeichert werden soll. Es handelt sich um das \n"
"selbe Format, wie die unter „auto_install“ erzeugten Disketten."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Von Diskette laden"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Laden von Diskette ..."
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Auswahl der Pakete"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr ""
"Legen Sie eine Diskette ein, auf der Ihre Paketauswahl gespeichert ist."
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Auf Diskette speichern"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Gewünschte Größe übersteigt den verfügbaren Platz"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr "Installationsklasse"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5542,19 +5630,19 @@ msgstr ""
"Sie haben keine Paketgruppe ausgewählt\n"
"Bitte wählen Sie die minimale Installation, die Sie wßnschen."
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "Mit X"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr "Mit minimaler Dokumentation (Empfohlen)"
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr "Extrem minimale Installation (ohne „urpmi“)"
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5565,16 +5653,16 @@ msgstr ""
"falls nur einige der aufgefĂźhrten CDs fehlen, entfernen Sie die \n"
"entsprechende Markierung und wählen Sie dann „OK“."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM „%s“"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Installation vorbereiten"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -5583,25 +5671,25 @@ msgstr ""
"Installiere Paket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Einstellungen fĂźr nach der Installation"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Bitte legen Sie die Startdiskette in Laufwerk %s ein."
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr ""
"Bitte legen Sie die Diskette der zu aktualisiernden Module in Laufwerk %s "
"ein."
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5675,13 +5763,15 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
+#, fuzzy
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
@@ -5693,155 +5783,185 @@ msgstr ""
"\n"
"MĂśchten Sie die Aktualisierungen vornehmen?"
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Verbindung mit dem Mandrake Linux Web-Server aufbauen, um eine Liste\n"
"verfĂźgbarer Pakete zu erhalten."
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Bitte wählen Sie einen Mirror, von dem Sie die Pakete holen wollen."
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
"Verbindung mit dem Mirror aufbauen, um eine Liste verfĂźgbarer Pakete zu "
"erhalten."
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Wählen Sie Ihre Zeitzone"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Hardware Uhr liefert GMT"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatische Zeit-Synchronisation (durch NTP)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "NTP Server"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "CUPS-Server auf der Gegenseite"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Kein Drucker"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
msgstr "VerfĂźgen Sie Ăźber eine ISA soundkarte?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Starten Sie „sndconfig“ nach der Installation, um Ihre Soundkarte "
"einzurichten."
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Es wurde keine Soundkarte gefunden. Versuchen Sie „harddrake“nach der "
"Installation."
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Zusammenfassung"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Maus"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Zeitzone"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Drucker"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "ISDN Karte"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Soundkarte"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV-Karte"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Windows (FAT32)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Lokale Dateien"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Root-Passwort setzen"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Kein Passwort"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Dieses Passwort ist zu einfach (es muss mindestens %d Zeichen lang sein)!"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Authentifizierung"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "LDAP Authentifizierung"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "LDAP Server"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "NIS Authentifizierung"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS Domain"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS Server"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "LDAP Authentifizierung"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Windows-Schriften verwenden"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NTP Server"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -5872,19 +5992,19 @@ msgstr ""
"Falls Sie eine Startdiskette erstellen wollen, legen Sie eine Diskette \n"
"ohne relevante Daten in ihr erstes Laufwerk und drücken Sie „OK“."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "erste Disketten-Laufwerk"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "zweite Disketten-Laufwerk"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Überspringen"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5913,7 +6033,7 @@ msgstr ""
"MĂśchten Sie jetzt eine Startdiskette fĂźr Ihr System erstellen?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5927,31 +6047,31 @@ msgstr ""
"Das Erstellen einer Startdiskette auf einem 1,44 MB Medium \n"
"schlä sicher fehl, da XFS einen sehr großen Treiber benötigt)."
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Ich kann kein Laufwerk finden"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Wählen Sie das Laufwerk, in dem Sie die Start-Diskette erstellen wollen"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
msgstr ""
"Legen Sie eine Diskette, die keine relevanten Daten mehr enthällt in das %s "
"ein."
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Startdiskette wird erstellt..."
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Betriebssystemstarter vorbereiten"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5965,11 +6085,11 @@ msgstr ""
"„BootX“ verwenden müssen um LINUX auf Ihrem Rechner\n"
"zu starten."
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Möchten Sie „aboot“ verwenden?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5978,16 +6098,16 @@ msgstr ""
"mit Gewalt versuchen, auch wenn dies die ZerstĂśrung der ersten \n"
"Partition verursachen kann?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "BS-Starter installieren"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"Die Installation des BS-Starters schlug Fehl. Folgender Fehler trat auf:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6005,18 +6125,17 @@ msgstr ""
"Tippen Sie dann: shut-down\n"
"Beim darauffolgenden Neustart sollte Sie die Eingabeaufforderung sehen."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Legen Sie eine leere Diskette in das %s ein."
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Erstellen einer Auto-Installationsdiskette"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6026,7 +6145,8 @@ msgstr ""
"\n"
"Wollen Sie DrakX wirklich beenden?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -6037,7 +6157,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -6050,16 +6170,21 @@ msgstr ""
"FĂźr Informationen zu Sicherheitsaktualisierungen dieser Version von Mandrake "
"Linux informieren Sie sich bitte unter \n"
"\n"
-"http://www.mandrakelinux.com/en/82errata.php3\n"
+"%s\n"
"\n"
"Wie Sie Ihr System warten können, erfahren Sie im Kapitel „Nach der "
"Installation“ im offiziellen Benutzerhandbuch von Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+#, fuzzy
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakesoft.com/sales/contact/"
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Erstellen einer Auto-Installationsdiskette"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6076,15 +6201,15 @@ msgstr ""
"Vermutlich werden Sie es vorziehen, erneut eine normale\n"
"Installation durchzufĂźhren.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automatisiert"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Erneut abspielen"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Paketauswahl speichern"
@@ -6111,44 +6236,24 @@ msgstr "Das Programm „consolehelper“ wurde nicht gefunden."
msgid "Choose a file"
msgstr "Wählen Sie eine Datei"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Fortgeschritten"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr "Einfach"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Bitte warten"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Baum erweitern"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Baum verkleinern"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Umschalten zwischen unsortiert und gruppiert"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Schlechte Wahl, bitte versuchen Sie es noch einmal\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Ihre Wahl? (Standard ‚%s‘) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -6157,31 +6262,35 @@ msgstr ""
"Angaben, die Sie machen mĂźssen:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Ihre Wahl? (0/1, Standard ‚%s‘) "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "Schaltfläche „%s“: %s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+msgid "Do you want to click on this button?"
msgstr "MÜchten Sie diese Schaltfläche betätigen?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Ihre Wahl? (Standard „%s“ %s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Es gibt zahlreiche AuswahlmĂśglichkeiten (%s).\n"
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -6190,7 +6299,7 @@ msgstr ""
"Bitte wählen Sie die Nummer aus dem Bereich, die Sie bearbeiten wollen,\n"
"oder betägen Sie die Eingabetaste um fort zu fahren.Ihre Wahl? "
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -6199,327 +6308,327 @@ msgstr ""
"=> Anmerkung: Ein Eintrag wurde geändert:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr "Erneut verschicken"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Tschechien (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Deutschland"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Spanien"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finnland"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Frankreich"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norwegen"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Polen"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Russland"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Schweden"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Grßbritannien"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Vereinigte Staaten von Amerika"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Albanien"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armenien (alt)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armenien (Schreibmaschine)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armenien (Phonetisch)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Aserbeidschan (Lateinisches Layout)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgien"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr "Bulgarien (Phonetisch)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "Bulgarien (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brasilien (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Weißrussland"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Schweiz (deutsches Layout)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Schweiz (franzĂśsisches Layout)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Tschechien (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Deutschland (ohne Tod-Tasten)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Dänemark"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (USA)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norwegen)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Schweden)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estland"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgien (Kyrillisches Layout)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgien (Lateinisches Layout)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Griechenland"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Ungarn"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Kroatien"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Israel"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Israel (Phonetisch)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iran"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Island"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Italien"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Japan (106 Tasten)"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Korea"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Lateinamerika"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Litauen (AZERTY - alt)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Litauen (AZERTY - neu)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litauen (QWERTY - „number row“)"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litauen (QWERTY - Phonetisch)"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "Lettland"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Mazedonien"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Niederlande"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Polen (QWERTY Layout)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Polen (QWERTZ Layout)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugal"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Kanada (Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Rumänien (QWERTZ)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Rumänien (QWERTY)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Russland (YaWERTY)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slowenien"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slowakei (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slowakei (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "Serbien (Kyrillisches Layout)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr "Indien (Tamilisches Layout)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thailändische Tastatur"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Tadschikistan"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Türkei (traditionelles „F“ Modell)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Türkei (modernes „Q“ Modell)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukraine"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Vereinigte Staaten von Amerika (international)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnam QWERTY („number row“)"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Jugoslawien (Lateinisches Layout)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr "AltGr-Taste"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr "Beide Umschalttasten gleichzeitig"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr "Strg und Umschalttaste gleichzeititg"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr "CapsLock Taste"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr "Strg und Alt gleichzeitig"
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr "Alt und Umschalttaste gleichzeitig"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr "MenĂźtaste"
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr "Linke „Windows“-Taste"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr "Rechte „Windows“-Taste"
@@ -6532,7 +6641,31 @@ msgstr "Schleife bei den Einhängpunkten %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Entfernen Sie erst die Logischen Medien\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Telefonnummer"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Partitionen formatieren"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -6575,10 +6708,6 @@ msgstr "1 Taste"
msgid "Generic 2 Button Mouse"
msgstr "Generische 2 Tasten Maus"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Generisch"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Rad"
@@ -6643,38 +6772,54 @@ msgstr "keine"
msgid "No mouse"
msgstr "Keine Maus"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Bitte testen Sie Ihre Maus"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Um Ihre Maus zu aktivieren:"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "BEWEGEN SIE IHR MAUS-RAD!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Beenden"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Weiter ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- ZurĂźck"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Ist dies richtig?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Info"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Baum erweitern"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Baum verkleinern"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Umschalten zwischen unsortiert und gruppiert"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Internetverbindung"
@@ -6721,7 +6866,7 @@ msgstr ""
"Ich habe keine Ethernet-Netzwerkkarte finden kĂśnnen, daher kanndieser "
"Verbindungstyp nicht konfiguriert werden."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Wählen Sie die Netzwerkkarte"
@@ -6736,7 +6881,7 @@ msgstr ""
msgid "no network card found"
msgstr "Keine Netzwerkkarte gefunden"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Netzwerk konfigurieren"
@@ -6752,15 +6897,15 @@ msgstr ""
"Ihr Rechnername sollte auch die Domain beinhalten,\n"
"etwa „meinrechner.meineabteilung.meinefirma.de“."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Rechnername"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Netzwerk Konfigurationsassistent"
@@ -6817,7 +6962,7 @@ msgstr "ISDN Konfiguration"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Wählen Sie Ihren Netzanbieter.\n"
"Sollte er nicht aufgeführt sein, wählen Sie „Nicht aufgeführt“"
@@ -6836,14 +6981,14 @@ msgstr "Protokoll fĂźr den Rest der Welt"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Protokoll fĂźr den Rest der Welt \n"
"ohne D-Kanal (Leased Lines)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Welches Protokoll wollen Sie verwenden?"
#: ../../network/isdn.pm_.c:199
@@ -6867,7 +7012,8 @@ 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"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Falls Sie eine ISA-Karte besitzen, sollten die Einstellungen auf dem "
@@ -6885,13 +7031,13 @@ msgid "Continue"
msgstr "Fortfahren"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Bitte wählen Sie Ihre ISDN Karte"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Ich habe eine PCI ISDN-Karte gefunden, \n"
"kenne sie jedoch nicht. Bitte helfen Sie mir,\n"
@@ -6911,47 +7057,47 @@ msgstr "Bitte wählen Sie den seriellen Anschluss, an dem Ihr Modem hängt."
msgid "Dialup options"
msgstr "Einwahl Parameter"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Name der Verbindung"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Telefonnummer"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Login ID"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Skript-basiert"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Terminal-basiert"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Name der Domäne"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Erster DNS Server (optional)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Zweiter DNS Server (optional)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6959,7 +7105,7 @@ msgstr ""
"\n"
"Sie kĂśnnen die Verbindung trennen oder sie neu konfigurieren."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6967,11 +7113,11 @@ msgstr ""
"\n"
"Sie kĂśnnen Ihre Internetverbindung neu konfigurieren"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Sie sind momentan mit dem Internet verbunden."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6980,32 +7126,32 @@ msgstr ""
"Sie kĂśnnen eine Internetverbindung aufbauen oder die Verbindung neu "
"konfigurieren"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Sie sind momentan nicht mit dem Internet verbunden."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Verbinden"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Verbindung trennen"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr "Die Verbindung konfigurieren"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Internetverbindung und -einrichtung"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Wir werden nun die Verbindung „%s“ konfigurieren."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -7024,12 +7170,12 @@ msgstr ""
"\n"
"Wählen Sie „OK“, um fortzufahren."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Netzwerk konfigurieren"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -7041,9 +7187,9 @@ msgstr ""
"„Abbruch“, um Ihre Internet- und Netzwerk-Konfiguration neu zu\n"
"konfigurieren.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"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"
@@ -7053,66 +7199,72 @@ msgstr ""
"Ich versuche nun Ihre Internet-/Netzwerk-Verbindung zu konfigurieren.\n"
"Falls Sie keine Autodetektion wĂźnschen, entfernen Sie bitte die Markierung.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Wählen Sie das Profil, dass eingestellt werden soll"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Autoerkennung benutzen"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Expertenmodus"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Geräteerkennung..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Normale Modem Verbindung"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "an Prot %s gefunden"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN Verbindung"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "%s gefunden"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "ADSL Verbindung"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "an Schnittstelle %s gefunden"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Kabel Verbindung"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "Kabel Verbindung gefunden"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "LAN Verbindung"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "Netzwerkkarte(n) gefunden"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Wählen Sie die Verbindung, die Sie konfigurieren wollen"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -7123,23 +7275,23 @@ msgstr ""
"ich versuchen soll.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Internet-Verbindung"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "MĂśchten Sie die Verbindung bei Betriebssystemstart herstellen?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Netzwerk Konfiguration"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr "Das Netzwerk muss neu gestartet werden"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -7150,7 +7302,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -7160,7 +7312,7 @@ msgstr ""
"\n"
"Die Konfiguration wird nun in Ihr System integriert.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7169,20 +7321,20 @@ msgstr ""
"neu zu starten, um Probleme, die durch die Änderung des\n"
"Rechnernamens hervorgerufen werden, zu vermeiden."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
"Während der Konfiguration traten Fehler auf.\n"
"Kontrollieren Sie Ihre Verbindung mit „net_monitor“ oder dem Mandrake "
"Kontrollzentrum. Falls die Verbindung nicht funktioniert, sollten Sie erneut "
"die Konfguration starten."
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"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."
@@ -7192,7 +7344,7 @@ msgstr ""
"Drücken Sie einfach „OK“, um die Einstellungen zu behalten.\n"
"Fall Sie Felder verändern, wird die Konfiguration ßberschrieben."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7202,38 +7354,43 @@ msgstr ""
"Jeder Eintrag muss als dezimale IP-Adresse in Punktschreibweise \n"
"angegeben werden (etwa „192.168.1.42“)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Konfigurieren der Netzwerkkarte %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (Treiber %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP Adresse"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Netzmaske"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(BOOTP/DHCP)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Automatische IP-Adressen Zuweisung"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Beim Hochfahren gestartet"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "Die IP Adresse sollte etwa die Form „192.168.1.42“ haben!"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7245,64 +7402,64 @@ msgstr ""
"etwa „meinrechner.meineabteilung.meinefirma.de“.\n"
"Falls Sie ein Gateway verwenden, sollten Sie auch dessen IP-Adresse angeben."
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS-Server"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (etwa %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Gateway Gerät"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Proxies einstellen"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP Proxy"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP Proxy"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Netzwerkkarten-ID Ăźberwachen (sinnvoll fĂźr Laptops)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Proxy muss „http://...“ sein"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Proxy muss „ftp://...“ sein"
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Internet Konfiguration"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "MĂśchten Sie jetzt versuchen eine Internetverbindung aufzubauen?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Ich teste gerade Ihre Verbindung..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Sie sind jetzt mit dem Internet verbunden."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Aus SicherheitsgrĂźnden wird die Verbindung nun unterbrochen."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -7310,114 +7467,119 @@ msgstr ""
"Sie sind momentan nicht mit dem Internet verbunden.\n"
"Versuchen Sie Ihre Internetverbindung wieder zu konfigurieren."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Verbindungskonfiguration"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr ""
"Bitte fĂźllen Sie die folgen Felder aus \n"
"bzw. makieren Sie die korrekten Angaben"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "Karten IRQ"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Karten Mem (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "Karten E/A"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "Karten IO_0"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "Karten IO_1"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Ihre eigene Telefonnummer"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Name des Providers (z.B. provider.net) "
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Telefonnummer des Providers"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Erster DNS des Providers (optional)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Zweiter DNS des Providers (optional)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Land auswählen"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Wahlmodus"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Verbindungsgeschwindigkeit"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "VerbindungsTimeout (in Sec)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Kennzeichen (Login)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Passwort"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "Fehler beim Einhängen: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Diese Rechnerarchitektur kennt keine erweiterten Partitionen"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Sie haben einen unbenutzten Bereich in Ihrer Partitionstabelle, \n"
"den ich nicht ansprechen kann. Die einzige LĂśsung ist, dass Sie \n"
"Ihre primären Partitionen so verschieben, dass der Bereich direkt \n"
"neben der erweiterten Partition zu liegen kommt."
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Restaurieren aus der Datei %s schlug Fehl: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Fehlerhafte Backup-Datei"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Fehler beim Schreiben in Datei %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7428,186 +7590,186 @@ msgstr ""
"Das bedeutet, dass jeder Schreibvorgang auf der Platte zu einem \n"
"unvorhersagbaren Ergebnis fĂźhren wird."
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "unbedingt notwendig"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "wichtig"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "sehr angenehm"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "angenehm"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "eventuell"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Common Unix Printing System"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR New Generation"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Line Printer Daemon"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Lokaler Drucker"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Entfernter Drucker"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Drucker an CUPS-Server auf der Gegenseite"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Drucker an lpd-Server auf der Gegenseite"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Netzwerkdrucker (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Drucker an SMB/Windows 9x/ME/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Drucker an NetWare Server"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Druckeranschluss URI"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "Den Auftrag an ein Kommando weiterleiten"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Unbekanntes Modell"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "Lokale Drucker"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "Entfernte Drucker"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr " an Parallelport \\/*%s"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", USB-Drucker \\/*%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", Multifunktionsgerät am Parallelport \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ", USB Multifunktionsgerät"
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ", Multifunktionsgerät am HP JedDirect"
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ", Multifunktionsgerät"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, c-format
msgid ", printing to %s"
msgstr ", drucken auf %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr "auf LDP-Server „%s“, Drucker „%s“"
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", TCP/IP Drucker „%s“, Port %s"
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr "auf Windows-Server „%s“, Freigabe „%s“"
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr "auf dem Novell-Server „%s“, Drucker „%s“"
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ", mittels Kommando „%s“"
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr "Rohdaten-Drucker (kein Treiber)"
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(an %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(an diesem Rechner)"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Auf CUPS-Server „%s“"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Standard)"
@@ -7630,11 +7792,11 @@ msgstr ""
"hier keine Einstellungen vornehmen, die Drucker werden \n"
"automatisch erkannt und Ăźbernommen."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
msgid "CUPS configuration"
msgstr "CUPS Konfiguration"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
msgid "Specify CUPS server"
msgstr "CUPS-Server angeben"
@@ -7678,7 +7840,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "Die IP Adresse sollte etwa die Form „192.168.1.42“ haben!"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "Die Prot Nummer muss eine Zahl sein!"
@@ -7686,7 +7848,7 @@ msgstr "Die Prot Nummer muss eine Zahl sein!"
msgid "CUPS server IP"
msgstr "CUPS-Server-IP"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Port"
@@ -7694,20 +7856,12 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Automatische CUPS Konfiguration"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Geräteerkennung..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Test der AnschlĂźsse"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr "Drucker hinzufĂźgen"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7728,13 +7882,13 @@ msgstr ""
"Sie werden nur nach den nĂśtigen Informationen Ăźber den Drucker gefragt, um "
"Ihnen dann Zugriff auf Treiber, Druckoptionen und Anschlussart zu erhalten."
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Lokaler Drucker"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7768,11 +7922,11 @@ msgstr ""
"Verwenden Sie den „Expertenmodus“ von PrinterDrake, um einen entfernten "
"Drucker einzurichten, falls er nicht automatisch aufgefĂźhrt wird."
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr "Drucker-Selbsterkennung"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7796,11 +7950,11 @@ msgstr ""
"Druckqualität) anpassen wollen, wählen Sie „Drucker“ im „Hardware“\n"
"Bereich des Mandrake Kontrollzentrums."
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr "Selbsterkennung von Druckern"
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7816,33 +7970,37 @@ msgstr ""
"\n"
"Wollen Sie wirklich, dass PrinterDrake eine Selbsterkennung versucht?"
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "Autoerkennung durchfĂźhren"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr "Drucker selbst einrichten"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Test der AnschlĂźsse"
+
+#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
msgstr "%s gefunden"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Drucker an Parallelport \\/*%s"
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr "USB-Drucker \\/*%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
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, ..., "
@@ -7854,11 +8012,11 @@ msgstr ""
"Anschlßsse: /dev/lp0, /dev/lp1, ..., äquivalent zu LPT1:, LPT2:, ...; Erster "
"USB Drucker: /dev/usb/lp0, zweier USB Drucker: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
msgstr "Sie mßssen einen Geräte- oder Dateinamen eingeben!"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
@@ -7866,7 +8024,7 @@ msgstr ""
"Kein Lokaler Drucker erkannt!\n"
"\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
@@ -7874,7 +8032,7 @@ msgstr ""
"Netzwerkdrucker kĂśnnen erst nach der Installation eingerichtet werden. "
"Wählen Sie „Einstellungen/Hardware/Drucker“ im Mandrake Kontrollzentrum."
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
@@ -7882,7 +8040,7 @@ msgstr ""
"Um Netzwerkdrucker zu installieren wäen Sie bitte „Abbruch“, wechseln in den "
"„Expertenmoduns“ und wählen erneut „Drucker hinzufügen“."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7891,7 +8049,7 @@ msgstr ""
"Drucker handelt, den Sie einrichten wollen, geben Sie einen Geräte- oder "
"Dateinamen in der Eingabezeile an."
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7900,7 +8058,7 @@ msgstr ""
"gewßnschten Drucker oder geben Sie einen Geräte- oder Dateinamen in der "
"Eingabezeile an."
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7912,7 +8070,7 @@ msgstr ""
"oder wollen Sie die Einrichtung selbst vornehmen, wählen Sie „Manuelle "
"Konfiguration“."
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7924,7 +8082,7 @@ msgstr ""
"Ihr Drucker nicht richtig erkannt worden sein, oder wollen Sie die "
"Einrichtung selbst vornehmen, wählen Sie „Manuelle Konfiguration“."
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7932,11 +8090,11 @@ msgstr ""
"Bitte wählen Sie den Anschluss, an dem der Drucker hängt oder geben Sie "
"einen Geräte- oder Dateinamen in der Eingabezeile an."
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
msgstr "Bitte wählen Sie den Anschluss, an dem Ihr Drucker hängt."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7945,52 +8103,65 @@ msgstr ""
"LPT2:, ..., Erster USB Drucker: /dev/usb/lp0, zweier USB Drucker: /dev/usb/"
"lp1, ...)."
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
msgstr "Sie mßssen einen Drucker wählen/ein Gerät eingeben!"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
msgstr "Manuelle Konfiguration"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
+#, fuzzy
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
"Ist Ihr Drucker ein Multifunktionsgerät von HP (OfficeJet, PSC, PhotoSmart, "
"LaserJet 1100/1200/1220/3200/3300 mit Scanner)?"
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
msgstr "Installiere das „HPOJ“-Paket ..."
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr "Geräte untersuchen und HPOJ einrichten ..."
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
msgstr "Installiere das „SANE“-Paket ..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Pakete Installieren ..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr "Scannen mit Ihrem HP-Multifunktionsgerät"
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+#, fuzzy
+msgid "Photo memory card access on your HP multi-function device"
+msgstr "Scannen mit Ihrem HP-Multifunktionsgerät"
+
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr "CUPS den Drucker-Port zugänglich machen ..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr "Lesen der Drucker-Datenbank ..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Optionen fĂźr Netzwerk-Druckerspooler"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7999,27 +8170,27 @@ msgstr ""
"Rechnernamen des Drucker-Servers sowie den Druckernamen auf diesem Server "
"angeben, an den die Aufträge ßbertragen werden sollen."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Name des entfernten Rechners"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Name des entfernten Druckers"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "Der Name des entfernten Rechners fehlt!"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "Der Name des entfernten Druckers fehlt!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) Drucker-Parameter"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -8032,35 +8203,35 @@ msgstr ""
"fĂźr den Drucker, auf den Sie zugreifen mĂśchten, sowie entsprechender "
"Benutzername, Passwort und Arbeitsgruppe."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "SMB-Server"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "SMB-Server-IP"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Freigabename"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Arbeitsgruppe"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "Sie mĂźssen entweder Den Servernamen oder seine IP-Adresse angeben!"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "Der Name der Samba-Freigabe fehlt!"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -8084,7 +8255,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -8093,7 +8264,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -8101,11 +8272,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Optionen fĂźr NetWare-Drucker"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
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 "
@@ -8117,27 +8288,27 @@ msgstr ""
"Rechnernamen des Computers), Name der Drucker-Warteschlange, sowie falls "
"notwendig, den entsprechenden Benutzernamen samt Passwort."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Drucker-Server"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Name der Druckerwarteschlange"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "Der NCP Servername fehlt!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "Der NCP Warteschlangen-Name fehlt!"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
msgstr "Optionen fĂźr TCP/Socket-Drucker"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -8150,19 +8321,19 @@ msgstr ""
"Servern kann es eine andere sein. Schauen Sie im Zweifelsfall in die "
"Unterlagen Ihrer Hardware."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Rechnername des Druckers"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "Der Rechnername des Druckers fehlt!"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Druckeranschluss URI"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
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 "
@@ -8172,11 +8343,11 @@ msgstr ""
"bzw. den Foomatic Spezifikationen genĂźgen. Es sei hier noch angemerkt, dass "
"nicht alle URI-Typen von allen Drucksystemem unterstĂźtzt werden."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "Sie mĂźssen eine gĂźltige URI eingeben!"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -8185,27 +8356,23 @@ msgstr ""
"Beschreibung und Standort mĂźssen nicht ausgefĂźllt werden.\n"
"Sie dienen nur als Kommentare fĂźr den Anwender."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Druckername"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Beschreibung"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Standort"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr "Vorbereiten der Drucker-Datenbank ..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
msgid "Your printer model"
msgstr "Ihr Druckermodell"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -8231,24 +8398,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
msgid "The model is correct"
msgstr "Das Modell ist richtig"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
msgid "Select model manually"
msgstr "Modell auswählen"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Auswahl des Druckertyps"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Über welchen Druckertyp verfügen Sie?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -8262,7 +8429,7 @@ msgstr ""
"Falls die Markierung auf einem falschen Gerät oder auf „Rohdaten-Drucker“ "
"steht, suchen Sie bitte selbst Ihren Drucker in der Liste."
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -8270,11 +8437,11 @@ msgstr ""
"Falls Ihr Drucker nicht aufgefßhrt ist wählen Sie bitte ein kompatibles bzw "
"ähnliches Modell (Fßr Einzelheiten schauen Sie bitte in Ihr Druckerhandbuch)."
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "OKI Win-Drucker Konfiguration"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -8289,11 +8456,11 @@ msgstr ""
"Schnittstelle oder an einer Printserver-Box hängen, schließen Sie ihn bitte "
"an den ersten Parallelport, bevor Sie versuchen eine Testseite zu drucken ..."
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "Lexmark Tintenstrahl-Konfiguration"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -8305,7 +8472,7 @@ msgstr ""
"Sie den Druker direkt an Ihren Rechner oder richten Sie ihn auf dem Rechner "
"ein, an den er angeschlossen ist."
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -8327,7 +8494,7 @@ msgstr ""
"auf „Abbruch“ drücken. Drucken Sie dann Druckkopf-Einrichtungsseiten mit "
"„lexmarkmaintain“ und justieren Sie damit den Druckkopf."
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -8343,22 +8510,22 @@ msgstr ""
"richtig eingestellt sind. Es sei auch angemerkt, dass häufig mit steigender "
"Druckqualität die Druckgeschwindigkeit sinkt."
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Der Parameter %s muss eine Zahl sein!"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "Der Parameter %s muss eine Zahl sein!"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "Der Parameter %s ist yu groß oder zu klein!"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8367,11 +8534,11 @@ msgstr ""
"Möchten Sie diesen Drucker („%s“)\n"
"als Standarddrucker verwenden?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "Testseiten"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8385,39 +8552,39 @@ msgstr ""
"gedruckt wird. Normalerweise sollte es ausreichen, die Standard-Testseiten "
"auszudrucken."
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "Keine Testseiten"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Drucken"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "Standard-Testseite"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr "Alternative Testseite (US-Format - „Letter“)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "Alternative Testseite (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "Foto-Testseite"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
msgstr "Keine Testseite(n) drucken"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Druck der Testseite(n) ..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8432,7 +8599,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8440,15 +8607,15 @@ msgstr ""
"Die Testseite(n) wurden an den Drucker gesandt.\n"
"Es kann einen Augenblick dauern, bevor der Drucker seine Arbeit aufnimmt.\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr "War der Ausdruck korrekt?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr "Rohdaten-Drucker"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8462,7 +8629,7 @@ msgstr ""
"grafischen Hilfsprogramme erlauben Ihnen auf einfache Weise den richtigen "
"Drucker zu wählen und die notwendigen Druckerparameter anzugeben.\n"
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
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 "
@@ -8472,8 +8639,8 @@ msgstr ""
"zahlreicher Anwendungen angeben, lassen Sie jedoch den Dateinamen weg, da "
"die zu druckende Datei von der Anwendung geliefert wird.\n"
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -8486,11 +8653,11 @@ msgstr ""
"bestimmten Druckauftrag zu ändern. Geben Sie die gewßnschten Angaben einfach "
"in der Kommandozeile mit an, etwa: „%s <Datei>“. "
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#, fuzzy, 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\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
"Um alle existierenden Optionen des Druckers zu erfahren, lesen Sie entweder "
@@ -8498,7 +8665,7 @@ msgstr ""
"Drucker-Optionen“. %s\n"
"\n"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8506,7 +8673,7 @@ msgstr ""
"Hier die Liste vorhandener Drucker-Parameter des aktuellen Druckers:\n"
"\n"
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8515,8 +8682,8 @@ msgstr ""
"Verwenden Sie den Befehl „%s <Datei>“, um die Datei <Datei> in der "
"Kommandozeile auszudrucken.\n"
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8526,7 +8693,7 @@ msgstr ""
"angeben. Tragen Sie bitte keinen Dateinamen ein, da dieser vom Programm "
"ergänzt wird.\n"
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8534,7 +8701,7 @@ msgstr ""
"Um eine Liste der Drucker-Parameter Ihres Druckers zu erhalten, betätigen "
"Sie bitte die Schaltfläche „Liste der Drucker-Optionen“."
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8543,7 +8710,7 @@ msgstr ""
"Verwenden Sie einen der Befehle „%s <Datei>“ oder „%s <Datei>“, um die Datei "
"<Datei> in der Kommandozeile auszudrucken.\n"
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8559,7 +8726,7 @@ msgstr ""
"Druckaufträge anhä, wenn Sie es betägen. Das kann beispielsweise dann "
"hilfreich sein, wenn Sie einen Papierstau in Ihrem Drucker haben.\n"
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -8572,38 +8739,49 @@ msgstr ""
"spezeiellen Druckjobs zu konfigurieren. FĂźgen Sie einfach die gewĂźnschten "
"Einstellungen in der Kommandozeile ein, etwa „%s <Datei>“.\n"
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Schließen"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Drucken/Scannen mit „%s“"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Drucken/Scannen mit „%s“"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Drucken/Scannen mit „%s“"
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Drucken auf Drucker „%s“"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Schließen"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "Liste der Drucker-Optionen"
-#: ../../printerdrake.pm_.c:1766
-#, c-format
+#: ../../printerdrake.pm_.c:1802
+#, fuzzy, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
@@ -8618,40 +8796,30 @@ msgstr ""
"\n"
"Verwenden Sie für dieses Gerät nicht „ScannerDrake“!"
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-"Ihr HP-Multifunktionsgerät wurde automatisch auch zum Scannen eingerichtet. "
-"Sie können nun in der Kommandozeile mittels „ptal-hp %s scan ...“ scannen. "
-"Zur Zeit existieren leider keine grafischen Werkzeuge, mit deren Hilfe Sie "
-"Scannen kÜnnen - Ihr Multifunktionsgerät wird noch nicht unterstßtzt. "
-"Weitetre Informationen finden Sie in der Datei „/usr/share/doc/hpoj-0.8/ptal-"
-"hp-scan.html“ auf Ihrem Rechner. Falls Sie einen HP LaserJet 1100 oder 1200 "
-"haben, kĂśnnen Sie nur scannen, wenn Sie die Scanner-Option installiert "
-"haben.\n"
-"\n"
-"Verwenden Sie für dieses Gerät nicht „ScannerDrake“!"
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr "Lesen der Treiber-Datenbank ..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "Drucker-Einstellung transferieren"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8667,7 +8835,7 @@ msgstr ""
"Warteschlange gehen jedoch verloren.\n"
"Nicht alle Warteschlangen kĂśnnen Ăźbernommen werden:\n"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8675,7 +8843,7 @@ msgstr ""
"CUPS unterstĂźtzt keine Druker an Novel Servern oder Drucker, die ihre Daten "
"in ein frei gewähltes Kommando senden.\n"
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -8683,11 +8851,11 @@ msgstr ""
"PDQ unterstĂźtzt nur lokale Drucker, entfernte LPD Drucker und Socket/TCP "
"Drucker.\n"
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD und LPRng unterstĂźkeine IPP Drucker.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8695,7 +8863,7 @@ msgstr ""
"Warteschlangen, die nicht mit diesem Programm oder „foomatic-configure“ "
"ertellt wurden, kĂśnnen nicht Ăźbertragen werden."
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8705,7 +8873,7 @@ msgstr ""
"Drucker, die mit den PPD-Dateien ihrer Hersteller oder CUPS-spezifischen "
"Treibern eingerichtet wurden, kĂśnnen nicht Ăźbertragen werden."
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8715,15 +8883,15 @@ msgstr ""
"Markieren Sie die Druckerwarteschlangen, die sie Ăźbertragen wollen und "
"betätigen Sie die Schaltfläche „Übertragen“."
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr "Druckerdaten nicht Ăźbertragen"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr "Übertragen"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8735,12 +8903,12 @@ msgstr ""
"Ăźberschreiben. Sie kĂśnnen dem Drucker auch einen neuen \n"
"Namen geben oder ihn einfach Ăźberspringen."
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"Druckernamen sollten nur Buchstaben, Ziffern und den Unterstrich unterhalten"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8749,16 +8917,16 @@ msgstr ""
"Der Drucker „%s“ existiert bereits. Wollen Sie ihn wirklich \n"
"ersetzen?"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Neuer Druckername"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr "Übertragen von „%s“ ..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8767,29 +8935,29 @@ msgstr ""
"Sie haben Ihren alten Standarddrucker („%s“) übertragen, soll es auch Ihr "
"Standarddrucker unter dem neuen Drucksystem „%s“ werden?"
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr "Aktualisieren der Druckerdaten ..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr "Konfiguration eines entfernten Druckers"
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "Netzwerk starten ..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr "Netzwerk jetzt konfigurieren"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "Ihr Netzwerk ist nicht konfiguriert"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8801,11 +8969,11 @@ msgstr ""
"Sollten Sie dennoch fortfahren, ohne Ihr Netzwerk einzurichten, ist der "
"Drucker hinterher nicht zu verwenden. Wie wollen Sie fortfahren?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr "Weiter ohne Netzwerkkonfiguration"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8821,7 +8989,7 @@ msgstr ""
"anschließend erneut den Drucker mittels „Hardware/Drucker“im Kontrollzentrum "
"einzurichten."
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
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 "
@@ -8832,24 +9000,24 @@ msgstr ""
"und Ihre Softwareeinstellngen. Versuchen Sie anschließend erneut den "
"entfernten Drucker einzurichten."
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr "Drucksystem neu starten ..."
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "Hoch"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr "Paranoid"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Installation eines Drucksystems in Sicherheitsebene %s"
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8874,11 +9042,11 @@ msgstr ""
"\n"
"Wollen Sie wirklich dieses Drucksystem auf diesem Rechner installieren?"
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr "Drucksystem beim BS-Start aktivieren"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8899,63 +9067,63 @@ msgstr ""
"\n"
"Wollen sie den automatischen Start des Drucksystems wieder herstellen?"
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr "Suche nach installierter Software"
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr "Entfernen von LPRng ..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr "Entfernen des LPD ..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "Wählen Sie das Drucksystem"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "Welches Drucksystem (Spooler) wollen Sie verwenden?"
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2310
+#, fuzzy, c-format
+msgid "Configuring printer \"%s\"..."
msgstr "Konfigurieren von Drucker „%s“ ..."
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
msgstr "Installieren des Pakets Foomatic ..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Drucker-Optionen"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr "PrinterDrake vorbereiten ..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
msgid "Configuring applications..."
msgstr "Anwendungen konfigurieren ..."
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "MĂśchten Sie einen Drucker konfigurieren?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr "Drucksystem: "
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "PrinterDrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -8967,7 +9135,7 @@ msgstr ""
"verwenden, Informtionen Ăźber ihn zu erhalten oder einen entfernten CUPS-"
"Server fßr Star/OpenOffice zugänglich zu machen."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -8977,28 +9145,32 @@ msgstr ""
"Doppelklick auf einem aus, um ihn zu ändern, als Standarddrucker zu "
"verwenden oder Informtionen Ăźber ihn zu erhalten."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr "Aktualisiere Druckerliste (um alle entfernten CUPS-Drucker anzuzeigen)"
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
msgid "Change the printing system"
msgstr "Drucksystem ändern"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Normaler Modus"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Verlassen"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr "MĂśchten Sie einen weiteren Drucker einrichten?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "Drucker-Konfiguration ändern"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, c-format
msgid ""
"Printer %s\n"
@@ -9007,104 +9179,104 @@ msgstr ""
"Drucker %s\n"
"Was wollen Sie an diesem Drucker ändern?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr "AusfĂźhren!"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "Art der Druckeranbindung"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "Druckername, Beschreibung, Standort"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr "Druckerproduzent, Modell, Treiber"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr "Druckerproduzent, Modell"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr "Als Standarddrucker verwenden"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr "Diesen Drucker fĂźr StarOffice/OpenOffice.org hinzufĂźgen"
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr "Diesen Drucker fĂźr StarOffice/OpenOffice.org entfernen"
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr "Testseite(n) drucken"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
msgstr "Wie dieser Drucker genutzt werden kann"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "Drucker entfernen"
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2857
+#, fuzzy, c-format
+msgid "Removing old printer \"%s\"..."
msgstr "Alten Drucker „%s“ entfernen ..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Standarddrucker"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Der Drucker „%s“ ist jetzt Ihr Standarddrucker“"
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr "Drucker fĂźr StarOffice/OpenOffice.org hinzufĂźgen"
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
"Der Drucker „%s“ wurde erfogrich zu StarOffice/OpenOffice.org hinzugefügt."
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr "Fehler beim Hinzufügen von „%s“ für StarOffice/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr "Drucker fĂźr StarOffice/OpenOffice.org entfernen"
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
"Der Drucker „%s“ wurde erfogrich für StarOffice/OpenOffice.org entfernt."
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr "Fehler beim Entfernen von „%s“ für StarOffice/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Möchten Sie den Drucker „%s“ wirklich entfernen?"
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2909
+#, fuzzy, c-format
+msgid "Removing printer \"%s\"..."
msgstr "Drucker „%s“ entfernen ..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -9192,24 +9364,64 @@ msgstr "Die PasswĂśrter stimmen nicht Ăźberein. Bitte versuchen Sie es eneut!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Ich kann keine Partition zu dem _formatierten_ RAID md%d hinzufĂźgen"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Ich kann Datei „%s“ nicht schreiben"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid schlug Fehl"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid schlug Fehl (MĂśglicherweise fehlen die RAID-Tools)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nicht genĂźgend Partitionen fĂźr RAID Level %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Diese Ebene ist mit Vorsicht zu verwenden. Zwar macht sie Ihr System \n"
+"einfacher handhabbar, aber auch leichter angreifbar: In dieser Form darf \n"
+"der Rechner nicht als Netzwerkrechner (LAN oder Modem) verwendet werden, \n"
+"da Angreifer mangels Passwort an Ihre Daten gelangen kĂśnnen!"
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+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 ""
+"Mit dieser Sicherheitsebene wird es mĂśglich, das System als einen \n"
+"Server zu verwenden.\n"
+"Die Sicherheit ist nun ausreichend hoch, um das System als Server \n"
+"einzusetzen, der einer Vielzahl von Klienten einen Verbindungsaufbau \n"
+"erlaubt. Es sei hier angemerkt, dass Ihr Rechner, wenn Sie nur als \n"
+"Klient ins Internet gehen, besser eine niedrigere Sicherhetsebene \n"
+"verwenden sollte."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "Erweiterte Einstellungen"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Optionen"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Startet das ALSA (Advanced Linux Sound Architecture) Sound System"
@@ -9274,7 +9486,7 @@ msgstr ""
"HardDrake fĂźhrt Hardwaretests durch, und konfiguriert (falls nĂśtig) \n"
"neue/geänderte Hardware."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -9358,7 +9570,7 @@ msgstr ""
"Der Linux Virtual Server kann verwendet werden, um um ein \n"
"hochperformanten HochverfĂźgbarkeitsserver aufzusetzen."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -9445,7 +9657,7 @@ msgstr ""
"solche Server (RPC-basierte) beherbergen, muss dieser Dienst \n"
"aktiviert sein."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -9551,7 +9763,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Gemeinsamer Dateizugriff"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "System"
@@ -9682,6 +9894,7 @@ msgstr ""
"Entwicklungsumgebungen."
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
msgstr "Mandrake Kontrollzentrum"
@@ -9805,6 +10018,17 @@ msgstr "http://www.mandrakesoft.com/sales/contact/"
msgid "Installing packages..."
msgstr "Pakete Installieren ..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Bitte loggen Sie sich aus, und drĂźcken Sie Ctrl-Alt-RĂźcktaste"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr ""
+"Bitte loggen Sie sich erneut in %s ein, \n"
+"um die Änderungen wirksam werden zu lassen."
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -9813,6 +10037,160 @@ msgstr ""
"Ich kann Ihre Partitionstabelle nicht lesen, sie ist fehlerhaft :-(\n"
"Um fortfahren zu kĂśnnen setze ich die fehlerhaften Partitionen zurĂźck"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Drucker-Einstellung transferieren"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Datenbankserver"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Datenbankserver"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS Server"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS Server"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Benutzer hinzufĂźgen"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP-Klient"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Hilfe"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Nicht Verbunden"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "LĂśschen"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Alle auswählen"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Benutzer hinzufĂźgen"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "DHCP-Klient"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Konfigurieren ..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "neu konfigurieren"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Bitte legen Sie die Startdiskette in Laufwerk %s ein."
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Kein Disketten-Laufwerk verfĂźgbar"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "Fehler!"
@@ -9864,6 +10242,11 @@ msgstr ""
"Bitte wählen Sie fßr jeden Schritt, ob er wie bei Ihrer Installation "
"vorgenommen werden soll, oder ob Sie ihn manuell durchfĂźhren wollen."
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Erstellen einer Auto-Installationsdiskette"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -9876,12 +10259,12 @@ msgstr ""
"\n"
"Die Parameter der Autoinstallation sind in den Abschnitten rechts verfĂźgbar."
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Gratuliere!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9889,28 +10272,19 @@ msgstr ""
"Die Diskette wurde erfolgreich erstellt.\n"
"Sie kĂśnnen die Installation nun automatisch durchfĂźhren."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr "Auto-Installation"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr "Eintrag hinzufĂźgen"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr "Letzten Eintrag entfernen?"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
@@ -9920,7 +10294,7 @@ msgstr ""
" DrakBackup Report \n"
"\n"
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9931,19 +10305,7 @@ msgstr ""
" DrakBackup Dämon Report\n"
"\n"
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9954,65 +10316,89 @@ msgstr ""
" DrakBackup Report Details\n"
"\n"
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr "Vortschritt"
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr "Systemdateien sichern ..."
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
msgstr "Backup-Dateien auf der Festplatte ..."
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
msgstr "Benutzerdateien sichern ..."
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr "Festplattenbackup in Bearbeitung ..."
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
msgstr "Andere Dateien sichern ..."
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, fuzzy, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
"Dateiliste per FTP senden: %s\n"
" "
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
+#, fuzzy
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
"\n"
"(!) FTP Verbindungsprobleme: Es war nicht mĂśglich, Ihre Dateien per FTP zu "
"Ăźbertragen.\n"
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
msgstr "(!) Fehler beim Verschicken der Mail. \n"
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
msgstr "Dateiauswahl"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
"Wählen Sie die Dateien oder Verzeichnisse und betätigen Sie die Schaltfläche "
"„Hinzufügen“"
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10020,26 +10406,26 @@ msgstr ""
"\n"
"Bitte wählen Sie alle benÜtigten Parameter.\n"
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Diese Optionen kön alle Ihre Dateien im Verzeichnis „/etc“ sichern und "
"wiederherstellen\n"
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr "Sichern Ihrer Systemdateien (Verzeicnis „/etc“)"
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr "Inkrementelles Backup (alte Backups nicht Ăźberschreiben)"
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Keine kritischen Dateien (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10047,84 +10433,78 @@ msgstr ""
"Mit dieser Option sind Sie in der Lage, jede Version Ihres \n"
"„/etc“ Verzeichnisses wiederherzustellen."
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
msgstr ""
"Bitte wählen Sie alle Kennzeichen, deren Dateinen mitgesichert werden sollen."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr "Die Browser-Caches nicht archivieren."
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Inkrementelle Archivierung (alte Archive nicht ersetzen)"
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
msgstr "Markierte entfernen"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr "Benutzer"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
msgstr "FTP-Verbindung zum erstellen der Sicherungskopien verwenden"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
msgstr "Rechnernamen oder IP eingeben."
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
"Bitte geben Sie das Verzeichnis an,\n"
" in dem die Archive erstellt werden sollen."
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
msgstr "Bitte geben Sie Ihr Benutzerkennzeichen ein"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
msgstr "Bitte geben Sie Ihr Passwort ein"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
msgstr "Passwort behalten"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "FTP Verbindung"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Sichere Verbindung"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr "Sicherungskopie auf CD/DVDROM"
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
msgstr "Bitte wählen Sie Ihren CD-Paltz"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
msgstr "Kontrollieren Sie, ob Sie ein CDRW-Medium verwenden."
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr "Kontrollieren Sie, ob Sie die CDRW vorher lĂśschen wollen."
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
@@ -10132,7 +10512,7 @@ msgstr ""
"Bitte markieren, falls Sie \n"
"„install boot“ auf Ihrer CD haben wollen."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10140,16 +10520,21 @@ msgstr ""
"Bitte geben Sie den Gerätenamen \n"
"Ihres Brenners an, etwa „0,1,0“."
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
msgstr "Auf Bandlaufwerk sichern"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr "Bitte geben Sie den Gerätenamen fß Archivierung an."
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Kontrollieren Sie, ob Sie die CDRW vorher lĂśschen wollen."
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10157,51 +10542,57 @@ msgstr ""
"Bitte geben Sie die Maximalgröße \n"
"fĂźr DrakBackup an."
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
+#: ../../standalone/drakbackup_.c:1497
+#, fuzzy
+msgid "Please enter the directory to save to:"
msgstr "Bitte geben Sie das Archivverzeichnis an:"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
msgstr "Quota fĂźr Backup-Datei verwenden."
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
msgstr "Netzwerk"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
-msgstr "CDROM/DVDROM"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr "Festplatte/NFS"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Typ"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr "stĂźndlich"
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr "täglich"
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr "wĂśchendlich"
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr "monatlich"
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
msgstr "Dämon verwenden"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -10209,7 +10600,7 @@ msgstr ""
"Bitte wählen Sie das Zeitintervall \n"
"zwischen zwei Sicherungen."
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
@@ -10217,71 +10608,67 @@ msgstr ""
"Bitte wählen Sie ein\n"
"Sicherungsmedium."
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Festplatte mit Dämin verwenden"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "FTP mit Dämon verwenden"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+#, fuzzy
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr "Stellen Sie sicher, dass der Cron-Dämon als Dienst aktiviert ist."
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr "E-Mail Bericht nach jedem Sicherungsvorgang an: "
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "Was"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "Wo"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "Wann"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
msgstr "Mehr Parameter"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
msgstr "DrakBackup Konfiguration"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
msgstr "Bitte wählen Sie wohin Sie die Sicherungskopien machen wollen."
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr "auf Festplatte"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr "Ăźber Netzwerk"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
msgstr "Bitte wählen Sie, was Sie sichern wollen"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
msgstr "System sichern"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr "Benutzerkennzeichen sichern"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr "Benutzerkennzeichen auswählen"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
@@ -10289,7 +10676,7 @@ msgstr ""
"\n"
"Sicherungsquellen: \n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
@@ -10297,7 +10684,7 @@ msgstr ""
"\n"
"- Systemdateien:\n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
@@ -10305,7 +10692,7 @@ msgstr ""
"\n"
"- Benutzerdateien:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
@@ -10313,7 +10700,7 @@ msgstr ""
"\n"
"- Sonstige Dateien:\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
@@ -10322,16 +10709,45 @@ msgstr ""
"\n"
"- Auf Festplatte sichern unter: %s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Mausschnittstelle: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"- Via FTP sichern auf: %s\n"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
"\n"
"- Via FTP sichern auf: %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -10340,7 +10756,7 @@ msgstr ""
"\t\t Benutzer: %s\n"
"\t\t Pfad: %s \n"
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
@@ -10348,19 +10764,19 @@ msgstr ""
"\n"
"- Optionen:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr "\tKeine Systemdateien\n"
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr "\tSicherungen verwenden „tar“ und „bzip2“\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr "\tSicherungen verwenden „tar“ und „gzip“\n"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
@@ -10369,28 +10785,42 @@ msgstr ""
"\n"
"- Dämon (%s) enthält:\n"
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr "\t- Festplatte.\n"
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr "\t- CD-ROM.\n"
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr "\t- Netzwerk per FTP.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr "\t- Netzwerk per SSH.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t- Netzwerk per FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t- Netzwerk per FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
"Keine Konfiguration. Wählen Sie dein Assistenten oder Fortgeschritten.\n"
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
@@ -10398,7 +10828,7 @@ msgstr ""
"Liste der wiederherzustellenden Daten:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10406,135 +10836,138 @@ msgstr ""
"Liste der beschädigten Daten:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
msgid "Please uncheck or remove it on next time."
msgstr ""
"Bitte entfernen Sie die Markierung oder lÜschen Sie sie das nächste Mal."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr "Die Sicherungen sind beschädigt."
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr " Alle Ihre gewälhten Daten wurden "
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr " erfolgreich auf %s wiederhergestellt "
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
msgid " Restore Configuration "
msgstr " Konfiguration wiederherstellen "
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr "OK, die Ăźbrigen Dateien zu aktualisieren."
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Liste wiederherzustellender Kennzeichen (letztes Datum per Kennzeichen ist "
"wichtig)"
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
msgstr "Systemdateien sichern vor:"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
msgid "please choose the date to restore"
msgstr "Bitte wählen Sie, welches Datum wiederhergestellt werden soll."
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
msgstr "Auf Festpaltte sichern"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+msgid "Please enter the directory to save:"
+msgstr "Bitte geben Sie das Archivverzeichnis an:"
+
+#: ../../standalone/drakbackup_.c:2416
+msgid "FTP Connection"
+msgstr "FTP Verbindung"
+
+#: ../../standalone/drakbackup_.c:2424
+msgid "Secure Connection"
+msgstr "Sichere Verbindung"
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
msgstr "Von Festplatte wiederherstellen"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr "Bitte geben Sie das Verzeichnis an, in dem die Sicherungskopien liegen"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
msgstr "Wählen Sie ein anderes Medium von dem Sie wiederherstellen wollen."
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
msgid "Other Media"
msgstr "Anderes Medium"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
msgid "Restore system"
msgstr "System wiederherstellen"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
msgstr "Benutzerkennzeichen wiederherstellen"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
msgstr "Sonstiges wiederherstellen"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr "Auswahl des Pfades der wiederhergestellt werden soll (statt „/“"
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Erstelle Sicherung vor dem Wiederherstellen (nur fĂźr inkrementelle "
"Sicherungen)."
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr "Benutzerkennzeichen vor dem Wiederherstellen entfernen."
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr "Alle Sicherungen wiederherstellen"
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
msgid "Custom Restore"
msgstr "BenutzergefĂźhrte Wiederherstellung"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Hilfe"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "<- ZurĂźck"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "Speichern"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
msgstr "Sicherung erstellen"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
msgstr "Wiederherstellen"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "Weiter ->"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -10542,7 +10975,7 @@ msgstr ""
"Bitte erstellen Sie eine Sicherung, bevor Sie wiederherstellen kĂśnnen.\n"
"oder stellen Sie sicher, dass der Pfad zu den Sicherungen korrekt ist."
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
@@ -10552,31 +10985,35 @@ msgstr ""
" Ihre Bericht-Mail konnte nicht versandt werden.\n"
" Bitte richten Sie Sendmail korrekt ein."
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Zu installierende Pakete"
+#: ../../standalone/drakbackup_.c:2933
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Die folgenden Pakete werden installiert werden"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
+#, fuzzy
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
"Fehler bei der Üertragung via FTP.\n"
"Bitte korrigieren Sie Ihre FTP-Konfiguration."
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
msgstr "Bitte wählen Sie die wiederherzustellenden Daten..."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
msgstr "Bitte wählen Sie ein Sicherungsmedium..."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
msgstr "Bitte wählen Sie die zu sichernden Daten..."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10584,75 +11021,75 @@ msgstr ""
"Keine Konfigurationsdatei gefunde.\n"
"Bitte wählen Sie den „Assistenten“ oder „Erweitert“."
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr "In Entwicklung, haben Sie noch etwas Geduld ..."
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
msgid "Backup system files"
msgstr "Systemdateien sichern"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
msgid "Backup user files"
msgstr "Benutzerdateien sichern"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
msgid "Backup other files"
msgstr "Andere Dateien sichern"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr "Fortschritt"
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr "DatenĂźagung via FTP"
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
msgid "Sending files..."
msgstr "Dateien Ăźbertragen ..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr "Liste der Daten, die auf CD-ROM sollen."
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
msgid "Please enter the cd writer speed"
msgstr "Bitte geben Sie die CD-Brenngeschwindigkeit ein"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr "Bitte geben Sie den CD-Brenner an (etwa 0,1,0)"
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
msgstr "Bitte markieren, falls Sie „install boot“ auf Ihrer CD haben wollen."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
msgid "Backup Now from configuration file"
msgstr "Jetzt Sicherung anhand der Konfigurationsdatei erstellen."
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
msgid "View Backup Configuration."
msgstr "Sicherungskonfiguration anzeiegen"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
msgid "Wizard Configuration"
msgstr "AssistentengestĂźtzte Konfiguration"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
msgid "Advanced Configuration"
msgstr "Expertenkonfiguration"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
msgstr "Jetzt sichern"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr "DrakBackup"
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -10714,7 +11151,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10729,7 +11166,7 @@ msgstr ""
" in „/etc/postfix/main.cf“ korrigieren.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -10812,7 +11249,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -10840,13 +11277,18 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft by Sebastien DUPONT <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10876,7 +11318,7 @@ msgstr ""
" along with this program; if not, write to the Free Software\n"
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -10916,7 +11358,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -10934,7 +11376,7 @@ msgstr ""
"Rechner erstellt werden.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10957,7 +11399,7 @@ msgstr ""
"Seien Sie daher vorsichtig und ändern Sie die Sicherungskopien \n"
"nicht manuell.\n"
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -11001,99 +11443,531 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Die Installation von %s schlug Fehl. Folgender Fehler trat auf:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Konsolen-Werkzeuge"
+
+#: ../../standalone/drakbug_.c:53
+#, fuzzy
+msgid "HardDrake"
+msgstr "auf Festplatte"
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "MandrakeConsulting"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "MandrakeStore"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Maus"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Entfernter Drucker"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Freigabename"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "PrinterDrake"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Netzwerk Konfigurationsassistent"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Authentifizierung"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Auswahl der Pakete"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Bitte warten"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Nach dem Entfernen"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "Port"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Die Bildschim-Schnappschüsse liegen nach der Installation unter „%s“"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Netzwerk Konfiguration (%d Karten)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profil: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Profil lĂśschen..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Zu lĂśschendes Profil: "
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Neues Profil..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr "Name des neuen Profils (es wird als Kopie des aktuellen erstellt):"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Rechnername: "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Internetzugang"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Typ:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Gateway:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Schnittstelle:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Status:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "Bitte Warten"
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Internet-Zugang konfigurieren"
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "LAN Konfiguration"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Treiber"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Schnittstelle"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protokoll"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Status"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Netzwerk konfigurieren"
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "Hier starten Sie den Assistenten ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Assistent..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Anwenden"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Einen Moment ... ich richte die Konfiguration ein"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Verbunden"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Nicht Verbunden"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Verbinden ..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Trenne Verbindung ..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+"WARNUNG: Es wurde bereits eine Internetverbindung gefunden. Vielleicht nutzt "
+"diese ihr Netzwerk."
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Sie haben noch keine Schnittstelle eingerichtet.\n"
+"Sie kÜnnen dies tun, indem Sie die Schaltfläche \n"
+"„Konfigurieren“ betätigen."
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "LAN Konfiguration"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Adapter %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Boot-Protokoll"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Beim Hochfahren gestartet"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP Klient"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "Jetzt aktivieren"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "Jetzt deaktivieren"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Diese Schnittstelle wurde noch nicht eingerichtet.\n"
+"Starten Sie den Konfigurationsassistenten im Hauptfenster."
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Sie haben noch keine Internetverbindung eingerichtet.\n"
+"Sie kÜnnen dies tun, indem Sie die Schaltfläche \n"
+"„Konfigurieren“ betätigen."
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Konfiguration der Internetverbindung"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Konfiguration der Internetverbindung"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Verbindungstyp: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parameter"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Gateway"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Netzwerkkarte"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP-Klient"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "Verwendung: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr " Modulname "
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr " Größe "
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "DrakFloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "Boot-Disketten Erstellung"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr " Standard "
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "DrakFloppy Fehler: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "Kernversion"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Allgemein"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Experten Bereich"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "Optionale Parameter für „mkinitrd“"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Modul hinzufĂźgen"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr " mit Gewalt "
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr " falls NĂśtig "
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr " SCSI Module weglassen "
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr " RAID-Module weglassen "
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Modul entfernen"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Ausgabe"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr " Diskette erstellen "
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Stellen Sie sicher, dass ein Medium in Laufwerk %s liegt."
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"In Laufwerk %s liegt kein Medum.\n"
+"Bitte legen Sie eins ein."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Ich kann nicht forken: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Ich kann „mkbootdisk“ nicht richtig beenden: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr "Suche installierte Schriften"
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr "Auswahl installierter Schriften zurĂźcksetzen"
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr "Alle Schriften analysieren"
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
msgid "no fonts found"
msgstr "Keine Schriften gefunden"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "Fertig"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr "Ich konnte keine Schriften in Ihren eingehängten Partitionen finden"
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr "Neuwahl korrekter Schriften"
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr "Konnte keine Schriften finden.\n"
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr "Suche installierter Schriften"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr "Kopiere Schriften"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
msgid "True Type fonts installation"
msgstr "Installation von TrueType Schriften"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr "Bitte warten Sie ttmkfdir arbeitet ..."
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr "TrueType Installation beendet"
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr "Konvertieren der Schriften"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr "Erzeuge „type1inst“"
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr "Ghostscriptreferenz"
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr "ttf-Schriftkonvertierung"
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr "pfm-Schriftkonvertierung"
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr "Temporäre Dateien lÜschen"
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr "Neustart des X-FontServers"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr "Schriftdateien lĂśschen"
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
msgid "xfs restart"
msgstr "xfs Neustart"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -11107,109 +11981,109 @@ msgstr ""
"- Sie kÜnnen die Schriften auf normalem Weg einbinden. In seltenen Fällen \n"
"kĂśnnen defekte Schriften den X-Server lahmlegen."
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
msgid "Fonts Importation"
msgstr "Schriften einbinden"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr "Windows-Schriften verwenden"
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr "Schiften deinstallieren"
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Erweiterte Einstellungen"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
msgstr "Font-Liste"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
msgid "Choose the applications that will support the fonts :"
msgstr "Wählen Sie die Programme, die die Schriften verwenden sollen:"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
msgstr "Generische Drucker"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
"Wählen Sie eine Schriftdatei bzw. ein Verzeichnis und betätigen Sie "
"„Hinzufügen“"
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
msgstr "Liste installieren"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr "Klicken Sie hier, wenn Sie sicher sind."
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr "Hier, falls nicht."
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr "Markierung lĂśschen"
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
msgid "Selected All"
msgstr "Alle auswählen"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
msgstr "Liste entfernen"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr "Vortests"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
msgstr "Schriften auf Ihren Rechner kopieren"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr "Installiere und konvertiere Fonts"
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
msgid "Post Install"
msgstr "Nach der Installation"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
msgstr "Entfernen von Schriftarten auf Ihrem Rechner"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
msgid "Post Uninstall"
msgstr "Nach dem Entfernen"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Teilen der Internet-Verbindung"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Teilen der Internetverbindung momentan eingeschaltet."
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -11221,31 +12095,31 @@ msgstr ""
"\n"
"Was wollen Sie tun?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "deaktivieren"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "Verwerfen"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "neu konfigurieren"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Server deaktivieren ..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Teilen der Internet-Verbindung ist nun abgeschaltet."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Teilen der Internet-Verbindung momentan abgeschaltet."
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -11257,19 +12131,19 @@ msgstr ""
"\n"
"Was wollen Sie tun?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "aktivieren"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Server aktivieren ..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Teilen der Internetverbindung ist nun eingeschaltet."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -11284,21 +12158,21 @@ msgstr ""
"Anmerkung: Sie benĂśtigen eine Netzwerkkarte, mit deren Hilfe Sie ein \n"
"lokales Netz (LAN) aufsetzen kĂśnnen."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Schnittstelle %s (verwendet Modul %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Schnittstelle: %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Sie haben keine Netzwerkkarte!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -11306,11 +12180,11 @@ msgstr ""
"Ihr Rechner hat keine konfigurierte Netzwerkkarte. Bitte verwenden Sie erst "
"HardDrake, bevor Sie weiter machen."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Netzwerkkarte"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11325,7 +12199,7 @@ msgstr ""
"\n"
"Ich setze ihr lokales Netz damit auf."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -11333,11 +12207,11 @@ msgstr ""
"Bitte wählen Sie die Netzwerkkarte, die mit Ihrem lokalen Netzwerk \n"
"verbunden ist."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr "Ihr Netzwerk ist bereits konfiguriert"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11353,15 +12227,15 @@ msgstr ""
"Sie kĂśnnen auch eine manuelle Einrichtung vornehmen - dafĂźr sollten Sie "
"jedoch wissen, wie das funktioniert."
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr "Automatische Rekonfiguration"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr "Aktuelle Schnittstellenkonfiguration anzeigen"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11378,7 +12252,7 @@ msgstr ""
"IP-Eigenschaften: %s\n"
"Treiber: %s"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
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 C-Class Network that "
@@ -11398,34 +12272,34 @@ msgstr ""
"Server fĂźr Sie aufsetzen.\n"
"\n"
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr "Lokales Klasse-C Netzwerk"
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr "(Diese) DHCP-Server IP"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr "Neu konfigurieren des Geräts und des DHCP-Servers"
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Das lokale Netzwerk endet nicht auf „.0“ - bereinige."
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Es liegt ein mĂśglicher LAN-Adressen Konflikt in der Konfiguration\n"
"von %s vor!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Ich habe eine Firewall-Konfiguration gefunden!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -11434,20 +12308,20 @@ msgstr ""
"MĂśglicherweise mĂźssen Sie nach der Installation einige Einstellungen \n"
"von Hand vornehmen."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Konfigurieren ..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Skripte konfigurieren, Software installieren, Dienste starten ..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Probleme beim Installieren von Paket %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11458,24 +12332,24 @@ msgstr ""
"lokalen Netz mittels automatischer Netzwerk-Konfiguration (DHCP) \n"
"teilen."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
"Die Einstellungen wurden bereits vorgenommen, sie sind nur nicht aktiviert."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Die Einstellungen wurden bereits vorgenommen und sind aktiv."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Teilen der Internetverbindung wurde noch nicht konfiguriert."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Teilen der Internetverbindung - Konfiguration"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11491,216 +12365,6 @@ msgstr ""
"\n"
"Wählen Sie „Konfigurieren“ wenn Sie den Assistenten starten wollen."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Netzwerk Konfiguration (%d Karten)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Profil lĂśschen..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Zu lĂśschendes Profil: "
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Neues Profil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr "Name des neuen Profils (es wird als Kopie des aktuellen erstellt):"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Rechnername: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Internetzugang"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Typ:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Schnittstelle:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Bitte Warten"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Internet-Zugang konfigurieren"
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "LAN Konfiguration"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Treiber"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Schnittstelle"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokoll"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Status"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Netzwerk konfigurieren"
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Hier starten Sie den Assistenten ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Assistent..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Anwenden"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Einen Moment ... ich richte die Konfiguration ein"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Verbunden"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Nicht Verbunden"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Verbinden ..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Trenne Verbindung ..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"WARNUNG: Es wurde bereits eine Internetverbindung gefunden. Vielleicht nutzt "
-"diese ihr Netzwerk."
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Sie haben noch keine Schnittstelle eingerichtet.\n"
-"Sie kÜnnen dies tun, indem Sie die Schaltfläche \n"
-"„Konfigurieren“ betätigen."
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "LAN Konfiguration"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adapter %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Boot-Protokoll"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Beim Hochfahren gestartet"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP Klient"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "Jetzt aktivieren"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "Jetzt deaktivieren"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Diese Schnittstelle wurde noch nicht eingerichtet.\n"
-"Starten Sie den Konfigurationsassistenten im Hauptfenster."
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Sie haben noch keine Internetverbindung eingerichtet.\n"
-"Sie kÜnnen dies tun, indem Sie die Schaltfläche \n"
-"„Konfigurieren“ betätigen."
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Konfiguration der Internetverbindung"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Konfiguration der Internetverbindung"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Verbindungstyp: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parameter"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Netzwerkkarte"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP-Klient"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Sicherheitsebene einstellen"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Kontrollzentrum"
@@ -11709,90 +12373,129 @@ msgstr "Kontrollzentrum"
msgid "Choose the tool you want to use"
msgstr "Wählen Sie das Werkzeug, das Sie verwenden wollen"
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\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 ""
+
# ../../standalone/drakxtv_.c:37ç
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
msgstr "Kanada (Kabel)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+#, fuzzy
+msgid "USA (broadcast)"
msgstr "USA (terrestrisch)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr "USA (Kabel)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr "USA (Kabel-hrc)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "China (broadcast)"
msgstr "China (terrestrisch)"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "Japan (broadcast)"
msgstr "Japan (terrestrisch)"
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr "Japan (Kabel)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
msgstr "Osteuropa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Frankreich"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
msgstr "Irland"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
msgstr "Westeuropa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
msgstr "Australien"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr "Neuseeland"
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr "SĂźdafrika"
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr "Argentinien"
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr "Bitte geben Sie Ihre Fernsehnorm und Region ein"
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr "Fernsehnorm:"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr "Region:"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr "Sendersuche ..."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr "Sendersuche..."
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Bei der Installation der Pakete trat ein Fehler auf:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -11839,7 +12542,7 @@ msgstr ""
"Die Einstellungen wurden vorgenommen, werden jedoch erst nach einer "
"Neuanmeldung wirksam"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "LogDrake"
@@ -11873,7 +12576,7 @@ msgstr "<control>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
-msgstr "/Datei/Speichern_als"
+msgstr "/Datei/Speichern _unter ..."
#: ../../standalone/logdrake_.c:106
msgid "/File/-"
@@ -11887,13 +12590,9 @@ msgstr "/_Optionen"
msgid "/Options/Test"
msgstr "/Optionen/Test"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Hilfe"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
-msgstr "/_Hilfe/_Über..."
+msgstr "/Hilfe/_Über ..."
#: ../../standalone/logdrake_.c:118
msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
@@ -11951,7 +12650,7 @@ msgstr "Kalender"
msgid "Content of the file"
msgstr "Inhalt der LogbĂźcher"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr "E-Mail/SMS Benachrichtigung"
@@ -11960,11 +12659,11 @@ msgstr "E-Mail/SMS Benachrichtigung"
msgid "please wait, parsing file: %s"
msgstr "Einen Moment, ich durchsuche: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
msgstr "Mail/SMS Benachrichtigungskonfiguration"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
@@ -11974,65 +12673,99 @@ msgstr ""
"\n"
"Hier kĂśnnen Sie Ihr Benachrichtigungssystem einrichten.\n"
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "Pro-ftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Name der Domäne"
#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
+#, fuzzy
+msgid "Ftp Server"
+msgstr "NIS Server"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr ""
+"Postfix E-Mail-Server und\n"
+"Inn Diskussionsforen-Server"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS Server"
#: ../../standalone/logdrake_.c:422
+#, fuzzy
+msgid "SSH Server"
+msgstr "NIS Server"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Dienste"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Drucker-Server"
+
+#: ../../standalone/logdrake_.c:431
msgid "service setting"
msgstr "Dienste einstellen"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
"Sie weden benachrtichtigt, falls einer der gewählten Dienste nichtmehr "
"verfĂźgbar ist."
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
msgstr "Einstellungen laden"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr "Sie erhalten eine Nachricht, wen die Load Ăźber diesen Wert steigt"
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
msgstr "Benachrichtigungskonfiguration"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr "Stellen Sie ein, wie das System Sie benachrichtigen soll"
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Speichern unter..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Bitte wählen Sie Ihren Maustyp."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "Kein „serial_usb“ gefunden\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Die dritte Maustaste emulieren?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Lesen der Treiber-Datenbank ..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "Geräteerkennung..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -12078,6 +12811,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "Firewall-Konfiguration"
@@ -12491,10 +13236,6 @@ msgid "Multimedia - Sound"
msgstr "Multimedia / Sound"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Werkzeuge"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Dokumentation"
@@ -12602,10 +13343,6 @@ msgstr ""
"zum durchstĂśbern des WWW"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Archivierung, Emulation, Überwachung"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Finanzverwaltung"
@@ -12651,3 +13388,212 @@ msgstr "Multimedia / CD-Brenner"
#: ../../share/compssUsers:999
msgid "Scientific Workstation"
msgstr "Wissenschaftlicher Arbeitsplatzrechner"
+
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr ""
+#~ "Der Dateisystemcheck (fsck) schlug fehl mit dem RĂźckgabewert %d oder "
+#~ "Signal %d."
+
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Grafikkartenidentifikation: %s\n"
+
+#~ msgid "Choose options for server"
+#~ msgstr "Wählen Sie die Einstellungen fßr den Server"
+
+#~ msgid "Monitor not configured"
+#~ msgstr "Ihr Monitor ist nicht konfiguriert"
+
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Ihre Grafikkarte ist noch nicht konfiguriert"
+
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Die AuflÜsungen wurden noch nicht ausgewählt"
+
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "Versuchen Sie bitte, einige Einstellungen zu ändern"
+
+#~ msgid "An error occurred:"
+#~ msgstr "Ein Fehler ist aufgetreten:"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Verlassen in %d Sekunden"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Ist dies richtig?"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr ""
+#~ "Ein Fehler ist aufgetreten. Versuchen Sie bitte, einige Parameter zu "
+#~ "ändern"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 Server: %s"
+
+#~ msgid "Show all"
+#~ msgstr "Alle anzeigen"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "X-Window Konfiguration vorbereiten"
+
+#~ msgid "What do you want to do?"
+#~ msgstr "Was wollen Sie machen?"
+
+#~ msgid "Change Monitor"
+#~ msgstr "Monitor ändern"
+
+#~ msgid "Change Graphics card"
+#~ msgstr "Grafikkarte ändern"
+
+#~ msgid "Change Server options"
+#~ msgstr "Server Einstellungen ändern"
+
+#~ msgid "Change Resolution"
+#~ msgstr "AuflÜsung ändern"
+
+#~ msgid "Show information"
+#~ msgstr "Informationen anzeigen"
+
+#~ msgid "Test again"
+#~ msgstr "Nochmals testen"
+
+#~ msgid ""
+#~ "Your HP multi-function device was configured automatically to be able to "
+#~ "scan. Now you can scan from the command line with \"ptal-hp %s scan ..."
+#~ "\". Scanning via a graphical interface or from the GIMP is not supported "
+#~ "yet for your device. More information you will find in the \"/usr/share/"
+#~ "doc/hpoj-0.8/ptal-hp-scan.html\" file on your system. If you have an HP "
+#~ "LaserJet 1100 or 1200 you can only scan when you have the scanner option "
+#~ "installed.\n"
+#~ "\n"
+#~ "Do not use \"scannerdrake\" for this device!"
+#~ msgstr ""
+#~ "Ihr HP-Multifunktionsgerät wurde automatisch auch zum Scannen "
+#~ "eingerichtet. Sie können nun in der Kommandozeile mittels „ptal-hp %s "
+#~ "scan ...“ scannen. Zur Zeit existieren leider keine grafischen Werkzeuge, "
+#~ "mit deren Hilfe Sie Scannen kÜnnen - Ihr Multifunktionsgerät wird noch "
+#~ "nicht unterstützt. Weitetre Informationen finden Sie in der Datei „/usr/"
+#~ "share/doc/hpoj-0.8/ptal-hp-scan.html“ auf Ihrem Rechner. Falls Sie einen "
+#~ "HP LaserJet 1100 oder 1200 haben, kĂśnnen Sie nur scannen, wenn Sie die "
+#~ "Scanner-Option installiert haben.\n"
+#~ "\n"
+#~ "Verwenden Sie für dieses Gerät nicht „ScannerDrake“!"
+
+#~ msgid "Use Hard Drive with daemon"
+#~ msgstr "Festplatte mit Dämin verwenden"
+
+#~ msgid "Use FTP with daemon"
+#~ msgstr "FTP mit Dämon verwenden"
+
+#~ msgid "Package List to Install"
+#~ msgstr "Zu installierende Pakete"
+
+#~ msgid "proftpd"
+#~ msgstr "Pro-ftpd"
+
+#~ msgid "sshd"
+#~ msgstr "sshd"
+
+#~ msgid "webmin"
+#~ msgstr "webmin"
+
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
+
+#~ msgid "Setting security level"
+#~ msgstr "Sicherheitsebene einstellen"
+
+#~ msgid "Graphics card"
+#~ msgstr "Grafikkarte"
+
+#~ msgid "Select a graphics card"
+#~ msgstr "Wählen Sie Ihre Grafikkarte"
+
+#~ msgid "Choose a X driver"
+#~ msgstr "Wählen Sie einen X Treiber"
+
+#~ msgid "X driver"
+#~ msgstr "X Treiber"
+
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "Warnung: Testen dieser Grafikkarte kann Ihren Rechner anhalten"
+
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Standard VGA, 640×480 bei 60 Hz"
+
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800×600 bei 56 Hz"
+
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514 kompatibel, 1024×768 bei 87 Hz, interlaced (kein 800×600)"
+
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024×768 bei 87 Hz, interlaced und 800×600 bei 56 Hz"
+
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Extended Super VGA, 800×600 bei 60 Hz und 640×480 bei 72 Hz"
+
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Non-Interlaced SVGA, 1024×768 bei 60 Hz und 800×600 bei 72 Hz"
+
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "Hochfrequenz SVGA, 1024×768 bei 70 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Mehrfrequenz mit der Fähigkeit für 1280×1024 bei 60 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Mehrfrequenz mit der Fähigkeit für 1280×1024 bei 74 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Mehrfrequenz mit der Fähigkeit für 1280×1024 bei 76 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Ihr Monitor kann 1600×1200 bei 70 Hz darstellen"
+
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Ihr Monitor kann 1600×1200 bei 76 Hz darstellen"
+
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Die Gesamtgröße der zu installierenden Pakete beträgt etwa %d MB.\n"
+
+#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
+#~ msgstr ""
+#~ "Falls Sie weniger als diese Menge installieren wollen, \n"
+#~ "geben Sie (in Prozent) an, wie viele Pakete Sie installieren wollen.\n"
+#~ "\n"
+#~ "Ein geringer Prozentsatz installiert nur die wichtigsten Pakete;\n"
+#~ "100%% installiert alle ausgewählten Pakete."
+
+#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
+#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
+#~ msgstr ""
+#~ "Sie haben nur Platz fßr %d%% der ausgewählten Pakete. \n"
+#~ "\n"
+#~ "Falls Sie weniger als diese Menge installieren wollen, \n"
+#~ "geben Sie (in Prozent) an, wie viele Pakete Sie installieren wollen.\n"
+#~ "Ein geringer Prozentsatz installiert nur die wichtigsten Pakete;\n"
+#~ "%d%% installiert so viele Pakete wie mĂśglich."
+
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Im nächsten Schritt kÜnnen Sie genauer auswählen"
+
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Prozent der zu installierenden Pakete"
+
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Wählen Sie eine Sicherheitsebene"
diff --git a/perl-install/share/po/el.po b/perl-install/share/po/el.po
index 1de4183da..e09876265 100644
--- a/perl-install/share/po/el.po
+++ b/perl-install/share/po/el.po
@@ -1,13 +1,12 @@
-# Greek Translation of DrakX.
-# Copyright (c) 1999 MandrakeSoft
-# FIRST AUTHOR Theodore J. Soldatos <theodore@eexi.gr>, 1999-2000.
-# Thanos Kyritsis <djart@hellug.gr>, 2001
+# Greek translation for drakfloppy.
+# Copyright (C) 2001 Free Software Foundation, Inc.
+# Thanos Kyritsis <djart@hellug.gr>, 2001.
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2001-08-23 23:59+0300\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2001-08-22 22:44+0300\n"
"Last-Translator: Thanos Kyritsis <djart@hellug.gr>\n"
"Language-Team: Greek <nls@tux.hellug.gr>\n"
"MIME-Version: 1.0\n"
@@ -15,24 +14,55 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 0.8\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Ńýčěéóç üëůí ôůí ęĺöáëţí áíĺîÜńôçôá"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kb"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "×ńŢóç ĺđÝęôáóçň Xinerama"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kb"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Ńýčěéóç ěüíď ôçň ęÜńôáň \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB Ţ đĺńéóóüôĺńá"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "ĹđéëÝîôĺ X server (ďäçăüň ęÜńôáň ăńáöéęţí)"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "ĺîőđçńĺôçôŢň X Window"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Ńýčěéóç đďëëţí ęĺöáëţí"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -40,43 +70,44 @@ msgstr ""
"Ôď óýóôçěÜ óáň őđďóôçńßćĺé ńýčěéóç đďëëáđëţí ęĺöáëţí.\n"
"Ôß čÝëĺôĺ íá ęÜíĺôĺ;"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "ĘÜńôá ăńáöéęţí"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "ĚÝăĺčďň ěíŢěçň ęÜńôáň ăńáöéęţí"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "ĹđéëÝîôĺ ęÜńôá ăńáöéęţí"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "Ńőčěßóĺéň XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "ĹđéëÝîôĺ X server (ďäçăüň ęÜńôáň ăńáöéęţí)"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Ôß ôýđďő XFree čÝëĺôĺ íá Ý÷ĺôĺ;"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "ĺîőđçńĺôçôŢň X Window"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Ńýčěéóç üëůí ôůí ęĺöáëţí áíĺîÜńôçôá"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "ĹđéëÝîôĺ X server (ďäçăüň ęÜńôáň ăńáöéęţí)"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "×ńŢóç ĺđÝęôáóçň Xinerama"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "ĺîőđçńĺôçôŢň X Window"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Ńýčěéóç ěüíď ôçň ęÜńôáň \"%s\" (%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Ôß ôýđďő XFree čÝëĺôĺ íá Ý÷ĺôĺ;"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s ěĺ ĺđéôÜ÷őíóç ôńéóäéÜóôáôůí ăńáöéęţí"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -87,35 +118,19 @@ msgstr ""
"äßíďőí \n"
"ęáëýôĺńç őđďóôŢńéîç ăéá äéóäéÜóôáôá ăńáöéęÜ."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Ç ęÜńôá ăńáöéęţí óáň őđďóôçńßćĺé ĺđéôÜ÷őíóç ôńéóäéÜóôáôůí ăńáöéęţí óôá XFree "
"%s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s ěĺ ĺđéôÜ÷őíóç ôńéóäéÜóôáôůí ăńáöéęţí"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Ç ęÜńôá ăńáöéęţí óáň őđďóôçńßćĺé ĺđéôÜ÷őíóç ôńéóäéÜóôáôůí ăńáöéęţí óôá XFree "
-"%s,\n"
-"ĐŃĎÓĎ×Ç: ĐĹÉŃÁĚÁÔÉĘÇ ŐĐĎÓÔÇŃÉÎÇ - ĚĐĎŃĹÉ ÍÁ ĐÁĂŮÓĹÉ ÔĎÍ ŐĐĎËĎĂÉÓÔÇ ÓÁÓ!"
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s ěĺ ĐĹÉŃÁĚÁÔÉĘÇ ĺđéôÜ÷őíóç ôńéóäéÜóôáôůí ăńáöéęţí"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -129,31 +144,59 @@ msgstr ""
"őđďóôŢńéîç\n"
"ăéá äéóäéÜóôáôá ăńáöéęÜ."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Ç ęÜńôá ăńáöéęţí óáň őđďóôçńßćĺé ĺđéôÜ÷őíóç ôńéóäéÜóôáôůí ăńáöéęţí óôá XFree "
+"%s,\n"
+"ĐŃĎÓĎ×Ç: ĐĹÉŃÁĚÁÔÉĘÇ ŐĐĎÓÔÇŃÉÎÇ - ĚĐĎŃĹÉ ÍÁ ĐÁĂŮÓĹÉ ÔĎÍ ŐĐĎËĎĂÉÓÔÇ ÓÁÓ!"
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (ďäçăüň đńďâďëŢň ĺăęáôÜóôáóçň)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Ńőčěßóĺéň XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "ĚÝăĺčďň ěíŢěçň ęÜńôáň ăńáöéęţí"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Ńőčěßóĺéň X server"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"ÄéáôŢńçóç őđáń÷üíôůí ńőčěßóĺůí;\n"
+"Ďé ôńÝ÷ďőóĺň ńőčěßóĺéň ĺßíáé:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "ĹđéëÝîôĺ ďčüíç"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Ďčüíç"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "ĐńďóáńěďóěÝíď"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Ăĺíéęü"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Áęýńůóç ôĺëĺőôáßáň đńÜîçň"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -177,513 +220,328 @@ msgstr ""
"ęáôáóôńďöŢň\n"
"ôçň ďčüíçň óáň. Áí äĺí ĺßóôĺ óßăďőńďé, ęÜíôĺ ěéá óőíôçńçôéęŢ ĺđéëďăŢ."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Óő÷íüôçôá ďńéćüíôéáň áíáíÝůóçň"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Óő÷íüôçôá ęáôáęüńőöçň áíáíÝůóçň"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Ç ďčüíç äĺí Ý÷ĺé ńőčěéóôĺß áęüěç"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Ç ęÜńôá ăńáöéęţí äĺí Ý÷ĺé ńőčěéóôĺß áęüěç"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Äĺí Ý÷ďőí ĺđéëĺăĺß áíáëýóĺéň áęüěç"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "ČÝëĺôĺ íá äďęéěÜóĺôĺ ôéň ńőčěßóĺéň;"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Đńďóď÷Ţ: Ç äďęéěŢ ĺßíáé ĺđéęßíäőíç óĺ áőôŢ ôçí ęÜńôá ăńáöéęţí"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "ÄďęéěŢ ńőčěßóĺůí"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 ÷ńţěáôá (8 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"äďęéěÜóôĺ íá áëëÜîĺôĺ ęÜđďéĺň đáńáěÝôńďőň"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 ÷éëéÜäĺň ÷ńţěáôá (15 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "ĐńďęëŢčçęĺ óöÜëěá:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 ÷éëéÜäĺň ÷ńţěáôá (16 bits)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "¸îďäďň óĺ %d äĺőôĺńüëĺđôá"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 ĺęáôďěěýńéá ÷ńţěáôá (24 bits)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Ĺßíáé áőôŢ ç óůóôŢ ńýčěéóç;"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 äéóĺęáôďěěýńéá ÷ńţěáôá (32 bits)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "ĐńďęëŢčçęĺ óöÜëěá, äďęéěÜóôĺ íá áëëÜîĺôĺ ęÜđďéĺň đáńáěÝôńďőň"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Áíáëýóĺéň"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "ÁíÜëőóç"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "ĹđéëÝîôĺ áíÜëőóç ęáé âÜčďň ÷ńţěáôďň"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "ĘÜńôá ăńáöéęţí: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 server: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "śëëá"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "śęőńď"
+
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Ďę"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "ĘáôÜóôáóç đńď÷ůńçěÝíůí"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "ĹěöÜíéóç üëůí"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "ČÝëĺôĺ íá äďęéěÜóĺôĺ ôéň ńőčěßóĺéň;"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Áíáëýóĺéň"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "ÄďęéěŢ ńőčěßóĺůí"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Äéáńýčěéóç đëçęôńďëďăßďő: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Ôýđďň đďíôéęéďý: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "ÓőóęĺőŢ đďíôéęéďý: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Ďčüíç: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Óő÷íüôçôá ďńéćüíôéáň áíáíÝůóçň: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Óő÷íüôçôá ęáôáęüńőöçň áíáíÝůóçň: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "ĘÜńôá ăńáöéęţí: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "ĘÜńôá ăńáöéęţí: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "ĚíŢěç ęÜńôáň ăńáöéęţí: %s kb\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "ÂÜčďň ÷ńţěáôďň: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "ÁíÜëőóç: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 server: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Ďäçăüň XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Đńďĺôďéěáóßá ńőčěßóĺůí ăńáöéęďý đĺńéâÜëëďíôďň (X-Window)"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Ôé čÝëĺôĺ íá ęÜíĺôĺ;"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "ÁëëáăŢ ďčüíçň"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "ÁëëáăŢ ęÜńôáň ăńáöéęţí"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "ÁëëáăŢ ńőčěßóĺůí X server"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "ÁëëáăŢ áíÜëőóçň"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "ĐńďâďëŢ đëçńďöďńéţí"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "ĹđáíÜëçřç äďęéěŢň"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "¸îďäďň"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"ÄéáôŢńçóç őđáń÷üíôůí ńőčěßóĺůí;\n"
-"Ďé ôńÝ÷ďőóĺň ńőčěßóĺéň ĺßíáé:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "Ăńáöéęü đĺńéâÜëëďí (X) óôçí ĺęęßíçóç"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Ěđďńţ íá ńőčěßóů ôď óýóôçěÜ óáň Ýôóé ţóôĺ íá îĺęéíÜĺé áőôüěáôá óĺ\n"
"ăńáöéęü đĺńéâÜëëďí (X-Windows).\n"
"Ĺđéčőěĺßôĺ áőôüěáôç ĺęęßíçóç ăńáöéęďý đĺńéâÜëëďíôďň;"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Đáńáęáëţ ĺđáíáóőíäĺčĺßôĺ ůň %s ăéá ĺíĺńăďđďßçóç ôůí áëëáăţí"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Đáńáęáëţ áđďóőíäĺčĺßôĺ ęáé ěĺôÜ đáôŢóôĺ Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 ÷ńţěáôá (8 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 ÷éëéÜäĺň ÷ńţěáôá (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 ÷éëéÜäĺň ÷ńţěáôá (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 ĺęáôďěěýńéá ÷ńţěáôá (24 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 äéóĺęáôďěěýńéá ÷ńţěáôá (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kb"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kb"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB Ţ đĺńéóóüôĺńá"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standard VGA, 640x480 óôá 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 óôá 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 Compatible, 1024x768 óôá 87 Hz interlaced (no 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 óôá 87 Hz interlaced, 800x600 óôá 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Extended Super VGA, 800x600 óôá 60 Hz, 640x480 óôá 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Non-Interlaced SVGA, 1024x768 óôá 60 Hz, 800x600 óôá 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "High Frequency SVGA, 1024x768 óôá 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frequency đďő ěđďńĺß íá áđĺéęďíßóĺé áíÜëőóç 1280x1024 óôá 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frequency đďő ěđďńĺß íá áđĺéęďíßóĺé áíÜëőóç 1280x1024 óôá 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frequency đďő ěđďńĺß íá áđĺéęďíßóĺé áíÜëőóç 1280x1024 óôá 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Ďčüíç đďő ěđďńĺß íá áđĺéęďíßóĺé áíÜëőóç 1600x1200 óôá 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Ďčüíç đďő ěđďńĺß íá áđĺéęďíßóĺé áíÜëőóç 1600x1200 óôá 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Đńţôďň ôďěÝáň ôçň ęáôÜôěçóçň ĺęęßíçóçň"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Đńţôďň ôďěÝáň ôďő äßóęďő (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "ĹăęáôÜóôáóç SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Đďý čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ ôď đńüăńáěěá ĺęęßíçóçň;"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "ĹăęáôÜóôáóç LILO/grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO ěĺ ěĺíďý ęĺéěÝíďő"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO ěĺ ăńáöéęü ěĺíďý"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Ĺęęßíçóç áđü ôď DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "ÂáóéęÝň ĺđéëďăÝň đńďăńÜěěáôďň ĺęęßíçóçň"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Bootloader ăéá ÷ńŢóç"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "ĹăęáôÜóôáóç đńďăńÜěěáôďň ĺęęßíçóçň"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "ÓőóęĺőŢ ĺęęßíçóçň"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (äĺí ëĺéôďőńăĺß ěĺ đáëáéüôĺńá BIOS)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "ÓőěđáăŢň"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "óőěđáăŢň"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "ÁíÜëőóç ďčüíçň"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "ĘáčőóôÝńçóç đńéí ôçí ĺęęéíçóç"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Óőíčçěáôéęü"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Óőíčçěáôéęü (îáíÜ)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Áđáăüńĺőóç ĺđéëďăţí ăńáěěŢň ĺíôďëŢň"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "áđáăüńĺőóç"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Ęáčáńéóěüň /tmp óĺ ęÜčĺ ĺęęßíçóç"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "ÁęńéâŢň đďóüôçôáň ěíŢěçň áí ÷ńĺéÜćĺôáé (Ý÷ů ĺíôďđßóĺé %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Ĺíĺńăďđďßçóç đďëëáđëţí profiles"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "ĹéóÜăĺôĺ ěÝăĺčďň ěíŢěçň óĺ Mb"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Ç ĺđéëďăŢ ``Áđáăüńĺőóç ĺđéëďăţí ăńáěěŢň ĺíôďëŢň'' ĺßíáé Ü÷ńçóôç ÷ůńßň "
"óőíčçěáôéęü"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Đáńáęáëţ đńďóđáčŢóôĺ îáíÜ"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Ôá óőíčçěáôéęÜ ĺßíáé áíüěďéá"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "ĚŢíőěá Init"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "śíďéăěá ĘáčőóôÝńçóçň Firmware"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "ÔÝëďň ×ńüíďő Ĺęęßíçóçň ĐőńŢíá"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Ĺíĺńăďđďßçóç ĺęęßíçóçň áđü CD;"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Ĺíĺńăďđďßçóç OF ĺęęßíçóçň;"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Ĺî' ďńéóěďý ëĺéôďőńăéęü óýóôçěá;"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -692,83 +550,83 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"ŐđÜń÷ďőí ďé áęüëďőčĺň ĺđéëďăÝň.\n"
"Ěđďńĺßôĺ íá đńďóčÝóĺôĺ ęé Üëëĺň Ţ íá áëëÜîĺôĺ ôéň őđÜń÷ďőóĺň."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "ĐńďóčŢęç"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Ďëďęëçńţčçęĺ"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Ôńďđďđďßçóç"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Ôß ôýđďő ĺđéëďăŢ čÝëĺôĺ íá đńďóčÝóĺôĺ"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "śëëď ëĺéôďőńăéęü (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "śëëď ëĺéôďőńăéęü (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "śëëď ëĺéôďőńăéęü (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Image"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Append"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Read-write"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Đßíáęáň"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "ÁíáóöáëÝň"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "ĹôéęÝôôá"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "ĹđéëďăŢ ĺî' ďńéóěďý"
@@ -801,53 +659,75 @@ msgstr "ĐńÝđĺé íá Ý÷ĺôĺ ěéá ęáôÜôěçóç swap"
msgid "This label is already used"
msgstr "ÁőôŢ ç ĺôéęĺôôá ÷ńçóéěďđďéĺßôáé Ţäç"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "ÂńŢęá %s %s đńďóáńěďăĺßň"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "¸÷ĺôĺ áëëďí;"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "¸÷ĺôĺ ęÜđďéďí đńďóáńěďăÝá %s;"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "ź÷é"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Íáé"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "ĐńďâďëŢ đëçńďöďńéţí őëéęďý"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "ĹăęáôÜóôáóç ďäçăďý ăéá %s ęÜńôá %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(module %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Ěđďńĺßôĺ ôţńá íá äţóĺôĺ ôéň đáńáěÝôńďőň ăéá ôďí ďäçăü %s.\n"
+"Ďé đáńÜěĺôńďé Ý÷ďőí ôçí ěďńöŢ ``üíďěá=ôéěŢ üíďěá2=ôéěŢ2 ...''.\n"
+"Ăéá đáńÜäĺéăěá, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "ĐáńÜěĺôńďé ďäçăďý"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Đďéüí %s ďäçăü íá äďęéěÜóů;"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -864,37 +744,15 @@ msgstr ""
"ôď őëéęü óáň ăéá ôéň đáńáěÝôńďőň đďő ÷ńĺéÜćĺôáé; Ç ĺîÝôáóç áőôŢ ßóůň\n"
"đńďęáëÝóĺé ęüëëçěá ôďő óőóôŢěáôďň, áëëÜ äĺí čá đńďęáëÝóĺé âëÜâç."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Áőôüěáôç ĺîÝôáóç"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Đńďóäéďńéóěüň đáńáěÝôńůí"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Ěđďńĺßôĺ ôţńá íá äţóĺôĺ ôéň đáńáěÝôńďőň ăéá ôďí ďäçăü %s.\n"
-"Ďé đáńÜěĺôńďé Ý÷ďőí ôçí ěďńöŢ ``üíďěá=ôéěŢ üíďěá2=ôéěŢ2 ...''.\n"
-"Ăéá đáńÜäĺéăěá, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "ĐáńÜěĺôńďé ďäçăďý"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -903,50 +761,55 @@ msgstr ""
"Ç öďńôůóç ôďő ďäçăďý %s áđĺôő÷ĺ.\n"
"ČÝëĺôĺ íá äďęéěÜóĺôĺ îáíÜ ěĺ äéáöďńĺôéęÝň đáńáěÝôńďőň;"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(ôď %s Ý÷ĺé Ţäç đńďóôĺčĺß)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Ôď óőíčçěáôéęü ĺßíáé đďëý áđëü"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Đáńáęáëţ ĺéóÜăĺôĺ ęůäéęü üíďěá"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Ôď ęůäéęü üíďěá ěđďńĺß íá đĺńéÝ÷ĺé ěüíď đĺćÜ ăńÜěěáôá, áńéčěďýň, `-' ęáé `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Áőôü ôď ęůäéęü üíďěá őđÜń÷ĺé Ţäç"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Áőôü ôď ęůäéęü üíďěá őđÜń÷ĺé Ţäç"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "ĐńďóčŢęç ÷ńŢóôç"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -955,32 +818,32 @@ msgstr ""
"ĹéóÜăĺôĺ ÷ńŢóôç\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Áđďäď÷Ţ ÷ńŢóôç"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Đńáăěáôéęü üíďěá"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Ęůäéęü üíďěá"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Öëďéüň (shell)"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Ĺéęďíßäéď"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Áőôüěáôç óýíäĺóç (Autologin)"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -990,125 +853,105 @@ msgstr ""
"ôçí ĺęęßíçóç óĺ Ýíáí óőăęĺęńéěÝíď ÷ńŢóôç.\n"
"ĹÜí äĺí čÝëĺôĺ íá óőěâáßíĺé áőôü, đáôŢóôĺ óôď ęďőěđß áęýńůóçň."
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "ĹđéëÝîôĺ ôďí ĺî' ďńéóěďý ÷ńŢóôç:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "ĹđéëÝîôĺ ôďí äéá÷ĺéńéóôŢ đáńáčýńůí đďő čÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr "Đáńáęáëţ ĺđéëÝîôĺ ěéá ăëţóóá."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr ""
"Ěđďńĺßôĺ íá ĺđéëÝîĺôĺ ęáé Üëëĺň ăëţóóĺň đďő čá ĺßíáé äéáčÝóéěĺň ěĺôÜ ôď "
"đÝńáň ôçň ĺăęáôÜóôáóçň"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "źëá"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr "ĐńďóčŢęç ÷ńŢóôç"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "ĐńďóáńěďóěÝíď"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr "Ĺęęßíçóç CUPS"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Áőôü ôď đáęÝôď đńÝđĺé íá áíáâáčěéóôĺß\n"
"Ĺßóôĺ óßăďőńďň üôé čÝëĺôĺ íá ôď áđďĺđéëÝîĺôĺ;"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Áęýńůóç"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Ęáëţň Ţńčáôĺ óôďőň Crackers"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Öôů÷ü"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Ôőđéęü"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Őřçëü"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Őřçëü"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Đáńáíďúęü"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1119,7 +962,7 @@ msgstr ""
"óýóôçěá\n"
"óőíäĺäĺěÝíď óôď Internet Ţ LAN. Äĺí őđÜń÷ďőí ëÝîĺéň ęëĺéäéÜ."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1127,7 +970,7 @@ msgstr ""
"Ôţńá őđÜń÷ďőí ëÝîĺéň ęëĺéäéÜ, áëëÜ ç ÷ńŢóç ôďő óőóôŢěáôďň óĺ äßęôőď \n"
"äĺí óőíßóôáôáé."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1136,60 +979,61 @@ msgstr ""
"Áőôü ĺßíáé ôď óőíçčéóěÝíď ĺđßđĺäď áóöáëĺßáň ăéá Ýíá óýóôçěá đďő čá óőíäĺčĺß\n"
"ůň đĺëÜôçň óôď Internet. ŐđÜń÷ďőí ôţńá Ýëĺă÷ďé áóöáëĺßáň."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Ěĺ áőôü ôď ĺđßđĺäď áóöáëĺßáň ĺßíáé äőíáôŢ ç ÷ńŢóç ôďő óőóôŢěáôďň óôď \n"
"Internet ůň ĺîőđçńĺôçôŢ. Ç áóöÜëĺéá ĺßíáé áńęĺôÜ őřçëŢ ţóôĺ íá äÝ÷ĺôáé\n"
"ôáőôü÷ńďíĺň óőíäÝóĺéň áđü đďëëďýň đĺëÜôĺň."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"ÁóöÜëĺéá ĺđéđÝäďő 4, ěĺ ôď óýóôçěá ôĺëĺßůň ęëĺéóôü. ÁóöÜëĺéá \n"
"óôď ěÝăéóôď äőíáôü."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "ĹđéëÝîôĺ ĺđßđĺäď áóöáëĺßáň"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
#, fuzzy
msgid "Security level"
msgstr "Ńýčěéóç ĺđéđÝäďő áóöáëĺßáň"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Ńőčěßóĺéň X server"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1213,52 +1057,52 @@ 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_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welcome to GRUB the operating system chooser!"
#. -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_.c:931
+#: ../../bootloader.pm_.c:915
#, 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."
#. -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_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Press enter to boot the selected OS, 'e' to edit the"
#. -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_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "commands before booting, or 'c' for a command-line."
#. -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_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "The highlighted entry will be booted automatically in %d seconds."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "äĺí őđÜń÷ĺé áńęĺôüň ÷ţńďň óôď /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Đďý čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ ôď đńüăńáěěá ĺęęßíçóçň;"
@@ -1271,15 +1115,19 @@ msgstr "äĺí őđÜń÷ĺé âďŢčĺéá äéáčÝóéěç áęüěá.\n"
msgid "Boot Style Configuration"
msgstr "Boot Ôýđďő Ńýčěéóç"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Áń÷ĺßď"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Áń÷ĺßď/¸_îďäďň"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1314,14 +1162,14 @@ msgstr "Ëĺéôďőńăßá Yaboot"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"×ńçóéěďđďéĺßôĺ ôďí %s ůň Boot Manager.\n"
"ĘÜíôĺ ęëßę óôď Ńýčěéóç ăéá íá îĺęéíŢóĺôĺ ôďí ďäçăü ĺăęáôÜóôáóçň."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Ńýčěéóç"
@@ -1331,7 +1179,7 @@ msgid "System mode"
msgstr "ĘáôÜóôáóç óőóôŢěáôďň"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "śíďéăěá ôďő X-Window ęáôÜ ôçí ĺęęßíçóç ôďő óőóôŢěáôďň"
#: ../../bootlook.pm_.c:148
@@ -1342,16 +1190,18 @@ msgstr "ź÷é, äĺí ĺđéčőěţ áőôüěáôď login"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Íáé, ĺđéčőěţ áőôüěáôď login ěĺ áőôü (user, desktop)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
-msgstr "OK"
+msgstr "ĹíôÜîĺé"
#: ../../bootlook.pm_.c:229
#, c-format
@@ -1400,7 +1250,7 @@ msgstr ""
"Ěđďńĺßôĺ íá ĺđéëÝîĺôĺ ęáé Üëëĺň ăëţóóĺň đďő čá ĺßíáé äéáčÝóéěĺň ěĺôÜ ôď "
"đÝńáň ôçň ĺăęáôÜóôáóçň"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
#, fuzzy
msgid "France"
msgstr "Ăáëëéęü"
@@ -1409,7 +1259,7 @@ msgstr "Ăáëëéęü"
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Âĺëăéęü"
@@ -1438,11 +1288,12 @@ msgstr "Íďńâçăéęü"
msgid "Sweden"
msgstr "Óďőçäéęü"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr "Éôáëéęü"
@@ -1452,7 +1303,7 @@ msgstr "Éôáëéęü"
msgid "Austria"
msgstr "óĺéńéáęü"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1460,8 +1311,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr "Đáńáęáëţ ęÜíôĺ đńţôá Ýíá áíôßăńáöď áóöáëĺßáň ôůí äĺäďěÝíůí óáň"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "ÄéáâÜóôĺ đńďóĺęôéęÜ!"
@@ -1475,11 +1326,12 @@ msgstr ""
"2048 ôďěĺßň ĺßíáé áńęĺôďß)\n"
"óôçí áń÷Ţ ôďő äßóęďő"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "ÓöÜëěá"
@@ -1487,11 +1339,11 @@ msgstr "ÓöÜëěá"
msgid "Wizard"
msgstr "ĚÜăďň"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "ĹđéëÝîôĺ đńÜîç"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1503,78 +1355,78 @@ msgstr ""
"Óőíéóôţ íá áëëÜîĺôĺ ôď ěÝăĺčüň ôçň đńţôá\n"
"(ĺđéëÝîôĺ ôçí, ěĺôÜ ĺđéëÝîôĺ \"ÁëëáăŢ ěĺăÝčďőň\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Đáńáęáëţ ęÜíôĺ ęëéę óĺ ěéá ęáôÜôěçóç"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "ËĺđôďěÝńĺéĺň"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
#, fuzzy
msgid "Journalised FS"
msgstr "óýíäĺóç áđÝôő÷ĺ"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "śäĺéď"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "śëëď"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Ôýđďé óőóôŢěáôďň áń÷ĺßůí:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Äçěéďőńăßá"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Ôýđďň"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "×ńçóéěďđďéŢóôĺ ``%s'' óôç čÝóç ôďő"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "ÄéáăńáöŢ"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "ĘÜíôĺ đńţôá ``Áđďóýíäĺóç''"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1582,72 +1434,77 @@ msgstr ""
"ĚĺôÜ ôçí áëëáăŢ ôýđďő óôçí ęáôÜôěçóç %s, üëá ôá äĺäďěÝíá óĺ áőôŢí ôçí "
"ęáôÜôěçóç čá ÷áčďýí"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose a partition"
msgstr "ĹđéëÝîôĺ đńÜîç"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose another partition"
msgstr "Äçěéďőńăßá íÝáň ęáôÜôěçóçň"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "ĚĺôáđŢäçóç óĺ đńď÷ůńçěÝíď ôńüđď ëĺéôďőńăßáň"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "ĚĺôáđŢäçóç óĺ ęáíďíéęü ôńüđď ëĺéôďőńăßáň"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Áęýńůóç ôĺëĺőôáßáň đńÜîçň"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Íá óőíĺ÷éóů;"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "¸îďäďň ÷ůńßň áđďčŢęĺőóç"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "¸îďäďň ÷ůńßň áđďčŢęĺőóç ôďő đßíáęá ęáôáôěŢóĺůí;"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "ČÝëĺôĺ íá äďęéěÜóĺôĺ ôéň ńőčěßóĺéň;"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Áőôďěáôç ęáôáíďěŢ"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Ęáčáńéóěüň üëůí"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "śëëá"
+
+#: ../../diskdrake/interactive.pm_.c:263
#, fuzzy
msgid "Hard drive information"
msgstr "Ĺíôďđéóěüň óęëçńďý äßóęďő"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "źëĺň ďé đńůôĺýďőóĺň ęáôáôěŢóĺéň ĺßíáé óĺ ÷ńŢóç"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Äĺí ěđďńţ íá đńďóčÝóů ęáôáôěçóĺéň"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1655,35 +1512,35 @@ msgstr ""
"Ăéá íá đńďóčÝóĺôĺ ęáôáôěŢóĺéň, đáńáęáëţ äéáăńÜřôĺ ěßá ĺôóé ţóôĺíá ĺßíáé "
"äőíáôŢ ç đńďóčŢęç ĺęôĺôáěÝíçň ęáôÜôěçóçň"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr "ÁđďčŢęĺőóç đßíáęá ęáôáôěŢóĺůí"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr "Đßíáęáň ęáôáôěŢóĺůí äéÜóůóçň"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Đßíáęáň ęáôáôěŢóĺůí äéÜóůóçň"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr "Đßíáęáň ęáôáôěŢóĺůí äéÜóůóçň"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Removable media automounting"
msgstr "Áőôüěáôç óýíäĺóç áđďóđţěĺíůí ěďíÜäůí áđďčŢęĺőóçň"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "ĹđéëÝîôĺ áń÷ĺßď"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1691,11 +1548,11 @@ msgstr ""
"Ď ĺöĺäńéęüň đßíáęáň ęáôáôěŢóĺůí Ý÷ĺé äéáöďńĺôéęü ěÝăĺčďň\n"
"Íá óőíĺ÷ßóů;"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Đńďĺéäďđďßçóç"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1703,124 +1560,131 @@ msgstr ""
"ĹéóÜăĺôĺ ěéá äéóęÝôôá óôďí ďäçăü äéóęÝôôáň\n"
"źëá ôá äĺäďěÝíá óĺ áőôŢ ôç äéóęÝôôá čá ÷áčďýí"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "ĐńďóđÜčĺéá äéÜóůóçň đßíáęá ęáôáôěŢóĺůí"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
#, fuzzy
msgid "Detailed information"
msgstr "ĐńďâďëŢ đëçńďöďńéţí"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Óçěĺßď óýíäĺóçň"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "ĹđéëďăÝň"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "ÁëëáăŢ ěĺăÝčďőň"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Ěĺôáęßíçóç"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Ěďńöďđďßçóç"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Óýíäĺóç"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "ĐńďóčŢęç óôď RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "ĐńďóčŢęç óôď LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Áđďóýíäĺóç"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Áöáßńĺóç áđü ôď RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Áöáßńĺóç áđü ôď LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Ôńďđďđďßçóç RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "×ńŢóç ăéá loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Äçěéďőńăßá íÝáň ęáôÜôěçóçň"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Áń÷Ţ óôďí ôďěÝá: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "ĚÝăĺčďň óĺ MB"
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Ôýđďň óőóôŢěáôďň áń÷ĺßůí: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Óçěĺßď óýíäĺóçň: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Đńďôßěçóç: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+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/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Ěďńöďđďßçóç áń÷ĺßďő loopback %s"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "ÁëëáăŢ ôýđďő ęáôÜôěçóçň"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Đďéü óýôçěá áń÷ĺßůí đńďôéěÜôĺ;"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "ÁëëáăŢ áđü ext2 óĺ ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Đďý čÝëĺôĺ íá óőíäÝóĺôĺ ôď áń÷ĺßď loopback %s;"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Đďý čÝëĺôĺ íá óőíäÝóĺôĺ ôçí óőóęĺőŢ %s;"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1829,131 +1693,138 @@ msgstr ""
"÷ńçóéěďđďéĺßôáé\n"
"ăéá loopback. ÁöáéńÝóôĺ đńţôá ôď loopback"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Őđďëďăéóěüň fat filesystem bounds"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "ĚĺôáâďëŢ ěĺăÝčďőň"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Áőôüň ď ôýđďň ęáôÜôěçóçň äĺí ěđďńĺß í' áëëÜîĺé ěÝăĺčďň."
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr ""
"ĐńÝđĺé íá ăßíĺé áíôßăńáöď áóöáëĺßáň üëůí ôůí äĺäďěÝíůí óĺ áőôŢ ôçí ęáôÜôěçóç"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"ĚĺôÜ ôçí áëëáăŢ ěĺăÝčďőň óôçí ęáôÜôěçóç %s, üëá ôá äĺäďěÝíá óĺ áőôŢí ôçí "
"ęáôÜôěçóç čá ÷áčďýí"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "ĹđéëÝîôĺ ôď íÝď ěÝăĺčďň"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
#, fuzzy
msgid "New size in MB: "
msgstr "ĚÝăĺčďň óĺ MB"
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Óĺ đďéüí äßóęď čÝëĺôĺ íá ěĺôáęéíçčĺßôĺ;"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "ÔďěÝáň"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Óĺ đďéüí ôďěÝá čÝëĺôĺ íá ěĺôáęéíçčĺßôĺ;"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Ěĺôáęßíçóç óĺ ĺîÝëéîç"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Ěĺôáęßíçóç ęáôÜôěçóçň óĺ ĺîÝëéîç..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "ĹđéëÝîôĺ Ýíá őđÜń÷ďí RAID óôď ďđďßď čá ăßíĺé ç đńďóčŢęç"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "íÝď"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "ĹđéëÝîôĺ Ýíá őđÜń÷ďí LVM óôď ďđďßď čá ăßíĺé ç đńďóčŢęç"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "üíďěá LVM;"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "ÁőôŢ ç ęáôÜôěçóç äĺí ěđďńĺß íá ÷ńçóéěďđďéçčĺß ăéá loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "źíďěá áń÷ĺßďő loopback: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr "Đńáăěáôéęü üíďěá"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Ôď áń÷ĺßď ÷ńçóéěđďđďéĺßôáé Ţäç, ĺđéëÝîôĺ Ýíá Üëëď"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Ôď áń÷ĺßď őđÜń÷ĺé Ţäç. Íá ôď ÷ńçóéěďđďéŢóů;"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
#, fuzzy
msgid "Mount options"
msgstr "ĐáńÜěĺôńďé ďäçăďý"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "óőóęĺőŢ"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "ĺđßđĺäď"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "ěÝăĺčďň chunk"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Đńďóď÷Ţ: ÁőôŢ ç äéáäéęáóßá ĺßíáé ĺđéęßíäőíç."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Ôß ôýđďő partitioning;"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr ""
+"Áőôü ôď đáęÝôď đńÝđĺé íá áíáâáčěéóôĺß\n"
+"Ĺßóôĺ óßăďőńďň üôé čÝëĺôĺ íá ôď áđďĺđéëÝîĺôĺ;"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1965,7 +1836,7 @@ msgstr ""
"Ĺßôĺ ÷ńçóéěďđďéĺßôĺ LILO ęáé äĺí čá äďőëÝřĺé, ĺßôĺ äĺí ÷ńçóéěďđďéĺßôĺLILO "
"ęáé äĺí ÷ńĺéÜćĺóôĺ ôď /boot"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1976,7 +1847,7 @@ msgstr ""
"äĺí Ý÷ĺôĺ ęáôÜôěçóç /boot.\n"
"Áí óęďđĺýĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ LILO, đńďóčÝóôĺ ěßá ęáôÜôěçóç /boot."
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1987,139 +1858,139 @@ msgstr ""
"ęáôÜôěçóç /boot.\n"
"Öńďíôßóôĺ ëďéđüí íá đńďóčÝóĺôĺ ěéá ęáôÜôěçóç /boot."
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Ď đßíáęáň ęáôáôěŢóĺůí ôďő äßóęďő %s čá áđďčçęĺőôĺß óôďí äßóęď!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Áđáéôĺßôáé ĺđáíĺęęßíçóç ăéá íá ĺöáńěďóôďýí ďé áëëáăÝň"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"ĚĺôÜ ôçí ěďńöďđďßçóç ôçň ęáôÜôěçóçň %s, üëá ôá äĺäďěÝíá óĺ áőôŢí ôçí "
"ęáôÜôěçóç čá ÷áčďýí"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Ěďńöďđďßçóç"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Ěďńöďđďßçóç áń÷ĺßďő loopback %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Ěďńöďđďßçóç ęáôÜôěçóçň %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Hide files"
msgstr "áđďôő÷ßá mkraid"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr "Äĺí őđÜń÷ĺé áńęĺôüň ĺëĺýčĺńďň ÷ţńďň ăéá äçěéďőńăßá íÝůí ęáôáôěŢóĺůí"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Äĺí őđÜń÷ĺé áńęĺôüň ĺëĺýčĺńďň ÷ţńďň ăéá äçěéďőńăßá íÝůí ęáôáôěŢóĺůí"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr "ÁíÜëőóç: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "ÓőóęĺőŢ: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Đéčáíü DOS ăńÜěěá äßóęďő: %s \n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Ôýđďň: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "źíďěá: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Áń÷Ţ: ôďěÝáň %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "ĚÝăĺčďň: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s ôďěĺßň"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Ęýëéíäńďň %d ĺţň ęýëéíäńďň %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "ĚďńöďđďéçěÝíďň\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Áěďńöďđďßçôďň\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "ÓőíäĺäĺěÝíďň\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Áń÷ĺßá loopback: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2127,27 +1998,27 @@ msgstr ""
"ĘáôÜôěçóç ĺęęßíçóçň ĺî ďńéóěďý\n"
" (áđü MS-DOS, ü÷é áđü lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Ĺđßđĺäď %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "ĚÝăĺčďň chunk %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "Äßóęďé RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "źíďěá áń÷ĺßďő loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2159,7 +2030,7 @@ msgstr ""
"ěéá ęáôÜôěçóç Ďäçăţí, čá đńÝđĺé đéčáíüôáôá\n"
"íá ôçí áöŢóĺôĺ Ţóő÷ç.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2171,66 +2042,66 @@ msgstr ""
"ęáôÜôěçóç ăéá\n"
"dual-booting ôď óýóôçěÜ óáň.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "ĚÝăĺčďň: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Ăĺůěĺôńßá: %s ęýëéíäńďé, %s ęĺöáëÝň, %s ôďěĺßň\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Đëçńďöďńßĺň: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "Äßóęďé LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Ôýđďň đßíáęá ęáôáôěŢóĺůí: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "óôď bus %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "ĹđéëďăÝň: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Ôýđďň óőóôŢěáôďň áń÷ĺßůí: "
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Áőôü ôď óőíčçěáôéęü ĺßíáé đďëý áđëü (đńÝđĺé íá ĺßíáé ôďőëÜ÷éóôďí %d "
"÷áńáęôŢńĺň ěáęńý)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Ôá óőíčçěáôéęÜ ĺßíáé áíüěďéá"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2241,36 +2112,66 @@ msgstr "ÁëëáăŢ ôýđďő ęáôÜôěçóçň"
#: ../../diskdrake/removable_gtk.pm_.c:28
#, fuzzy
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Đáńáęáëţ ęÜíôĺ ęëéę óĺ ěéá ęáôÜôěçóç"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Đéóôďđďßçóç ôáőôüôçôáň"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Éíôĺńíĺô"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Ęůäéęü üíďěá"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Ęůäéęü üíďěá"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "Đĺńéď÷Ţ (domain) NIS"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "ĹîőđçńĺôçôŢň DNS"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s ěďńöďđďßçóç ôďő %s áđÝôő÷ĺ"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "äĺí îÝńů đţň íá ěďńöďđďéŢóů ôď %s óĺ ôýđď %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "ôď fsck áđÝôő÷ĺ ěĺ ęůäéęü ĺîüäďő %d Ţ óŢěá %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "óöÜëěá ęáôÜ ôçí áđďóýíäĺóç ôďő %s: %s"
@@ -2287,75 +2188,329 @@ msgstr ""
msgid "server"
msgstr "ĺîőđçńĺôçôŢň"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
"Äĺí ěđďńĺßôĺ íá ÷ńçóéěďđďéŢóĺôĺ ôď JFS ăéá ęáôáôěŢóĺéň ěéęńüôĺńĺň áđü 16MB"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
"Äĺí ěđďńĺßôĺ íá ÷ńçóéěďđďéŢóĺôĺ ôď ReiserFS ăéá ęáôáôěŢóĺéň ěéęńüôĺńĺň áđü "
"32MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Ôď óçěĺßď óýíäĺóçň đńÝđĺé íá îĺęéíÜĺé ěĺ /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "ŐđÜń÷ĺé Ţäç ęáôÜôěçóç ěĺ óçěĺßď óýíäĺóçň %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Äĺí ěđďńĺßôĺ íá ÷ńçóéěďđďéŢóĺôĺ ěéá ęáôÜôěçóç LVM ăéá đńďóÜńôçóç %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr ""
"Áőôüň ď ęáôÜëďăďň đńÝđĺé íá đáńáěĺßíĺé óôď ńéćéęü óýóôçěá áń÷ĺßůí (root)"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"×ńĺéÜćĺóôĺ Ýíá đńáăěáôéęü óýóôçěá áń÷ĺßůí (ext2, reiserfs) ăéá áőôü ôď "
"óçěĺßď óýíäĺóçň\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Äĺí ěđďńĺßôĺ íá ÷ńçóéěďđďéŢóĺôĺ ěéá ęáôÜôěçóç LVM ăéá đńďóÜńôçóç %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr ""
"Äĺí őđÜń÷ĺé áńęĺôüň ĺëĺýčĺńďň ÷ţńďň ăéá áőôüěáôç äçěéďőńăßá íÝůí ęáôáôěŢóĺůí"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "ÓöÜëěá ęáôÜ ôď Üíďéăěá ôďő %s ăéá ĺăăńáöŢ: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"ĐńďęëŢčçęĺ óöÜëěá - äĺí âńÝčçęáí óőóęĺőÝň óôéň ďđďßĺň íá ĺßíáé äőíáôŢç "
"äçěéďőńăßá íÝůí óőóôçěÜôůí áń÷ĺßůí. Đáńáęáëţ ĺëĺăîôĺ ôď őëéęü óáň ăéáôçí "
"áéôßá áőôďý ôďő đńďâëŢěáôďň"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Äĺí őđÜń÷ĺé ęáěßá ęáôÜôěçóç!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "×ńŢóç áőôüěáôçň áíß÷íĺőóçň"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Ăĺíéęü"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "DMA ęÜńôáň"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Ěďńöďđďßçóç"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "ÁëëáăŢ ôýđďő ęáôÜôěçóçň"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "¸îďäďň"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_ÂďŢčĺéá"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_ÂďŢčĺéá"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/ÂďŢčĺéá/_Ó÷ĺôéęÜ ěĺ..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Đďíôßęé"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "DMA ęÜńôáň"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "śęőńď"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Đďíôßęé"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "ĐĺńéăńáöŢ"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Đéóôďđďßçóç ôáőôüôçôáň"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "ĹđéëÝîôĺ áń÷ĺßď"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "ÓőóęĺőŢ đýëçň"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "Äýď đëŢęôńůí"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Ĺíôďđéóěüň óęëçńďý äßóęďő"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "ĐńďâďëŢ đëçńďöďńéţí őëéęďý"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "ĐńďâďëŢ đëçńďöďńéţí"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Ńýčěéóç đďíôéęéďý"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "áíé÷íĺýčçęĺ óôçí đüńôá %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Đáńáęáëţ đĺńéěÝíĺôĺ"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d äĺőôĺńüëĺđôá"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Áőôüěáôç ĺîÝôáóç"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2369,7 +2524,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2481,9 +2636,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2679,7 +2833,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2691,9 +2845,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2740,21 +2893,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2770,9 +2922,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Óĺ áőôü ôď óçěĺßď, đńÝđĺé íá áđďöáóßóĺôĺ đďý čá ĺăęáôáóôŢóĺôĺ ôď GNU/Linux\n"
"óôďí óęëçńü óáň äßóęď. ĹÜí ĺßíáé Üäĺéďň Ţ ĺÜí Ýíá Üëëď ëĺéôďőńăéęü "
@@ -2862,9 +3014,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3015,38 +3166,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3240,11 +3385,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3301,7 +3446,7 @@ msgstr ""
"đńďűđďčÝôďőí ĺîĺéäéęĺőěÝíĺň ăíţóĺéň.\n"
" Âĺâáéůčĺßôĺ üôé îÝńĺôĺ ôé ęÜíĺôĺ đńůôďý ĺđéëÝîĺôĺ áőôŢí ôçí ĺăęáôÜóôáóç."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3316,7 +3461,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3331,7 +3476,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3347,7 +3492,7 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
#, fuzzy
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
@@ -3356,23 +3501,23 @@ msgstr ""
"Đáńáęáëţ ĺđéëÝîôĺ ôçí ęáôÜëëçëç čýńá. Ăéá đáńÜäĺéăěá,\n"
"ç COM1 óôá Windows ďíďěÜćĺôáé ttyS0 óôď GNU/Linux."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3394,7 +3539,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3416,7 +3561,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3424,7 +3569,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3445,7 +3590,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
#, fuzzy
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
@@ -3472,7 +3617,7 @@ msgstr ""
"äéóęÝôôá ĺęęßíçóçň\n"
"ăéá íá ôá ÷ńçóéěďđďéŢóĺôĺ!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
#, fuzzy
msgid ""
"You must indicate where you wish to place the information required to boot\n"
@@ -3489,29 +3634,28 @@ msgstr ""
"Ĺęôüň ęáé áí îÝńĺôĺ đďëý ęáëÜ ôé ęÜíĺôĺ, ĺđéëÝîôĺ \"Đńţôďň ôďěÝáň\n"
"ôďő äßóęďő (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3520,7 +3664,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
#, fuzzy
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
@@ -3546,7 +3690,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"Ôď DrakX čá đńďóđáčŢóĺé íá ĺíôďđßóĺé đńďóáńěďăĺßň SCSI ôýđďő PCI.\n"
@@ -3577,7 +3721,7 @@ msgstr ""
"ôďő őëéęďý Ţ áđü ôçí éóôďóĺëßäá ôďő ęáôáóęĺőáóôŢ (áí Ý÷ĺôĺ đńüóâáóç óôď "
"Internet)."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
#, fuzzy
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
@@ -3588,9 +3732,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3602,7 +3745,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" 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"
@@ -3697,7 +3840,7 @@ msgstr ""
"with a '*', if you\n"
"press TAB to see the boot selections."
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
#, fuzzy
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
@@ -3725,9 +3868,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -3779,10 +3921,10 @@ msgstr ""
"Firmware \n"
"Delay expires."
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3790,12 +3932,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3811,7 +3952,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
#, fuzzy
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
@@ -3822,7 +3963,7 @@ msgstr ""
"ôçí íÝá ęáôÜôěçóç Mandrake Linux. ĐŃĎÓĎ×Ç: źëá ôá äĺäďěÝíá čá äéáăńáöďýí\n"
"ęáé čá ĺßíáé áäýíáôç ç ĺđáíáöďńÜ ôďőň."
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
#, fuzzy
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
@@ -3842,7 +3983,7 @@ msgstr ""
"ĐáôŢóôĺ \"Áęýńůóç\" ăéá íá áęőńţóĺôĺ áőôŢí ôçí äéáäéęáóßá ÷ůńßň íá ÷Üóĺôĺ \n"
"äĺäďěÝíá ęáé ęáôáôěŢóĺéň đďő âńßóęďíôáé óôďí äßóęď."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3850,12 +3991,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3881,20 +4022,20 @@ msgstr ""
"\n"
"ČÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ áőôďýň ôďőň ĺîőđçńĺôçôÝň;\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "Äĺí ěđďńţ íá ÷ńçóéěďđďéŢóů broadcast ÷ůńßň NIS domain"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "ĹéóÜăĺôĺ ěéá FAT ěďńöďđďéçěÝíç äéóęÝôôá óôďí ďäçăü %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "ÁőôŢ ç äéóęÝôôá äĺí ĺßíáé ěďńöďđďéçěÝíç FAT"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3902,7 +4043,7 @@ msgstr ""
"Ăéá íá ÷ńçóéěďđďéŢóĺôĺ áőôŢí ôçí áđďčçęĺőěÝíç ĺđéëďăŢ đáęÝôůí, îĺęéíŢóôĺ ôçí "
"ĺăęáôÜóôáóç ěĺ ``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "ÓöÜëěá ęáôÜ ôçí áíÜăíůóç ôďő áń÷ĺßďő %s"
@@ -3933,7 +4074,7 @@ msgstr "ĐńÝđĺé íá Ý÷ĺôĺ ěéá ęáôÜôěçóç swap"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -3941,59 +4082,59 @@ msgstr ""
"\n"
"Íá óőíĺ÷ßóů;"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "ĐńÝđĺé íá Ý÷ĺôĺ ěéá ęáôÜôěçóç FAT mounted óôď /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "×ńŢóç ĺëĺýčĺńďő ÷ţńďő"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Äĺí őđÜń÷ĺé áńęĺôüň ĺëĺýčĺńďň ÷ţńďň ăéá äçěéďőńăßá íÝůí ęáôáôěŢóĺůí"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "×ńŢóç őđÜń÷ďíôůí ęáôáôěŢóĺůí"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Äĺí őđÜń÷ďőí ęáôáôěŢóĺéň đńďň ÷ńŢóç"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "×ńŢóç ęáôÜôěçóçň Windows ăéá loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "ĐďéÜ ęáôÜôěçóç čÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ ăéá ôď Linux4Win;"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "ĹđéëÝîôĺ ôá ěĺăÝčç"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "ĚÝăĺčďň âáóéęŢň ęáôÜôěçóçň óőóôŢěáôďň óĺ MB:"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "ĚÝăĺčďň ęáôÜôěçóçň swap óĺ MB"
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "×ńŢóç ôďő ĺëĺýčĺńďő ÷ţńďő óôçí ęáôÜôěçóç ôůí Windows"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Óĺ ôé ôýđď ęáôÜôěçóçň čÝëĺôĺ íá áëëÜîĺôĺ ěÝăĺčďň;"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Őđďëďăéóěüň ďńßůí óőóôŢěáôďň áń÷ĺßůí Windows"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4002,13 +4143,16 @@ msgstr ""
"Äĺí ěđďńţ íá áëëÜîů ěÝăĺčďň óôçí ęáôÜôěçóç FAT, \n"
"đńďęëŢčçęĺ ôď đáńáęÜôů ëÜčďň: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+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 ĺßíáé đďëý ęáôáęĺńěáôéóěÝíç, đáńáęáëţ ôńÝîôĺ đńţôá "
"ôď ``defrag'' "
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -4029,57 +4173,57 @@ msgstr ""
"ĚĺôÜ čá đńÝđĺé íá ęńáôŢóĺôĺ áíôßăńáöď áóöáëĺßáň ôůí äĺäďěÝíůí óáň.\n"
"ĹÜí ĺßóôĺ óßăďőńďé, đáôŢóôĺ Ok."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Ôé ÷ţńď čÝëĺôĺ íá ęńáôŢóĺôĺ ăéá ôá windows óôď"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "ęáôÜôěçóç %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "ÁëëáăŢ ěĺăÝčďőň FAT áđÝôő÷ĺ: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Äĺí őđÜń÷ďőí FAT ęáôáôěŢóĺéň ăéá áëëáăŢ ěĺăÝčďőň Ţ ăéá ÷ńŢóç ůň loopback (Ţ "
"äĺí őđÜń÷ĺé áńęĺôüň ÷ţńďň)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "ÄéáăńáöŢ ďëüęëçńďő ôďő äßóęďő"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Áöáßńĺóç Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
"¸÷ĺôĺ đĺńéóóüôĺńďőň áđü Ýíáí äßóęďőň, óĺ đďéüí čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ ôď "
"Linux;"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"źëĺň ďé őđÜń÷ďőóĺň ęáôáôěŢóĺéň ęáé ôá äĺäďěÝíá ôďőň óôďí äßóęď %s čá ÷áčďýí"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "ĐńďóáńěďóěÝíĺň ęáôáôěŢóĺéň äßóęďő"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "×ńŢóç fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4088,11 +4232,11 @@ msgstr ""
"Ěđďńĺßôĺ ôţńá íá ęáôáôěŢóĺôĺ ôďí äßóęď %s\n"
"źôáí ôĺëĺéţóĺôĺ, ěçí îĺ÷Üóĺôĺ íá áđďčçęĺýóĺôĺ đáôţíôáň `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Äĺí Ý÷ĺôĺ áńęĺôü ĺëĺýčĺńď ÷ţńď óôçí ęáôÜôěçóç ôůí Windows"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Äĺí ěđďńţ íá âńţ áńęĺôü ÷ţńď ăéá ĺăęáôÜóôáóç"
@@ -4100,16 +4244,16 @@ msgstr "Äĺí ěđďńţ íá âńţ áńęĺôü ÷ţńď ăéá ĺăęáôÜóôáóç"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Ôď DrakX âńŢęĺ ôéň đáńáęÜôů ëýóĺéň:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Ç ęáôÜôěçóç áđÝôő÷ĺ: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Ĺęęßíçóç äéęôýďő"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "ÄéáęďđŢ ëĺéôďőńăßáň äéęôýďő."
@@ -4122,12 +4266,12 @@ msgstr ""
"ôďő őëéęďý Ţ áđü ôçí éóôďóĺëßäá ôďő ęáôáóęĺőáóôŢ (áí Ý÷ĺôĺ đńüóâáóç óôď "
"Internet).Óőíĺ÷ßóôĺ ěĺ äéęéÜ óáň ĺőčýíç."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Äéđëü óçěĺßď óýíäĺóçň %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4139,12 +4283,12 @@ msgstr ""
"ĹëÝăîôĺ ôď CD-ROM óĺ Ýíá Üëëď óýóôçěá ÷ńçóéěďđďéţíôáň ôçí ĺíôďëŢ \"rpm -qpl "
"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Ęáëţň Ţńčáôĺ óôď %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Äĺí őđÜń÷ĺé äéáčÝóéěďň ďäçăüň äéóęÝôôáň"
@@ -4154,9 +4298,9 @@ msgstr "Äĺí őđÜń÷ĺé äéáčÝóéěďň ďäçăüň äéóęÝôôáň"
msgid "Entering step `%s'\n"
msgstr "ÂŢěá `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4167,199 +4311,154 @@ msgstr ""
"ĺăęáôÜóôáóç ęĺéěÝíďő.\n"
"ĐáôŢóôĺ F1 ęáôÜ ôçí ĺęęßíçóç áđü CDROM, ěĺôÜ ăńÜřôĺ `text'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Ôýđďň ĺăęáôÜóôáóçň"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Đáńáęáëţ ĺéóÜăĺôĺ ôéň đáńáęÜôů đëçńďöďńßĺň"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Ôď óőíďëéęü ěÝăĺčďň ôůí ďěÜäůí đďő ĺđéëÝîáôĺ ĺßíáé đĺńßđďő %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"ĹÜí čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ ëéăüôĺńá,\n"
-"ĺđéëÝîôĺ ôď đďóďóôü ôůí đáęÝôůí đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ.\n"
-"\n"
-"¸íá ÷áěçëü đďóďóôü čá ĺăęáôáóôŢóĺé ěüíď ôá đéď óçěáíôéęÜ đáęÝôá.\n"
-"¸íá đďóďóôü 100% čá ĺăęáôáóôŢóĺé üëá ôá ĺđéëĺăěÝíá đáęÝôá."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"¸÷ĺôĺ óôď äßóęď óáň ÷ţńď ěüíď ăéá ôď %d%% áőôţí ôůí đáęÝôůí.\n"
-"\n"
-"ĹÜí čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ ëéăüôĺńá áđü áőôÜ,\n"
-"ĺđéëÝîôĺ ôď đďóďóôü ôůí đáęÝôůí đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ.\n"
-"¸íá ÷áěçëü đďóďóôü čá ĺăęáôáóôŢóĺé ěüíď ôá đéď óçěáíôéęÜ đáęÝôá.\n"
-"¸íá đďóďóôü %d%% čá ĺăęáôáóôŢóĺé üóď đĺńéóóüôĺńá ăßíĺôáé."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Čá ěđďńÝóĺôĺ íá ęÜíĺôĺ ëĺđôďěĺńÝóôĺńç ĺđéëďăŢ óôď ĺđüěĺíď âŢěá."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Đďóďóôü đáęÝôůí đńďň ĺăęáôÜóôáóç"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "ĹđéëďăŢ ďěÜäůí đáęÝôůí"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "ĹđéëďăŢ îĺ÷ůńéóôţí đáęÝôůí"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Óőíďëéęü ěÝăĺčďň: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "ËÜčďň đáęÝôď"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "źíďěá: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "¸ęäďóç: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "ĚÝăĺčďň: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Óçěáóßá: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Äĺí ěđďńĺßôĺ íá ĺđéëÝîĺôĺ áőôü ôď đáęÝôď äéüôé äĺí őđÜń÷ĺé áńęĺôüň ÷ţńďň"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Čá ĺăęáôáóôáčďýí ôá đáńáęÜôů đáęÝôá"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Čá áöáéńĺčďýí ôá đáńáęÜôů đáęÝôá "
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Äĺí ěđďńĺßôĺ íá ĺđéëÝîĺôĺ/áđďĺđéëÝîĺôĺ áőôü ôď đáęÝôď"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Áőôü ĺßíáé áđáéôďýěĺíď đáęÝôď, äĺí ěđďńĺß íá áđďĺđéëĺăĺß"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Äĺí ěđďńĺßôĺ íá áđďĺđéëÝîĺôĺ áőôü ôď đáęÝôď. Ĺßíáé Ţäç ĺăęáôĺóôçěÝíď"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Áőôü ôď đáęÝôď đńÝđĺé íá áíáâáčěéóôĺß\n"
"Ĺßóôĺ óßăďőńďň üôé čÝëĺôĺ íá ôď áđďĺđéëÝîĺôĺ;"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Äĺí ěđďńĺßôĺ íá áđďĺđéëÝîĺôĺ áőôü ôď đáęÝôď. ĐńÝđĺé íá áíáâáčěéóôĺß"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Áőôüěáôç đńďâďëŢ ĺđéëĺăěÝíůí đáęÝôůí"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "ĹăęáôÜóôáóç"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Öüńôůóç/ÁđďčŢęĺőóç óĺ äéóęÝôôá"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "ÁíáíÝůóç ĺđéëĺăěÝíůí đáęÝôůí"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "ĹëÜ÷éóôç ĹăęáôÜóôáóç"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "ĹđéëÝîôĺ ôá đáęÝôá đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "ĹăęáôÜóôáóç"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Ĺęôßěçóç"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "ĹíáđďěÝíůí ÷ńüíďň "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Đáńáęáëţ đĺńéěÝíĺôĺ, đńďĺôďéěáóßá ĺăęáôÜóôáóçň"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d đáęÝôá"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "ĹăęáôÜóôáóç đáęÝôďő %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Áđďäď÷Ţ"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "śńíçóç"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4373,17 +4472,17 @@ msgstr ""
"Đáńáęáëţ ĺéóÜăĺôĺ ôď Cd-Rom ěĺ üíďěá \"%s\" óôďí ďäçăü óáň ęáé đáôŢóôĺ Ďę.\n"
"ĹÜí äĺí ôď Ý÷ĺôĺ, đáôŢóôĺ Áęýńůóç ăéá áđďöőăŢ ĺăęáôÜóôáóçň áđü áőôü ôď CdRom."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Íá óőíĺ÷ßóů;"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "ĐńďęëŢčçęĺ óöÜëěá ęáôÜ ôçí ôáîéíüěçóç ôůí đáęÝôůí:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "ĐńďęëŢčçęĺ óöÜëěá ęáôÜ ôçí ĺăęáôÜóôáóç ôůí đáęÝôůí:"
@@ -4457,11 +4556,11 @@ msgstr "ĐńďęëŢčçęĺ óöÜëěá"
msgid "Do you really want to leave the installation?"
msgstr "ČÝëĺôĺ íá ĺđáíĺęęéíŢóĺôĺ ôď äßęôőď;"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "śäĺéá ÷ńŢóçň"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4476,7 +4575,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -4594,7 +4693,7 @@ msgstr ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -4699,114 +4798,118 @@ msgstr ""
"Paris - France.\n"
"For any question on this document, please contact MandrakeSoft S.A. \n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Đëçęôńďëüăéď"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Đáńáęáëţ ĺđéëÝîôĺ äéáńýčěéóç đëçęôńďëďăßďő."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "ÁőôŢ ĺßíáé ç đëŢńçň ëßóôá ôůí äéáčÝóéěůí đëçęôńďëďăßůí"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Ôé ôýđď ĺăęáôÜóôáóçň đńďôéěÜôĺ;"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "ĹăęáôÜóôáóç/ÁíáâÜčěéóç"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Đńüęĺéôáé ăéá ĺăęáôÜóôáóç Ţ ăéá áíáâÜčěéóç;"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Óőíéóôţěĺíď"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Ăéá ĺéäéęďýň"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade"
msgstr "ÁíáâÜčěéóç"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr "ÁíáíÝůóç ĺđéëĺăěÝíůí đáęÝôůí"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôýđď đďíôéęéďý."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Čýńá đďíôéęéďý"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr ""
"Đáńáęáëţ ĺđéëÝîôĺ óĺéńéáęŢ čýńá óôçí ďđďßá ĺßíáé óőíäĺäĺěÝíď ôď đďíôßęé óáň."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Đńďóďěďßůóç Ęďőěđéţí"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Đńďóďěďßůóç 2 Ęďőěđéţí"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Đńďóďěďßůóç 3 Ęďőěđéţí"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Ńýčěéóç ęáńôţí PCMCIA "
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Ńýčěéóç IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "äĺí őđÜń÷ďőí äéáčÝóéěĺň ęáôáôěŢóĺéň"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "ÁíÜëőóç ęáôáôěŢóĺůí ăéá đńďóäéďńéóěü óçěĺßůí óýíäĺóçň."
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "ĹđéëÝîôĺ óçěĺßá óýíäĺóçň"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4818,7 +4921,7 @@ msgstr ""
"\n"
"Óőěöůíĺßôĺ íá äéáăńáöďýí üëĺň ďé ęáôáôěŢóĺéň;\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4826,7 +4929,7 @@ msgstr ""
"Ôď DiskDrake áđÝôő÷ĺ íá äéáâÜóĺé óůóôÜ ôďí đßíáęá ęáôáôěŢóĺůí.\n"
"Óőíĺ÷ßóôĺ ěĺ äéęŢ óáň ĺőčýíç!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -4835,79 +4938,82 @@ msgstr ""
"áëëÜ ăéá íá îĺęéíŢóĺôĺ ôď óýóôçěÜ óáň, čá ÷ńĺéáóôĺß íá äçěéďőńăŢóĺôĺ ěéá "
"ęáôÜôěçóç bootstrap ěĺ ôď DiskDrake"
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr "Äĺí âńÝčçęĺ ęáôÜôěçóç root ăéá ôçí đńáăěáôďđďßçóç ôçň áíáâÜčěéóçň"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Root Partition (âáóéęŢ ęáôÜôěçóç óőóôŢěáôďň)"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "ĐďéÜ ĺßíáé ç âáóéęŢ ęáôÜôěçóç (/) ôďő óőóôŢěáôüň óáň;"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Áđáéôĺßôáé ĺđáíĺęęßíçóç ăéá íá ĺíĺńăďđďéçčďýí ďé áëëáăÝň óôďí đßíáęá "
"ęáôáôěŢóĺůí"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "ĹđéëÝîôĺ ęáôáôěŢóĺéň đńďň ěďńöďđďßçóç"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "¸ëĺă÷ďň ăéá ÷áëáóěÝíá blocks;"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Ěďńöďđďßçóç ęáôáôěŢóĺůí"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Äçěéďőńăßá ęáé ěďńöďđďßçóç áń÷ĺßďő %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Äĺí őđÜń÷ĺé áńęĺôü swap ăéá ôçí ďëďęëŢńůóç ôçň ĺăęáôÜóôáóçň, đáńáęáëţ "
"đńďóčÝóôĺ"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "ŘÜ÷íů ăéá äéáčÝóéěá đáęÝôá"
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "ŘÜ÷íů ăéá äéáčÝóéěá đáęÝôá"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Đńďóäéďńéóěüň đáęÝôůí đńďň áíáâÜčěéóç"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Äĺí ěđďńĺßôĺ íá áđďĺđéëÝîĺôĺ áőôü ôď đáęÝôď. Ĺßíáé Ţäç ĺăęáôĺóôçěÝíď"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Ôď óýóôçěÜ óáň äĺí Ý÷ĺé áńęĺôü äéáčÝóéěď ÷ţńď ăéá ĺăęáôÜóôáóç Ţ áíáâÜčěéóç (%"
"d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "ĐëŢńçň (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "ĹëÜ÷éóôç (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Óőíéóôţěĺíç (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -4916,53 +5022,53 @@ msgstr ""
"äéóęÝôôá.\n"
"Ç ěďńöďđďßçóç ĺßíáé ç ßäéá ěĺ ôéň äéóęÝôôĺň áőôüěáôçň ĺăęáôÜóôáóçň."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Öüńôůóç áđü äéóęÝôôá"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Öüńôůóç áđü äéóęÝôôá"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "ĹđéëďăŢ đáęÝôůí"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "ĹéóÜăĺôĺ äéóęÝôôá đďő đĺńéÝ÷ĺé ôçí ĺđéëďăŢ đáęÝôůí"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "ÁđďčŢęĺőóç óĺ äéóęÝôôá"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Ôď ĺđéëĺăěÝíď ěÝăĺčďň ĺßíáé ěĺăáëýôĺńď áđü ôď äéáčÝóéěď ÷ţńď"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4972,16 +5078,16 @@ msgstr ""
"ĹÜí äĺí Ý÷ĺôĺ ęáíÝíá áđü ôá đáńáęÜôů CDs, đáôŢóôĺ Áęýńůóç.\n"
"ĹÜí äĺí Ý÷ĺôĺ ęÜđďéá áđü áőôÜ, áđďĺđéëÝîôĺ ôá ęáé đáôŢóôĺ Ok."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom ďíüěáôé \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Đńďĺôďéěáóßá ĺăęáôÜóôáóçň"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4990,23 +5096,23 @@ msgstr ""
"ĹăęáôÜóôáóç đáęÝôďő %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Ńőčěßóĺéň ěĺôÜ ôçí ĺăęáôÜóôáóç"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Đáńáęáëţ ĺéóÜăĺôĺ ôç äéóęÝôôá Ĺęęßíçóçň óôďí ďäçăü %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Đáńáęáëţ ĺéóÜăĺôĺ ôç äéóęÝôôá ÁíáíÝůóçň ÁńčńůěÜôůí óôďí ďäçăü %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5069,161 +5175,192 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Óýíäĺóç ăéá ëŢřç đáęÝôůí"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "ĹđéëÝîôĺ ôüđď áđü ôďí ďđďßď čá ăßíĺé ç ëŢřç đáęÝôůí"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Óýíäĺóç ăéá ëŢřç đáęÝôůí"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "ĐďéÜ ĺßíáé ç ćţíç ţńáň;"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Ôď ńďëüé ôďő őđďëďăéóôŢ óáň ĺßíáé ńőčěéóěÝíď óĺ GMT (ţńá ĂęńŢíďőúôň)"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Áőôüěáôďň óőă÷ńďíéóěüň ţńáň (÷ńŢóç NTP)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "ĹîőđçńĺôçôŢň NTP"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "ÁđďěĺěáęńőóěÝíďň ĺîőđçńĺôçôŢň CUPS"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "ĘáíÝíáň ĺęôőđůôŢň"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "¸÷ĺôĺ áëëďí;"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Đĺńßëçřç"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Đďíôßęé"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "ŮńďëďăéáęŢ Ćţíç"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "ĹęôőđůôŢň"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "KÜńôá ISDN"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "ĘÜńôá Ţ÷ďő"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "ĘÜńôá TV"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Áöáßńĺóç Windows(TM)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "ÔďđéęÜ áń÷ĺßá"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Óőíčçěáôéęü root"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "×ůńßň óőíčçěáôéęü"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Áőôü ôď óőíčçěáôéęü ĺßíáé đďëý áđëü (đńÝđĺé íá ĺßíáé ôďőëÜ÷éóôďí %d "
"÷áńáęôŢńĺň ěáęńý)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Đéóôďđďßçóç ôáőôüôçôáň"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "Đéóôďđďßçóç LDAP"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "ĹîőđçńĺôçôŢň LDAP"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "Ĺîáęńßâůóç NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "Đĺńéď÷Ţ (domain) NIS"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "ĹîőđçńĺôçôŢň NIS"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Đéóôďđďßçóç LDAP"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Đĺńéď÷Ţ (domain) NIS"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "ĹîőđçńĺôçôŢň NTP"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -5250,19 +5387,19 @@ msgstr ""
"ęÜíďíôáň ĺőęďëüôĺńç ôçí ĺđáíáöďńÜ ôďő óőóôŢěáôďň ěĺôÜ áđü óďâáńŢ âëÜâç.\n"
"ČÝëĺôĺ íá äçěéďőńăŢóĺôĺ äéóęÝôôá ĺęęßíçóçň;"
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Đńţôďň ďäçăüň äéóęÝôáň"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Äĺýôĺńďň ďäçăüň äéóęÝôáň"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "ĐáńÜëĺéřç"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5289,7 +5426,7 @@ msgstr ""
"ČÝëĺôĺ íá äçěéďőńăŢóĺôĺ äéóęÝôôá ĺęęßíçóçň;\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5298,28 +5435,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "ËőđÜěáé, äĺí őđÜń÷ĺé äéáčÝóéěďň ďäçăüň äéóęÝôôáň"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "ĹđéëÝîôĺ ďäçăü äéóęÝôôáň ăéá äçěéďőńăßá äéóęÝôôáň ĺęęßíçóçň"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "ĹéóÜăĺôĺ äéóęÝôôá óôďí ďäçăü %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Äçěéďőńăßá äßóęďő ĺęęßíçóçň"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Đńďĺôďéěáóßá đńďăńÜěěáôďň ĺęęßíçóçň"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5331,11 +5468,11 @@ msgstr ""
"Ç ĺăęáôÜóôáóç čá óőíĺ÷éóôĺß, áëëÜ\n"
"čá ÷ńĺéáóôĺß íá ÷ńçóéěďđďéŢóĺôĺ ôď BootX ăéá íá îĺęéíŢóĺôĺ ôď ěç÷ÜíçěÜ óáň"
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "ČÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ ôď aboot;"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5344,18 +5481,18 @@ msgstr ""
"đńďóđÜčĺéá âĺâéáóěÝíçň ĺăęáôÜóôáóçň, áęüěá ęáé áí áőôü Ý÷ĺé óáí áđďôÝëĺóěá "
"ôçí ęáôáóôńďöŢ ôçň đńţôçň ęáôÜôěçóçň;"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
#, fuzzy
msgid "Installing bootloader"
msgstr "Ĺăę. đń. ĺęęßíçóçň"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"Ç ĺăęáôÜóôáóç ôďő đńďăńÜěěáôďň ĺęęßíçóçň áđÝôő÷ĺ. ĐńďęëŢčçęĺ ôď áęüëďőčď "
"óöÜëěá:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, fuzzy, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5372,18 +5509,17 @@ msgstr ""
" Ôüôĺ ôőđţóôĺ: shut-down\n"
"Óôçí ĺđüěĺíç ĺęęßíçóç čá đńÝđĺé íá äĺßôĺ ôçí đńďôńďđŢ ôďő bootloader."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "ĹéóÜăĺôĺ Üäĺéá äéóęÝôôá óôďí ďäçăü %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Đńďĺôďéěáóßá äéóęÝôáň áőôüěáôçň ĺăęáôÜóôáóçň"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5393,7 +5529,8 @@ msgstr ""
"\n"
"ČÝëĺôĺ óßăďőńá íá ĺăęáôáëĺßřĺôĺ ôţńá;"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5404,7 +5541,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5419,18 +5556,22 @@ msgstr ""
"óőěâďőëĺőôĺßôĺ ôçí óĺëßäá \n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Đëçńďöďńßĺň ó÷ĺôéęÜ ěĺ ôéň ńőčěßóĺéň ôďő óőóôŢěáôüň óáň őđÜń÷ďőí óôď "
"ó÷ĺôéęü\n"
"ęĺöÜëáéď ôďő ĺđßóçěďő ďäçăďý ÷ńŢóçň ôďő Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Đńďĺôďéěáóßá äéóęÝôôáň áőôüěáôçň ĺăęáôÜóôáóçň"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5444,15 +5585,15 @@ msgstr ""
"\n"
"Ěđďńĺß íá đńďôéěÜôĺ íá ĺđáíáëÜâĺôĺ ôçí ĺăęáôÜóôáóç.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Áőôüěáôď"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Ĺđáíáöüńôůóç"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "ÁđďčŢęĺőóç ĺđéëďăŢň đáęÝôůí"
@@ -5480,418 +5621,402 @@ msgstr ""
msgid "Choose a file"
msgstr "ĹđéëÝîôĺ đńÜîç"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr " Ăéá Đńď÷ůńçěÝíďőň"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Đáńáęáëţ đĺńéěÝíĺôĺ"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Đëçńďöďńßĺň"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "ÁíÜđôőîç äÝíôńďő"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Óýěđôőîç äÝíôńďő"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "ĹíáëëáăŢ ěĺôáîý ĺđßđĺäçň ęáé ďěáäéęŢň ôáîéíüěçóçň"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "ĘáęŢ ĺđéëďăŢ, îáíáäďęéěÜóôĺ\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Ç ĺđéëďăŢ óáň; (ĺî' ďńéóěďý %s)"
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Ç ĺđéëďăŢ óáň; (ĺî' ďńéóěďý %s)"
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "ĹđéëďăÝň: %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr "ČÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ ôď aboot;"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Ç ĺđéëďăŢ óáň; (ĺî' ďńéóěďý %s)"
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "ÔóÝ÷éęď (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Ăĺńěáíéęü"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Éóđáíéęü"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Öéíëáíäéęü"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Ăáëëéęü"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Íďńâçăéęü"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Đďëůíéęü"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Ńůóéęü"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Óďőçäéęü"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "ĚĺăÜëç Âńĺôáííßá (UK)"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Ç.Đ.Á. (US)"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Áëâáíéęü"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Áńěĺíéęü (đáëéü)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Áńěĺíéęü (ăńáöďěç÷áíŢ)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Áńěĺíéęü (öůíçôéęü)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "ÁćĺńěđáúôćÜí (Ëáôéíéęü)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Âĺëăéęü"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Áńěĺíéęü (öůíçôéęü)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Âďőëăáńéęü"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "ÂńáćéëéÜíéęď"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Ëĺőęďńůóßáň"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Ĺëâĺôéęü (ĂĺńěáíéęŢ äéáńýčěéóç)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Ĺëâĺôéęü (ĂáëëéęŢ äéáńýčěéóç)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "ÔóÝ÷éęď (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Ăĺńěáíéęü (÷ůńßň íĺęńÜ đëŢęôńá)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Äáíéęü"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (ÇĐÁ)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Íďńâçăéęü)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (ÇĐÁ)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Ĺóčďíéęü"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Ăĺůńăßá (\"Ńůóéęç\" äéáńýčěéóç)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Ăĺůńăßá (\"ËáôéíéęŢ\" äéáńýčěéóç)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Ĺëëçíéęü"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Ďőăăńéęü"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Ęńďáôéęü"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "ÉóńáŢë"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "ÉóńáŢë (öůíçôéęü)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Éńáíéęü"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Éóëáíäéęü"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Éôáëéęü"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Éáđůíéęü 106 đëŢęôńůí"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "ĘďńĺÜôéęď Đëçęôńďëüăéď"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "ËáôéíéęŢň ÁěĺńéęŢň"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Ëéčďőáíéęü AZERTY (đáëéü)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Ëéčďőáíéęü AZERTY (íÝď)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Ëéčďőáíéęü \"number row\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Ëéčďőáíéęü \"öůíçôéęü\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
#, fuzzy
msgid "Latvian"
msgstr "Ôďđďčĺóßá"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "ĚáęĺäďíéęŢ"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Ďëëáíäéęü"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Đďëůíéęü (äéáńýčěéóç qwerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Đďëůíéęü (äéáńýčěéóç qwertz)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Đďńôďăáëëéęü"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Ęáíáäéęü (ĘĺěđÝę)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Ńďőěáíéęü (qwertz)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Ńďőěáíéęü (qwerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Ńůóéęü (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Óëďâĺíßáň"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Óëďâáęßáň (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Óëďâáęßáň (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "ÁćĺńěđáúôćÜí (ęőńéëëéęü)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Đßíáęáň"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thai"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Thai"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Ôďőńęéęü (đáńáäďóéáęü \"F\" ěďíôÝëď)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Ôďőńęéęü (ěďíôÝńíď \"Q\" ěďíôÝëď)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ďőęńáíéęü"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US äéĺčíÝň"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "ÂéĺôíÜě \"numeric row\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Ăéďőăęďóëáâéęü (ëáôéíéęü/ęőńéëëéęü)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5904,7 +6029,31 @@ msgstr "ĘőęëéęÝň óőíäÝóĺéň %s\n"
msgid "Remove the logical volumes first\n"
msgstr "ÁöáéńÝóôĺ ôá logical volumes đńţôá\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Áńéčěüň ôçëĺöţíďő"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Ěďńöďđ. ęáôáôěŢó."
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5945,10 +6094,6 @@ msgstr "1 đëŢęôńďő"
msgid "Generic 2 Button Mouse"
msgstr "Ăĺíéęďý ôýđďő ěĺ 2 đëŢęôńá"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Ăĺíéęü"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Ěĺ ńďäÜęé"
@@ -6013,38 +6158,54 @@ msgstr "ęáíÝíá"
msgid "No mouse"
msgstr "×ůńßň đďíôßęé"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Đáńáęáëţ äďęéěÜóôĺ ôď đďíôßęé"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Ăéá ĺíĺńăďđďßçóç đďíôéęéďý"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "ĘÉÍÇÓÔĹ ÔĎ ŃĎÄÁĘÉ!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "ÔÝëďň"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Ĺđüěĺíď -ť"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Đńďçăďýěĺíď"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Óůóôü;"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Đëçńďöďńßĺň"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "ÁíÜđôőîç äÝíôńďő"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Óýěđôőîç äÝíôńďő"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "ĹíáëëáăŢ ěĺôáîý ĺđßđĺäçň ęáé ďěáäéęŢň ôáîéíüěçóçň"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Óýíäĺóç óôď Äéáäßęôőď"
@@ -6091,7 +6252,7 @@ msgstr ""
"Äĺí âńÝčçęĺ đńďóáńěďăÝáň äéęôýďő Ethernet óôď óýóôçěÜ óáň.\n"
"Äĺí ěđďńţ íá ńőčěßóů áőôďý ôďő ôýđďő ôçí óýíäĺóç."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "ĹđéëÝîôĺ óőóęĺőŢ äéęôýďő"
@@ -6106,7 +6267,7 @@ msgstr ""
msgid "no network card found"
msgstr "äĺí âńÝčçęĺ đńďóáńěďăÝáň äéęôýďő"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Ńýčěéóç äéęôýďő"
@@ -6122,15 +6283,15 @@ msgstr ""
"Ôď üíďěá áőôü đńÝđĺé íá ĺßíáé Ýíá đëŢńĺň üíďěá óőóôŢěáôďň,\n"
"üđůň đ.÷. ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "źíďěá óőóôŢěáôďň"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Ďäçăüň Ńýčěéóçň Äéęôýďő"
@@ -6186,7 +6347,7 @@ msgstr "Ńőčěßóĺéň ISDN"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"ĹđéëÝîôĺ ôďí đáńď÷Ýá óáň\n"
" ĹÜí äĺí ĺßíáé óôďí ęáôÜëďăď, ĺđéëÝîôĺ Unlisted"
@@ -6209,14 +6370,14 @@ msgstr "Őđüëďéđďň ęüóěďň"
#: ../../network/isdn.pm_.c:185
#, fuzzy
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Őđüëďéđďň ęüóěďň \n"
" ÷ůńßň D-Channel (ěéóčůěÝíĺň ăńáěěÝň)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Đďéü đńůôüęďëëď čÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ;"
#: ../../network/isdn.pm_.c:199
@@ -6240,7 +6401,8 @@ 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"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"ĹÜí Ý÷ĺôĺ ISA ęÜńôá, ďé ôéěÝň óôçí ĺđüěĺíç ďčüíç čá đńÝđĺé íá ĺßíáé óůóôÝň.\n"
@@ -6256,13 +6418,13 @@ msgid "Continue"
msgstr "ÓőíÝ÷ĺéá"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "ĐďéÜ ĺßíáé ç ISDN ęÜńôá óáň;"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Ĺíôüđéóá ěéá ISDN ęÜńôá, áëëÜ äĺí îÝńů ôďí ôýđď ôçň. Đáńáęáëţ ĺđéëÝîôĺ ěéá "
"ęÜńôá PCI áđü ôçí đáńáęÜôů ďčüíç."
@@ -6279,47 +6441,47 @@ msgstr "Óĺ đďéÜ óĺéńéáęŢ đüńôá ĺßíáé óőíäĺäĺěÝíď ôď modem óáň;"
msgid "Dialup options"
msgstr "ĹđéëďăÝň dialup"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "źíďěá óýíäĺóçň"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Áńéčěüň ôçëĺöţíďő"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Login ID"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr ""
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "×ńŢóç script"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "×ńŢóç ôĺńěáôéęďý"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "źíďěá äéęôýďő"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Đńţôďň ĺîőđçńĺôçôŢň DNS (đńďáéńĺôéęü)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Äĺýôĺńďň ĺîőđçńĺôçôŢň DNS (đńďáéńĺôéęü)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6327,7 +6489,7 @@ msgstr ""
"\n"
"Ěđďńĺßôĺ íá áđďóőíäĺčĺßôĺ Ţ íá ĺđáíáńőčěßóĺôĺ ôçí óýíäĺóŢ óáň."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6335,11 +6497,11 @@ msgstr ""
"\n"
"Ěđďńĺßôĺ íá ĺđáíáńőčěßóĺôĺ ôçí óýíäĺóŢ óáň."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "ÁőôŢ ôç óôéăěŢ ĺßóôĺ óőíäĺäĺěÝíďé óôď Äéáäßęôőď."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6347,33 +6509,33 @@ msgstr ""
"\n"
"Ěđďńĺßôĺ íá óőíäĺčĺßôĺ óôď Äéáäßęôőď Ţ íá ĺđáíáńőčěßóĺôĺ ôçí óýíäĺóŢ óáň."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "ÁőôŢ ôç óôéăěŢ äĺí ĺßóôĺ óőíäĺäĺěÝíďé óôď Äéáäßęôőď."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Óýíäĺóç"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Áđďóýíäĺóç"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "Ńýčěéóç äéęôýďő"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Óýíäĺóç ęáé ńýčěéóç Äéáäéęôýďő (internet)"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Ôţńá čá ńőčěßóďőěĺ ôçí %s óýíäĺóç."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6392,12 +6554,12 @@ msgstr ""
"\n"
"ĐáôŢóôĺ ôď OK ăéá íá îĺęéíŢóĺôĺ"
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Ńőčěßóĺéň äéęôýďő"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6408,9 +6570,9 @@ msgstr ""
"ĘÜíôĺ ęëßę óôď Ďę ăéá íá äéáôçńŢóĺôĺ ôéň ńőčěßóĺéň óáň, Ţ Üęőńď ăéá íá "
"îáíáńőčěßóĺôĺ ôç óýíäĺóç óôď Internet.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"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"
@@ -6421,66 +6583,72 @@ msgstr ""
"Áí äĺí čÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ ôçí áőôüěáôç áíß÷íĺőóç, îĺôóĺęÜńĺôĺ ôď "
"checkbox.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "ĹđéëÝîôĺ ôď đńďößë ăéá ńýčěéóç"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "×ńŢóç áőôüěáôçň áíß÷íĺőóçň"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "ĘáôÜóôáóç Đńď÷ůńçěÝíůí"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Ĺíôďđéóěüň óőóęĺőţí..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "ÁđëŢ óýíäĺóç ěĺ modem"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "áíé÷íĺýčçęĺ óôçí đüńôá %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "Óýíäĺóç ISDN"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "áíé÷íĺýčçęĺ ôď %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "Óýíäĺóç ADSL"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "áíé÷íĺýôçęĺ óôçí äéĺđéöÜíĺéá %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "ĘáëůäéáęŢ óýíäĺóç"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "áíé÷íĺýčçęĺ ęáëůäéáęŢ óýíäĺóç"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "Óýíäĺóç LAN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "ęÜńôá(ĺň) ethernet áíé÷íĺýčçęáí"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "ĹđéëÝîôĺ ôç óýíäĺóç đďő čÝëĺôĺ íá ńőčěßóĺôĺ"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6490,23 +6658,23 @@ msgstr ""
"ĹđéëÝîôĺ áőôüí đďő čÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Óýíäĺóç Internet"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "ČÝëĺôĺ íá óőíäÝĺóôĺ ęáôÜ ôçí ĺęęßíçóç;"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Ńőčěßóĺéň äéęôýďő"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6517,7 +6685,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6527,7 +6695,7 @@ msgstr ""
"\n"
"Ďé ńőčěßóĺéň čá ĺöáńěďóôďýí ôţńá óôď óýóôçěÜ óáň.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6535,16 +6703,16 @@ msgstr ""
"Áöďý ăßíĺé áőôü, đńďôĺßíďőěĺ íá îáíáîĺęéíŢóĺôĺ ôď ×\n"
"đĺńéâÜëëďí ăéá íá áđďöýăĺôĺ ôá đńďâëŢěáôá áëëáăŢň hostname."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"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."
@@ -6554,7 +6722,7 @@ msgstr ""
"ÁđëÜ đáôŢóôĺ OK ăéá íá ęńáôŢóĺôĺ ôéň őđÜń÷ďőóĺň ńőčěßóĺéň.\n"
"ÁëëÜćďíôáň ôá đáńáęÜôů đĺäßá čá áëëÜîĺôĺ ôçí őđÜń÷ďőóá ńýčěéóç."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6564,38 +6732,43 @@ msgstr ""
"ĘÜčĺ óôďé÷ĺßď đńÝđĺé íá ĺéóá÷čĺß ůň IP äéĺýčőíóç óĺ ďęôáäéęŢ\n"
"ěďńöŢ (đáńÜäĺéăěá: 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Ńýčěéóç óőóęĺőŢň äéęôýďő %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (driver %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "Äéĺýčőíóç IP"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "ĚÜóęá äéęôýďő"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Áőôüěáôď IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Îĺęßíçóáí óôçí ĺęęßíçóç óőóôŢěáôďň"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "Ç IP äéĺýčőíóç đńÝđĺé íá ĺßíáé óĺ ěďńöŢ 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6607,64 +6780,64 @@ msgstr ""
"üđůň đ.÷. ``mybox.mylab.myco.com''.\n"
"Ěđďńĺßôĺ ĺđßóçň íá ĺéóÜăĺôĺ ęáé ôçí äéĺýčőíóç IP ôçň đýëçň äéęôýďő"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "ĹîőđçńĺôçôŢň DNS"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "ÓőóęĺőŢ đýëçň"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Ńőčěßóĺéň proxies"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Ď proxy đńÝđĺé íá ĺßíáé http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Ď proxy đńÝđĺé íá ĺßíáé ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Ńőčěßóĺéň Äéáäéęôýďő (Internet)"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "ČÝëĺôĺ íá äďęéěÜóĺôĺ íá óőíäĺčĺßôĺ óôď Äéáäßęôőď ôţńá;"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "ÄďęéěŢ óýíäĺóçň... "
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Ôď óýóôçěá äĺí ĺßíáé óőíäĺäĺěÝíď óôď Äéáäßęôőď."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Ăéá ëüăď ÁóöÜëĺéáň, čá áđďóőíäĺčĺßôĺ ôţńá."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6672,113 +6845,118 @@ msgstr ""
"Ôď óýóôçěÜ óáň äĺí öáßíĺôáé íá ĺßíáé óőíäĺäĺěÝíď óôď Äéáäßęôőď.\n"
"ÄďęéěÜóôĺ íá ĺđáíáńőčěßóĺôĺ ôçí óýíäĺóŢ óáň."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Ńőčěßóĺéň óëőíäĺóçň"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Đáńáęáëţ ĺëÝăîôĺ Ţ óőěđëçńţóôĺ ôď đáńáęÜôů đĺäßď"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ ęÜńôáň"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "DMA ęÜńôáň"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "IO ęÜńôáň"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "IO_0 ęÜńôáň"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "IO_1 ęÜńôáň"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Đńďóůđéęüň áńéčěüň ôçëĺöţíďő"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "źíďěá đáńď÷Ýá (đ.÷. provider.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Áńéčěüň ôçëĺöţíďő đáńď÷Ýá"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Provider dns 1 (đńďáéńĺôéęü)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Provider dns 2 (đńďáéńĺôéęü)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
#, fuzzy
msgid "Choose your country"
msgstr "ĹđéëÝîôĺ đëçęôńďëüăéď"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Ôńüđďň ęëŢóçň"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Ôá÷ýôçôá óýíäĺóçň"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "×ńüíďň óýíäĺóçň: "
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "'Ďíďěá ëďăáńéáěďý (user name)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Óőíčçěáôéęü ëďăáńéáóěďý"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "óýíäĺóç áđÝôő÷ĺ: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Ç ĺęôĺôáěÝíç ęáôÜôěçóç äĺí őđďóôçńßćĺôáé óĺ áőôüí ôďí ôýđď óőóôŢěáôďň"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"ŐđÜń÷ĺé Ýíá ęĺíü óôďí đßíáęá ęáôáôěŢóĺůí ěá äĺí ěđďńţ íá ôď ÷ńçóéěďđďéŢóů.\n"
"Ç ěďíáäéęŢ ëýóç ĺßíáé íá ěĺôáęéíŢóĺôĺ ôéň đńůôĺýďőóĺň ęáôáôěŢóĺéň óáň Ýôóé "
"ţóôĺ ôď ęĺíü íá âńĺčĺß äßđëá óôçí ĺęôĺôáěÝíç ęáôÜôěçóç"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Ç ĺđáíáöďńÜ áđü ôď áń÷ĺßď %s áđÝôő÷ĺ: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "ÓöÜëěá ĺăăńáöŢň óôď áń÷ĺßď %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6789,194 +6967,194 @@ msgstr ""
"Áőôü óçěáßíĺé đůň ç ďđďéáäŢđďôĺ ĺăăńáöŢ óôď äßóęď čá ęáôáëŢîĺé óáí ôő÷áßá "
"óęďőđßäéá"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "đńÝđĺé íá őđÜń÷ĺé"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "óçěáíôéęü"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "đďëý ęáëü"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "ęáëü"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "ßóůň"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Common Unix Printing System"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR New Generation"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Line Printer Daemon"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Ôďđéęüň ĺęôőđůôŢň"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "ÁđďěĺěáęńőóěÝíďň ĺîőđçńĺôçôŢň CUPS"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "ÁđďěĺěáęńőóěÝíďň ĺîőđçńĺôçôŢň lpd"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "ĹęôőđůôŢň äéęôýďő (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
#, fuzzy
msgid "Printer on NetWare server"
msgstr "ĹîőđçńĺôçôŢň ĺęôőđţóĺůí"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
#, fuzzy
msgid "Enter a printer device URI"
msgstr "ÓőóęĺőŢ ĺęôőđůôŢ URI"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
#, fuzzy
msgid "Pipe job into a command"
msgstr "ÄéáóůëŢíůóç óôçí ĺíôďëŢ"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr "Ôďđéęüň ĺęôőđůôŢň"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "ÓöÜëěá ĺăăńáöŢň óôď áń÷ĺßď %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(module %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP äéĺýčőíóç ĺîőđçńĺôçôŢ CUPS:"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (ĹđéëďăŢ ĺî' ďńéóěďý)"
@@ -7000,12 +7178,12 @@ msgstr ""
"óĺ äéáöďńĺôéęü äßęôőď. Óĺ áőôŢí ôçí đĺńßđôůóç, čá đńÝđĺé íá äçëţóĺôĺ ôçí\n"
"IP äéĺýčőíóç ôďő ĺîőđçńĺôçôŢ CUPS ęáé ßóůň ęáé ôďí áńéčěü čýńáň."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "Ńýčěéóç LÁÍ"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "ÁđďěĺěáęńőóěÝíďň ĺîőđçńĺôçôŢň CUPS"
@@ -7035,7 +7213,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "Ç IP äéĺýčőíóç đńÝđĺé íá ĺßíáé óĺ ěďńöŢ 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "Ď áńéčěüň čýńáň đńÝđĺé íá ĺßíáé áęÝńáéďň áńéčěüň!"
@@ -7043,7 +7221,7 @@ msgstr "Ď áńéčěüň čýńáň đńÝđĺé íá ĺßíáé áęÝńáéďň áńéčěüň!"
msgid "CUPS server IP"
msgstr "IP äéĺýčőíóç ĺîőđçńĺôçôŢ CUPS:"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Čýńá"
@@ -7052,22 +7230,13 @@ msgstr "Čýńá"
msgid "Automatic CUPS configuration"
msgstr "Boot Ôýđďő Ńýčěéóç"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "Ĺíôďđéóěüň óőóęĺőţí..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "ÄďęéěŢ čőńţí"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "ĐńďóčŢęç ĺęôőđůôŢ"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7080,14 +7249,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr "Ôďđéęüň ĺęôőđůôŢň"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7105,12 +7274,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7124,11 +7293,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7138,35 +7307,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "×ńŢóç áőôüěáôçň áíß÷íĺőóçň"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "ÄďęéěŢ čőńţí"
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "áíé÷íĺýčçęĺ ôď %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
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, ..., "
@@ -7174,43 +7347,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "ÓőóęĺőŢ ĺęôőđůôŢ URI"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr "Ôďđéęüň ĺęôőđůôŢň"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7218,7 +7391,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7226,73 +7399,83 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Óĺ đďéÜ óĺéńéáęŢ đüńôá ĺßíáé óőíäĺäĺěÝíď ôď modem óáň;"
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "ÓőóęĺőŢ ĺęôőđůôŢ URI"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "Ńőčěßóĺéň ÷ńůěÜôůí"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "ĹăęáôÜóôáóç đáęÝôďő %s"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing SANE packages..."
msgstr "ĹăęáôÜóôáóç đáęÝôďő %s"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "ĹăęáôÜóôáóç đáęÝôďő %s"
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
#, fuzzy
-msgid "Making printer port available for CUPS ..."
+msgid "Making printer port available for CUPS..."
msgstr "ÁíÜăíůóç âÜóçň ďäçăţí CUPS"
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
#, fuzzy
-msgid "Reading printer database ..."
+msgid "Reading printer database..."
msgstr "ÁíÜăíůóç âÜóçň ďäçăţí CUPS"
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "ĹđéëďăÝň áđďěĺěáęńőóěÝíďő lpd ĺęôőđůôŢ"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7303,30 +7486,30 @@ msgstr ""
"ĺęôőđţóĺůí, ęáčţň ęáé ôď üíďěá ôçň ďőńÜň ôçí ďđďßá čá \n"
"÷ńçóéěďđďéŢóĺôĺ óĺ áőôüí ôďí ĺîőđçńĺôçôŢ."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
#, fuzzy
msgid "Remote host name"
msgstr "ÁđďěĺěáęńőóěÝíď äéęôőáęü üíďěá:"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
#, fuzzy
msgid "Remote printer name"
msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "ÁđďěĺěáęńőóěÝíď äéęôőáęü üíďěá ëĺßđĺé!"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
#, fuzzy
msgid "Remote printer name missing!"
msgstr "ÁđďěĺěáęńőóěÝíď äéęôőáęü üíďěá ëĺßđĺé!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "ĹđéëďăÝň ĺęôőđůôŢ SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7341,35 +7524,35 @@ msgstr ""
"đńüóâáóç, ęáčţň ęáé ďđďéáäŢđďôĺ áđáńáßôçôç đëçńďöďńßá đĺńß ęůäéęďý \n"
"÷ńŢóôç, ëÝîçň ęëĺéäß ęáé ôďěÝá Ţ ďěÜäáň ĺńăáóßáň."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "Äéęôőáęü üíďěá SMB ĺîőđçńĺôçôŢ:"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP äéĺýčőíóç SMB ĺîőđçńĺôçôŢ:"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "źíďěá đüńďő:"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "ĎěÜäá ĺńăáóßáň:"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "Ĺßôĺ ôď üíďěá ôďő ĺîőđçńĺôçôŢ Ţ ç IP ôďő đńÝđĺé íá äďčďýí!"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "Ôď üíďěá ăéá ôçí Samba ëĺßđĺé!"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7393,7 +7576,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7402,7 +7585,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7410,11 +7593,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "ĹđéëďăÝň ĺęôőđůôŢ NetWare"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7428,28 +7611,28 @@ msgstr ""
"ôď üíďěá ôďő ĺęôőđůôŢ óôďí ďđďßď ĺđéčőěĺßôĺ đńüóâáóç, ęáčţň ęáé\n"
"ďđďéáäŢđďôĺ áđáńáßôçôç đëçńďöďńßá đĺńß ęůäéęďý ÷ńŢóôç ęáé ëÝîçň ęëĺéäß."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "ĹîőđçńĺôçôŢň ĺęôőđţóĺůí"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "źíďěá ďőńÜň ĺęôőđůôŢ"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "Ôď üíďěá ôďő ĺîőđçńĺôçôŢ NCP ëĺßđĺé!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "Ôď üíďěá ôçň NCP ďőńÜň ëĺßđĺé!"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "ĹđéëďăÝň ĺęôőđůôŢ socket"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
@@ -7460,20 +7643,20 @@ msgstr ""
"Ăéá íá ĺęôőđţóĺôĺ óĺ Ýíáí ĺęôőđůôŢ socket, đńÝđĺé íá äţóĺôĺ ôď \n"
"äéęôőáęü üíďěá ôďő ĺęôőđůôŢ ęáé đńďáéńĺôéęÜ ôďí áńéčěü čýńáň."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
#, fuzzy
msgid "Printer host name"
msgstr "źíďěá ĺęôőđůôŢ"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "źíďěá ĺęôőđůôŢ ëĺßđĺé!"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "ÓőóęĺőŢ ĺęôőđůôŢ URI"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
#, fuzzy
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
@@ -7484,11 +7667,11 @@ msgstr ""
"đńÝđĺé íá ôçńĺß ĺßôĺ ôéň CUPS ĺßôĺ ôéň Foomatic đńďäéáăńáöÝň. ź÷é đůň äĺí "
"őđďóôçńßćďíôáé üëďé ďé URI ôýđďé áđü üëá ôá spoolers."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "¸íá óůóôü URI đńÝđĺé íá ĺéóá÷čĺß!"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
#, fuzzy
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
@@ -7498,29 +7681,25 @@ msgstr ""
"Ôá đĺäßá ĐĺńéăńáöŢ ęáé Ôďđďčĺóßá äĺí ÷ńĺéÜćĺôáé íá \n"
"óőěđëçńůčďýí. Ĺßíáé áđëÜ ó÷üëéá ăéá ôďőň ÷ńŢóôĺň."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "źíďěá ĺęôőđůôŢ"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "ĐĺńéăńáöŢ"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Ôďđďčĺóßá"
-#: ../../printerdrake.pm_.c:1021
+#: ../../printerdrake.pm_.c:1045
#, fuzzy
-msgid "Preparing printer database ..."
+msgid "Preparing printer database..."
msgstr "ÁíÜăíůóç âÜóçň ďäçăţí CUPS"
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7535,26 +7714,26 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "Óůóôü;"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "ĹđéëďăŢ ěďíôÝëďő ĺęôőđůôŢ"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Ôß ôýđďő ĺęôőđůôŢ Ý÷ĺôĺ;"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7563,18 +7742,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Ńőčěßóĺéň Äéáäéęôýďő (Internet)"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7584,12 +7763,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Ńőčěßóĺéň Äéáäéęôýďő (Internet)"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7597,7 +7776,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7610,7 +7789,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7620,34 +7799,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "ĹđéëďăŢ %s đńÝđĺé íá ĺßíáé áęÝńáéďň áńéčěüň!"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "ĹđéëďăŢ %s đńÝđĺé íá ĺßíáé áńéčěüň!"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "ĹđéëďăŢ %s ĺęôüň ďńßďő!"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "ČÝëĺôĺ íá ĺęôőđţóĺôĺ ěéá äďęéěáóôéęŢ óĺëßäá;"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
#, fuzzy
msgid "Test pages"
msgstr "ÄďęéěŢ čőńţí"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7655,44 +7834,44 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
#, fuzzy
msgid "Print"
msgstr "ĹęôőđůôŢň"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
#, fuzzy
msgid "Standard test page"
msgstr "Ôőđéęü"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Ĺęôýđůóç äďęéěáóôéęţí óĺëßäůí..."
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
#, fuzzy
msgid "Photo test page"
msgstr "Ĺęôýđůóç äďęéěáóôéęţí óĺëßäůí..."
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "Ĺęôýđůóç äďęéěáóôéęţí óĺëßäůí..."
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Ĺęôýđůóç äďęéěáóôéęţí óĺëßäůí..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7708,7 +7887,7 @@ msgstr ""
"\n"
"¸ăéíĺ óůóôÜ ç ĺęôýđůóç"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7718,16 +7897,16 @@ msgstr ""
"Ěđďńĺß íá đĺńÜóĺé ęÜđďéďň ÷ńüíďň ěÝ÷ńé ç ĺęôýđůóç íá îĺęéíŢóĺé.\n"
"¸ăéíĺ óůóôÜ ç ĺęôýđůóç;"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "ĘáíÝíáň ĺęôőđůôŢň"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7736,15 +7915,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
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 ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7753,49 +7932,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, 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\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7805,7 +7984,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7814,30 +7993,41 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Ęëĺßóéěď"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "ÄéáęďđŢ ëĺéôďőńăßáň äéęôýďő."
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "ÄéáęďđŢ ëĺéôďőńăßáň äéęôýďő."
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "ÄéáęďđŢ ëĺéôďőńăßáň äéęôýďő."
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "ÄéáęďđŢ ëĺéôďőńăßáň äéęôýďő."
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Ęëĺßóéěď"
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "ĹđéëďăÝň ĺęôőđůôŢ"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7845,37 +8035,37 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Ńőčěßóĺéň Äéáäéęôýďő (Internet)"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7885,51 +8075,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7937,63 +8127,63 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"Ôď üíďěá ôďő ĺęôőđůôŢ đńÝđĺé íá đĺńéÝ÷ĺé ěüíď ăńÜěěáôá, áńéčěďýň ęáé ôďí "
"÷áńáęôŢńá underscore"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid "New printer name"
msgstr "ĘáíÝíáň ĺęôőđůôŢň"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, 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 ""
-#: ../../printerdrake.pm_.c:1887
+#: ../../printerdrake.pm_.c:1935
#, fuzzy
-msgid "Refreshing printer data ..."
+msgid "Refreshing printer data..."
msgstr "ÁíÜăíůóç âÜóçň ďäçăţí CUPS"
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr ""
-#: ../../printerdrake.pm_.c:1896
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
-msgid "Starting network ..."
+msgid "Starting network..."
msgstr "Ĺęęßíçóç óýíäĺóçň..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr "Ńýčěéóç äéęôýďő"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "Ç ďčüíç äĺí Ý÷ĺé ńőčěéóôĺß áęüěç"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8001,12 +8191,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Ńýčěéóç äéęôýďő"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8016,34 +8206,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
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 ""
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
-msgid "Restarting printing system ..."
+msgid "Restarting printing system..."
msgstr "Đďéü óýóôçěá ĺęôýđůóçň čÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ;"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "Őřçëü"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "Đáńáíďúęü"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8058,12 +8248,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Đďéü óýóôçěá ĺęôýđůóçň čÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ;"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8077,66 +8267,66 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "ĹđéëďăŢ Spooler EęôőđůôŢ"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "Đďéü óýóôçěá ĺęôýđůóçň čÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ;"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Ńýčěéóç ĺęôőđůôŢ"
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr "ĹăęáôÜóôáóç đáęÝôďő %s"
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "ĹđéëďăÝň ĺęôőđůôŢ"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr ""
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Ńýčěéóç ĺęôőđůôŢ"
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "Čá čÝëáôĺ íá ńőčěßóĺôĺ Ýíáí ĺęôőđůôŢ;"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "Printerdrake"
msgstr "ĹęôőđůôŢň"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8147,7 +8337,7 @@ msgstr ""
"ŐđÜń÷ďőí ďé áęüëďőčĺň ďőńÝň ĺęôýđůóçň.\n"
"Ěđďńĺßôĺ íá đńďóčÝóĺôĺ ęé Üëëĺň Ţ íá áëëÜîĺôĺ ôéň őđÜń÷ďőóĺň."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8157,139 +8347,143 @@ msgstr ""
"ŐđÜń÷ďőí ďé áęüëďőčĺň ďőńÝň ĺęôýđůóçň.\n"
"Ěđďńĺßôĺ íá đńďóčÝóĺôĺ ęé Üëëĺň Ţ íá áëëÜîĺôĺ ôéň őđÜń÷ďőóĺň."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Ńýčěéóç äéęôýďő"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "ĘáíďíéęŢ ĘáôÜóôáóç"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "¸îďäďň"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "ČÝëĺôĺ íá äďęéěÜóĺôĺ ôéň ńőčěßóĺéň;"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
#, fuzzy
msgid "Modify printer configuration"
msgstr "Ńőčěßóĺéň Äéáäéęôýďő (Internet)"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "ČÝëĺôĺ íá äďęéěÜóĺôĺ ôéň ńőčěßóĺéň;"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
#, fuzzy
msgid "Printer connection type"
msgstr "Óýíäĺóç Internet"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
#, fuzzy
msgid "Printer name, description, location"
msgstr "ĹđéëďăŢ ěďíôÝëďő ĺęôőđůôŢ"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
#, fuzzy
msgid "Print test pages"
msgstr "Ĺęôýđůóç äďęéěáóôéęţí óĺëßäůí..."
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "ČÝëĺôĺ íá äďęéěÜóĺôĺ ôéň ńőčěßóĺéň;"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
#, fuzzy
msgid "Remove printer"
msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
#, fuzzy
msgid "Default printer"
msgstr "Ôďđéęüň ĺęôőđůôŢň"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "ČÝëĺôĺ íá ĺđáíĺęęéíŢóĺôĺ ôď äßęôőď;"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -8374,24 +8568,61 @@ msgstr "Ďé ęůäéęďß đńüóâáóçň ĺßíáé áíüěďéďé. ĐńďóđáčŢóôĺ îáíÜ!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Äĺí ěđďńţ íá đńďóčÝóů ęáôÜôěçóç óôď _ěďńöďđďéçěÝíď_ RAID md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Äĺí ěđďńţ íá áđďčçęĺýóů ôď áń÷ĺßď %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "áđďôő÷ßá mkraid"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "áđďôő÷ßá mkraid (ěŢđůň áđďőóéÜćďőí ôá raidtools;)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Äĺí őđÜń÷ďőí áńęĺôÝň ęáôáôěŢóĺéň ăéá RAID ĺđéđÝäďő %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Áőôü ôď ĺđßđĺäď đńÝđĺé íá ÷ńçóéěďđďéçčĺß ěĺ đńďóď÷Ţ. ĘÜíĺé ôď óýóôçěÜ óáň\n"
+"đéď ĺőęďëü÷ńçóôď, áëëÜ đďëý ĺőáßóčçôď. Äĺí đńÝđĺé íá ÷ńçóéěďđďéçčĺß óĺ "
+"óýóôçěá\n"
+"óőíäĺäĺěÝíď óôď Internet Ţ LAN. Äĺí őđÜń÷ďőí ëÝîĺéň ęëĺéäéÜ."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+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 ""
+"Ěĺ áőôü ôď ĺđßđĺäď áóöáëĺßáň ĺßíáé äőíáôŢ ç ÷ńŢóç ôďő óőóôŢěáôďň óôď \n"
+"Internet ůň ĺîőđçńĺôçôŢ. Ç áóöÜëĺéá ĺßíáé áńęĺôÜ őřçëŢ ţóôĺ íá äÝ÷ĺôáé\n"
+"ôáőôü÷ńďíĺň óőíäÝóĺéň áđü đďëëďýň đĺëÜôĺň."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Ńýčěéóç LÁÍ"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "ĹđéëďăÝň"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Ĺęęßíçóç ôďő ALSA (Advanced Linux Sound Architecture) óőóôŢěáôďň Ţ÷ďő"
@@ -8449,7 +8680,7 @@ msgstr ""
"Ôď HardDrake ôńÝ÷ĺé ěéá áíß÷íĺőóç őëéęďý ęáé đńďáéńĺôéęÜ ńőčěßćĺé\n"
"ôď íÝď/áëëáăěÝíď őëéęü."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8528,7 +8759,7 @@ msgstr ""
"Linux Virtual ĹîőđçńĺôçôŢň, ÷ńçóéěďđďéĺßôáé ăéá íá äçěéďőńăŢóĺé Ýíáí őřçëŢň\n"
"áđüäďóçň ęáé äéáčĺóéěüôçôáň ĺîőđçńĺôçôŢ."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -8607,7 +8838,7 @@ msgstr ""
"áđü đńďôüęďëá üđůň ôď NFS ęáé ôď NIS. ĐńÝđĺé íá ĺßíáé ĺíĺńăďđďéçěÝíď óĺ \n"
"óőóôŢěáôá đďő äńďőí ůň ĺîőđçńĺôçôÝň ôÝôďéůí đńďôďęüëůí."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -8709,7 +8940,7 @@ msgstr "Éíôĺńíĺô"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "ĘáôÜóôáóç óőóôŢěáôďň"
@@ -8833,6 +9064,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "ĘÝíôńď ĹëÝă÷ďő"
@@ -8936,6 +9168,15 @@ msgstr ""
msgid "Installing packages..."
msgstr "ĹăęáôÜóôáóç đáęÝôďő %s"
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Đáńáęáëţ áđďóőíäĺčĺßôĺ ęáé ěĺôÜ đáôŢóôĺ Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Đáńáęáëţ ĺđáíáóőíäĺčĺßôĺ ůň %s ăéá ĺíĺńăďđďßçóç ôůí áëëáăţí"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8944,6 +9185,161 @@ msgstr ""
"Äĺí ěđďńţ íá äéáâÜóů ôďí đßíáęá ęáôáôěŢóĺůí, ĺßíáé đďëý ęáôĺóôńáěÝíďň :(\n"
"Čá đńďóđáčŢóů íá óőíĺ÷ßóů áöáéńţíôáň ôéň ëáíčáóěÝíĺň ęáôáôěŢóĺéň"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Ńőčěßóĺéň Äéáäéęôýďő (Internet)"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "ÂÜóç ÄĺäďěÝíůí"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "ÂÜóç ÄĺäďěÝíůí"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "ĹîőđçńĺôçôŢň NIS"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "ĹîőđçńĺôçôŢň NIS"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "ĐńďóčŢęç ÷ńŢóôç"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "ĐĺëÜôçň DHCP"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#, fuzzy
+msgid "Help"
+msgstr "/_ÂďŢčĺéá"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Äĺ óőíäÝčçęĺ"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "ÄéáăńáöŢ"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "ĹđéëÝîôĺ áń÷ĺßď"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "ĐńďóčŢęç ÷ńŢóôç"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "ĐĺëÜôçň DHCP"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Ńýčěéóç..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "ĺđáíáńýčěéóç"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Đáńáęáëţ ĺéóÜăĺôĺ ôç äéóęÝôôá Ĺęęßíçóçň óôďí ďäçăü %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Äĺí őđÜń÷ĺé äéáčÝóéěďň ďäçăüň äéóęÝôôáň"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "ÓöÜëěá!"
@@ -8984,6 +9380,11 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Đńďĺôďéěáóßá äéóęÝôáň áőôüěáôçň ĺăęáôÜóôáóçň"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -8992,47 +9393,40 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Óőă÷áńçôŢńéá!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "ĹăęáôÜóôáóç"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "ĐńďóčŢęç ÷ńŢóôç"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "Ěďńöďđďßçóç áń÷ĺßďő loopback %s"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9040,15 +9434,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9056,709 +9442,772 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "ÓöÜëěá ęáôÜ ôçí áíÜăíůóç ôďő áń÷ĺßďő %s"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "ĹđéëďăŢ đáęÝôůí"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôá đáęÝôá đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ"
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "ÄéáăńáöŢ ďőńÜň"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Áöáßńĺóç Windows(TM)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr "Ęůäéęü üíďěá"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Đáńáęáëţ äďęéěÜóôĺ ôď đďíôßęé"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "Đáńáęáëţ đńďóđáčŢóôĺ îáíÜ"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "Đáńáęáëţ đńďóđáčŢóôĺ îáíÜ"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "îáíáđëçęôńďëďăŢóôĺ ôďí ęůäéęü đńüóâáóçň"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Óýíäĺóç LAN"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Ôńüđďň óýíäĺóçň ĺęôőđůôŢ"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Đáńáęáëţ ĺđéëÝîôĺ äéáńýčěéóç đëçęôńďëďăßďő."
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Đáńáęáëţ ęÜíôĺ ęëéę óĺ ěéá ęáôÜôěçóç"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôá đáęÝôá đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ"
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôá đáęÝôá đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "Đáńáęáëţ äďęéěÜóôĺ ôď đďíôßęé"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "ÓőóęĺőŢ äéęôýďő"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Ôýđďň"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "Ęůäéęü üíďěá"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôá đáęÝôá đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Đáńáęáëţ ĺđéëÝîôĺ ěéá ăëţóóá."
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Ĺíôďđéóěüň óęëçńďý äßóęďő"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Ęůäéęü üíďěá"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr "Ěĺ ńďäÜęé"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr "Ěĺ ńďäÜęé"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "ĐáńÜěĺôńďé ďäçăďý"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Ńőčěßóĺéň äéęôýďő"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôá đáęÝôá đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôá đáęÝôá đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "Đńďĺô. óőó. áń÷."
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "ÓőóęĺőŢ đďíôéęéďý: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "ĹđéëďăÝň"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Óĺ đďéÜ óĺéńéáęŢ đüńôá ĺßíáé óőíäĺäĺěÝíď ôď modem óáň;"
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "Ńőčěßóĺéň äéęôýďő"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôýđď đďíôéęéďý."
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Đáńáęáëţ äďęéěÜóôĺ ôď đďíôßęé"
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "Óýíäĺóç LAN"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Ôńüđďň óýíäĺóçň ĺęôőđůôŢ"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "ĹđáíáöďńÜ áđü äéóęÝôôá"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôýđď đďíôéęéďý."
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "śëëď"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "ĹăęáôÜóôáóç óőóôŢěáôďň"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "ĹđáíáöďńÜ áđü áń÷ĺßď"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "ĹđáíáöďńÜ áđü áń÷ĺßď"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "ĐńďóáńěďóěÝíď"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/_ÂďŢčĺéá"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
#, fuzzy
msgid "Previous"
msgstr "<- Đńďçăďýěĺíď"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr "ĘáôÜóôáóç:"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr "ĹđáíáöďńÜ áđü áń÷ĺßď"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr "Ĺđüěĺíď -ť"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "ĹđéëďăŢ đáęÝôůí"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Čá ĺăęáôáóôáčďýí ôá đáńáęÜôů đáęÝôá"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "Đáńáęáëţ ĺđéëÝîôĺ ěéá ăëţóóá."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "Đáńáęáëţ ĺđéëÝîôĺ ěéá ăëţóóá."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "Đáńáęáëţ ĺđéëÝîôĺ ěéá ăëţóóá."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "ÁđďčŢęĺőóç óĺ áń÷ĺßď"
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "Đáńáęáëţ äďęéěÜóôĺ ôď đďíôßęé"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôá đáęÝôá đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ"
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Ńőčěßóĺéň äéęôýďő"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "Ńőčěßóĺéň äéęôýďő"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "Ńýčěéóç LÁÍ"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "Ńýčěéóç LÁÍ"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "Đńďĺô. óőó. áń÷."
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9790,7 +10239,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9799,7 +10248,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9840,7 +10289,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9868,12 +10317,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -9890,7 +10344,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9930,7 +10384,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9941,7 +10395,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9954,7 +10408,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9998,103 +10452,531 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Ç ĺăęáôÜóôáóç ôďő %s áđÝôő÷ĺ. ĐńďęëŢčçęĺ ôď áęüëďőčď óöÜëěá:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Ĺńăáëĺßá ęďíóüëáň"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "ĘÝíôńď ĹëÝă÷ďő"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "Ăéá ĺéäéęďýň"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Đďíôßęé"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "źíďěá đüńďő:"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "ĹęôőđůôŢň"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Ďäçăüň Ńýčěéóçň Äéęôýďő"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Đéóôďđďßçóç ôáőôüôçôáň"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "ĹđéëďăŢ đáęÝôůí"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Đáńáęáëţ đĺńéěÝíĺôĺ"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "¸îďäďň"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "đüńôá"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr ""
+"Ěđďńĺßôĺ íá ĺđéëÝîĺôĺ ęáé Üëëĺň ăëţóóĺň đďő čá ĺßíáé äéáčÝóéěĺň ěĺôÜ ôď "
+"đÝńáň ôçň ĺăęáôÜóôáóçň"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Ńýčěéóç äéęôýďő (%d adapters)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Đńďößë: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "ÄéáăńáöŢ đńďößë..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Đńďößë ăéá äéáăńáöŢ:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "ÍÝď đńďößë..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "źíďěá óőóôŢěáôďň: "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Đńüóâáóç óôď Internet"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Ôýđďň:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Đýëç äéęôýďő:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "ÄéĺđéöÜíĺéá:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "ĘáôÜóôáóç:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Ńýčěéóç Đńüóâáóçň óôď Internet..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "Ńýčěéóç LAN"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Ďäçăüň"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "ÄéĺđéöÜíĺéá"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Đńůôüęďëëď"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "State"
+msgstr "ĘáôÜóôáóç:"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Ńýčěéóç ôďđéęďý äéęôýďő..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "ĚÜăďň..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Ĺíĺńăďđďßçóç"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Đáńáęáëţ đĺńéěÝíĺôĺ... ĹöáńěďăŢ ńőčěßóĺůí"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "ÓőíäÝčçęĺ"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Äĺ óőíäÝčçęĺ"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Óýíäĺóç..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Áđďóýíäĺóç..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Äĺí Ý÷ĺôĺ ęÜđďéá ńőčéóěÝíç äéĺđéöÜíĺéá.\n"
+"Ńőčěßóôĺ ôéň ęÜíďíôáň ęëßę óôď 'Ńýčěéóç'"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "Ńýčěéóç LÁÍ"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "ĐńďóáńěďăÝáň %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Đńůôüęďëëď Ĺęęßíçóçň"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Îĺęßíçóáí óôçí ĺęęßíçóç óőóôŢěáôďň"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "đĺëÜôçň DHCP"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Äĺí Ý÷ĺôĺ óýíäĺóç ěĺ ôď internet.\n"
+"ÄçěéďőńăŢóôĺ ěßá ęÜíďíôáň ęëßę óôď 'Ńýčěéóç'"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Ńýčěéóç óýíäĺóçň Äéáäéęôýďő (internet)"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Ńýčěéóç Óýíäĺóçň Äéáäéęôýďő (internet)"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Ôýđďň óýíäĺóçň: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "ĐáńÜěĺôńďé"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Đýëç äéęôýďő"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "ĘÜńôá Ethernet"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "ĐĺëÜôçň DHCP"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "÷ńŢóç: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "źíďěá áńčńţěáôďň (module)"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "ĚÝăĺčďň"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "äçěéďőńăßá äéóęÝôôáň ĺęęßíçóçň"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "ĺî' ďńéóěďý"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "ÓöÜëěá DrakFloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "Ýęäďóç đőńŢíá"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "ĂĺíéęÜ"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Đĺńéď÷Ţ Đńď÷ůńçěÝíůí"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "đńďáéńĺôéęÝň ĺđéëďăÝň ôďő mkinitrd"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "ĐńďóčŢęç áńčńţěáôďň (module)"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "ěĺôÜ âßáň"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "áí ÷ńĺéÜćĺôáé"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "đáńÜëĺéřç ôůí áńčńůěÜôůí (modules) scsi"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "đáńÜëĺéřç ôůí áńčńůěÜôůí (modules) raid"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "ÁđďěÜęńőíóç áńčńţěáôďň (module)"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "¸îďäďň (Output)"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Äçěéďőńăßá äéóęÝôôáň"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Óéăďőńĺőôĺßôĺ đůň Ýíá ěÝóď ĺßíáé đáńüí ăéá ôç óőóęĺőŢ %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"Äĺí őđÜń÷ĺé ěÝóď ăéá ôç óőóęĺőŢ %s.\n"
+"Đáńáęáëţ ĺéóÜăĺôĺ Ýíá."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Áäőíáěßá fork: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Áäőíáěßá óůóôďý ôĺńěáôéóěďý ôďő mkbootdisk: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "äĺí âńÝčçęĺ đńďóáńěďăÝáň äéęôýďő"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr "Ďëďęëçńţčçęĺ"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr ""
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "Đńďĺôďéěáóßá ĺăęáôÜóôáóçň"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr ""
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "áđáăüńĺőóç"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10103,122 +10985,121 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "Ěďńöďđ. ęáôáôěŢó."
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Ńýčěéóç LÁÍ"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr "Óçěĺßď óýíäĺóçň"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "ĹđéëÝîôĺ ęáôáôěŢóĺéň đńďň ěďńöďđďßçóç"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "Ăńáöĺßď"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr "Áęýńůóç"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr "ĹęôőđůôŢň"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "ĹăęáôÜóôáóç óőóôŢěáôďň"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "ĹđéëÝîôĺ áń÷ĺßď"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
#, fuzzy
msgid "Initials tests"
msgstr "ĚŢíőěá Init"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr "Äĺí âńÝčçęĺ đńďóáńěďăÝáň äéęôýďő óôď óýóôçěÜ óáň!"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "ĹăęáôÜóôáóç"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr "Äĺí âńÝčçęĺ đńďóáńěďăÝáň äéęôýďő óôď óýóôçěÜ óáň!"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "¸îďäďň"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Ĺđéěĺńéóěüň óýíäĺóçň Internet"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Ĺđéěĺńéóěüň óýíäĺóçň Internet ĺíĺńăďđďéçěÝíďň"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10230,31 +11111,31 @@ msgstr ""
"\n"
"Ôß čÝëĺôĺ íá ęÜíĺôĺ;"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "áđĺíĺńăďđďßçóç"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "Üęőńď"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "ĺđáíáńýčěéóç"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Áđĺíĺńăďđďßçóç ĺîőđçńĺôçôţí..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Ĺđéěĺńéóěüň óýíäĺóçň Internet áđĺíĺńăďđďéçěÝíďň"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Ĺđéěĺńéóěüň óýíäĺóçň Internet áđĺíĺńăďđďéçěÝíďň"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10266,19 +11147,19 @@ msgstr ""
"\n"
"Ôß čÝëĺôĺ íá ęÜíĺôĺ;"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "ĺíĺńăďđďßçóç"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Ĺíĺńăďđďßçóç ĺîőđçńĺôçôţí..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Ĺđéěĺńéóěüň óýíäĺóçň Internet ĺíĺńăďđďéçěÝíďň"
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10293,21 +11174,21 @@ msgstr ""
"Óçěĺßůóç: ×ńĺéÜćĺóôĺ Ýíáí đńďóáńěďăÝá äéęôýďő Ýôóé ţóôĺ íá äçěéďőńăŢóĺôĺ Ýíá "
"ôďđéęü äßęôőď (LAN)."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "ÄéĺđéöÜíĺéá %s (÷ńŢóç áńčńţěáôďň %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "ÄéĺđéöÜíĺéá %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Äĺí âńÝčçęĺ đńďóáńěďăÝáň äéęôýďő óôď óýóôçěÜ óáň!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10315,11 +11196,11 @@ msgstr ""
"Äĺí âńÝčçęĺ đńďóáńěďăÝáň äéęôýďő Ethernet óôď óýóôçěÜ óáň. Đáńáęáëţ "
"÷ńçóéěďđďéĺßóôĺ ôď đńüăńáěěá ńýčěéóçň őëéęďý."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "ÓőóęĺőŢ äéęôýďő"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10334,7 +11215,7 @@ msgstr ""
"\n"
"Čá ńőčěéóôĺß ôď Ôďđéęü óáň Äßęôőď ěĺ áőôüí ôďí đńďóáńěďăÝá."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -10342,12 +11223,12 @@ msgstr ""
"Đáńáęáëţ ĺđéëÝîôĺ ôé đńďóáńěďăÝáň äéęôýďő čá óőíäĺčĺß\n"
"óôď ôďđéęü óáň äßęôőď."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "Ç ďčüíç äĺí Ý÷ĺé ńőčěéóôĺß áęüěç"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10357,17 +11238,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Boot Ôýđďő Ńýčěéóç"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "Ńőčěßóĺéň Äéáäéęôýďő (Internet)"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10378,7 +11259,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
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 C-Class Network that "
@@ -10390,34 +11271,34 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP äéĺýčőíóç ĺîőđçńĺôçôŢ CUPS:"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"ĐéčáíŢ ĺđáíá÷ńçóéěďđďßçóç ôçň äéĺýčőíóçň LAN óôçí ôńÝ÷ďőóá ńýčěéóç ôďő %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Áíé÷íĺýôçęĺ ńýčěéóç firewall!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10425,20 +11306,20 @@ msgstr ""
"Đńďóď÷Ţ! Áíé÷íĺýôçęĺ őđÜń÷ďőóá ńýčěéóç firewall. şóůň ÷ńĺéáóôďýí ďńéóěÝíĺň"
"\"÷ĺéńďęßíçôĺň\" ńőčěßóĺéň ěĺôÜ ôçí ĺăęáôÜóôáóç."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Ńýčěéóç..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Ńýčěéóç, ĺăęáôÜóôáóç ëďăéóěéęďý, ĺęęßíçóç ĺîőđçńĺôçôţí..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Đńüâëçěá ęáôÜ ôçí ĺăęáôÜóôáóç ôďő đáęÝôďő %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10449,23 +11330,23 @@ msgstr ""
"őđďëďăéóôÝň óôď ôďđéęü óáň äßęôőď, ěĺ ôçí ÷ńŢóç áőôüěáôçň ńýčěéóçň äéęôýďő "
"(DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "Ç ńýčěéóç Ý÷ĺé Ţäç ăßíĺé, áëëÜ áőôŢ ôç óôéăěŢ ĺßíáé áđĺíĺńăďđďéçěÝíç."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Ç ńýčěéóç Ý÷ĺé Ţäç ăßíĺé, ęáé áőôŢ ôç óôéăěŢ ĺßíáé ĺíĺńăďđďéçěÝíç."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Ď Ĺđéěĺńéóěüň óýíäĺóçň Internet äĺí Ý÷ĺé ńőčěéóôĺß đďôÝ."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Ńýčěéóç ĺđéěĺńéóěďý óýíäĺóçň Äéáäéęôýďő (internet)"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10480,211 +11361,6 @@ msgstr ""
"\n"
"ĘÜíôĺ ęëßę óôď Ńýčěéóç ăéá íá îĺęéíŢóĺôĺ ôďí ďäçăü ĺăęáôÜóôáóçň."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Ńýčěéóç äéęôýďő (%d adapters)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Đńďößë: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "ÄéáăńáöŢ đńďößë..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Đńďößë ăéá äéáăńáöŢ:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "ÍÝď đńďößë..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "źíďěá óőóôŢěáôďň: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Đńüóâáóç óôď Internet"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Ôýđďň:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Đýëç äéęôýďő:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "ÄéĺđéöÜíĺéá:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "ĘáôÜóôáóç:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Ńýčěéóç Đńüóâáóçň óôď Internet..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Ńýčěéóç LAN"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Ďäçăüň"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "ÄéĺđéöÜíĺéá"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Đńůôüęďëëď"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "ĘáôÜóôáóç:"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Ńýčěéóç ôďđéęďý äéęôýďő..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "ĚÜăďň..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Ĺíĺńăďđďßçóç"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Đáńáęáëţ đĺńéěÝíĺôĺ... ĹöáńěďăŢ ńőčěßóĺůí"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "ÓőíäÝčçęĺ"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Äĺ óőíäÝčçęĺ"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Óýíäĺóç..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Áđďóýíäĺóç..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Äĺí Ý÷ĺôĺ ęÜđďéá ńőčéóěÝíç äéĺđéöÜíĺéá.\n"
-"Ńőčěßóôĺ ôéň ęÜíďíôáň ęëßę óôď 'Ńýčěéóç'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Ńýčěéóç LÁÍ"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "ĐńďóáńěďăÝáň %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Đńůôüęďëëď Ĺęęßíçóçň"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Îĺęßíçóáí óôçí ĺęęßíçóç óőóôŢěáôďň"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "đĺëÜôçň DHCP"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr ""
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr ""
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Äĺí Ý÷ĺôĺ óýíäĺóç ěĺ ôď internet.\n"
-"ÄçěéďőńăŢóôĺ ěßá ęÜíďíôáň ęëßę óôď 'Ńýčěéóç'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Ńýčěéóç óýíäĺóçň Äéáäéęôýďő (internet)"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Ńýčěéóç Óýíäĺóçň Äéáäéęôýďő (internet)"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Ôýđďň óýíäĺóçň: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "ĐáńÜěĺôńďé"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Đýëç äéęôýďő"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "ĘÜńôá Ethernet"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "ĐĺëÜôçň DHCP"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Ńýčěéóç ĺđéđÝäďő áóöáëĺßáň"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "ĘÝíôńď ĹëÝă÷ďő"
@@ -10693,94 +11369,130 @@ msgstr "ĘÝíôńď ĹëÝă÷ďő"
msgid "Choose the tool you want to use"
msgstr "ĹđéëÝîôĺ ôď ĺńăáëĺßď đďő čÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\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 ""
+
+#: ../../standalone/drakxtv_.c:72
#, fuzzy
msgid "Canada (cable)"
msgstr "Ęáíáäéęü (ĘĺěđÝę)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "East Europe"
msgstr "Ĺőńţđç"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Ăáëëéęü"
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr "Éóëáíäéęü"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "West Europe"
msgstr "Ĺőńţđç"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr "óĺéńéáęü"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "ĐńďęëŢčçęĺ óöÜëěá ęáôÜ ôçí ĺăęáôÜóôáóç ôůí đáęÝôůí:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10824,7 +11536,7 @@ msgstr "Äĺí ěđďńţ íá îĺęéíŢóů ôď live upgrade!!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -10842,7 +11554,7 @@ msgstr "<control>N"
#: ../../standalone/logdrake_.c:103
msgid "/File/_Open"
-msgstr "/Áń÷ĺßď/_Áíďéăěá"
+msgstr "/Áń÷ĺßď/ś_íďéăěá"
#: ../../standalone/logdrake_.c:103
msgid "<control>O"
@@ -10850,7 +11562,7 @@ msgstr "<control>O"
#: ../../standalone/logdrake_.c:104
msgid "/File/_Save"
-msgstr "/Áń÷ĺßď/Áđď_čŢęĺőóç"
+msgstr "Áń÷ĺßď/Áđď_čŢęĺőóç"
#: ../../standalone/logdrake_.c:104
msgid "<control>S"
@@ -10870,11 +11582,7 @@ msgstr "/_ĹđéëďăÝň"
#: ../../standalone/logdrake_.c:109
msgid "/Options/Test"
-msgstr "/ĹđéëďăÝň/ÔÝóô"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_ÂďŢčĺéá"
+msgstr "/ĹđéëďăÝň/Ôĺóô"
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
@@ -10939,7 +11647,7 @@ msgstr "Çěĺńďëüăéď"
msgid "Content of the file"
msgstr "Đĺńéĺ÷üěĺíď ôďő áń÷ĺßďő"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -10948,12 +11656,12 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr "đáńáęáëţ đĺńéěÝíĺôĺ, ĺđĺîĺńăáóßá áń÷ĺßďő: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "ĹëáöńéÜ ńýčěéóç"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
#, fuzzy
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
@@ -10965,68 +11673,99 @@ msgstr ""
"Ĺäţ, čá ěđďńÝóĺôĺ íá ńőčěßóĺôĺ ôďőň http ęáé ftp proxies\n"
"ěĺ Ţ ÷ůńßň login ęáé ęůäéęü đńüóâáóçň\n"
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache, Pro-ftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
+msgid "Apache World Wide Web Server"
msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "źíďěá äéęôýďő"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "Ext2"
+msgid "Ftp Server"
+msgstr "ĹîőđçńĺôçôŢň NIS"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "ĹîőđçńĺôçôŢň ôá÷őäńďěĺßďő Postfix, ĺîőđçńĺôçôŢň íĺţí Inn"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "ĹîőđçńĺôçôŢň NIS"
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "ĹîőđçńĺôçôŢň NIS"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "ĹîőđçńĺôçôŢň"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "ĹîőđçńĺôçôŢň ĺęôőđţóĺůí"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "ĹîőđçńĺôçôŢň"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "Ěďńöďđďßçóç"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "Ńőčěßóĺéň ÷ńůěÜôůí"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "ÁđďčŢęĺőóç Ůň"
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôýđď đďíôéęéďý."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "äĺí âńÝčçęĺ serial_usb\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Ĺîďěďßůóç ôńßôďő đëŢęôńďő;"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "ÁíÜăíůóç âÜóçň ďäçăţí CUPS"
+
+#: ../../standalone/scannerdrake_.c:42
+#, fuzzy
+msgid "Detecting devices ..."
+msgstr "Ĺíôďđéóěüň óőóęĺőţí..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -11070,6 +11809,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "Ńýčěéóç Firewalling"
@@ -11485,10 +12236,6 @@ msgid "Multimedia - Sound"
msgstr "ĐďëőěÝóá - š÷ďň"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Ĺńăáëĺßá"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Ôĺęěçńßůóç"
@@ -11592,10 +12339,6 @@ msgstr ""
"ęáé Web Browsers"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Áń÷ĺéďčÝôçóç, ĺîďěďéůôÝň, đáńáęďëďýčçóç"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Äéá÷ĺßńçóç đńďóůđéęţí ďéęďíďěéęţí äĺäďěÝíůí"
@@ -11641,1484 +12384,158 @@ msgstr "ĐďëőěÝóá - ĹăăńáöŢ CD"
msgid "Scientific Workstation"
msgstr "Óôáčěüň Ĺńăáóßáň Ĺđéóôçěďíéęţí ĺöáńěďăţí"
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Áęýńůóç"
-
-#, fuzzy
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#, fuzzy
-#~ msgid "None"
-#~ msgstr "Ďëďęëçńţčçęĺ"
-
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "ĹđéëÝîôĺ ôďí ĺî' ďńéóěďý ÷ńŢóôç:"
-
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Ěđďńĺßôĺ ôţńá íá äţóĺôĺ đáńáěÝôńďőň ăéá ôďí ďäçăü %s"
-
-#~ msgid "mount failed"
-#~ msgstr "óýíäĺóç áđÝôő÷ĺ"
-
-#~ msgid "Low"
-#~ msgstr "×áěçëü"
-
-#~ msgid "Medium"
-#~ msgstr "ĚÝôńéď"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Ëßăĺň âĺëôéţóĺéň áóöáëĺßáň, ç ęýńéá ĺßíáé üôé őđÜń÷ďőí đĺńéóóüôĺńĺň \n"
-#~ "đńďĺéäďđďéŢóĺéň ęáé Ýëĺă÷ďé."
-
-#~ msgid "Boot mode"
-#~ msgstr "Ëĺéôďőńăßá ĺęęßíçóçň"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Ăéá ĺéäéęďýň"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "Ôď GNU/Linux ÷ĺéńßćĺôáé ôçí ţńá óĺ GMT (\"Greenwich Mean Time\" Ţ \n"
-#~ "\"ĚĺóçěâńéíŢ żńá ĂęńŢíďőéôň\") ęáé ôçí ěĺôáôńÝđĺé óĺ ôďđéęŢ ţńá\n"
-#~ "âÜóĺé ôçň ćţíçň ţńáň đďő čá ĺđéëÝîĺôĺ."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "Óýíäĺóç óôď äéáäßęôőď (internet)"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Áđďóýíäĺóç áđü ôď äéáäßęôőď (internet)"
-
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Ńýčěéóç óýíäĺóçň óôď äßęôőď (ôďđéęü Ţ Äéáäßęôőď)"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Óĺ đďéüí äßóęď čÝëĺôĺ íá ěĺôáęéíçčĺßôĺ;"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôá đáęÝôá đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ"
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "ôď fsck áđÝôő÷ĺ ěĺ ęůäéęü ĺîüäďő %d Ţ óŢěá %d"
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Đëçńďöďńßĺň"
+#~ msgid "Choose options for server"
+#~ msgstr "Ńőčěßóĺéň X server"
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Óôáčěüň ĺńăáóßáň Gnome"
+#~ msgid "Monitor not configured"
+#~ msgstr "Ç ďčüíç äĺí Ý÷ĺé ńőčěéóôĺß áęüěç"
-#~ msgid "authentification"
-#~ msgstr "áőčĺíôéęüôçôá"
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Ç ęÜńôá ăńáöéęţí äĺí Ý÷ĺé ńőčěéóôĺß áęüěç"
-#~ msgid "user"
-#~ msgstr "÷ńŢóôçň"
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Äĺí Ý÷ďőí ĺđéëĺăĺß áíáëýóĺéň áęüěç"
-#, fuzzy
#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
#~ "\n"
-#~ msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôýđď đďíôéęéďý."
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "¸îďäďň"
-
-#, fuzzy
-#~ msgid "Removable media"
-#~ msgstr "Áőôüěáôç óýíäĺóç áđďóđţěĺíůí ěďíÜäůí áđďčŢęĺőóçň"
-
-#~ msgid "Active"
-#~ msgstr "Ĺíĺńăü"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "ź÷é"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "¸íáň ĺęôőđůôŢň ôýđďő \"%s\" ĺíôďđßóôçęĺ óôď "
-
-#~ msgid "Local Printer Device"
-#~ msgstr "ÓőóęĺőŢ ôďđéęďý ĺęôőđůôŢ"
-
-#~ msgid "Printer Device"
-#~ msgstr "ÓőóęĺőŢ ĺęôőđůôŢ"
-
-#~ msgid "Device/file name missing!"
-#~ msgstr "Ôď áń÷ĺßď óőóęĺőŢň ëĺßđĺé!"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "ÁđďěĺěáęńőóěÝíďň ĺîőđçńĺôçôŢň CUPS"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "ÁđďěĺěáęńőóěÝíďň ĺîőđçńĺôçôŢň CUPS"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "ĘáôÜóôáóç óőóôŢěáôďň"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "śëëď"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Đáńáęáëţ ĺđéëÝîôĺ äéáńýčěéóç đëçęôńďëďăßďő."
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Đáńáęáëţ ęÜíôĺ ęëéę óĺ ěéá ęáôÜôěçóç"
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Ôýđďň: "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "Ńýčěéóç ×"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "ÓőóęĺőŢ ĺęôőđůôŢ"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Áęýńůóç"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "Ďę"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Ęëĺßóéěď"
-
-#~ msgid "Starting your connection..."
-#~ msgstr "Ĺęęßíçóç óýíäĺóçň..."
-
-#~ msgid "Closing your connection..."
-#~ msgstr "Ęëĺßóéěď óýíäĺóçň..."
-
-#~ msgid ""
-#~ "The connection is not closed.\n"
-#~ "Try to do it manually by running\n"
-#~ "/etc/sysconfig/network-scripts/net_cnx_down\n"
-#~ "in root."
-#~ msgstr ""
-#~ "Ç óýíäĺóç äĺí Ýęëĺéóĺ.\n"
-#~ "ĐńďóđáčŢóôĺ íá ôď ęÜíĺôĺ ěüíďň óáň ôńÝ÷ďíôáň\n"
-#~ "/etc/sysconfig/network-scripts/net_cnx_down\n"
-#~ "ůň root."
-
-#~ msgid "The system is now disconnected."
-#~ msgstr "Ôď óýóôçěá äĺí ĺßíáé óőíäĺäĺěÝíď óôď Äéáäßęôőď."
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "ĹđéëÝîôĺ ôď ěÝăĺčďň đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ"
-
-#~ msgid "Total size: "
-#~ msgstr "Óőíďëéęü ěÝăĺčďň: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Đáńáęáëţ đĺńéěÝíĺôĺ, "
-
-#~ msgid "Total time "
-#~ msgstr "Óőíďëéęüň ÷ńüíďň "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "Íá ÷ńçóéěďđďéŢóů ôéň őđÜń÷ďőóĺň ńőčěßóĺéň ăéá ôá ×11;"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
-#~ msgstr ""
-#~ "Óĺ đďéÜ óőóęĺőŢ ĺßíáé óőíäĺäĺěÝíďň ď ĺęôőđůôŢň óáň;\n"
-#~ "(óçěĺßůóç: ôď /dev/lp0 áíôéóôďé÷ĺß óôď LPT1:)\n"
-
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr ""
-#~ "Đńďóď÷Ţ, ď đńďóáńěďăÝáň äéęôýďő ĺßíáé Ţäç ńőčěéóěÝíďň. Čá ôďí "
-#~ "ĺđáíáńőčěßóů."
-
-#~ msgid "New"
-#~ msgstr "ÍÝď"
-
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "źíďěá áđďěĺěáęńőóěÝíçň ďőńÜň"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Đáńáęáëţ ęÜíôĺ ęëéę óĺ ěéá ęáôÜôěçóç"
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Áěöéâďëď (%s), đáńáęáëţ đńďóäéďńéóôĺ ęáëýôĺńá\n"
-
-#~ msgid " ? (default %s) "
-#~ msgstr " ; (ĺî' ďńéóěďý %s) "
-
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "Ç ĺđéëďăŢ óáň; (ĺî' ďńéóěďý %s ĺéóÜăĺôĺ `none' ăéá ęáíÝíá) "
-
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "áäőíáěßá áíďßăěáôďň ôďő /etc/sysconfig/autologin ăéá áíÜăíůóç: %s"
-
-#~ msgid "Do you want to restart the network"
-#~ msgstr "ČÝëĺôĺ íá ĺđáíĺęęéíŢóĺôĺ ôď äßęôőď;"
-
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "Óőěöůíĺßôĺ;"
-
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Čá ĺđáíĺęęéíŢóů ôçí đáńáęÜôů óőóęĺőŢ äéęôýďő:\n"
-
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "Čá ĺđáíĺęęéíŢóů ôçí óőóęĺőŢ äéęôýďő %s. Óőěöůíĺßôĺ;"
-
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Ĺęôüň ęáé áí ĺßóôĺ óßăďőńďé üôé äĺí ĺßíáé Ýôóé, ç óőíçčéóěÝíç ĺđéëďăŢ\n"
-#~ "ĺßíáé \"/dev/hda\" (ď đńţôďň äßóęďň óôď đńţôď ęáíÜëé), Ţ \"/dev/sda\n"
-#~ "(ď đńţôďň SCSI äßóęďň)."
-
-#, fuzzy
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "ĹđéëÝîôĺ ôďí ĺî' ďńéóěďý ÷ńŢóôç:"
-
-#~ msgid "Spooler: "
-#~ msgstr "Spooler: "
-
-#~ msgid "Test the mouse here."
-#~ msgstr "ÄďęéěÜóôĺ ôď đďíôßęé ĺäţ."
-
-#~ msgid "Press next to continue."
-#~ msgstr "ĐáôŢóôĺ ĺđüěĺíď ăéá íá óőíĺ÷ßóĺôĺ."
-
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr "Đáńáęáëţ ĺđéëÝîôĺ ăëţóóá ăéá ĺăęáôÜóôáóç ęáé ÷ńŢóç."
-
-#~ msgid ""
-#~ "You need to accept the terms of the above license to continue "
-#~ "installation.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Accept\" if you agree with its terms.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Refuse\" if you disagree with its terms. Installation "
-#~ "will end without modifying your current\n"
-#~ "configuration."
+#~ "try to change some parameters"
#~ msgstr ""
-#~ "ĐńÝđĺé íá áđďäĺ÷čĺßôĺ ôďőň üńďőň ôçň Üäĺéáň ÷ńŢóçň đńéí óőíĺ÷ßóĺôĺ ôçí "
-#~ "ĺăęáôÜóôáóç.\n"
#~ "\n"
-#~ "\n"
-#~ "Đáńáęáëţ ĺđéëÝîôĺ \"Áđďäď÷Ţ\" ĺÜí óőěöůíĺßôĺ ěĺ ôďőň üńďőň.\n"
-#~ "\n"
-#~ "\n"
-#~ "Đáńáęáëţ ĺđéëÝîôĺ \"śńíçóç\" ĺÜí äĺí óőěöůíĺßôĺ. Ç ĺăęáôÜóôáóç čá "
-#~ "óôáěáôŢóĺé ÷ůńßň íá\n"
-#~ "đĺéńá÷ôĺß ôßđďôá."
+#~ "äďęéěÜóôĺ íá áëëÜîĺôĺ ęÜđďéĺň đáńáěÝôńďőň"
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr ""
-#~ "ĹđéëÝîôĺ ôçí äéáńýčěéóç đďő áíôéóôďé÷ĺß óôď đëçęôńďëüăéü óáňáđü ôçí "
-#~ "đáńáđÜíů ëßóôá"
+#~ msgid "An error occurred:"
+#~ msgstr "ĐńďęëŢčçęĺ óöÜëěá:"
-#~ msgid ""
-#~ "If you wish other languages (than the one you choose at\n"
-#~ "beginning of installation) will be available after installation, please "
-#~ "chose\n"
-#~ "them in list above. If you want select all, you just need to select \"All"
-#~ "\"."
-#~ msgstr ""
-#~ "ĹÜí čÝëĺôĺ ęáé Üëëĺň ăëţóóĺň (ĺęôüň áđü áőôŢ đďő ĺđéëÝîáôĺ óôçí áń÷Ţ)\n"
-#~ "đáńáęáëţ ĺđéëÝîôĺ ôéň áđü ôďí đáńáđÜíů ęáôÜëďăď."
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "¸îďäďň óĺ %d äĺőôĺńüëĺđôá"
-#~ msgid ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!"
-#~ msgstr ""
-#~ "ĹđéëÝîôĺ:\n"
-#~ "\n"
-#~ " - ĐńďóáńěďóěÝíç: ĹÜí ĺßóôĺ ĺîďéęĺéůěÝíďň ěĺ ôď Linux, čá ěđďńÝóĺôĺ íá \n"
-#~ "ĺđéëÝîĺôĺ ěĺôáîý óőóôŢěáôďň ăĺíéęŢň ÷ńŢóçň, óőóôŢěáôďň áíÜđôőîçň Ţ "
-#~ "ĺîőđçńĺôçôŢ\n"
-#~ "äéęôýďő.\n"
-#~ "\n"
-#~ "\n"
-#~ " - ĹîĺéäéęĺőěÝíç: ĹÜí ĺßóôĺ đďëý ĺîďéęĺéůěÝíďň ěĺ óőóôŢěáôá GNU/Linux "
-#~ "ęáé\n"
-#~ "čÝëĺôĺ íá đńáăěáôďđďéŢóĺôĺ ěéá ĺîáéńĺôéęÜ đńďóáńěďóěÝíç ĺăęáôÜóôáóç, "
-#~ "ôüôĺ\n"
-#~ "áőôŢ ç ĺđéëďăŢ ĺßíáé ăéá óáň. Čá ěđďńÝóĺôĺ íá ĺđéëÝîĺôĺ ôýđď "
-#~ "ĺăęáôÜóôáóçň\n"
-#~ "üđůň ęáé óôçí đáńáđÜíů (\"ĐńďóáńěďóěÝíç\") ĺđéëďăŢ."
-
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "Ďé ĺđéëďăÝň đďő Ý÷ĺôĺ ó÷ĺôéęÜ ěĺ ôçí ÷ńŢóç ôďő óőóôŢěáôüň óáň \n"
-#~ "ĺßíáé ďé áęüëďőčĺň:\n"
-#~ "\n"
-#~ "* Óôáčěüň ĺńăáóßáň: ĹđéëÝîôĺ áőôŢí ĺÜí óęďđĺýĺôĺ íá ÷ńçóéěďđďéçóĺôĺ ôď "
-#~ "óýóôçěÜ\n"
-#~ " óáň ęőńßůň ăéá ęáčçěĺńéíŢ ÷ńŢóç, óôď óđßôé Ţ óôď ăńáöĺßď. \n"
-#~ "\n"
-#~ "* ÁíÜđôőîç: ĹđéëÝîôĺ áőôü ĺÜí óęďđĺýĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ ôď óýóôçěÜ "
-#~ "óáň\n"
-#~ " ęőńßůň ăéá áíÜđôőîç ëďăéóěéęďý. Čá ĺăęáôáóôáčĺß ěéá đëŢńçň óőëëďăŢ "
-#~ "ĺńăáëĺßůí\n"
-#~ " ăéá ěĺôáăëţôéóç, áđďóöáëěÜôůóç ęáé ěďńöďđďßçóç đçăáßďő ęţäéęá, ęáčţň "
-#~ "ęáé\n"
-#~ " äçěéďőńăßá đáęÝôůí ëďăéóěéęďý.\n"
-#~ "\n"
-#~ "* ĹîőđçńĺôçôŢň: ĹđéëÝîôĺ áőôü ĺÜí óęďđĺýĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ ôď óýóôçěÜ "
-#~ "óáň\n"
-#~ " ůň ĺîőđçńĺôçôŢ, ĺßôĺ áń÷ĺßůí (NFS Ţ SMB), ĺßôĺ ĺęôőđţóĺůí (lp Ţ SMB), "
-#~ "ĺßôĺ\n"
-#~ " đéóôďđďßçóçň (NIS), âÜóçň äĺäďěÝíůí ęëđ. Óĺ áőôŢí ôçí đĺńßđôůóç, äĺí "
-#~ "čá\n"
-#~ " ĺăęáôáóôáčďýí đńÜăěáôá üđůň ôď KDE, ôď Gnome ęëđ."
-
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "Ěđďńĺßôĺ ôţńá íá ĺđéëÝîĺôĺ ôéň ďěÜäĺň đáęÝôůí đďő ĺđéčőěĺßôĺ íá "
-#~ "ĺăęáôáóôŢóĺôĺ Ţ íá áíáâáčěßóĺôĺ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ôď DrakX čá đńďóäéďńßóĺé ĺÜí Ý÷ĺôĺ áńęĺôü ÷ţńď óôďí äßóęď óáň.\n"
-#~ "ĹÜí ü÷é, čá ëÜâĺôĺ ěéá đńďĺéäďđďßçóç. ĹÜí čÝëĺôĺ íá óőíĺ÷ßóĺôĺ, čá "
-#~ "ĺăęáôáóôáčďýí\n"
-#~ "üëĺň ďé ĺđéëĺăěÝíĺň ďěÜäĺň, áëëÜ čá áöáéńĺčďýí ęÜđďéá đáęÝôá ĺëÜóóďíďň "
-#~ "ĺíäéáöÝńďíôďň.\n"
-#~ "Óôď ęÜôů ěÝńďň ôçň ëßóôáň ěđďńĺßôĺ íá ĺđéëÝîĺôĺ \"ĹđéëďăŢ áíĺîÜńôçôůí "
-#~ "đáęÝôůí\". Óĺ áőôŢ\n"
-#~ "ôç đĺńßđôůóç čá đńÝđĺé íá ĺđéëÝîĺôĺ áíÜěĺóá óĺ đáńáđÜíů áđü 1000 đáęÝôá."
-
-#~ msgid ""
-#~ "You can now choose individually all the packages you\n"
-#~ "wish to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can expand or collapse the tree by clicking on options in the left "
-#~ "corner of\n"
-#~ "the packages window.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you prefer to see packages sorted in alphabetic order, click on the "
-#~ "icon\n"
-#~ "\"Toggle flat and group sorted\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want not to be warned on dependencies, click on \"Automatic\n"
-#~ "dependencies\". If you do this, note that unselecting one package may "
-#~ "silently\n"
-#~ "unselect several other packages which depend on it."
-#~ msgstr ""
-#~ "Ěđďńĺßôĺ ôţńá íá ĺđéëÝîĺôĺ áíĺîÜńôçôá üëá ôá đáęÝôá đďő ĺđéčőěĺßôĺ \n"
-#~ "íá ĺăęáôáóôŢóĺôĺ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ěđďńĺßôĺ íá áíáđôýîĺôĺ Ţ íá óőěđôýîĺôĺ ôď äÝíôńď ĺđéëÝăďíôáň ôéň "
-#~ "ĺđéëďăÝň\n"
-#~ "óôçí áńéóôĺńŢ ăůíßá ôďő đáńáčýńďő ôůí đáęÝôůí.\n"
-#~ "\n"
-#~ "\n"
-#~ "ĹÜí đńďôéěÜôĺ íá íá âëÝđĺôĺ ôá đáęÝôá ôáîéíďěçěÝíá áëöáâçôéęÜ, đáôŢóôĺ\n"
-#~ "\"ĹíáëëáăŢ ďěáäďđďßçóçň\".\n"
-#~ "\n"
-#~ "\n"
-#~ "ĹÜí äĺí čÝëĺôĺ íá ëáěâÜíĺôĺ đńďĺéäďđďéŢóĺéň ăéá ĺîáńôŢóĺéň, đáôŢóôĺ\n"
-#~ "\"Áőôüěáôĺň ĺîáńôŢóĺéň\". Óçěĺéţóôĺ üôé óĺ áőôŢí ôçí đĺńßđôůóç, ç \n"
-#~ "áđďĺđéëďăŢ ĺíüň đáęÝôďő ěđďńĺß íá đńďęáëÝóĺé ôçí óéůđçëŢ áđďĺđéëďăŢ \n"
-#~ "ęáé Üëëůí đáęÝôůí đďő ĺîáńôţíôáé áđü áőôü."
-
-#~ msgid ""
-#~ "If you have all the CDs in the list above, click Ok. If you have\n"
-#~ "none of those CDs, click Cancel. If only some CDs are missing, unselect "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "ĹÜí Ý÷ĺôĺ üëá ôá đáńáđÜíů CDs, đáôŢóôĺ Ok.\n"
-#~ "ĹÜí äĺí Ý÷ĺôĺ ęáíÝíá áđü ôá đáńáđÜíů CDs, đáôŢóôĺ Áęýńůóç.\n"
-#~ "ĹÜí äĺí Ý÷ĺôĺ ęÜđďéá áđü áőôÜ, áđďĺđéëÝîôĺ ôá ęáé đáôŢóôĺ Ok."
-
-#~ msgid ""
-#~ "You can now test your mouse. Use buttons and wheel to verify\n"
-#~ "if settings are good. If not, you can click on \"Cancel\" to choose "
-#~ "another\n"
-#~ "driver.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you are installing on an Apple machine with a 1-button mouse, you "
-#~ "will\n"
-#~ "be given the opportunity to define some keyboard keys to emulate the 2nd\n"
-#~ "and 3rd mouse buttons. This will allow you to be able to access the "
-#~ "full\n"
-#~ "functionality of the mouse in both the Linux console and the X Window "
-#~ "GUI.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you have an ADB mouse, please select USB, as the Linux kernel will "
-#~ "take\n"
-#~ "care of mapping your mouse hardware correctly."
-#~ msgstr ""
-#~ "Ôţńá ěđďńĺßôĺ íá äďęéěÜóĺôĺ ôď đďíôßęé óáň. ×ńçóéěďđďéŢóôĺ ôá ęďőěđéÜ ęáé "
-#~ "ôç ńďäÝëá ăéá íá\n"
-#~ "ĺđéâĺâáéţóĺôĺ đůň ďé ńőčěßóĺéň ĺßíáé óůóôÝň. Áí äĺí ĺßíáé, ěđďńĺßôĺ íá "
-#~ "ęÜíĺôĺ ęëßę óôď \"śęőńď\"\n"
-#~ "ăéá íá ĺđéëÝîĺôĺ Ýíáí Üëëď ďäçăü.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ĺáí ęÜíĺôĺ ĺăęáôÜóôáóç óĺ Ýíá ěç÷Üíçěá Apple ěĺ đďíôßęé ĺíüň ęďőěđéďý, čá "
-#~ "óáň äďčĺß ç\n"
-#~ "ĺőęáéńĺßá íá ďńßóĺôĺ ęÜđďéá ęďőěđéÜ ôďő đëçęôńďëďăßďő ţóôĺ íá ĺîďěďéţóĺôĺ "
-#~ "ôď 2ď ęáé ôď 3ď\n"
-#~ "ęďőěđß ôďő đďíôéęéďý. Áőôü čá óáň ĺđéôńÝřĺé íá Ý÷ĺôĺ đńüóâáóç óôçí đëŢńç "
-#~ "ëĺéôďőńăéęüôçôá\n"
-#~ "ôďő đďíôéęéďý ôüóď óôçí ęďíóüëá ôďő Linux üóď ęáé óôď X Window GUI.\n"
-#~ "\n"
-#~ "\n"
-#~ "Áí Ý÷ĺôĺ Ýíá ADB đďíôßęé, đáńáęáëţ ĺđéëÝîôĺ USB, ęáčţň ď đőńŢíáň ôďő "
-#~ "Linux čá öńďíôßóĺé\n"
-#~ "ăéá ôď đďíôßęé óáň ęáôÜëëçëá."
-
-#~ msgid ""
-#~ "If you wish to connect your computer to the Internet or\n"
-#~ "to a local network please choose the correct option. Please turn on your "
-#~ "device\n"
-#~ "before choosing the correct option to let DrakX detect it automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you do not have any connection to the Internet or a local network, "
-#~ "choose\n"
-#~ "\"Disable networking\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you wish to configure the network later after installation, or if you "
-#~ "have\n"
-#~ "finished to configure your network connection, choose \"Done\"."
-#~ msgstr ""
-#~ "ĹÜí čÝëĺôĺ íá óőíäÝóĺôĺ ôďí őđďëďăéóôŢ óáň óôď Äéáäßęôőď Ţ óĺ Ýíá "
-#~ "ôďđéęü \n"
-#~ "äßęôőď, đáńáęáëţ ęÜíôĺ ôçí ęáôÜëëçëç ĺđéëďăŢ, áöďý áíďßîĺôĺ ôçí äéęôőáęŢ "
-#~ "óáň \n"
-#~ "óőóęĺőŢ ţóôĺ ôď DrakX íá ôçí ĺíôďđßóĺé áőôüěáôá.\n"
-#~ "\n"
-#~ "\n"
-#~ "ĹÜí äĺí Ý÷ĺôĺ ęáěßá äéęôőáęŢ óýíäĺóç, ĺđéëÝîôĺ \"Áđĺíĺńăďđďßçóç äéęôýďő"
-#~ "\".\n"
-#~ "\n"
-#~ "\n"
-#~ "ĹÜí čÝëĺôĺ íá ńőčěßóĺôĺ ôď äßęôőď áńăüôĺńá, Ţ áí ôĺëĺéţóáôĺ ěĺ ôéň \n"
-#~ "ńőčěßóĺéň äéęôýďő, ĺđéëÝîôĺ \"ÔÝëďň\"."
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Ĺßíáé áőôŢ ç óůóôŢ ńýčěéóç;"
-#~ msgid ""
-#~ "No modem has been detected. Please select the serial port on which it is "
-#~ "plugged.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, the first serial port (called \"COM1\" under Microsoft\n"
-#~ "Windows) is called \"ttyS0\" under Linux."
-#~ msgstr ""
-#~ "Äĺí ĺíôďđßóôçęĺ modem. Đáńáęáëţ ĺđéëÝîôĺ ôçí óĺéńéáęŢ čýńá óôçí ďđďßá\n"
-#~ "ĺßíáé óőíäĺäĺěÝíď.\n"
-#~ "\n"
-#~ "\n"
-#~ "ĐëçńďöďńéáęÜ, ç đńţôç čýńá (đďő ďíďěÜćĺôáé \"COM1\" óôá Microsoft "
-#~ "Windows),\n"
-#~ "óôď Linux ďíďěÜćĺôáé \"ttyS0\"."
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "ĐńďęëŢčçęĺ óöÜëěá, äďęéěÜóôĺ íá áëëÜîĺôĺ ęÜđďéĺň đáńáěÝôńďőň"
-#~ msgid ""
-#~ "You may now enter dialup options. If you don't know\n"
-#~ "or are not sure what to enter, the correct informations can be obtained "
-#~ "from\n"
-#~ "your Internet Service Provider. If you do not enter the DNS (name "
-#~ "server)\n"
-#~ "information here, this information will be obtained from your Internet "
-#~ "Service\n"
-#~ "Provider at connection time."
-#~ msgstr ""
-#~ "Ěđďńĺßôĺ ôţńá íá ĺđéëÝîĺôĺ ôéň ńőčěßóĺéň dial-up. ĹÜí äĺí îÝńĺôĺ Ţ äĺí "
-#~ "ĺßóôĺ\n"
-#~ "óßăďőńďň ăéá áőôÝň ôéň ńőčěßóĺéň, ěđďńĺßôĺ íá ôéň đëçńďöďńçčĺßôĺ áđü "
-#~ "ôďí \n"
-#~ "đáńď÷Ýá óáň. ĹÜí äĺí ďńßóĺôĺ ĺîőđçńĺôçôŢ ďíďěÜôůí (DNS), čá ďńéóôĺß "
-#~ "áőôüěáôá \n"
-#~ "ęáôÜ ôçí óýíäĺóç."
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 server: %s"
-#~ msgid ""
-#~ "If your modem is an external modem, please turn on it now to let DrakX "
-#~ "detect it automatically."
-#~ msgstr ""
-#~ "ĹÜí ôď modem óáň ĺßíáé ĺîůôĺńéęü, đáńáęáëţ áíďßîôĺ ôď ţóôĺ ôď DrakX íá "
-#~ "ěđďńÝóĺé íá ôď ĺíôďđßóĺé áőôüěáôá."
+#~ msgid "Show all"
+#~ msgstr "ĹěöÜíéóç üëůí"
-#~ msgid "Please turn on your modem and choose the correct one."
-#~ msgstr "Đáńáęáëţ áíďßîôĺ ôď modem óáň ęáé ĺđéëÝîôĺ ôď óůóôü."
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Đńďĺôďéěáóßá ńőčěßóĺůí ăńáöéęďý đĺńéâÜëëďíôďň (X-Window)"
-#~ msgid ""
-#~ "If you are not sure if informations above are\n"
-#~ "correct or if you don't know or are not sure what to enter, the correct\n"
-#~ "informations can be obtained from your Internet Service Provider. If you "
-#~ "do not\n"
-#~ "enter the DNS (name server) information here, this information will be "
-#~ "obtained\n"
-#~ "from your Internet Service Provider at connection time."
-#~ msgstr ""
-#~ "Ěđďńĺßôĺ ôţńá íá ĺđéëÝîĺôĺ ôéň ńőčěßóĺéň dial-up. ĹÜí äĺí îÝńĺôĺ Ţ äĺí "
-#~ "ĺßóôĺ\n"
-#~ "óßăďőńďň ăéá áőôÝň ôéň ńőčěßóĺéň, ěđďńĺßôĺ íá ôéň đëçńďöďńçčĺßôĺ áđü "
-#~ "ôďí \n"
-#~ "đáńď÷Ýá óáň. ĹÜí äĺí ďńßóĺôĺ ĺîőđçńĺôçôŢ ďíďěÜôůí (DNS), čá ďńéóôĺß "
-#~ "áőôüěáôá \n"
-#~ "ęáôÜ ôçí óýíäĺóç."
+#~ msgid "What do you want to do?"
+#~ msgstr "Ôé čÝëĺôĺ íá ęÜíĺôĺ;"
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, the correct informations can "
-#~ "be\n"
-#~ "obtained from your Internet Service Provider."
-#~ msgstr ""
-#~ "Ěđďńĺßôĺ ôţńá íá ĺéóÜăĺôĺ ôď äéęôőáęü üíďěá (ĺÜí ÷ńĺéÜćĺôáé). ĹÜí äĺí "
-#~ "ĺßóôĺ óßăďőńďň,\n"
-#~ "ěđďńĺßôĺ íá ćçôŢóĺôĺ đëçńďöďńßĺň áđü ôďí đáńď÷Ýá óáň."
+#~ msgid "Change Monitor"
+#~ msgstr "ÁëëáăŢ ďčüíçň"
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Ěđďńĺßôĺ ôţńá íá ńőčěßóĺôĺ ôçí óőóęĺőŢ äéęôýďő.\n"
-#~ "\n"
-#~ " - Äéĺýčőíóç IP: ĹÜí äĺí ôçí îÝńĺôĺ, ńůôŢóôĺ ôďí őđĺýčőíď äéęôýďő Ţ\n"
-#~ "ôďí đáńď÷Ýá óáň.\n"
-#~ "Äĺí đńÝđĺé íá ĺéóÜăĺôĺ äéĺýčőíóç IP ĺÜí ĺđéëÝîĺôĺ \"Áőôüěáôç áđüäďóç IP"
-#~ "\"\n"
-#~ "đáńáęÜôů.\n"
-#~ "\n"
-#~ "\n"
-#~ " - ĚÜóęá äéęôýďő: \"255.255.255.0\" ĺßíáé óőíŢčůň ęáëŢ ĺđéëďăŢ. ĹÜí äĺí\n"
-#~ "ĺßóôĺ óßăďőńďň, ńůôŢóôĺ ôďí őđĺýčőíď äéęôýďő Ţ ôďí đáńď÷Ýá óáň.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Áőôüěáôç áđüäďóç IP: ĹÜí ôď äßęôőü óáň ÷ńçóéěďđďéĺß Ýíá áđü ôá "
-#~ "đńďôüęďëëá\n"
-#~ "BOOTP Ţ DHCP, ĺđéëÝîôĺ áőôü. Óĺ áőôŢ ôçí đĺńßđôůóç, äĺí ÷ńĺéÜćĺôáé íá "
-#~ "äţóĺôĺ\n"
-#~ "äéĺýčőíóç IP. ĹÜí äĺí ĺßóôĺ óßăďőńďň, ńůôŢóôĺ ôďí őđĺýčőíď äéęôýďő Ţ\n"
-#~ "ôďí đáńď÷Ýá óáň."
+#~ msgid "Change Graphics card"
+#~ msgstr "ÁëëáăŢ ęÜńôáň ăńáöéęţí"
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, ask your network administrator."
-#~ msgstr ""
-#~ "Ěđďńĺßôĺ ôţńá íá ĺéóÜăĺôĺ ôď äéęôőáęü óáň üíďěá. ĹÜí äĺí\n"
-#~ "ĺßóôĺ óßăďőńďé, óőěâďőëĺőčĺßôĺ ôďí őđĺýčőíď äéęôýďő."
+#~ msgid "Change Server options"
+#~ msgstr "ÁëëáăŢ ńőčěßóĺůí X server"
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, leave blank."
-#~ msgstr ""
-#~ "Ěđďńĺßôĺ ôţńá íá ĺéóÜăĺôĺ ôď äéęôőáęü óáň üíďěá. ĹÜí äĺí\n"
-#~ "ĺßóôĺ óßăďőńďé, áöŢóôĺ ôď ęĺíü."
+#~ msgid "Change Resolution"
+#~ msgstr "ÁëëáăŢ áíÜëőóçň"
-#~ msgid ""
-#~ "You may now enter dialup options. If you're not sure what to enter, the\n"
-#~ "correct information can be obtained from your ISP."
-#~ msgstr ""
-#~ "Ěđďńĺßôĺ ôţńá íá ĺéóÜăĺôĺ ôéň ĺđéëďăÝň ôďő dialup. ĹÜí äĺí ĺßóôĺ "
-#~ "óßăďőńďň,\n"
-#~ "ěđďńĺßôĺ íá ćçôŢóĺôĺ đëçńďöďńßĺň áđü ôďí đáńď÷Ýá óáň."
+#~ msgid "Show information"
+#~ msgstr "ĐńďâďëŢ đëçńďöďńéţí"
-#~ msgid ""
-#~ "If you will use proxies, please configure them now. If you don't know if\n"
-#~ "you should use proxies, ask your network administrator or your ISP."
-#~ msgstr ""
-#~ "ĹÜí ÷ńçóéěďđďéŢóĺôĺ proxies, đáńáęáëţ ńőčěßóôĺ ôďőň ôţńá. ĹÜí äĺí "
-#~ "îÝńĺôĺ,\n"
-#~ "ńůôŢóôĺ ôďí đáńď÷Ýá óáň Ţ ôďí őđĺýčőíď äéęôýďő."
+#~ msgid "Test again"
+#~ msgstr "ĹđáíÜëçřç äďęéěŢň"
-#~ msgid ""
-#~ "You can install cryptographic package if your internet connection has "
-#~ "been\n"
-#~ "set up correctly. First choose a mirror where you wish to download "
-#~ "packages and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "Áí ç óýíäĺóŢ óáň ěĺ ôď Äéáäßęôőď ĺßíáé óůóôÜ ńőčěéóěÝíç, ěđďńĺßôĺ íá\n"
-#~ "ĺăęáôáóôŢóĺôĺ đáęÝôď ęńőđôďăńáößáň. Đńţôá ĺđéëÝîôĺ Ýíáí ôüđď áđ'\n"
-#~ "üđďő čá ęáôĺâÜóĺôĺ ôá đáęÝôá ęáé ěĺôÜ ĺđéëÝîôĺ đďéÜ đáęÝôá čá\n"
-#~ "ĺăęáôáóôŢóĺôĺ.\n"
-#~ "\n"
-#~ "Óçěĺéţóôĺ üôé đńÝđĺé íá ĺđéëÝîĺôĺ ôüđď ęáé đáęÝôá óýěöůíá ěĺ ôçí\n"
-#~ "íďěďčĺóßá óáň."
+#~ msgid "Setting security level"
+#~ msgstr "Ńýčěéóç ĺđéđÝäďő áóöáëĺßáň"
-#~ msgid "You can now select your timezone according to where you live."
-#~ msgstr "Ěđďńĺßôĺ ôţńá íá ĺđéëÝîĺôĺ ćţíç ţńáň áíÜëďăá ěĺ ôçí ôďđďčĺóßá óáň."
+#~ msgid "Graphics card"
+#~ msgstr "ĘÜńôá ăńáöéęţí"
-#~ msgid ""
-#~ "You can configure a local printer (connected to your computer) or remote\n"
-#~ "printer (accessible via a Unix, Netware or Microsoft Windows network)."
-#~ msgstr ""
-#~ "Ěđďńĺßôĺ íá ďńßóĺôĺ Ýíáí ôďđéęü ĺęôőđůôŢ (óőíäĺäĺěÝíď óôďí őđďëďăéóôŢ "
-#~ "óáň) \n"
-#~ "Ţ Ýíáí áđďěĺěáęńőóěÝíď (đńďóâÜóéěď ěÝóů UNIX äéęôýďő, Netware Ţ äéęôýďő \n"
-#~ "Microsoft Windows)."
+#~ msgid "Select a graphics card"
+#~ msgstr "ĹđéëÝîôĺ ęÜńôá ăńáöéęţí"
-#~ msgid ""
-#~ "If you wish to be able to print, please choose one printing system "
-#~ "between\n"
-#~ "CUPS and LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS is a new, powerful and flexible printing system for Unix systems "
-#~ "(CUPS\n"
-#~ "means \"Common Unix Printing System\"). It is the default printing system "
-#~ "in\n"
-#~ "Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR is the old printing system used in previous Mandrake Linux "
-#~ "distributions.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you don't have printer, click on \"None\"."
-#~ msgstr ""
-#~ "ĹÜí čÝëĺôĺ íá ĺęôőđţíĺôĺ, ĺđéëÝîôĺ Ýíá óđü ôá äýď óőóôŢěáôá ĺęôýđůóçň \n"
-#~ "(CUPS ęáé LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ôď CUPS ĺßíáé Ýíá íÝď, äőíáôü ęáé ĺőÝëéęôď óýóôçěá ĺęôýđůóçň ăéá UNIX \n"
-#~ "óőóôŢěáôá. ÁőôŢ ĺßíáé ç âáóéęŢ ĺđéëďăŢ ăéá ôď Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ôď LPR ĺßíáé ôď đáëéü ęëáóóéęü óýóôçěá ĺęôýđůóçň.\n"
-#~ "\n"
-#~ "ĹÜí äĺí Ý÷ĺôĺ óęôőđůôŢ, ĺđéëÝîôĺ \"ĘáíÝíá\"."
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "Đńďóď÷Ţ: Ç äďęéěŢ ĺßíáé ĺđéęßíäőíç óĺ áőôŢ ôçí ęÜńôá ăńáöéęţí"
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these types "
-#~ "requires\n"
-#~ "a different setup.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select \"Local\n"
-#~ "printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine, select\n"
-#~ "\"Remote printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Microsoft Windows "
-#~ "machine\n"
-#~ "(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
-#~ msgstr ""
-#~ "Ôď GNU/Linux ěđďńĺß íá óőíĺńăáóôĺß ěĺ äéÜöďńďőň ôýđďőň ĺęôőđůôţí. Ď "
-#~ "ęáčÝíáň áđü\n"
-#~ "áőôďýň ÷ńĺéÜćĺôáé äéáöďńĺôéęÝň ńőčěßóĺéň.\n"
-#~ "\n"
-#~ "ĹÜí ď ĺęôőđůôŢň óáň ĺßíáé óőíäĺäĺěÝíďň óôď óýóôçěÜ óáň, ĺđéëÝîôĺ "
-#~ "\"Ôďđéęüň\n"
-#~ "ĹęôőđůôŢň\".\n"
-#~ "\n"
-#~ "ĹÜí čÝëĺôĺ íá ĺęôőđţíĺôĺ óĺ Ýíáí ĺęôőđůôŢ ôďđďčĺôçěÝíď óĺ áđďěĺěáęńőóěÝíď "
-#~ "UNIX\n"
-#~ "óýóôçěá, ĺđéëÝîôĺ \"ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň\".\n"
-#~ "\n"
-#~ "\n"
-#~ "ĹÜí čÝëĺôĺ íá ĺęôőđţíĺôĺ óĺ Ýíáí ĺęôőđůôŢ ôďđďčĺôçěÝíď óĺ áđďěĺěáęńőóěÝíď "
-#~ "Windows\n"
-#~ "óýóôçěá (Ţ UNIX ěĺ SMB đńůôüęďëëď), ĺđéëÝîôĺ \"SMB/Windows 95/98/NT\"."
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Standard VGA, 640x480 óôá 60 Hz"
-#~ msgid ""
-#~ "Please turn on your printer before continuing to let DrakX detect it.\n"
-#~ "\n"
-#~ "You have to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of printer: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you must have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer a more meaningful name, you "
-#~ "have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Description: this is optional but can be useful if several printers "
-#~ "are connected to your computer or if you allow\n"
-#~ " other computers to access to this printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Location: if you want to put some information on your\n"
-#~ " printer location, put it here (you are free to write what\n"
-#~ " you want, for example \"2nd floor\").\n"
-#~ msgstr ""
-#~ "Đáńáęáëţ áíÜřôĺ ôďí ĺęôőđůôŢ óáň ăéá íá ôď áíé÷íĺýóĺé ôď DrakX.\n"
-#~ "\n"
-#~ "ĐńÝđĺé íá ĺéóÜăĺôĺ ęÜđďéĺň đëçńďöďńßĺň ĺäţ.\n"
-#~ "\n"
-#~ "\n"
-#~ "...* źíďěá ĺęôőđůôŢ: ď print spooler ÷ńçóéěďđďéĺß ôď \"lp\"ůň ôď "
-#~ "đńďęáčďńéóěÝíď üíďěá. Ďđüôĺ, đńÝđĺé íá Ý÷ĺôĺ Ýíáí ĺęôőđůôŢ ďíüěáôé \"lp"
-#~ "\".\n"
-#~ " Ĺáí Ý÷ĺôĺ ěüíď Ýíáí ĺęôőđůôŢ, ěđďńĺßôĺ íá ÷ńçóéěďđďéŢôĺ đďëëÜ "
-#~ "ďíüěáôá ăéá áőôüí.Áđëţň čá đńÝđĺé íá ôá äéá÷ůńßóĺôĺ ěĺ Ýíá pipe\n"
-#~ " ÷áńáęôŢńá (Ýíá \"|\"). Ďđüôĺ, ĺáí đńďôéěÜôĺ Ýíá đďéď óçěáíôéęü "
-#~ "üíďěá, đńÝđĺé íá ôď âÜëĺôĺ đńţôď, đ.÷: \"My printer|lp\".\n"
-#~ " Ď ĺęôőđůôŢň đďő Ý÷ĺé ôď \"lp\" óôá ďíüěáôÜ ôďő čá ĺßíáé ď "
-#~ "đńďęáčďńéóěÝíďň ĺęôőđůôŢň.\n"
-#~ "\n"
-#~ "\n"
-#~ "...* ĐĺńéăńáöŢ: áőôü ĺßíáé đńďáéńĺôéęü áëëÜ ěđďńĺß íá ĺßíáé ÷ńŢóéěď ĺáí "
-#~ "đďëëďß ĺęôőđůôÝň ĺßíáé óőíäĺäĺěÝíďé óôďí őđďëďăéóôŢ óáň Ţ áí ĺđéôńÝđĺôĺ\n"
-#~ " Üëëďőň őđďëďăéóôÝň íá Ý÷ďőí đńüóâáóç óĺ áőôüí ôďí ĺęôőđůôŢ.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Ôďđďčĺóßá: ĺáí čÝëĺôĺ íá äţóĺôĺ ęÜđďéĺň đëçńďöďńßĺň ó÷ĺôéęÜ ěĺ ôçí\n"
-#~ " ôďđďčĺóßá ôďő ĺęôőđůôŢ óáň, âÜëôĺ ôéň ĺäţ (ĺßóôĺ ĺëĺýčĺńďň íá "
-#~ "ăńÜřĺôĺ üôé\n"
-#~ " čÝëĺôĺ, ăéá đáńÜäĺéăěá \"2ďň üńďöďň\").\n"
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 óôá 56 Hz"
-#~ msgid ""
-#~ "You need to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of queue: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you need have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer to have a more meaningful "
-#~ "name, you have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ " \n"
-#~ " * Spool directory: it is in this directory that printing jobs are "
-#~ "stored. Keep the default choice\n"
-#~ " if you don't know what to use\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printer Connection: If your printer is physically connected to your "
-#~ "computer, select \"Local printer\".\n"
-#~ " If you want to access a printer located on a remote Unix machine, "
-#~ "select \"Remote lpd printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to access a printer located on a remote Microsoft "
-#~ "Windows machine (or on Unix machine using SMB\n"
-#~ " protocol), select \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to acces a printer located on NetWare network, select "
-#~ "\"NetWare\".\n"
-#~ msgstr ""
-#~ "ĐńÝđĺé íá ĺéóÜăĺôĺ ęÜđďéĺň đëçńďöďńßĺň ĺäţ.\n"
-#~ "\n"
-#~ "\n"
-#~ " * źíďěá ďőńÜň: ď print spooler ÷ńçóéěďđďéĺß ôď \"lp\" ůň ôď "
-#~ "đńďęáčďńéóěÝíď üíďěá ĺęôőđůôŢ. Ďđüôĺ, đńÝđĺé íá Ý÷ĺôĺ Ýíáí ĺęôőđůôŢ ěĺ ôď "
-#~ "üíďěá \"lp\".\n"
-#~ " Ĺáí Ý÷ĺôĺ ěüíď Ýíáí ĺęôőđůôŢ, ěđďńĺßôĺ íá ÷ńçóéěďđďéŢóĺôĺ đďëëÜ "
-#~ "ďíüěáôá ăéá áőôüí. ÁđëÜ đńÝđĺé íá ôá ÷ůńßóĺôĺ ěĺ Ýíá pipe\n"
-#~ " ÷áńáęôŢńá (Ýíá \"|\"). Ďđüôĺ, ĺáí đńďôéěÜôĺ íá Ý÷ĺôĺ Ýíá đéď "
-#~ "óçěáíôéęü üíďěá, đńÝđĺé íá ôď âÜëĺôĺ đńţôď, đ.÷: \"My printer|lp\".\n"
-#~ " Ď ĺęôőđůôŢň ěĺ ôď \"lp\" óôá ďíüěáôÜ ôďő čá ĺßíáé ď đńďęáčďńéóěÝíďň "
-#~ "ĺęôőđůôŢň.\n"
-#~ "\n"
-#~ " \n"
-#~ " * ĘáôÜëďăďň Spool: áőôüň ĺßíáé ď ęáôÜëďăďň đďő áđďčçęĺýďíôáé ďé "
-#~ "ĺńăáóßĺň ôďő ĺęôőđůôŢ. ÄéáôçńŢóôĺ ôçí ĺî' ďńéóěďý ĺđéëďăŢ\n"
-#~ " ĺáí äĺí îÝńĺôĺ ôß íá ÷ńçóéěďđďéŢóĺôĺ\n"
-#~ "\n"
-#~ "\n"
-#~ " * Óýíäĺóç ĹęôőđůôŢ: Ĺáí ď ĺęôőđůôŢň óáň ĺßíáé öőóéęţň óőíäĺäĺěÝíďň "
-#~ "óôďí őđďëďăéóôŢ óáň, ĺđéëÝîôĺ \"Ôďđéęüň ĺęôőđůôŢň\".\n"
-#~ " Ĺáí čÝëĺôĺ íá Ý÷ĺôĺ đńüóâáóç óĺ Ýíáí ĺęôőđůôŢ đďő âńßóęĺôáé óĺ Ýíá "
-#~ "áđďěáęńőóěÝíď Unix ěç÷Üíçěá, ĺđéëÝîôĺ \"ÁđďěáęńőóěÝíďň lpd ĺęôőđůôŢň\".\n"
-#~ "\n"
-#~ "\n"
-#~ " Ĺáí čÝëĺôĺ íá Ý÷ĺôĺ đńüóâáóç óĺ Ýíáí ĺęôőđůôŢ đďő âńßóęĺôáé óĺ Ýíá "
-#~ "áđďěáęńőóěÝíď Microsoft Windows ěç÷Üíçěá (Ţ óĺ Ýíá Unix ěç÷Üíçěá ěĺ SMB\n"
-#~ " đńůôüęďëëď), ĺđéëÝîôĺ \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " Ĺáí čÝëĺôĺ íá Ý÷ĺôĺ đńüóâáóç óĺ Ýíáí ĺęôőđůôŢ đďő âńßóęĺôáé óĺ Ýíá "
-#~ "NetWare äßęôőď, ĺđéëÝîôĺ \"NetWare\".\n"
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514 Compatible, 1024x768 óôá 87 Hz interlaced (no 800x600)"
-#~ msgid ""
-#~ "Your printer has not been detected. Please enter the name of the device "
-#~ "on\n"
-#~ "which it is connected.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, most printers are connected on the first parallel port. "
-#~ "This\n"
-#~ "one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
-#~ "Windows."
-#~ msgstr ""
-#~ "Äĺí ĺíôďđßóôçęĺ ĺęôőđůôŢň. Đáńáęáëţ ĺéóÜăĺôĺ ôď üíďěá ôçň óőóęĺőŢň óôçí\n"
-#~ " ďđďßá ĺßíáé óőíäĺäĺěÝíďň.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ďé đĺńéóóüôĺńďé ĺęôőđůôÝň óőíäÝďíôáé óôçí đńţôç đáńÜëëçëç čýńá. ÁőôŢ "
-#~ "ďíďěÜćĺôáé\n"
-#~ "\"/dev/lp0\" óôď GNU/Linux ęáé \"LPT1\" óôá Microsoft Windows."
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 óôá 87 Hz interlaced, 800x600 óôá 56 Hz"
-#~ msgid "You must now select your printer in the above list."
-#~ msgstr "ĹđéëÝîôĺ ôďí ĺęôőđůôŢ óáň óôďí đáńáđÜíů ęáôÜëďăď"
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Extended Super VGA, 800x600 óôá 60 Hz, 640x480 óôá 72 Hz"
-#~ msgid ""
-#~ "Please select the right options according to your printer.\n"
-#~ "Please see its documentation if you don't know what choose here.\n"
-#~ "\n"
-#~ "\n"
-#~ "You will be able to test your configuration in next step and you will be "
-#~ "able to modify it if it doesn't work as you want."
-#~ msgstr ""
-#~ "Đáńáęáëţ ĺđéëÝîôĺ ôéň ęáôÜëëçëĺň ńőčěßóĺéň ăéá ôďí ĺęôőđůôŢ óáň.\n"
-#~ "ĘďéôÜîôĺ ôçí ôĺęěçńßůóç ôďő ĺęôőđůôŢ ĺÜí äĺí îÝńĺôĺ ôé íá ĺđéëÝîĺôĺ.\n"
-#~ "\n"
-#~ "\n"
-#~ "¸÷ĺôĺ ôçí äőíáôüôçôá íá ĺëÝăîĺôĺ ôéň ĺđéëďăÝň óáň óôď ĺđüěĺíď âŢěá ęáé "
-#~ "íáôéň ôńďđďđďéŢóĺôĺ áí äĺí ëĺéôďőńăďýí üđůň čá čÝëáôĺ."
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Non-Interlaced SVGA, 1024x768 óôá 60 Hz, 800x600 óôá 72 Hz"
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "Ěđďńĺßôĺ ôţńá íá ďńßóĺôĺ ôç ëÝîç-ęëĺéäß ăéá ôďí ÷ńŢóôç \"root\".\n"
-#~ "Ç ëÝîç đńÝđĺé íá ĺéóá÷čĺß ĺéň äéđëďýí ăéá ĺđéâĺâáßůóç.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ď root ĺßíáé ď äéá÷ĺéńéóôŢň ôďő óőóôŢěáôďň ęáé ď ěüíďň đďő Ý÷ĺé \n"
-#~ "ôď äéęáßůěá íá áëëÜîĺé ôéň ńőčěßóĺéň ôďő óőóôŢěáôďň. Ăé áőôü, \n"
-#~ "ĺđéëÝîôĺ đńďóĺęôéęÜ áőôŢ ôç ëÝîç ęëĺéäß! Ěç ĺîďőóéďäďôçěÝíç \n"
-#~ "đńüóâáóç óôď root ěđďńĺß íá ĺßíáéĺîáéńĺôéęÜ ĺđéęßíäőíç ăéá \n"
-#~ "ôçí áęĺńáéüôçôá ôďő óőóôŢěáôďň ęáé ôůí äĺäďěÝíůí ôďő, ęáčţň \n"
-#~ "ęáé ăéá Üëëá óőóôŢěáôá óőíäĺäĺěÝíá óĺ áőôü. \n"
-#~ "\n"
-#~ "\n"
-#~ "Ç ëÝîç ęëĺéäß đńÝđĺé íá ĺßíáé ěéá ěßîç áëöáńéčěçôéęţí ÷áńáęôŢńůí \n"
-#~ "ęáé ěĺ ěŢęďň ôďőëÜ÷éóôďí ďęôţ (8) ÷áńáęôŢńůí. Äĺí đńÝđĺé *đďôÝ* \n"
-#~ "íá ôď ăńÜřĺôĺ óĺ ÷áńôß."
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "High Frequency SVGA, 1024x768 óôá 70 Hz"
-#~ msgid ""
-#~ "If your network uses the LDAP (or NIS) protocol for authentication, "
-#~ "select\n"
-#~ "\"LDAP\" (or \"NIS\") as authentication. If you don't know, ask your "
-#~ "network\n"
-#~ "administrator.\n"
-#~ "\n"
-#~ "If your computer is not connected to any administrated network, you may "
-#~ "want to\n"
-#~ "choose \"Local files\" for authentication."
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
#~ msgstr ""
-#~ "Áí ôď äßęôőü óáň őđďóôçńßćĺé LDAP (Ţ NIS) đńůôüęďëëď ăéá ĺîáęńßâůóç, "
-#~ "ĺđéëÝîôĺ\n"
-#~ "\"LDAP\" (Ţ \"NIS\") ůň ĺîáęńßâůóç. Áí äĺí ăíůńßćĺôĺ, ńůôŢóôĺ ôďí "
-#~ "äéá÷ĺéńéóôŢ\n"
-#~ "äéęôýďő óáň.\n"
-#~ "Áí ď őđďëďăéóôŢň óáň äĺí ĺßíáé óőíäĺäĺěÝíďň óĺ äßęôőď ěĺ äéá÷ĺéńéóôŢ, "
-#~ "ôüôĺ đéčáíüôáôá íá čÝëĺôĺ íá\n"
-#~ "ĺđéëÝîĺôĺ \"ÔďđéęÜ áń÷ĺßá\" ăéá ĺîáęńßâůóç."
+#~ "Multi-frequency đďő ěđďńĺß íá áđĺéęďíßóĺé áíÜëőóç 1280x1024 óôá 60 Hz"
-#~ msgid ""
-#~ "You may now create one or more \"regular\" user account(s), as\n"
-#~ "opposed to the \"privileged\" user account, root. You can create\n"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
#~ msgstr ""
-#~ "Ěđďńĺßôĺ ôţńá íá äçěéďőńăŢóĺôĺ Ýíáí Ţ đĺńéóóüôĺńďőň \"áđëďýň\" ÷ńŢóôĺň,\n"
-#~ "(óĺ áíôßčĺóç ěĺ ôďí \"ĺîďőóéďäďôçěÝíď\" ÷ńŢóôç, root). Ěđďńĺßôĺ íá \n"
-#~ "äçěéďőńăŢóĺôĺ Ýíáí Ţ đĺńéóóüôĺńďőň ÷ńŢóôĺň ăéá ęÜčĺ đńüóůđď đďő čÝëĺôĺ\n"
-#~ "íá Ý÷ĺé đńüóâáóç óôď óýóôçěÜ óáň. Óçěĺéţóôĺ üôé ęÜčĺ ÷ńŢóôçň Ý÷ĺé ôéň\n"
-#~ "äéęÝň ôďő ńőčěßóĺéň (ăńáöéęü đĺńéâÜëëďí, ńőčěßóĺéň ĺöáńěďăţí ęëđ),\n"
-#~ "ęáčţň ęáé ôď äéęü ôďő \"home directory\", óôď ďđďßď áđďčçęĺýďíôáé\n"
-#~ "áőôÝň ďé ńőčěßóĺéň.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ęáô' áń÷Ţí, äçěéďőńăŢóôĺ Ýíáí ÷ńŢóôç ăéá ôďí ĺáőôü óáň! Áęüěá ęáé ĺÜí\n"
-#~ "ĺßóôĺ ď ěďíáäéęüň ÷ńçóôçň ôďő óőóôŢěáôďň, ÄĹÍ đńÝđĺé íá ÷ńçóéěďđďéĺßôĺ\n"
-#~ "ôď root ăéá ôçí ęáčçěĺńéíŢ ÷ńŢóç ôďő óőóôŢěáôďň, äéüôé áőôü čá \n"
-#~ "äçěéďőńăďýóĺ ęéíäőíďőň. ¸íá áđëü ëÜčďň đëçęôńďëüăçóçň ĺßíáé áńęĺôü\n"
-#~ "ăéá íá ęáôáóôńÝřĺé ôçí ĺăęáôÜóôáóŢ óáň üôáí ĺńăÜćĺóôĺ ůň root.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ăé áőôü, čá đńÝđĺé íá óőíäÝĺóôĺ óôď óýóôçěÜ óáň ÷ńçóéěďđďéţíôáň Ýíáí\n"
-#~ "ęůäéęü áđëďý ÷ńŢóôç ęáé íá óőíäÝĺóôĺ ůň root ěüíď ăéá ĺńăáóßĺň äéďßęçóçň\n"
-#~ "ęáé óőíôŢńçóçň ôďő óőóôŢěáôďň."
+#~ "Multi-frequency đďő ěđďńĺß íá áđĺéęďíßóĺé áíÜëőóç 1280x1024 óôá 74 Hz"
-#~ msgid ""
-#~ "Creating a boot disk is strongly recommended. If you can't\n"
-#~ "boot your computer, it's the only way to rescue your system without\n"
-#~ "reinstalling it."
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
#~ msgstr ""
-#~ "Óőíßóôáôáé íá äçěéďőńăŢóĺôĺ Ýíáí äßóęď ĺęęßíçóçň. ĹÜí äĺí \n"
-#~ "ěđďńĺßôĺ íá ĺęęéíŢóĺôĺ ôďí őđďëďăéóôŢ óáň, ĺßíáé ď ěüíďň ôńüđďň \n"
-#~ "íá äéáóţóĺôĺ ôď óýóôçěÜ óáň ÷ůńßň ĺđáíĺăęáôÜóôáóç."
+#~ "Multi-frequency đďő ěđďńĺß íá áđĺéęďíßóĺé áíÜëőóç 1280x1024 óôá 76 Hz"
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <number>: use the corresponding text mode.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories\n"
-#~ "stored in \"/tmp\" when you boot your system, select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the\n"
-#~ "BIOS about the amount of RAM present in your computer. As consequence, "
-#~ "Linux may\n"
-#~ "fail to detect your amount of RAM correctly. If this is the case, you "
-#~ "can\n"
-#~ "specify the correct amount or RAM here. Please note that a difference of "
-#~ "2 or 4\n"
-#~ "MB between detected memory and memory present in your system is normal."
-#~ msgstr ""
-#~ "Ďé ęýńéĺň ĺđéëďăÝň ôďő LILO ęáé ôďő grub ĺßíáé:\n"
-#~ " - ÓőóęĺőŢ ĺęęßíçóçň: Ďńßćĺé ôď üíďěá ôçň óőóęĺőŢň (đ.÷. ěéá \n"
-#~ "ęáôÜôěçóç) đďő đĺńéÝ÷ĺé ôďí ôďěÝá ĺęęßíçóçň. Ĺęôüň ęáé áí ĺßóôĺ\n"
-#~ "óßăďőńďé üôé ĺßíáé áëëéţň, ĺđéëÝîôĺ \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - ĘáčőóôÝńçóç đńéí ôçí ĺęęßíçóç: Ďńßćĺé ôá äÝęáôá ôďő äĺőôĺńďëÝđôďő\n"
-#~ "đďő ôď óýóôçěá čá đĺńéěÝíĺé đńéí ĺęęéíŢóĺé ôď đńţôď ëĺéôďőńăéęü.\n"
-#~ "Áőôü ĺßíáé óőíŢčůň ÷ńŢóéěď óĺ óőóôŢěáôá đďő ĺęęéíďýí áđü ôďí äßóęď\n"
-#~ "áěÝóůň ěĺôÜ ôçí ĺíĺńăďđďßçóç ôďő đëçęôńďëďăßďő. Äĺí őđÜń÷ĺé ęáčőóôÝńçóç\n"
-#~ "ĺÜí ď áńéčěüň đáńáëĺéöčĺß Ţ ĺßíáé ěçäÝí.\n"
-#~ "\n"
-#~ "\n"
-#~ " - ÁíÜëőóç ďčüíçň: Áőôü ďńßćĺé ôçí VGA áíÜëőóç ęĺéěÝíďő đďő čá ĺđéëĺăĺß\n"
-#~ "ęáôÜ ôçí ĺęęßíçóç. ŐđÜń÷ďőí ďé đáńáęÜôů ĺđéëďăÝň: \n"
-#~ "\n"
-#~ " * normal: ĘáíďíéęŢ áíÜëőóç ęĺéěÝíďő 80×25.\n"
-#~ "\n"
-#~ " * <áńéčěüň>: ÷ńŢóç ôçň áíôßóôďé÷çň áíÜëőóçň ęĺéěÝíďő.\n"
-#~ "\n"
-#~ " - Ęáčáńéóěüň \"/tmp\" óĺ ęÜčĺ ĺęęßíçóç: ĺáí čÝëĺôĺ íá óâŢíĺôĺ üëá ôá "
-#~ "áń÷ĺßá ęáé ôďő öáęÝëďőň\n"
-#~ "đďő ĺßíáé óôď \"/tmp\" üôáí îĺęéíÜôĺ ôď óýóôçěÜ óáň, ĺíĺńăďđďéŢóôĺ áőôŢí "
-#~ "ôçí ĺđéëďăŢ.\n"
-#~ "\n"
-#~ "\n"
-#~ " - ÁęńéâŢň RAM áí ÷ńĺéÜćĺôáé: äőóôő÷ţň, äĺí őđÜń÷ĺé óôĺńĺüôőđç ěÝčďäďň "
-#~ "íá äţóĺé ôď\n"
-#~ "BIOS ôďí áęńéâŢ áńéčěü RAM ôďő őđďëďăéóôŢ óáň. Óáí óőíÝđĺéá, ôď Linux "
-#~ "ßóůň\n"
-#~ "áđďôý÷ĺé íá áíé÷íĺýóĺé ôçí RAM óůóôÜ. Óĺ áőôŢí ôçí đĺńßđôůóç, ěđďńĺßôĺ\n"
-#~ "íá ďńßóĺôĺ ôďí óůóôü áńéčěü ĺäţ. Đáńáęáëţ óçěĺéţóôĺ đůň ěéá äéáöďńÜ ôçň "
-#~ "ôÜîçň ôůí 2 Ţ 4\n"
-#~ "MB ěĺôáîý ôçň ěíŢěçň đďő áíé÷íĺýôçęĺ ęáé ôçň đńáăěáôéęŢň RAM ôďő "
-#~ "óőóôŢěáôüň óáň ĺßíáé ęáíďíéęŢ."
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Ďčüíç đďő ěđďńĺß íá áđĺéęďíßóĺé áíÜëőóç 1600x1200 óôá 70 Hz"
-#~ msgid ""
-#~ "SILO is a bootloader for SPARC: it is able to boot\n"
-#~ "either GNU/Linux or any other operating system present on your computer.\n"
-#~ "Normally, these other operating systems are correctly detected and\n"
-#~ "installed. If this is not the case, you can add an entry by hand in this\n"
-#~ "screen. Be careful as to choose the correct parameters.\n"
-#~ "\n"
-#~ "\n"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "anyone, in which case you can delete the corresponding entries. But\n"
-#~ "in this case, you will need a boot disk in order to boot them!"
-#~ msgstr ""
-#~ "Ôď SILO ĺßíáé đńüăńáěěá ĺęęßíçóçň ăéá SPARC: Ěđďńĺß íá ĺęęéíŢóĺé \n"
-#~ "ôď GNU/Linux Ţ ďđďéďäŢđďôĺ Üëëď ëĺéôďőńăéęü őđÜń÷ĺé óôď óýóôçěÜ óáň. "
-#~ "ĘáíďíéęÜ, \n"
-#~ "ôá ĺđéđëÝďí ëĺéôďőńăéęÜ đńďóäéďńßćďíôáé ęáé ńőčěßćďíôáé óůóôÜ. ĹÜí áőôü "
-#~ "äĺí \n"
-#~ "óőíÝâç, ěđďńĺßôĺ íá đńďóčÝóĺôĺ ĺđéđëÝďí ĺđéëďăÝň óĺ áőôŢí ôçí ďčüíç. \n"
-#~ "ĐńďóÝîôĺ íá ĺđéëÝîĺôĺ ôéň óůóôÝň đáńáěÝôńďőň.\n"
-#~ "\n"
-#~ "Ěđďńĺßôĺ ĺđßóçň íá áđďęëĺßóĺôĺ ôçí đńüóâáóç óĺ Üëëá ëĺéôďőńăéęÜ óőóôŢěáôá "
-#~ "áöáéńţíôáň\n"
-#~ "ôéň áíôßóôďé÷ĺň ĺđéëďăÝň. Óĺ áőôŢí üěůň ôçí đĺńßđôůóç, čá ÷ńĺéáóôĺßôĺ "
-#~ "äéóęÝôôá ĺęęßíçóçň\n"
-#~ "ăéá íá ôá ÷ńçóéěďđďéŢóĺôĺ!"
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Ďčüíç đďő ěđďńĺß íá áđĺéęďíßóĺé áíÜëőóç 1600x1200 óôá 76 Hz"
#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ "Ďé ęýńéĺň ĺđéëďăÝň ôďő SILO ĺßíáé:\n"
-#~ " - ĹăęáôÜóôáóç bootloader: Ďńßćĺé ôď đďý čÝëĺôĺ íá ĺăęáôáóôáčďýí ďé "
-#~ "áđáńáßôçôĺň\n"
-#~ "ăéá ôçí ĺęęßíçóç ôďő GNU/Linux đëçńďöďńßĺň. Ĺęôüň ęé áí îÝńĺôĺ ôé áęńéâţň "
-#~ "ęÜíĺôĺ,\n"
-#~ "ĺđéëÝîôĺ \"Đńţôďň ôďěÝáň ôďő äßóęďő (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - ĘáčőóôÝńçóç đńéí ôçí ĺęęßíçóç: Ďńßćĺé ôá äÝęáôá ôďő äĺőôĺńďëÝđôďő\n"
-#~ "đďő ôď óýóôçěá čá đĺńéěÝíĺé đńéí ĺęęéíŢóĺé ôď đńţôď ëĺéôďőńăéęü.\n"
-#~ "Áőôü ĺßíáé óőíŢčůň ÷ńŢóéěď óĺ óőóôŢěáôá đďő ĺęęéíďýí áđü ôďí äßóęď\n"
-#~ "áěÝóůň ěĺôÜ ôçí ĺíĺńăďđďßçóç ôďő đëçęôńďëďăßďő. Äĺí őđÜń÷ĺé ęáčőóôÝńçóç\n"
-#~ "ĺÜí ď áńéčěüň đáńáëĺéöčĺß Ţ ĺßíáé ěçäÝí."
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Ôď óőíďëéęü ěÝăĺčďň ôůí ďěÜäůí đďő ĺđéëÝîáôĺ ĺßíáé đĺńßđďő %d MB.\n"
#~ msgid ""
-#~ "Now it's time to configure the X Window System, which is the\n"
-#~ "core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
-#~ "Ôţńá đńÝđĺé íá ńőčěßóĺôĺ ôď X Window System, ôď ďđďßď ĺßíáé ď \n"
-#~ "đőńŢíáň ôďő ăńáöéęďý đĺńéâÜëëďíôďň (GUI) ôďő GNU/Linux. ĐńÝđĺé íá\n"
-#~ "ńőčěßóĺôĺ ôçí ęÜńôá ăńáöéęţí ęáé ôçí ďčüíç óáň. Ôď ěĺăáëýôĺńď\n"
-#~ "ěÝńďň ôçň äéáäéęáóßáň ĺßíáé áőôďěáôďđďéçěÝíď, ďđüôĺ ç óőěâďëŢ\n"
-#~ "óáň óőíßóôáôáé óôçí ĺđéâĺâáßůóç ęáé áđďäď÷Ţ ôůí áőôďěÜôůí \n"
-#~ "ńőčěßóĺůí :)\n"
-#~ "\n"
+#~ "ĹÜí čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ ëéăüôĺńá,\n"
+#~ "ĺđéëÝîôĺ ôď đďóďóôü ôůí đáęÝôůí đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ.\n"
#~ "\n"
-#~ "źôáí ďëďęëçńůčĺß ç äéáäéęáóßá ńýčěéóçň, čá îĺęéíŢóĺé ôď\n"
-#~ "X Window óýóôçěá (ĺęôüň ĺÜí ĺóĺßň áđďöáóßóĺôĺ áëëéţň), ăéá\n"
-#~ "íá ĺëÝăîĺôĺ ĺÜí ďé ńőčěßóĺéň óáň éęáíďđďéďýí. ĹÜí ü÷é, \n"
-#~ "ěđďńĺßôĺ íá ĺđéóôńÝřĺôĺ ĺäţ ęáé íá ĺđáíáëÜâĺôĺ ôéň ńőčěßóĺéň\n"
-#~ "üóĺň öďńÝň ÷ńĺéáóôĺß."
-
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ "ĹÜí ęÜôé äĺí đÜĺé ęáëÜ ěĺ ôéň ńőčěßóĺéň ôůí ×, ÷ńçóéěďđďéĺßóôĺ áőôÝň ôéň\n"
-#~ "ĺđéëďăÝň ăéá íá ńőčěßóĺôĺ óůóôÜ ôď ăńáöéęü đĺńéâÜëëďí (X Window System)."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "ĹÜí đńďôéěÜôĺ ĺęęßíçóç óĺ ăńáöéęü đĺńéâÜëëďí ĺđéëÝîôĺ \"Íáé\". Áëëéţň, \n"
-#~ "ĺđéëÝîôĺ \"ź÷é\"."
+#~ "¸íá ÷áěçëü đďóďóôü čá ĺăęáôáóôŢóĺé ěüíď ôá đéď óçěáíôéęÜ đáęÝôá.\n"
+#~ "¸íá đďóďóôü 100% čá ĺăęáôáóôŢóĺé üëá ôá ĺđéëĺăěÝíá đáęÝôá."
#~ msgid ""
-#~ "You can choose a security level for your system. Please refer to the "
-#~ "manual for complete\n"
-#~ " information. Basically, if you don't know what to choose, keep the "
-#~ "default option.\n"
-#~ msgstr ""
-#~ "Ěđďńĺßôĺ íá ĺđéëÝîĺôĺ Ýíá ĺđßđĺäď áóöÜëĺéáň ăéá ôď óýóôçěÜ óáň. Đáńáęáëţ "
-#~ "äéáâÜóôĺ ôď manual ăéá đëŢńĺéň\n"
-#~ " đëçńďöďńßĺň. ÂáóéęÜ, áí äĺí îÝńĺôĺ ôß íá ĺđéëÝîĺôĺ, ęńáôŢóôĺ ôçň "
-#~ "đńďęáčďńéóěÝíĺň ĺđéëďăÝň.\n"
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
+#~ "You have space on your disk for only %d%% of these packages.\n"
#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
#~ msgstr ""
-#~ "Ôď óýóôçěÜ óáň čá ĺđáíĺęęéíŢóĺé.\n"
+#~ "¸÷ĺôĺ óôď äßóęď óáň ÷ţńď ěüíď ăéá ôď %d%% áőôţí ôůí đáęÝôůí.\n"
#~ "\n"
-#~ "ĚĺôÜ ôçí ĺđáíĺęęßíçóç, ôď íÝď óáň Mandrake Linux óýóôçěá čá îĺęéíŢóĺé\n"
-#~ "áőôüěáôá. ĹÜí čÝëĺôĺ íá ĺęęéíŢóĺôĺ Ýíá Üëëď őđÜń÷ďí ëĺéôďőńăéęü, "
-#~ "đáńáęáëţ\n"
-#~ "äéáâÜóôĺ ôéň ó÷ĺôéęÝň ďäçăßĺň."
-
-#~ msgid "Czech (Programmers)"
-#~ msgstr "ÔóÝ÷éęď (ĐńďăńáěěáôéóôÝň)"
-
-#~ msgid "Slovakian (Programmers)"
-#~ msgstr "Óëďâáęßáň (đńďăńáěěáôéóôÝň)"
-
-#~ msgid "Name of the profile to create:"
-#~ msgstr "źíďěá ôďő đńďößë ăéá äçěéďőńăßá:"
-
-#~ msgid "Default Runlevel"
-#~ msgstr "Ĺî' ďńéóěďý Runlevel"
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "ÁđďčŢęĺőóç /etc/fstab"
-
-#~ msgid "Format all"
-#~ msgstr "Ěďńöďđďßçóç üëůí"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "ĚĺôÜ ôçí ěďńöďđďßçóç üëůí ôůí ęáôáôěŢóĺůí,"
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "üëá ôá äĺäďěÝíá óĺ áőôÝň ôéň ęáôáôěŢóĺéň čá ÷áčďýí"
-
-#~ msgid "Reload"
-#~ msgstr "Ĺđáíáöüńôůóç"
-
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr ""
-#~ "ČÝëĺôĺ íá äçěéďőńăŢóĺôĺ ěéá äéóęÝôôá áőôüěáôçň ĺăęáôÜóôáóçň ăéá "
-#~ "ęëůíďđďßçóç áőôŢň ôçň ĺăęáôÜóôáóçň;"
-
-#~ msgid "ADSL configuration"
-#~ msgstr "Ńőčěßóĺéň ADSL"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Remote queue name missing!"
-#~ msgstr "źíďěá áđďěĺěáęńőóěÝíçň ďőńÜň ëĺßđĺé!"
-
-#~ msgid ""
-#~ "Here you can specify any arbitrary command line into which the job should "
-#~ "be piped instead of being sent directly to a printer."
-#~ msgstr ""
-#~ "Ĺäţ ěđďńĺßôĺ íá ďńßóĺôĺ ěéá ăńáěěŢ ĺíôďëţí óôçí ďđďßá ç äéĺńăáóßá čá "
-#~ "äéáóůëçíţíĺôáé áíôß íá óôÝëíĺôáé ęáôĺőčĺßáí óôďí ĺęôőđůôŢ."
-
-#~ msgid "Command line"
-#~ msgstr "ĂńáěěŢ ĺíôďëţí"
-
-#~ msgid "A command line must be entered!"
-#~ msgstr "Ěéá ăńáěěŢ ĺíôďëţí đńÝđĺé íá ĺéóá÷čĺß!"
-
-#~ msgid "Enter Printer Name and Comments"
-#~ msgstr "ĹéóÜăĺôĺ ôď üíďěá ôďő ĺęôőđůôŢ ęáé ó÷üëéá"
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "Ôá đĺńéĺ÷üěĺíá ôďő áń÷ĺßďő ńőčěßóĺůí äĺí ěđďńďýí íá ěĺôáöńáóôďýí"
-
-#~ msgid "Unrecognized config file"
-#~ msgstr "Ěç áíáăíůńßóéěď áń÷ĺßď ńőčěßóĺůí"
-
-#~ msgid "Adapter"
-#~ msgstr "Adapter"
-
-#~ msgid "Disable network"
-#~ msgstr "Áđĺíĺńăďđďßçóç äéęôýďő"
-
-#~ msgid "Enable network"
-#~ msgstr "Ĺíĺńăďđďßçóç äéęôýďő"
-
-#~ msgid "Network Monitoring"
-#~ msgstr "Ĺđßâëĺřç Äéęôýďő"
-
-#~ msgid "Profile "
-#~ msgstr "Đńďößë "
-
-#~ msgid "Statistics"
-#~ msgstr "ÓôáôéóôéęÜ"
-
-#~ msgid "Sending Speed:"
-#~ msgstr "Ôá÷ýôçôá ÁđďóôďëŢň: "
-
-#~ msgid "Receiving Speed:"
-#~ msgstr "Ôá÷ýôçôá ËŢřçň: "
-
-#~ msgid "Logs"
-#~ msgstr "Logs"
-
-#~ msgid "Connecting to Internet "
-#~ msgstr "Óýíäĺóç óôď äéáäßęôőď (internet)"
-
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "Áđďóýíäĺóç áđü ôď äéáäßęôőď (internet)"
-
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "Áđďóýíäĺóç áđü ôď äéáäßęôőď (internet) áđÝôő÷ĺ."
-
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "Áđďóýíäĺóç áđü ôď äéáäßęôőď (internet) ďëďęëçńţčçęĺ"
-
-#~ msgid "Connection complete."
-#~ msgstr "Ç óýíäĺóç ďëďęëçńţčçęĺ"
-
-#~ msgid ""
-#~ "Connection failed.\n"
-#~ "Verify your configuration in the Mandrake Control Center."
-#~ msgstr ""
-#~ "Ç óýíäĺóç áđÝôő÷ĺ.\n"
-#~ "Ĺđéâĺâáéţóôĺ ôéň ńőčěßóĺéň óáň óôď ĘÝíôńď ĹëÝă÷ďő Mandrake."
-
-#~ msgid "sent: "
-#~ msgstr "áđďóôÜëčçęáí: "
-
-#~ msgid "received: "
-#~ msgstr "ĺëŢöčçóáí: "
-
-#~ msgid "average"
-#~ msgstr "ěÝóďň üńďň"
-
-#~ msgid ""
-#~ "You can now test your mouse. Use buttons and wheel to verify\n"
-#~ "if settings are good. If not, you can click on \"Cancel\" to choose "
-#~ "another\n"
-#~ "driver."
-#~ msgstr ""
-#~ "Ěđďńĺßôĺ ôţńá íá äďęéěÜóĺôĺ ôď đďíôßęé óáň. ÄďęéěÜóôĺ ôá đëŢęôńá ęáé ôď\n"
-#~ "ńďäÜęé ęáé âĺâáéůčĺßôĺ üôé üëá ëĺéôďőńăďýí üđůň đńÝđĺé. Áí ü÷é, ĺđéëÝîôĺ\n"
-#~ "\"Áęýńůóç\" ęáé ĺđéëÝîôĺ Üëëďí ďäçăü."
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "Óýíäĺóç DSL (Ţ ADSL)"
-
-#~ msgid "Choose"
-#~ msgstr "ĹđéëďăŢ"
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr ""
-#~ "Ěđďńĺßôĺ íá äţóĺôĺ ęáôĺőčĺßáí ôď URI ăéá đńüóâáóç óôďí ĺęôőđůôŢ ěÝóů CUPS."
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "Íáé, óôĺßëĺ äďęéěáóôéęŢ óĺëßäá ASCII"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "Íáé, óôĺßëĺ äďęéěáóôéęŢ óĺëßäá PostScrip"
-
-#~ msgid "Yes, print both test pages"
-#~ msgstr "Íáé, óôĺßëĺ ęáé ôéň äýď äďęéěáóôéęÝň óĺëßäĺň"
-
-#~ msgid "Paper Size"
-#~ msgstr "ĚÝăĺčďň ÷áńôéďý"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "ÁđďâďëŢ ÷áńôéďý ěĺ ôď đÝńáň ôçň ĺęôýđůóçň;"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "ĹđéëďăÝň ďäçăďý Uniprint"
-
-#~ msgid "Color depth options"
-#~ msgstr "ĹđéëďăÝň âÜčďőň ÷ńţěáôďň"
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "Ĺęôýđůóç ęĺéěÝíďő óáí PostScript;"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "Äéüńčůóç ęĺéěÝíďő-óęÜëáň;"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Áńéčěüň óĺëßäůí áíÜ óĺëßäĺň ĺîüäďő"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "ÁńéóôĺńÜ/äĺîéÜ đĺńéčţńéá óĺ óôéăěÝň (1/72 ôçň ßíôóáň)"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "ĐÜíů/ęÜôů đĺńéčţńéá óĺ óôéăěÝň (1/72 ôçň ßíôóáň)"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "ĹđéđëÝďí ĺđéëďăÝň GhostScript"
-
-#~ msgid "Extra Text options"
-#~ msgstr "ĹđéđëÝďí ĺđéëďăÝň ęĺéěÝíďő"
-
-#~ msgid "Reverse page order"
-#~ msgstr "Áíôßóôńďöç óĺéńÜ óĺëßäůí;"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Ôńüđďň óýíäĺóçň áđďěĺěáęńőóěÝíďő ĺęôőđůôŢ"
-
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected.\n"
-#~ "In case of doubt, select \"Remote CUPS server\"."
-#~ msgstr ""
-#~ "Ěĺ ôçí ÷ńŢóç ĺîőđçńĺôçôŢ CUPS, äĺí ÷ńĺéÜćĺôáé íá ńőčěßóĺôĺ ĺęôőđůôÝň \n"
-#~ "ĺäţ. Ďé ĺęôőđůôÝň čá áíáăíůńéóôďýí áőôüěáôá. Áí Ý÷ĺôĺ áěöéâďëßá, "
-#~ "ĺđéëÝîôĺ\n"
-#~ "\"ĹîőđçńĺôçôŢ CUPS\"."
-
-#~ msgid ""
-#~ "Every printer need a name (for example lp).\n"
-#~ "Other parameters such as the description of the printer or its location\n"
-#~ "can be defined. What name should be used for this printer and\n"
-#~ "how is the printer connected?"
-#~ msgstr ""
-#~ "ĘÜčĺ ĺęôőđůôŢň ÷ńĺéÜćĺôáé Ýíá üíďěá (ăéá đáńÜäĺéăěá lp). Ěđďńďýí ĺđßóçň "
-#~ "íá \n"
-#~ "ďńéóôďýí Üëëĺň đáńÜěĺôńďé üđůň đĺńéăńáöŢ Ţ ç ôďđďčĺóßá. Ôé üíďěá íá \n"
-#~ "ďńßóů ăé áőôüí ôďí ĺęôőđůôŢ ęáé đţň ĺßíáé óőíäĺäĺěÝíďň ď ĺęôőđůôçň;"
-
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a\n"
-#~ "name (often lp) and a spool directory associated with it. What\n"
-#~ "name and directory should be used for this queue and how is the printer "
-#~ "connected?"
-#~ msgstr ""
-#~ "ĘÜčĺ ďőńÜ ĺęôőđůôŢ (óôçí ďđďßá óôÝëíďíôáé ďé ĺęôőđţóĺéň) ÷ńĺéÜćĺôáé\n"
-#~ "Ýíá üíďěá (óő÷íÜ lp) ęáé Ýíáí ęáôÜëďăď. Ôé üíďěá ęáé ęáôÜëďăď íá \n"
-#~ "ďńßóů ăé áőôŢí ôçí ďőńÜ ĺęôőđůôŢ ęáé đţň ĺßíáé óőíäĺäĺěÝíďň ď ĺęôőđůôçň;"
-
-#~ msgid "Name of queue"
-#~ msgstr "źíďěá ďőńÜň"
+#~ "ĹÜí čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ ëéăüôĺńá áđü áőôÜ,\n"
+#~ "ĺđéëÝîôĺ ôď đďóďóôü ôůí đáęÝôůí đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ.\n"
+#~ "¸íá ÷áěçëü đďóďóôü čá ĺăęáôáóôŢóĺé ěüíď ôá đéď óçěáíôéęÜ đáęÝôá.\n"
+#~ "¸íá đďóďóôü %d%% čá ĺăęáôáóôŢóĺé üóď đĺńéóóüôĺńá ăßíĺôáé."
-#~ msgid "Spool directory"
-#~ msgstr "ĘáôÜëďăďň"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Čá ěđďńÝóĺôĺ íá ęÜíĺôĺ ëĺđôďěĺńÝóôĺńç ĺđéëďăŢ óôď ĺđüěĺíď âŢěá."
-#~ msgid "Provider dns 1"
-#~ msgstr "DNS 1"
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Đďóďóôü đáęÝôůí đńďň ĺăęáôÜóôáóç"
-#~ msgid "Provider dns 2"
-#~ msgstr "DNS 2"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "ĹđéëÝîôĺ ĺđßđĺäď áóöáëĺßáň"
diff --git a/perl-install/share/po/eo.po b/perl-install/share/po/eo.po
index 431df175c..148083a67 100644
--- a/perl-install/share/po/eo.po
+++ b/perl-install/share/po/eo.po
@@ -1,78 +1,110 @@
-#
-# MESAŘOJ DE DrakX
-# D. Dale Gulledge <dsplat@rochester.rr.com>, 2000
+# Esperanto drakbootdisk
+# Copyright (C) 2000, 2001 Mandrakesoft
+# D. Dale Gulledge <dsplat@rochester.rr.com>, 2000.
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2001-08-02 22:36-0500\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2001-08-22 19:15-0500\n"
"Last-Translator: D. Dale Gulledge <dsplat@rochester.rr.com>\n"
"Language-Team: Esperanto <eo@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-3\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 KB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 KB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB aý pli"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Elektu X servilon"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X servilo"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Plur-ekrana konfiguraźo"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Grafika karto"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Elektu memorkapaciton de via grafika karto"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Elektu grafikan karton"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "XFree Konfigurado"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Elektu X servilon"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Kiun konfiguron de XFree vi deziras havi?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X servilo"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Elektu X servilon"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X servilo"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "ISDN-a Konfiguraźon"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Kiun konfiguron de XFree vi deziras havi?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s kun 3D aparata akcelado"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -81,32 +113,17 @@ msgstr ""
"Via karto povas havi 3D aparatan akceladon, sed nur kun XFree %s.\n"
"XFree %s subtenas vian karton kiu eble havas pli bonan subtenon en 2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Vi povas havi 3D aparatan akceladan subtenon kun XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s kun 3D aparata akcelado"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Via karto povas havi 3D aparatan akceladon, sed nur kun XFree %s.\n"
-"NOTU KE ĆI TIO ESTAS EKSPERIMENTA SUBTENO KAJ EBLE SVENIGOS VIAN KOMPUTILON."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s kun EKSPERIMENTA 3D aparata akcelado"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -118,31 +135,58 @@ msgstr ""
"KOMPUTILON.\n"
"XFree %s subtenas vian karton kiu eble havas pli bonan subtenon en 2D."
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
+"Via karto povas havi 3D aparatan akceladon, sed nur kun XFree %s.\n"
+"NOTU KE ĆI TIO ESTAS EKSPERIMENTA SUBTENO KAJ EBLE SVENIGOS VIAN KOMPUTILON."
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree Konfigurado"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Elektu memorkapaciton de via grafika karto"
+#: ../../Xconfig/card.pm_.c:445
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Elektu opciojn por servilo"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Ću vi deziras teni la ţanřojn?\n"
+"Nuna konfiguro estas:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Elektu ekranon"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Ekrano"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Akomodata"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Genera"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Malfaru"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -164,514 +208,325 @@ msgstr ""
"sinkronamplekson kiu estas preter la kapabloj de via ekrano: vi eble\n"
"difektus vian ekranon. Se vi dubas, elektu zorgeman opcion."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Horizontala sinkronrapido (horizontal sync rate)"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Vertikala refreţigrapido (vertical refresh rate)"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Ekrano ne estas konfigurata"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Grafika karto ne jam konfigurita"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Vi ne jam elektas distingivojn"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Ću vi deziras provi la konfiguraźon?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Averto: provado de ći tiu grafika karto eble svenigos vian komputilon"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Provu konfiguraźon"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 koloroj (8 bitoj)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"penu ţanři iom da parametroj"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 mil koloroj (15 bitoj)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Eraro okazis:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 mil koloroj (16 bitoj)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Mi eliros post %d sekundoj"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 milionoj koloroj (24 bitoj)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Ću tio ći pravas?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 miliardoj koloroj (32 bitoj)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Eraro okazis, penu ţanři iom da parametroj"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Distingivoj"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Distingivo"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Elektu distingivon kaj kolorprofundon"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Grafika karto: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 servilo: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Plu"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Nuligu"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Jeso"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Spertula Modalo"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Montru tuton"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Ću vi deziras provi la konfiguraźon?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Distingivoj"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Provu konfiguraźon"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Klavara aranřo: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Speco de muso: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Musaparato: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Ekrano: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Ekrana horizontala sinkronrapido (horizontal sync rate): %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Ekrana vertikala refreţigrapido (vertical refresh rate): %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Grafika karto: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Grafika karto: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Graifka memoro: %s KB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Kolorprofuneco: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Distingivo: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 servilo: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 pelilo: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Preparas X-Fenestran konfiguraźon"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Kion vi deziras fari?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Ţanřu Ekranon"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Ţanřu Grafika karto"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Ţanřu Servilajn opciojn"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Ţanřu distingivon"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Montru informon"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Provu denove"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Ćesu"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Ću vi deziras teni la ţanřojn?\n"
-"Nuna konfiguro estas:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X Fenestro će komenco"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Mi povas konfiguri vian komputilon tiel ke ři aýtomate lanćos X kiam ři\n"
"ekfunkcias. Ću vi deziras ke X aýtomate lanćos?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Bonvolu resaluti en %s-n por aktivigi la ţanřojn."
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr ""
-"Bonvole adiaýu kaj sekve uzu Kontrol-Alt-Retropaţo (Ctrl-Alt-Backspace)."
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 koloroj (8 bitoj)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mil koloroj (15 bitoj)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mil koloroj (16 bitoj)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milionoj koloroj (24 bitoj)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 miliardoj koloroj (32 bitoj)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 KB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 KB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB aý pli"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Normala VGA, 640x480 će 60 hercoj (Hz)"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Supera VGA, 800x600 će 56 hercoj (Hz)"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr ""
-"8514 kongrua karto, 1024x768 će 87 hercoj (Hz) interplektita (neniu 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr ""
-"Supera VGA, 1024x768 će 87 hercoj (Hz) interplektita, 800x600 će 56 hercoj"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Etendita Supera VGA, 800x600 će 60 hercoj (Hz), 640x480 će 72 hercoj"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr ""
-"Neinterplektita Supera VGA, 1024x768 će 60 hercoj (Hz), 640x480 će 72 hercoj"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Altfrekvenca Supera VGA, 1024x768 će 70 hercoj (Hz)"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Plurfrekvenca kiu povas fari 1024x768 će 60 hercoj (Hz)"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Plurfrekvenca kiu povas fari 1280x1024 će 74 hercoj (Hz)"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Plurfrekvenca kiu povas fari 1280x1024 će 76 hercoj (Hz)"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Ekrano kiu povas fari 1600x1200 će 70 hercoj (Hz)"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Ekrano kiu povas fari 1600x1200 će 76 hercoj (Hz)"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Unua sektoro de starta subdisko"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Unu sektoro de drajvo (ĆefStartRikordo)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "SILO Instalado"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Kie vi deziras instali la startţargilon?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "LILO/grub Instalado"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr ""
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr ""
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr ""
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr ""
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr ""
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Startţargilo ćefaj opcioj"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Startţargilo por uzi"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Startţargila instalado"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Starta aparato"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ne funkcias kun malnovaj BIOSoj)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Kompakta"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "kompakta"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Grafika reřimo"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Prokrastoperiodo antaý starti defaýltan sistemon"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Pasvorto"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Pasvorto (denove)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Limigu komandliniajn opciojn"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "limigu"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Purigu /tmp dum ćiuj startadoj"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Preciza kvanto de memoro se bezonata (trovis %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Ebligu multoblajn profilojn"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Donu kvanton de memoro en MB"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Opcio ``Limigu komandliniajn opciojn'' ne estas utila sen pasvorto"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Bonvole provu denove"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "La pasvortoj ne egalas"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr ""
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr ""
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr ""
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr ""
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr ""
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Defaýlta Mastruma Sistemo?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -680,83 +535,83 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Jen la diversaj enskriboj.\n"
"Vi povas aldoni pli aý ţanři la ekzistantajn."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Aldonu"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Finata"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Ţanřu"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Kiun specon de enskribo vi deziras aldoni"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linukso"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Alia Mastruma Sistemo (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Alia Mastruma Sistemo (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Alia Mastruma Sistemo (Vindozo...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Kerna bildo"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Radiko"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Alfiksu"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Lega-skriba"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabelo"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Danřera"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Etikedo"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Defaýlta"
@@ -789,53 +644,75 @@ msgstr "Vi devas havi interţanřan subdiskon"
msgid "This label is already used"
msgstr "Ći tiu etikedo estas jam uzata"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Trovis %s %s interfacojn"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Ću vi havas alian?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Ću vi havas iun %s interfacon?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Ne"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Jes"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Vidu hardvaran informon"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instalas pelilon por %s karto %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(modulo %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Nun vi povas provizi řiajn opciojn al modulo %s.\n"
+"Opcioj estas en la formo ``nomo=valoro nomo2=valoro2 ...''.\n"
+"Ekzemple, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Modulaj opcioj:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Kiun %s pelilon devus mi provi?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -852,37 +729,15 @@ msgstr ""
"por la informo ři bezonas? Kelkfoje, esplori svenas komputilon, sed\n"
"ři ne devus kaýzi difekton."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Aýtomate esploru"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Specifu opciojn"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Nun vi povas provizi řiajn opciojn al modulo %s.\n"
-"Opcioj estas en la formo ``nomo=valoro nomo2=valoro2 ...''.\n"
-"Ekzemple, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Modulaj opcioj:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -891,49 +746,54 @@ msgstr ""
"Ţargado de modulo %s malsukcesis.\n"
"Ću vi deziras trovi denove kun aliaj parametroj?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(jam aldonis %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Ći tiu pasvorto estas tro simpla"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Bonvole donu salutnomon"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Salutnomo devas enhavi nur minusklojn, ciferojn, `-' kaj `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Ći tiu salutnomo estas jam aldonita"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Ći tiu salutnomo estas jam aldonita"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Aldonu uzanto"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -942,32 +802,32 @@ msgstr ""
"Enigu uzanton\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Akceptu uzanto"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Vera nomo"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Salutnomo"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Ţelo"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Piktogramo"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Aýtomata-enregistrado"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -976,124 +836,104 @@ msgstr ""
"Mi povas konfiguri vian komputilon por aýtomate enregistri unu uzulon kiam\n"
"ři startas. Se vi ne deziras uzi ći tion, alklaku la `Nuligu' butonon."
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Elektu la defaýltan uzulon:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Elektu la fenestro-administrilon por lanći:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr ""
"Vi povas elektu aliajn lingvojn kiujn estos uzeblaj malantaý la instalado"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Ćiuj"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr "Aldonu uzulon"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Akomodata"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr "CUPS startas"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Ći tiu pakaźo devus esti promociata.\n"
"Ću vi certas ke vi deziras malelekti řin?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Nuligu"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Bonvenon Al Rompistoj"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Malbona"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Laýnorma"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Alta"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Alta"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoja"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1103,7 +943,7 @@ msgstr ""
"por uzi, sed delikatega: vi devus neniam uzi ři surrete.\n"
"Ři ne havas pasvortojn."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1111,7 +951,7 @@ msgstr ""
"Pasvortoj nun estas ebligataj, sed uzado kiel reta komputilo estas ankoraý\n"
"ne rekomendita."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1120,55 +960,56 @@ msgstr ""
"Ći tiu estas la normala sekureco rekomendata por komputilo kiu estos uzata\n"
"por konekti al la Interreto kiel kliento. Nun estas sekurecaj kontroloj."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Kun ći tiu sekurnivelo, uzado de ći tiu komputilo kiel servilo ebliřas.\n"
"La sekureco nun estas sufiće alta por uzi la sistemon kiel servilo kiu\n"
"akceptas konektojn de multaj klientoj."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Ni uzas aspektojn de la kvara nivelo, sed nun la komputilo estas tute\n"
"malfermita. Sekurecaj aspektoj estas će iliaj maksimumoj."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Elektu sekurnivelon?"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
#, fuzzy
msgid "Security level"
msgstr "Elektas sekurnivelon"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Elektu opciojn por servilo"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1185,20 +1026,20 @@ 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_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Bonvenon al GRUB la elektilo por mastrumaj sistemoj!"
#. -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_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Uzu la %c kaj %c klavoj por elekti kiun enskribon estas emfazata."
#. -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_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr ""
"Premu la enenklavon por starti la elektatan mastruman sistemon, 'e' por\n"
@@ -1206,33 +1047,33 @@ 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_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "ordonoj antaux startado, aux 'c' por uzi komandan linion."
#. -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_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "La emfazata enskribo startos auxtomate post %d sekundoj."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "mankas sufiće da spaco en /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Kie vi deziras instali la startţargilon?"
@@ -1246,17 +1087,21 @@ msgstr ""
msgid "Boot Style Configuration"
msgstr "Post-instala konfigurado"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Dosiero"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
-msgstr "/Dosiero/_Eliru"
+msgstr "/Dosiero/_Foriru"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
-msgstr "<control>E"
+msgstr "<stir>F"
#: ../../bootlook.pm_.c:91
msgid "NewStyle Categorizing Monitor"
@@ -1289,12 +1134,12 @@ msgstr "Yaboot modalo"
#: ../../bootlook.pm_.c:104
#, fuzzy, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr "Disdividado de Interreta Konekto"
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Konfiguru"
@@ -1304,7 +1149,7 @@ msgid "System mode"
msgstr "Sistema modalo"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr ""
#: ../../bootlook.pm_.c:148
@@ -1315,14 +1160,16 @@ msgstr ""
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "Jes"
@@ -1372,7 +1219,7 @@ msgid "Screenshots will be available after install in %s"
msgstr ""
"Vi povas elektu aliajn lingvojn kiujn estos uzeblaj malantaý la instalado"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
#, fuzzy
msgid "France"
msgstr "Franca"
@@ -1381,7 +1228,7 @@ msgstr "Franca"
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Belga"
@@ -1410,11 +1257,12 @@ msgstr "Norvega"
msgid "Sweden"
msgstr "Sveda"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr "Itala"
@@ -1424,7 +1272,7 @@ msgstr "Itala"
msgid "Austria"
msgstr "seria"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1432,8 +1280,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr "Bonvolu fari rezervan kopion de via dateno antaýe"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Legu zorge"
@@ -1447,11 +1295,12 @@ msgstr ""
"sufićas)\n"
"će la komenco de la disko"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Eraro"
@@ -1459,11 +1308,11 @@ msgstr "Eraro"
msgid "Wizard"
msgstr "Sorćisto"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Elektu agon"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1475,78 +1324,78 @@ msgstr ""
"Mi sugestas ke vi unue regrandecigi tiun subdiskon\n"
"(klaku sur řin, kaj poste klaku sur \"Regrandecigu\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Bonvolu klaki sur subdiskon"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Detaloj"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "2a Etendata (Ext2)"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "Dosierlokigtabelo (FAT)"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
#, fuzzy
msgid "Journalised FS"
msgstr "muntado malsukcesis"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Interţanřa"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Malplena"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Alia"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Specoj de dosiersistemoj:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Kreu"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tipo"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Uzu ``%s'' anstataýe"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Forigu"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Uzu ``Malmuntu'' antaýe"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1555,72 +1404,77 @@ msgstr ""
"estos\n"
"perdata"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose a partition"
msgstr "Elektu agon"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose another partition"
msgstr "Kreu novan subdiskon"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
#, fuzzy
msgid "Exit"
msgstr "2a Etendata (Ext2)"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Ţanřu al Spertula reřimo"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Ţanřu al Normala reřimo"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Malfaru"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Ću mi devus daýri malgraýe?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Ću eliru sen konservi"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Ću eliru sen skribi la subdisktabelon?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Ću vi deziras provi la konfiguraźon?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Aýtomate disponigu"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Forviţu ćion"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Plu"
+
+#: ../../diskdrake/interactive.pm_.c:263
#, fuzzy
msgid "Hard drive information"
msgstr "Detektado de fiksdisko(j)"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Ćiuj el la subdiskoj estas uzata"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Mi ne povas aldoni plu da subdiskoj"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1628,35 +1482,35 @@ msgstr ""
"Por havi plu da subdiskoj, bonvole forigu unu por povi krei etendigitan\n"
"subdiskon"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr "Skribu subdiskotabelon"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr "Sava subdiskotabelo"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Sava subdiskotabelo"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr "Sava subdiskotabelo"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Removable media automounting"
msgstr "Aýtomata muntado de demetebla medio"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Elektu dosieron"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1664,11 +1518,11 @@ msgstr ""
"La rezerva subdisktabelo ne estas la sama grandeco\n"
"Ću daýras tamen?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Averto"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1676,124 +1530,131 @@ msgstr ""
"Enţovu disketon en drajvo\n"
"Ćiuj datenoj sur tiu disketo estos perdata"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Provas savi subdisktabelon"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
#, fuzzy
msgid "Detailed information"
msgstr "Montru informon"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Surmetingo"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opcioj"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Regrandecigu"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Movu"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formatu"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Muntu"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Aldonu al RAID (Redundanca Aro de Malmultekostaj Diskoj)"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Aldonu al LVM (Redundanca Aro de Malmultekostaj Diskoj)"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Malmuntu"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Forigu de RAID (Redundanca Aro de Malmultekostaj Diskoj)"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Forigu de LVM (Redundanca Aro de Malmultekostaj Diskoj)"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Ţanřu RAID (Redundanca Aro de Malmultekostaj Diskoj)"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Uzu por retrokonektado"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Kreu novan subdiskon"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Komenca sektoro: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Grandeco en MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Speco de dosiersistemo: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Surmetingo: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Prefero: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+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/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Formatas retrokonektan dosieron %s"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Ţanřu subdiskspecon"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Kiun dosierosistemo vi deziras uzi?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Kie vi deziras munti retrokonektan dosieron %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Kie vi deziras munti aparato %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1801,132 +1662,139 @@ msgstr ""
"Ne povas malfiksi surmetingon ćar ći tiu subdisko estas uzata por\n"
"retrokonektado. Unue forigu la retrokonektadon."
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Kalkulas FAT dosiersistemajn limojn"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Regrandecigas"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Ći tiu subdisko ne estas regrandecigebla"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Ćiuj datenoj en ći tiu subdisko devus esti rezervata"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Post vi regrandecigas subdiskon %s, ćiuj datenoj en ći tiu subdisko estos\n"
"perdata"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Elektu la novan grandecon"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
#, fuzzy
msgid "New size in MB: "
msgstr "Grandeco en MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Al kiu disko vi deziras movi?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektoro"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Al kiu sektoro vi deziras movi?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Movante"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Movas subdisko..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "nova"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr ""
"Elektu ekzistantan RAID (Redundanca Aro de Malmultekostaj Diskoj) por\n"
"aldoni al"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Vi ne povas uzi ći tiun subdiskon por retrokonektado"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Retrokonektado"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Retrokonekta dosieronomo: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr "Vera nomo"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Alia retrokonektado jam uzas tiun dosieron, elektu alian"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Dosiero jam ekzistas. Ću vi deziras uzi řin?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
#, fuzzy
msgid "Mount options"
msgstr "Modulaj opcioj:"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "aparato"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "nivelo"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "grandeco de pecoj"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Zorgu: ći tiu operacio estas danřera."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Kiun specon de subdiskado?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr ""
+"Ći tiu pakaźo devus esti promociata.\n"
+"Ću vi certas ke vi deziras malelekti řin?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1938,7 +1806,7 @@ msgstr ""
"Aý vi uzos LILO kaj ři ne funkcios, aý vi ne uzos LILO kaj vi ne bezonas\n"
"/boot."
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1950,7 +1818,7 @@ msgstr ""
"subdiskon. Se vi intencas uzi la LILO startadministranto, zorgu aldoni\n"
"/boot subdiskon."
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1960,139 +1828,139 @@ msgstr ""
"Neniu startţargilo povas trakti tiun sen /boot subdisko.\n"
"Do zorgu aldoni /boot subdiskon."
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "La subdisktabelo de drajvo %s estos skribata al disko!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Vi bezonos restarti antaý ol la ţanřo povas efektiviři"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Post vi formatas la subdiskon %s, ćiuj datenoj en ći tiu subdisko estos\n"
"perdata"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Formatas"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatas retrokonektan dosieron %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Formatas subdiskon %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Hide files"
msgstr "mkraid malsukcesis"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr "Mankas sufićan da libera spaco por disponigi novajn subdiskojn"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Mankas sufićan da libera spaco por disponigi novajn subdiskojn"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Distingivo: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Aparato: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS-a diskingolitero: %s (nur konjekto)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Speco: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Nomo: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Komenco: sektoro %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Grandeco: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sektoroj"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "De cilindro %d al cilindro %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Formatita\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Ne formatita\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Muntita\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID (Redundanca Aro de Malmultekostaj Diskoj) md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Retrokonekta(j) dosiero(j): %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2100,27 +1968,27 @@ msgstr ""
"Subdisko startata defaýlte\n"
" (por MS-DOS starto, ne por \"lilo\")\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Nivelo %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Grandeco de pecoj %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-aj (Redundanca Aro de Malmultekostaj Diskoj) diskoj %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Retrokonekta dosieronomo: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2128,7 +1996,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2136,65 +2004,65 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Grandeco: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrio: %s cilindroj, %s kapoj, %s sektoroj\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Informo: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-aj (Redundanca Aro de Malmultekostaj Diskoj) diskoj %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Subdiskotabelospeco: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "će buso %d identigaźo %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Opcioj: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Speco de dosiersistemo: "
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Ći tiu pasvorto ests tro simpla (ři devas esti almenaý %d signoj longa)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "La pasvortoj ne egalas"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2205,36 +2073,66 @@ msgstr "Ţanřu subdiskspecon"
#: ../../diskdrake/removable_gtk.pm_.c:28
#, fuzzy
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Bonvolu klaki sur subdiskon"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Aýtentikigado"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Interreto"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Salutnomo"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Salutnomo"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS Domajno"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "DNA servilo"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatado de %s malsukcesis"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "ne scias kiel formati %s kiel speco %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "eraro dum malmunti %s: %s"
@@ -2251,68 +2149,322 @@ msgstr ""
msgid "server"
msgstr "servilo"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Vi ne povas uzi JFS por subdisko pli malgranda ol 16MB"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Vi ne povas uzi ReiserFS por subdisko pli malgranda ol 32MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Surmetingoj devas komenci kun antaýa /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Jam estas subdisko kun surmetingo će %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Ći tiu dosierujo devus resti interne de la radika dosierosistemo (/)"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr "Vi bezonas veran dosiersistemon (ext2, reiserfs) por tiu surmetingo\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Vi bezonas veran dosiersistemon (ext2, reiserfs) por tiu surmetingo\n"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Mankas sufićan da libera spaco por disponigi novajn subdiskojn"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Eraro dum malfermado de %s por skribi: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Eraro okazis - neniuj validaj aparatoj estis trovata sur kiuj vi povas krei "
"novajn dosiersistemojn. Bonvolu kontroli vian ekipaźon por la kaýzo de ći "
"tiu problemo."
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Vi ne havas iujn ajn subdiskojn!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Malproksima printilo"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Genera"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Memoro de Karto (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Formatas"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Ţanřu subdiskspecon"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Ćesu"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Helpo"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Helpo"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Helpo/_Pri..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Muso"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Memoro de Karto (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Nuligu"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Muso"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Priskribo"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Aýtentikigado"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Elektu dosieron"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Prokura kluzaparato"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 butonoj"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Detektado de fiksdisko(j)"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Vidu hardvaran informon"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Montru informon"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Konfiguru muson"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "Duobla surmetingo %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Bonvole atendu"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d sekundoj"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Legas datumbason de CUPS peliloj..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Aýtomate esploru"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2326,7 +2478,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2397,9 +2549,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2588,7 +2739,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2600,9 +2751,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2648,21 +2798,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2678,9 +2827,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
#: ../../help.pm_.c:347
@@ -2701,9 +2850,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -2813,38 +2961,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -2918,11 +3060,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -2946,7 +3088,7 @@ msgid ""
"choose this unless you know what you are doing."
msgstr ""
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -2961,7 +3103,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -2976,7 +3118,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -2992,7 +3134,7 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
#, fuzzy
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
@@ -3001,23 +3143,23 @@ msgstr ""
"Bonvolu elekti la řustan pordon. Ekzemple, la COM1-a\n"
"pordo sub MS Vindozo estas nomata ttyS0 sub GNU/Linukso."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3039,7 +3181,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3061,7 +3203,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3069,7 +3211,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3090,7 +3232,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
#, fuzzy
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
@@ -3114,7 +3256,7 @@ msgstr ""
"al iu ajn. Ćiokaze vi povas forstreki la respondajn enskribojn. Sed\n"
"ćiokaze, vi bezonos startdiskon por starti ilin!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
#, fuzzy
msgid ""
"You must indicate where you wish to place the information required to boot\n"
@@ -3130,29 +3272,28 @@ msgstr ""
"Krom se vi scias precize kion vi faras, elektu \"Unua sektoro de\n"
"drajvo (MBR)\""
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3161,7 +3302,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
#, fuzzy
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
@@ -3187,7 +3328,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"DrakX provos serći PCI-a(j)n SCSI-a(j)n adaptilo(j)n\n"
@@ -3211,7 +3352,7 @@ msgstr ""
"de dokumentaźo de aparato, aý de la TTT-ejo de la fabrikanto\n"
"(se vi havas atingon al la reto)."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3221,9 +3362,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3235,7 +3375,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" 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"
@@ -3261,7 +3401,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3288,18 +3428,17 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3307,12 +3446,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3328,14 +3466,14 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3346,7 +3484,7 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3354,12 +3492,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3374,26 +3512,26 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr ""
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Enţovu disketon en drajvo %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Eraro legante dosiero %s"
@@ -3424,7 +3562,7 @@ msgstr "Vi devas havi interţanřan subdiskon"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -3432,61 +3570,61 @@ msgstr ""
"\n"
"Ću vi deziras daýri tamen?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Vi devas havi interţanřan subdiskon"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Uzu liberan spacon"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Mankas sufićan da libera spaco por disponigi novajn subdiskojn"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Uzu ekzistantajn subdiskojn"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Ne ekzistas subdiskojn por uzi"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Uzu la Vindoza subdiskon por retrokonektado"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
#, fuzzy
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Kiun subdiskon vi deziras uzi por meti Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Elektu la grandecojn"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Radikosubdiska grandeco en MB: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Interţanřa subdiska grandeco en MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Uzu la liberan spacon sur la Vindoza subdisko"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Kiun subdiskon vi deziras regrandecigi?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Kalkulas Vindozajn dosiersistemajn limojn"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -3495,12 +3633,15 @@ msgstr ""
"La regrandecigilo por la FAT (Dosiero-Atingo-Tablo) ne povas trakti\n"
"vian subdiskon, la sekvanta eraro okazis: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"Via Vindoza subdisko estas tro fragmentigata, bonvole uzu ``defrag'' antaýe"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -3522,56 +3663,56 @@ msgstr ""
"instaladon. Ankaý vi devus fari rezervan kopion de via dateno.\n"
"Kiam vi estas certa, klaku \"Jeso\"."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Kiun grandecon vi deziras teni por Vindozo?"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "subdisko: %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Regrandeciřo de FAT malsukcesis: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Ne ekzistas FAT-ajn (Dosiero-Atingo-Tablo) subdiskojn por regrandecigi\n"
"aý uzi kiel retrokonektaj subdiskoj (aý ne estas sufića da spaco)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Forviţu la tutan diskon"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Forigu Vindozon"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Vi havas pli ol unu fiksdisko, sur kiu vi deziras instali Linukson?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"Ćiuj ekzistantaj subdiskoj kaj iliaj datenoj estos perdata sur drajvo %s"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
#, fuzzy
msgid "Custom disk partitioning"
msgstr "Uzu ekzistantajn subdiskojn"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Uzu fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -3580,12 +3721,12 @@ msgstr ""
"Nun vi povas dispartigi %s.\n"
"Kiam vi finiřos, ne forgesu savi kun `w'."
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
#, fuzzy
msgid "You don't have enough free space on your Windows partition"
msgstr "Uzu la liberan spacon sur la Vindoza subdisko"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
#, fuzzy
msgid "I can't find any room for installing"
msgstr "Mi ne povas aldoni plu da subdiskoj"
@@ -3594,16 +3735,16 @@ msgstr "Mi ne povas aldoni plu da subdiskoj"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "La Dispartigsorćilo de DrakX trovis ći tiujn solvojn:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Dispartigado malsukcesis: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Startado de la reto"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Haltas de la reto"
@@ -3615,12 +3756,12 @@ msgstr ""
"Eraro okazis, sed mi ne scias kiel trakti řin bone.\n"
"Daýri je via propra risko."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Duobla surmetingo %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3632,12 +3773,12 @@ msgstr ""
"Kontrolu la KDROM sur instalata komputilo per\n"
"\"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Bonvenon al %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Neniu disketilo havebla"
@@ -3647,9 +3788,9 @@ msgstr "Neniu disketilo havebla"
msgid "Entering step `%s'\n"
msgstr "Eniras paţon `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -3659,203 +3800,158 @@ msgstr ""
"instaladon. Por ći tio, premu `F1' kiam vi startas de KDROM, kaj sekve\n"
"tajpu `text'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Instalklaso"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Bonvole, elektu unu el la sekvantaj specoj de instalado:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "La totala grandeco de la grupoj vi elektis estas proksimume %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Se vi volas instali malpli ol ći tiu grandeco,\n"
-"elektu la procenton el la pakaźoj kiuj vi deziras instali.\n"
-"\n"
-"Malalta procento instalos nur la plej gravajn pakaźojn;\n"
-"100%% instalos ćiujn pakaźojn."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Vi havas spacon će via disko por nur %d%% da ći tiuj pakaźoj.\n"
-"\n"
-"Se vi deziras instali malpli ol tiom,\n"
-"elektu la procenton el la pakaźoj kiun vi deziras instali.\n"
-"Malalta procento instalos nur la plej gravajn pakaźojn;\n"
-"%d%% instalos tiom pakaźojn kiom eblajn."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Vi povos elekti ilin pli precize en la sekvanta paţo."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Procento da pakaźoj por instali"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Elektado de Pakaźaj Grupoj"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Elektado de individuaj pakaźoj"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Tuta grandeco: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Malbona pakaźo"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Nomo: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Versio: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Grandeco: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Graveco: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Vi ne povas elekti ći tiun pakaźon ćar ne estas sufiće da spaco por instali\n"
"řin."
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "La sekvaj pakaźoj estos instalataj"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "La sekvaj pakaźoj estos malinstalataj"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Vi ne povas elektu/malelektu ći tiun pakaźon"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Ći tiu estas deviga pakaźo, vi ne povas malelekti řin"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Vi ne povas malelekti ći tiun pakaźon. Ři estas jam instalita."
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Ći tiu pakaźo devus esti promociata.\n"
"Ću vi certas ke vi deziras malelekti řin?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Vi ne povas malelekti ći tiun pakaźon. Ři devus esti promociata."
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Instalu"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Ţargu/Konservu sur disketo"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
#, fuzzy
msgid "Updating package selection"
msgstr "Elektado de individuaj pakaźoj"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
#, fuzzy
msgid "Minimal install"
msgstr "Eliru instalprogramon"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Elektu la pakaźojn kiuj vi deziras instali"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Instalanta"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Taksas"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Tempo restanta "
-#: ../../install_steps_gtk.pm_.c:528
+#: ../../install_steps_gtk.pm_.c:474
#, fuzzy
-msgid "Please wait, preparing installation"
+msgid "Please wait, preparing installation..."
msgstr "Preparas instaladon"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d pakaźoj"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Instalanta pakaźo %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Akceptu"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Malakceptu"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -3871,17 +3967,17 @@ msgstr ""
"kiam vi finos.\n"
"Se vi ne havas řin, klaku \"Nuligu\" por eviti la instaladon de ći tiu KDROM."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Ću vi deziras daýri tamen?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Estis eraro ordigi pakaźojn:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Estis eraro dum instalado de pakaźoj:"
@@ -3926,11 +4022,11 @@ msgstr "Eraro okazis"
msgid "Do you really want to leave the installation?"
msgstr "Ću vi deziras provi la konfiguraźon?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Licenca kontrakto"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -3945,7 +4041,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -4051,113 +4147,117 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Klavaro"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Bonvole, elektu vian klavaran aranřon."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Kiun instalklaso deziras vi?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Instalu/Řisdatigu"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Ću tiu ći estas instalado aý řisdatigado?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Rekomendata"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Spertulo"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade"
msgstr "Řisdatigu"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr "Elektado de individuaj pakaźoj"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Bonvole, elektu la specon de via muso."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Muspordo"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Bonvole, elektu al kiu seria pordo estas via muso konektata."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Konfiguras PCMCIA kartojn..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Konfiguras IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "neniuj haveblaj subdiskoj"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Elektu surmetingojn"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4169,7 +4269,7 @@ msgstr ""
"\n"
"Ću vi konsentas perdi ćiujn subdiskojn?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4177,134 +4277,137 @@ msgstr ""
"DiskDrake malsukcesis řuste legi la subdisktabelon.\n"
"Daýri je via propra risko!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Elektu la subdiskoj kiuj vi deziras formati"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Radikosubdisko"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Kiu estas la radikosubdisko (/) će via sistemo?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Vi bezonas restarti por la ţanřoj al la subdisktabelo efektivigi"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Elektu la subdiskoj kiuj vi deziras formati"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Ću kontrolas malbonajn blokojn?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Formatas subdiskojn"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Kreas kaj formatas dosieron %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Nesufića interţanřospaco por plenumi instalado, bonvolu aldoni iom"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Serćas haveblajn pakaźojn"
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "Serćas haveblajn pakaźojn"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Trovadas pakaźojn por promocii"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Vi ne povas malelekti ći tiun pakaźon. Ři estas jam instalita."
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Via komputilo ne havas sufiće da spaco por instalado aý promocio (%d > %d)."
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Kompleta (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimuma (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Rekomendata (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Ţargu de disketo"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Ţargas de disketo"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Elektado de Pakaźoj"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Enţovu disketon en drajvo %s"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Konservu sur disketo"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4315,16 +4418,16 @@ msgstr ""
"Se vi mankas nur iujn de la KDROM-oj, malelektu ilin, kaj poste klaku \"Jes"
"\"."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "KDROM etikedata \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Preparas instaladon"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4333,23 +4436,23 @@ msgstr ""
"Instalas pakaźo %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Post-instala konfigurado"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Enţovu disketon en drajvo %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Enţovu malplenan disketon en drajvo %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -4414,161 +4517,192 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Kontaktu la spegulon por havigi la liston de havebla pakaźoj"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Elektu spegulon de kiu havigi la pakaźojn"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Kontaktu la spegulon por havigi la liston de havebla pakaźoj"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "kio estas vian horzonon?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Ću via hardvara horlořo estas řustigata en GMT?"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "NTP Servilo"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Malproksima CUPS-a servilo"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Neniu printilo"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Ću vi havas alian?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Muso"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Printilo"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "ISDN-karto"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Sonkarto"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Forigu Vindozon"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Lokaj dosieroj"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Difinu pasvorton de root"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Neniu pasvorto"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Ći tiu pasvorto ests tro simpla (ři devas esti almenaý %d signoj longa)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Aýtentikigado"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "Aýtentikiga LDAP"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "LDAP Servilo"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "Aýtentikiga NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS Domajno"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS Servilo"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Aýtentikiga LDAP"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "NIS Domajno"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NTP Servilo"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -4596,19 +4730,19 @@ msgstr ""
"Se vi deziras krei startdisketon por via sistemo, enţovu disketon en la\n"
"unua drajvo kaj klaku \"JES\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Unua disketa drajvo"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Dua disketa drajvo"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Ellasu"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4632,7 +4766,7 @@ msgstr ""
"sistemaj paneoj. Ću vi deziras krei startdisketo por via sistemo?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -4641,28 +4775,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Bedaýrinde, neniu disketdrajvo havebla"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Elektu la disketdrajvo vi deziras uzi por krei la startdisketon"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Enţovu disketon en drajvo %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Kreas startdisketon"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Preparas startţargilon"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4670,11 +4804,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Ću vi deziras uzi aboot-on?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -4682,16 +4816,16 @@ msgstr ""
"Eraro daýre mi instalis \"aboot\",\n"
"Ću mi devus provi perforte instali eć se tio detruas la unuan subdiskon?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
#, fuzzy
msgid "Installing bootloader"
msgstr "Instalu restart-ţargilon"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Instalado de startţargilo malsukcesis. La sekvanta eraro okazis:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4702,25 +4836,25 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Enţovu malplenan disketon en drajvo %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Kreas aýtoinstalan disketon"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -4731,18 +4865,22 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Kreu aýtoinstalan disketon"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4751,15 +4889,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Aýtomata"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Reludu"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
#, fuzzy
msgid "Save packages selection"
msgstr "Elektado de individuaj pakaźoj"
@@ -4787,418 +4925,402 @@ msgstr ""
msgid "Choose a file"
msgstr "Elektu agon"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr ""
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Bonvole atendu"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Informo"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Etendu Arbon"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Maletendu Arbon"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Ţanřu inter ebena kaj ordigita je grupoj"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Malbona elektaźo, provu denove\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Via elektaźo? (defaýlo estas %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Via elektaźo? (defaýlo estas %s) "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Opcioj: %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr "Ću vi deziras uzi aboot-on?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Via elektaźo? (defaýlo estas %s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Ćeśa (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Germana"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak-a"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Hispana"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finna"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Franca"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norvega"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Pola"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Rusa"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Sveda"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Unuiřinta Regna klavaro"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Usona klavaro"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Albana"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armena (malnova)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armena (skribmaţina)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armena (fonetika)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbajřana (latina)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belga"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armena (fonetika)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Bulgara"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brazila (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Belarusa"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Svisa (germana aranřo)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Svisa (franca aranřo)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Ćeśa (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Germana (neniom da mortaj klavoj)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Dana"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak-a (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak-a (Norvega)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak-a (US)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estona"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Kartvela (\"Rusa\" aranřo)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Kartvela (\"Latina\" aranřo)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Greka"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Hungara"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Kroata"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Israela"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Israela (fonetika)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Irana"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islanda"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Itala"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Japana 106 klavoj"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Korea klavaro"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latinamerika"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Litova AZERTY-a (malnova)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Litova AZERTY-a (nova)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litova \"numero-vica\" QWERTY-a"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litova \"fonetika\" QWERTY-a"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
#, fuzzy
msgid "Latvian"
msgstr "Loko"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Macedona"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Nederlanda"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Pola (qwerty aranřo)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Pola (qwertz aranřo)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugala"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Kanada (Kebeka)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Rumana (qwertz-a)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Rumana (qwerty-a)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Rusa (Yawerty-a)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slovena"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovaka (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovaka (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Azerbajřana (cirila)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Tabelo"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Taja klavaro"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Taja klavaro"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turka (tradicia \"F\" modelo)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turka (moderna \"Q\" modelo)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukrajna"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Usona klavaro (internacia)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vjetnama \"numero-vica\" QWERTY-a"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Jugoslava (latina/cirila)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5211,7 +5333,31 @@ msgstr "Cirklaj surmetingoj %s\n"
msgid "Remove the logical volumes first\n"
msgstr ""
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Telefonnumero"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Formatu subdiskojn"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5252,10 +5398,6 @@ msgstr "1 butona"
msgid "Generic 2 Button Mouse"
msgstr "Nespecifa 2 Butona Muso"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Genera"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Rado"
@@ -5321,39 +5463,55 @@ msgstr "neniu"
msgid "No mouse"
msgstr "Neniu Muso"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Bonvole, provu la muson"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
#, fuzzy
msgid "To activate the mouse,"
msgstr "Bonvole, provu la muson"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "MOVU VIAN RADON!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Finu"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Sekvanta ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Antaýa"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Ću tio ći pravas?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Informo"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Etendu Arbon"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Maletendu Arbon"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Ţanřu inter ebena kaj ordigita je grupoj"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Konektu al la Interreto"
@@ -5402,7 +5560,7 @@ msgstr ""
"Mi ne detektas eterretan retadaptilom sur via sistemo. Bonvole lanću la\n"
"aparatokonfigurilon."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Elektu la retan interfacon"
@@ -5416,7 +5574,7 @@ msgstr ""
msgid "no network card found"
msgstr "neniu retkarto trovita"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Konfiguras reto"
@@ -5432,15 +5590,15 @@ msgstr ""
"Via poţtejo devus esti plene specifita poţtejo,\n"
"ekzemple ``miakomputilo.mialaborejo.miafirmao.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Poţtejo"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
#, fuzzy
msgid "Network Configuration Wizard"
msgstr "ISDN-a Konfiguraźon"
@@ -5490,7 +5648,7 @@ msgstr "ISDN-a Konfiguraźon"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Elektu vian interretprovizanton.\n"
" Se řin ne estas en la listo, elektu Nelistiřitan"
@@ -5513,14 +5671,14 @@ msgstr "La cetero de la mondo"
#: ../../network/isdn.pm_.c:185
#, fuzzy
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"La cetero de la mondo \n"
" neniom da D-Kanelo (lukontraktataj lineoj)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Kiun protokolon vi deziras uzi?"
#: ../../network/isdn.pm_.c:199
@@ -5544,7 +5702,8 @@ 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"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Se via havas ISA-an karton, la valoro sur la sekvanta ekrano devus esti "
@@ -5562,13 +5721,13 @@ msgid "Continue"
msgstr "Ću mi devus daýri?"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Kiu estas via ISDN-a karto?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Mi detektis ISDN-an PCI-an Karton, sed mi ne scias la specon. Bonvole "
"elektu\n"
@@ -5589,99 +5748,99 @@ msgstr "Bonvole, elektu al kiu seria pordo estas via modemo konektata?"
msgid "Dialup options"
msgstr "Telefon-konektaj opcioj"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Nomo de konekto"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Telefonnumero"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Salutnomo"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr ""
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP (Pasvorta Aýtentikigada Protokolo)"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Programeto-bazata"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Finaparato-bazata"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Domajna nomo"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Unu DNS-a Servilo (nedeviga)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Du DNS-a Servilo (nedeviga)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
#, fuzzy
msgid ""
"\n"
"You can reconfigure your connection."
msgstr "Konfiguru interretan konektaźon"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
#, fuzzy
msgid "You are currently connected to internet."
msgstr "Kiel vi deziras konekti al la Interreto?"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
msgstr "Konektu al la Interreto / Konfiguru lokan Reton"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid "You are not currently connected to Internet."
msgstr "Kiel vi deziras konekti al la Interreto?"
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Konektu"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Malkonektu"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "Konfiguru retumon"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Interreta konektaźo kaj konfiguro"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr "Konfiguru interretan konektaźon"
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, fuzzy, c-format
msgid ""
"\n"
@@ -5693,12 +5852,12 @@ msgid ""
"Press OK to continue."
msgstr "Konfiguru interretan konektaźon"
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Reta Konfiguraźo"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -5706,105 +5865,111 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"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 ""
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
#, fuzzy
msgid "Choose the profile to configure"
msgstr "Elektu la defaýltan uzulon:"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Spertuloreřimo"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Detektas aparatojn..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, fuzzy
msgid "Normal modem connection"
msgstr "Konfiguru interretan konektaźon"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, fuzzy, c-format
msgid "detected on port %s"
msgstr "Duobla surmetingo %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, fuzzy
msgid "ISDN connection"
msgstr "Konfiguru interretan konektaźon"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy
msgid "ADSL connection"
msgstr "LAN Konfiguraźo"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy, c-format
msgid "detected on interface %s"
msgstr "Reta interfaco"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "Cable connection"
msgstr "Konfiguru interretan konektaźon"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "cable connection detected"
msgstr "Konfiguru interretan konektaźon"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "LAN Konfiguraźo"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Elektu la ilon kiun vi deziras instali"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
#, fuzzy
msgid "Internet connection"
msgstr "Disdividado de Interreta Konekto"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Ću vi deziras starti vian konektaźon je startado de la sistemo?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Reta Konfiguraźo"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -5812,30 +5977,30 @@ msgid ""
"%s"
msgstr "Ću vi deziras provi la konfiguraźon?"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
#, fuzzy
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"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."
@@ -5845,7 +6010,7 @@ msgstr ""
"Simple klaki JES por teni la konfiguron de ći tiu aparato.\n"
"Se vi modifos la subajn kampojn, vi ţanřos ći tiun konfiguron."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -5855,38 +6020,43 @@ msgstr ""
"Ćiu ero devus esti enigata kiel IP-adreson en punktita-decimala notacio\n"
"(ekzemple, 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Konfiguras retan aparaton %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, fuzzy, c-format
msgid " (driver %s)"
msgstr "XFree86 pelilo: %s\n"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP-adreso"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Retmasko"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Aýtomata IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Kreu praţargdisketon"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP-adreso devus esti en la notacio 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -5898,373 +6068,378 @@ msgstr ""
"ekzemple ``miakomputilo.mialaborejo.miafirmao.com''.\n"
"Vi ankaý povas enigi la IP-adreson de la prokura kluzo se via havas unu."
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNA servilo"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Prokura kluzaparato"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Konfigurado de prokuraj serviloj"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP prokura servilo"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP prokura servilo"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Prokura servilo devus esti http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Prokura servilo devus esti ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Interreta Konfigurado"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Ću vi deziras provi konekti al la interreto nun?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
#, fuzzy
msgid "Testing your connection..."
msgstr "Konfiguru interretan konektaźon"
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
#, fuzzy
msgid "The system is now connected to Internet."
msgstr "Kiel vi deziras konekti al la Interreto?"
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr ""
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
#, fuzzy
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
msgstr "Konektu al la Interreto / Konfiguru lokan Reton"
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Konfigurado de Konekto"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Bonvole plenigu aý marku la suban kampon"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ de Karto"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Memoro de Karto (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "I/O (Eneligo) de Karto"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "I/O 0 (Eneligo 0) de Karto"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "I/O 1 (Eneligo 1) de Karto"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Via persona telefonnumero"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Nomo de interretprovizanto (ekz-e provizanto.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Telefonnumero de interretprovizanto"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Provizanto DNS 1 (nedeviga)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Provizanto DNS 2 (nedeviga)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
#, fuzzy
msgid "Choose your country"
msgstr "Elektu vian klavaron"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Diskuma modalo"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection speed"
msgstr "Speco de konekto"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Speco de konekto"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Konta Salutnomo (uzula nomo)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Konta Pasvorto"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "muntado malsukcesis: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Ći tiu platformo ne subtenas etendatajn subdiskojn"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Vi havas truon en via subdisktabelo sed mi ne povas uzi řin.\n"
"La sola solvo estas movi viajn ćefajn subdiskojn por situigi la truon\n"
"apud la etendataj subdiskoj."
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Restaýris el dosiero %s malsukcesis: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Malbona rezerva dosiero"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Eraro skribante al dosiero %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
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 trash"
msgstr ""
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "havenda"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "grava(j)"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "tre agrabla(j)"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "agrabla(j)"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "elbe"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr ""
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr ""
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Loka printilo"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Malproksima printilo"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "Malproksima CUPS-a servilo"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Malproksimaj lpd servilo"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Reta Printilo (TCP/ingo)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Vindozo 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Printservilo"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Printila Aparato URI"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr "Loka printilo"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr "Malproksima printilo"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Eraro skribante al dosiero %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(modulo %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP de SMB servilo"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Defaýlta)"
@@ -6287,12 +6462,12 @@ msgstr ""
"ći tie; printiloj estos aýtomate dektektataj. Se vi havas dubojn,\n"
"elektu \"Malproksima CUPS servilo\"."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "LAN Konfiguraźo"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "Malproksima CUPS-a servilo"
@@ -6323,7 +6498,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP-adreso devus esti en la notacio 1.2.3.4"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr ""
@@ -6332,7 +6507,7 @@ msgstr ""
msgid "CUPS server IP"
msgstr "IP de SMB servilo"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Pordo"
@@ -6341,22 +6516,13 @@ msgstr "Pordo"
msgid "Automatic CUPS configuration"
msgstr "Post-instala konfigurado"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "Detektas aparatojn..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Provu pordojn"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "Neniu printilo"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6369,14 +6535,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr "Loka printilo"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6394,12 +6560,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "Malproksima printilo"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6413,11 +6579,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6427,35 +6593,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "Malproksima printilo"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "Malproksima printilo"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Provu pordojn"
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "Duobla surmetingo %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
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, ..., "
@@ -6463,43 +6633,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Printila Aparato URI"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr "Loka printilo"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6507,7 +6677,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6515,73 +6685,83 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Bonvole, elektu al kiu seria pordo estas via modemo konektata?"
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Printila Aparato URI"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "Interreta Konfigurado"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "Instalanta pakaźo %s"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing SANE packages..."
msgstr "Instalanta pakaźo %s"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Instalanta pakaźo %s"
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
#, fuzzy
-msgid "Making printer port available for CUPS ..."
+msgid "Making printer port available for CUPS..."
msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
#, fuzzy
-msgid "Reading printer database ..."
+msgid "Reading printer database..."
msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Malproksimaj lpd Printilaj Opcioj"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -6591,31 +6771,31 @@ msgstr ""
"printservilo kaj la printviconomon će tiu servilo en kiun taskoj devus\n"
"esti metata."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
#, fuzzy
msgid "Remote host name"
msgstr "Malproksima poţtejo"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
#, fuzzy
msgid "Remote printer name"
msgstr "Malproksima printilo"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
#, fuzzy
msgid "Remote host name missing!"
msgstr "Malproksima poţtejo"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Malproksima poţtejo"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Vindozo 9x/NT) Printilaj Opcioj"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -6630,35 +6810,35 @@ msgstr ""
"aldone al la opuzan nomon de la printilo vi deziras atingi kaj iun ajn\n"
"taýgan salutnomon, pasvorton, kaj laborgrupan informon."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "Poţtejo de SMB servilo"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP de SMB servilo"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Opuza nomo"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Laborgrupo"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -6682,7 +6862,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -6691,7 +6871,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -6699,11 +6879,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "NetWare Printilaj Opcioj"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -6716,28 +6896,28 @@ msgstr ""
"printvican nomon por la printilo vi deziras atingi kaj iun ajn taýgan\n"
"salutnomon kaj pasvorton."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Printservilo"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Printvica Nomo"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Ing-Printilaj Opcioj"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
@@ -6748,60 +6928,56 @@ msgstr ""
"Por printi al inga printilo, vi bezonas provizi la\n"
"poţtejon de la printilo kaj opcie la pordnumeron."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
#, fuzzy
msgid "Printer host name"
msgstr "Printilaj Poţtejo"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
#, fuzzy
msgid "Printer host name missing!"
msgstr "Printilaj Poţtejo"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Printila Aparato URI"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
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 ""
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Nomo de printilo"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Priskribo"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Loko"
-#: ../../printerdrake.pm_.c:1021
+#: ../../printerdrake.pm_.c:1045
#, fuzzy
-msgid "Preparing printer database ..."
+msgid "Preparing printer database..."
msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "Malproksima printilo"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -6816,28 +6992,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "Ću tio ći pravas?"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "Malproksima printilo"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
#, fuzzy
msgid "Printer model selection"
msgstr "Printilan Konekton"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Kiun specon de printilo vi havas?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -6846,18 +7022,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Interreta Konfigurado"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -6867,12 +7043,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Interreta Konfigurado"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -6880,7 +7056,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -6893,7 +7069,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -6903,34 +7079,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Ću vi deziras provi printado?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
#, fuzzy
msgid "Test pages"
msgstr "Provu pordojn"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -6938,45 +7114,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
#, fuzzy
msgid "No test pages"
msgstr "Jes, printu ambaý de la provpařojn"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
#, fuzzy
msgid "Print"
msgstr "Printilo"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
#, fuzzy
msgid "Standard test page"
msgstr "Laýnorma"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Printas provpařo(j)n..."
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
#, fuzzy
msgid "Photo test page"
msgstr "Printas provpařo(j)n..."
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "Printas provpařo(j)n..."
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Printas provpařo(j)n..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -6992,7 +7168,7 @@ msgstr ""
"\n"
"Ću ři řuste funkcias?"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7002,16 +7178,16 @@ msgstr ""
"Ći tiu eble postulas iom da tempo antaý ol la printilo komencas.\n"
"Ću ři řuste funkcias?"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "Neniu printilo"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7020,15 +7196,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
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 ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7037,49 +7213,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, 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\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7089,7 +7265,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7098,30 +7274,41 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Malfermu"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Haltas de la reto"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Haltas de la reto"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Haltas de la reto"
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Haltas de la reto"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Malfermu"
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "Printilaj opcioj"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7129,38 +7316,38 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
#, fuzzy
-msgid "Reading printer data ..."
+msgid "Reading printer data..."
msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Interreta Konfigurado"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7170,51 +7357,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7222,61 +7409,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid "New printer name"
msgstr "Neniu printilo"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, 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 ""
-#: ../../printerdrake.pm_.c:1887
+#: ../../printerdrake.pm_.c:1935
#, fuzzy
-msgid "Refreshing printer data ..."
+msgid "Refreshing printer data..."
msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr ""
-#: ../../printerdrake.pm_.c:1896
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
-msgid "Starting network ..."
+msgid "Starting network..."
msgstr "Startas vian konektaźon..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr "Konfiguru retumon"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "Ekrano ne estas konfigurata"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7284,12 +7471,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Konfiguras reto"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7299,34 +7486,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
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 ""
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
-msgid "Restarting printing system ..."
+msgid "Restarting printing system..."
msgstr "Kiun printsistemo vi deziras uzi?"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "Alta"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "Paranoja"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7341,12 +7528,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Kiun printsistemo vi deziras uzi?"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7360,70 +7547,70 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Elektu Printilan Konekton"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Kiun printsistemo vi deziras uzi?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Konfiguru Printilon"
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr "Instalanta pakaźo %s"
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Printilaj opcioj"
-#: ../../printerdrake.pm_.c:2318
+#: ../../printerdrake.pm_.c:2389
#, fuzzy
-msgid "Preparing PrinterDrake ..."
+msgid "Preparing PrinterDrake..."
msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Konfiguru Printilon"
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Ću vi deziras konfiguri printilon?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "Printerdrake"
msgstr "Printilo"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7434,7 +7621,7 @@ msgstr ""
"Jen la sekvantaj printvicoj.\n"
"Vi povas aldoni pli aý ţanři la ekzistantajn."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7444,139 +7631,143 @@ msgstr ""
"Jen la sekvantaj printvicoj.\n"
"Vi povas aldoni pli aý ţanři la ekzistantajn."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Konfiguru retumon"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Normala Modalo"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Ćesu"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Ću vi deziras provi la konfiguraźon?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
#, fuzzy
msgid "Modify printer configuration"
msgstr "Interreta Konfigurado"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Ću vi deziras provi la konfiguraźon?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
#, fuzzy
msgid "Printer connection type"
msgstr "Disdividado de Interreta Konekto"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
#, fuzzy
msgid "Printer name, description, location"
msgstr "Printilan Konekton"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
#, fuzzy
msgid "Print test pages"
msgstr "Printas provpařo(j)n..."
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "Ću vi deziras provi la konfiguraźon?"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
#, fuzzy
msgid "Remove printer"
msgstr "Malproksima printilo"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
#, fuzzy
msgid "Default printer"
msgstr "Loka printilo"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Ću vi deziras provi la konfiguraźon?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr "Legas datumbason de CUPS peliloj..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -7656,24 +7847,60 @@ msgstr "La pasvortoj ne egalas. Provu denove!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Ne povas aldoni subdiskon al _formatita_ RAID md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Ne povas skribi dosieron %s."
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid malsukcesis"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid malsukcesis (eble raidtools mankas)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ne estas sufićaj subdiskoj por RAID nivelo %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"vi devus uzi ći tiun nivelon zorge. Ři faras vian komputilon pli facila\n"
+"por uzi, sed delikatega: vi devus neniam uzi ři surrete.\n"
+"Ři ne havas pasvortojn."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+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 ""
+"Kun ći tiu sekurnivelo, uzado de ći tiu komputilo kiel servilo ebliřas.\n"
+"La sekureco nun estas sufiće alta por uzi la sistemon kiel servilo kiu\n"
+"akceptas konektojn de multaj klientoj."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "LAN Konfiguraźo"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Opcioj"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -7729,7 +7956,7 @@ msgid ""
"new/changed hardware."
msgstr ""
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -7796,7 +8023,7 @@ msgid ""
"available server."
msgstr ""
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -7872,7 +8099,7 @@ msgstr ""
"La pordmapservilo devas esti uzata će komputiloj kiuj agas kiel serviloj\n"
"por protokoloj kiuj uzas la RPC mekanismon."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -7969,7 +8196,7 @@ msgstr "Interreto"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "Sistema modalo"
@@ -8094,6 +8321,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Konekti al la interreto"
@@ -8197,6 +8425,16 @@ msgstr ""
msgid "Installing packages..."
msgstr "Instalanta pakaźo %s"
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr ""
+"Bonvole adiaýu kaj sekve uzu Kontrol-Alt-Retropaţo (Ctrl-Alt-Backspace)."
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Bonvolu resaluti en %s-n por aktivigi la ţanřojn."
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8205,6 +8443,159 @@ msgstr ""
"Mi ne povas legi vian subdisktabelon, ři estas tro difektita por mi :(\n"
"Mi penos daýri per blankigi difektitajn subdiskojn"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Interreta Konfigurado"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Datumbazoj"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Datumbazoj"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS Servilo"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS Servilo"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Aldonu uzanto"
+
+#: ../../standalone/drakTermServ_.c:242
+msgid "Add/Del Clients"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#, fuzzy
+msgid "Help"
+msgstr "/_Helpo"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Ne konektita"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Forigu"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Elektu dosieron"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Aldonu uzanto"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+msgid "<-- Del Client"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Mi konfiguras..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "rekonfiguru"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Enţovu disketon en drajvo %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Neniu disketilo havebla"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
#, fuzzy
msgid "Error!"
@@ -8246,6 +8637,11 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Kreas aýtoinstalan disketon"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -8254,47 +8650,40 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Gratulojn!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "Instalu"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "Aldonu uzulon"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "Formatas retrokonektan dosieron %s"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8302,15 +8691,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8318,709 +8699,772 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#, c-format
+msgid ""
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "Eraro legante dosiero %s"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "Elektado de Pakaźoj"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Bonvole, elektu la pakaźojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "Malinstalu printvicon"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Forigu Vindozon"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr "Salutnomo"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Bonvole, provu la muson"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "Bonvole provu denove"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "Bonvole provu denove"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "Neniu pasvorto"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "LAN Konfiguraźo"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Elektu Printilan Konekton"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Bonvole, elektu vian klavaran aranřon."
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Bonvolu klaki sur subdiskon"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr "Bonvole, elektu la pakaźojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Bonvole, elektu la pakaźojn kiujn vi deziras instali."
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "Bonvole, provu la muson"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "Reta interfaco"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Tipo"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "Salutnomo"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Bonvole, elektu la pakaźojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Detektado de fiksdisko(j)"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Salutnomo"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr "Rado"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr "Rado"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "Modulaj opcioj:"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Reta Konfiguraźo"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Bonvole, elektu la pakaźojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Bonvole, elektu la pakaźojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "Dosiersistemo konfiguro"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Musaparato: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Opcioj"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Bonvole, elektu al kiu seria pordo estas via modemo konektata?"
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "Reta Konfiguraźo"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "Bonvole, elektu la specon de via muso."
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Bonvole, provu la muson"
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "LAN Konfiguraźo"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Elektu Printilan Konekton"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Restaýru de disketo"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "Bonvole, elektu la specon de via muso."
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "Alia"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "Instalu sistemon"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "Restaýru de dosiero"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "Restaýru de dosiero"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "Akomodata"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/_Helpo"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
#, fuzzy
msgid "Previous"
msgstr "<- Antaýa"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr "Stato:"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr "Restaýru de dosiero"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr "Sekvanta ->"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "Elektu pakaźojn"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "La sekvaj pakaźoj estos instalataj"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "Konservu en dosiero"
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "Bonvole, provu la muson"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr "Bonvole, elektu la pakaźojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Reta Konfiguraźo"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "Reta Konfiguraźo"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "LAN Konfiguraźo"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "LAN Konfiguraźo"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "Dosiersistemo konfiguro"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9052,7 +9496,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9061,7 +9505,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9102,7 +9546,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9130,12 +9574,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -9152,7 +9601,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9192,7 +9641,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9203,7 +9652,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9216,7 +9665,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9260,104 +9709,536 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Instalado de %s malsukcesis. La sekvanta eraro okazis:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+msgid "Standalone Tools"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "Konekti al la interreto"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "Spertulo"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Muso"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Malproksima printilo"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Opuza nomo"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Printilo"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "ISDN-a Konfiguraźon"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Aýtentikigado"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Elektado de Pakaźoj"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Bonvole atendu"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Eliru instalprogramon"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "porto"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr ""
+"Vi povas elektu aliajn lingvojn kiujn estos uzeblaj malantaý la instalado"
+
+#: ../../standalone/drakconnect_.c:80
+#, fuzzy, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "ISDN-a Konfiguraźon"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#, fuzzy
+msgid "Profile: "
+msgstr "muntado malsukcesis: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Poţtejo: "
+
+#: ../../standalone/drakconnect_.c:168
+#, fuzzy
+msgid "Internet access"
+msgstr "Interreto"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Speco:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Kluzo:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#, fuzzy
+msgid "Interface:"
+msgstr "Interreto"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Stato:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+#, fuzzy
+msgid "Configure Internet Access..."
+msgstr "Konfiguru servojn"
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "LAN Konfiguraźo"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Pelilo"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Interfaco"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protokolo"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "State"
+msgstr "Stato:"
+
+#: ../../standalone/drakconnect_.c:244
+#, fuzzy
+msgid "Configure Local Area Network..."
+msgstr "Konfiguru lokan reton"
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Sorćisto..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Apliku"
+
+#: ../../standalone/drakconnect_.c:302
+#, fuzzy
+msgid "Please Wait... Applying the configuration"
+msgstr "Provu konfiguraźon"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Konektita"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Ne konektita"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Konektu..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Malkonektu..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "LAN Konfiguraźo"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Adaptilo %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "activate now"
+msgstr "Aktiva"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "deactivate now"
+msgstr "Aktiva"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:584
+#, fuzzy
+msgid "Internet connection configuration"
+msgstr "Interreta konektaźo kaj konfiguro"
+
+#: ../../standalone/drakconnect_.c:588
+#, fuzzy
+msgid "Internet Connection Configuration"
+msgstr "Interreta konektaźo kaj konfiguro"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Speco de konekto"
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Kluzo"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "uzado: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-iso8859-3,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Modulonomo"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Grandeco"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "Startdiskokreado"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "defaýlta"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Eraro DrakFloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "Kerna versio"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Řenerala"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Spertulejo"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrd opciaj argumentoj"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Aldonu modulon"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "devigu"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "se bezonata"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "forlasu SCSI-ajn modulojn"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "forlasu RAID-ajn modulojn"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Forprenu modulon"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Skribu"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Konstruu la diskon"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Kontrolu ke medio estas en la aparato %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"Ne estas medio en aparato %s.\n"
+"Bonvole enţovu řin."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Ne povis forki: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Ne povis řuste fermi mkbootdisk-on: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "neniu retkarto trovita"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr "Finata"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr ""
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "Preparas instaladon"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
#, fuzzy
msgid "Restart XFS"
msgstr "limigu"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "limigu"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -9366,121 +10247,120 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "Formatu subdiskojn"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "LAN Konfiguraźo"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr "Surmetingo"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Elektu la subdiskoj kiuj vi deziras formati"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "Oficejo"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr "Ćesigu"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr "Printilo"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "Instalu sistemon"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "Elektu dosieron"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "Malproksima printilo"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr ""
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr "Via komputilo ne havas retadaptilon!"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "Instalu"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr "Via komputilo ne havas retadaptilon!"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "Eliru instalprogramon"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Disdividado de Interreta Konekto"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Disdividado de Interreta Konekto nuntempe kapabligata"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
#, fuzzy
msgid ""
"The setup of Internet connection sharing has already been done.\n"
@@ -9490,33 +10370,33 @@ msgid ""
msgstr ""
"La konfigurado de la disdividado de la Interreta konekto jam estas farita.\n"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "malebligu"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "forsendu"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "rekonfiguru"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
#, fuzzy
msgid "Disabling servers..."
msgstr "Detektas aparatojn..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
#, fuzzy
msgid "Internet connection sharing is now disabled."
msgstr "Disdividado de Interreta Konekto nuntempe malkapabligata"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Disdividado de Interreta Konekto nuntempe malkapabligata"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
#, fuzzy
msgid ""
"The setup of Internet connection sharing has already been done.\n"
@@ -9526,20 +10406,20 @@ msgid ""
msgstr ""
"La konfigurado de la disdividado de la Interreta konekto jam estas farita.\n"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "ebligu"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
#, fuzzy
msgid "Internet connection sharing is now enabled."
msgstr "Disdividado de Interreta Konekto nuntempe kapabligata"
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
#, fuzzy
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -9555,21 +10435,21 @@ msgstr ""
"\n"
"Ću vi deziras konfiguri Disdividadon de Interreta Konekto?\n"
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr ""
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Interfaco %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Via komputilo ne havas retadaptilon!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -9577,11 +10457,11 @@ msgstr ""
"Mi ne detektas eterretan retadaptilom sur via sistemo. Bonvole lanću la\n"
"aparatokonfigurilon."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Reta interfaco"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -9596,19 +10476,19 @@ msgstr ""
"\n"
"Ću vi deziras konfiguri vian Lokan Reton (LAN) kun ći tiu adaptilo?"
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Bonvole elektu kiun retadaptilon estos konektata al via Loka Reto (LAN)."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "Ekrano ne estas konfigurata"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -9618,17 +10498,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Post-instala konfigurado"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "Interreta Konfigurado"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -9639,7 +10519,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
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 C-Class Network that "
@@ -9651,33 +10531,33 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP de SMB servilo"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Ebla konflikto pri Loka-Reta adreso trovata en nuna konfiguro de %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Konfiguraźo de barilo detektata!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -9685,50 +10565,50 @@ msgstr ""
"Averto. Ekzistanta konfiguraźo de barilo detektata. Vi eble devas permane\n"
"fiksi řin poste de la instalado."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Mi konfiguras..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Mi konfiguras komandodosierojn, instalas programojn, startas servilojn..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Problemoj instalante pakaźon %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
#, fuzzy
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
"La konfigurado de la disdividado de la Interreta konekto jam estas farita.\n"
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
#, fuzzy
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
"La konfigurado de la disdividado de la Interreta konekto jam estas farita.\n"
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
#, fuzzy
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Disdividado de Interreta Konekto nuntempe kapabligata"
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
#, fuzzy
msgid "Internet connection sharing configuration"
msgstr "Interreta konektaźo kaj konfiguro"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, fuzzy, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -9738,217 +10618,6 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Disdividado de Interreta Konekto"
-#: ../../standalone/draknet_.c:80
-#, fuzzy, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "ISDN-a Konfiguraźon"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-#, fuzzy
-msgid "Profile: "
-msgstr "muntado malsukcesis: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Poţtejo: "
-
-#: ../../standalone/draknet_.c:168
-#, fuzzy
-msgid "Internet access"
-msgstr "Interreto"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Speco:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Kluzo:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-#, fuzzy
-msgid "Interface:"
-msgstr "Interreto"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Stato:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-#, fuzzy
-msgid "Configure Internet Access..."
-msgstr "Konfiguru servojn"
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "LAN Konfiguraźo"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Pelilo"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interfaco"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokolo"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Stato:"
-
-#: ../../standalone/draknet_.c:244
-#, fuzzy
-msgid "Configure Local Area Network..."
-msgstr "Konfiguru lokan reton"
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Sorćisto..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Apliku"
-
-#: ../../standalone/draknet_.c:302
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr "Provu konfiguraźon"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Konektita"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Ne konektita"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Konektu..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Malkonektu..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "LAN Konfiguraźo"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adaptilo %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr ""
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr ""
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Aktiva"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Aktiva"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-#, fuzzy
-msgid "Internet connection configuration"
-msgstr "Interreta konektaźo kaj konfiguro"
-
-#: ../../standalone/draknet_.c:588
-#, fuzzy
-msgid "Internet Connection Configuration"
-msgstr "Interreta konektaźo kaj konfiguro"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Speco de konekto"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr ""
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Kluzo"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr ""
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr ""
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Elektas sekurnivelon"
-
#: ../../standalone/drakxconf_.c:47
#, fuzzy
msgid "Control Center"
@@ -9958,94 +10627,130 @@ msgstr "Konekti al la interreto"
msgid "Choose the tool you want to use"
msgstr "Elektu la ilon kiun vi deziras instali"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\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 ""
+
+#: ../../standalone/drakxtv_.c:72
#, fuzzy
msgid "Canada (cable)"
msgstr "Kanada (Kebeka)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "East Europe"
msgstr "Eýropo"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Franca"
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr "Islanda"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "West Europe"
msgstr "Eýropo"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr "seria"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Estis eraro dum instalado de pakaźoj:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10094,7 +10799,7 @@ msgstr ""
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -10109,7 +10814,7 @@ msgstr "/Dosiero/_Nova"
#: ../../standalone/logdrake_.c:102
msgid "<control>N"
-msgstr "<control>N"
+msgstr "<stir>N"
#: ../../standalone/logdrake_.c:103
msgid "/File/_Open"
@@ -10117,7 +10822,7 @@ msgstr "/Dosiero/_Malfermu"
#: ../../standalone/logdrake_.c:103
msgid "<control>O"
-msgstr "<control>M"
+msgstr "<stir>M"
#: ../../standalone/logdrake_.c:104
msgid "/File/_Save"
@@ -10125,7 +10830,7 @@ msgstr "/Dosiero/_Savu"
#: ../../standalone/logdrake_.c:104
msgid "<control>S"
-msgstr "<control>S"
+msgstr "<stir>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
@@ -10143,10 +10848,6 @@ msgstr "/_Opcioj"
msgid "/Options/Test"
msgstr "/Opcioj/Provu"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Helpo"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr "/Helpo/_Pri..."
@@ -10210,7 +10911,7 @@ msgstr "Kalendaro"
msgid "Content of the file"
msgstr "Enhavoj de la dosiero"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -10219,79 +10920,111 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr "bonvole atendu, mi vortanalizas la dosieron: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "Konfiguraźon"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr ""
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
+msgid "Apache World Wide Web Server"
msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Domajna nomo"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "2a Etendata (Ext2)"
+msgid "Ftp Server"
+msgstr "NIS Servilo"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Datumbazoj"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS Servilo"
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "NIS Servilo"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Servilo"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Printservilo"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "Servilo"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "Formatas"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "Interreta Konfigurado"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Savu Kiel..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Bonvole, elektu la specon de via muso."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "neniu serial_usb (seria USB) trovita\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Ću vi deziras emuli trian musbutonon?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Legas datumbason de CUPS peliloj..."
+
+#: ../../standalone/scannerdrake_.c:42
+#, fuzzy
+msgid "Detecting devices ..."
+msgstr "Detektas aparatojn..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -10335,6 +11068,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "Konfiguraźo de barilo"
@@ -10679,10 +11424,6 @@ msgid "Multimedia - Sound"
msgstr "Plurmedia - Sono"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr ""
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Dokumentaro"
@@ -10789,10 +11530,6 @@ msgid ""
msgstr ""
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr ""
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr ""
@@ -10840,931 +11577,160 @@ msgstr "Plurmedia - KD-ROM Kreado"
msgid "Scientific Workstation"
msgstr "Laborstacio"
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Ćesigu"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#, fuzzy
-#~ msgid "None"
-#~ msgstr "Finata"
-
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Elektu la defaýltan uzulon:"
-
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Malproksima printilo"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Nun vi povas provizi řiajn opciojn al modulo %s."
+#~ msgid "Choose options for server"
+#~ msgstr "Elektu opciojn por servilo"
-#~ msgid "mount failed"
-#~ msgstr "muntado malsukcesis"
+#~ msgid "Monitor not configured"
+#~ msgstr "Ekrano ne estas konfigurata"
-#~ msgid "Low"
-#~ msgstr "Malalta"
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Grafika karto ne jam konfigurita"
-#~ msgid "Medium"
-#~ msgstr "Meza"
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Vi ne jam elektas distingivojn"
#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Malmultaj plibonigoj će ći tiu sekurnivelo, la ćefa estas ke ři havas "
-#~ "pli\n"
-#~ "multajn sekurecajn avertojn kaj kontrolojn."
-
-#~ msgid "Boot mode"
-#~ msgstr "Starta modalo"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Spertulo"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "GNU/Linukso administras tempon en GMT aý \"Grenvića Meza Tempo\" kaj "
-#~ "tradukas řin\n"
-#~ "en lokan tempon laý la horzono vi elektis."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "Konektu al la Interreto"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Malkonektu el la Interreto"
-
-#, fuzzy
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Konfiguru interretan konektaźon"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Al kiu disko vi deziras movi?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Bonvole, elektu la pakaźojn kiujn vi deziras instali."
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Informo"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Gnoma Laborstacio"
-
-#~ msgid "authentification"
-#~ msgstr "aýtentikigado"
-
-#~ msgid "user"
-#~ msgstr "uzanto"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
#~ "\n"
-#~ msgstr "Bonvole, elektu la specon de via muso."
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "Ćesu"
-
-#, fuzzy
-#~ msgid "Removable media"
-#~ msgstr "Aýtomata muntado de demetebla medio"
-
-#~ msgid "Active"
-#~ msgstr "Aktiva"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "Ne"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "Printilo, tipo \"%s\", estas detektita će "
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Loka Printila Aparato"
-
-#~ msgid "Printer Device"
-#~ msgstr "Printila Aparato"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Malproksima CUPS-a servilo"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "Malproksima CUPS-a servilo"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linukso"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Sistema modalo"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "Alia"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Bonvole, elektu vian klavaran aranřon."
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Bonvolu klaki sur subdiskon"
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Speco: "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Malbona rezerva dosiero"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "Konfiguru X"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Printila Aparato"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Nuligu"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "Jeso"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Malfermu"
-
-#~ msgid "Starting your connection..."
-#~ msgstr "Startas vian konektaźon..."
-
-#~ msgid "Closing your connection..."
-#~ msgstr "Fermas vian konektaźon..."
-
-#, fuzzy
-#~ msgid "The system is now disconnected."
-#~ msgstr "Kiel vi deziras konekti al la Interreto?"
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Elektu la grandecon kiu vi deziras instali"
-
-#~ msgid "Total size: "
-#~ msgstr "Tuta grandeco: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Bonvolu atendi"
-
-#~ msgid "Total time "
-#~ msgstr "Tuta tempo "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "Uzu ekzistantan konfiguron de X11 (X-fenestroj)?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
+#~ "try to change some parameters"
#~ msgstr ""
-#~ "Al kiu aparato estas via printilo konektata\n"
-#~ "(notu ke /dev/lp0 egalas LPT1:)?\n"
+#~ "\n"
+#~ "penu ţanři iom da parametroj"
-#~ msgid "$_"
-#~ msgstr "$_"
+#~ msgid "An error occurred:"
+#~ msgstr "Eraro okazis:"
-#, fuzzy
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr ""
-#~ "Averto, la retadaptilo estas jam konfigurata.\n"
-#~ "Ću vi deziras rekonfiguri řin?"
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Mi eliros post %d sekundoj"
-#~ msgid "New"
-#~ msgstr "Nova"
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Ću tio ći pravas?"
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "Malproksima printvico"
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Eraro okazis, penu ţanři iom da parametroj"
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Bonvolu klaki sur subdiskon"
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 servilo: %s"
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Ambigueco (%s), esti pli preciza\n"
+#~ msgid "Show all"
+#~ msgstr "Montru tuton"
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (defaýlto estas %s) "
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Preparas X-Fenestran konfiguraźon"
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "Via elektaźo (defaýlto estas %s enigu `neniu' por elekti neniu) "
+#~ msgid "What do you want to do?"
+#~ msgstr "Kion vi deziras fari?"
-#, fuzzy
-#~ msgid "Do you want to restart the network"
-#~ msgstr "Ću vi deziras provi la konfiguraźon?"
+#~ msgid "Change Monitor"
+#~ msgstr "Ţanřu Ekranon"
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "Ću vi konsentas?"
+#~ msgid "Change Graphics card"
+#~ msgstr "Ţanřu Grafika karto"
-#, fuzzy
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Ću vi deziras provi la konfiguraźon?"
-
-#, fuzzy
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "Ću vi deziras provi la konfiguraźon?"
-
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Krom se vi scias precize alie, la kutima elekto estas \"/dev/hda\"\n"
-#~ " (unua ćefa IDE-a disko) aý \"/dev/sda\" (unua SCSI-a disko)."
+#~ msgid "Change Server options"
+#~ msgstr "Ţanřu Servilajn opciojn"
-#, fuzzy
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "Speco de konekto"
+#~ msgid "Change Resolution"
+#~ msgstr "Ţanřu distingivon"
-#, fuzzy
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Elektu la defaýltan uzulon:"
+#~ msgid "Show information"
+#~ msgstr "Montru informon"
-#, fuzzy
-#~ msgid "Test the mouse here."
-#~ msgstr "Bonvole, provu la muson"
+#~ msgid "Test again"
+#~ msgstr "Provu denove"
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr ""
-#~ "Bonvole elektu vian preferatan lingvon por instalado kaj sistema uzado."
+#~ msgid "Setting security level"
+#~ msgstr "Elektas sekurnivelon"
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr "Elektu la aranřon de via klavaro el la listo supre"
+#~ msgid "Graphics card"
+#~ msgstr "Grafika karto"
-#~ msgid ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!"
-#~ msgstr ""
-#~ "Elektu:\n"
-#~ "\n"
-#~ " - Akomodata: Se vi sufiće konas GNU/Linukson, vi povas elektu la ćefan\n"
-#~ " uzadon por via komputilo. Vidu malantaýe por detaloj.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Spertulo: Ći tio supoza ke vi flue konas GNU/Linukson kaj deziras "
-#~ "fari\n"
-#~ " treege akomodatan instaladon. Simile kiel \"Akomodata\" instalado, "
-#~ "vi povos\n"
-#~ " elekti la uzado por via komputilo.\n"
-#~ " Sed bonvolege, NE ELEKTU ĆI TION KROM SE VI SCIAS KION VI FARAS!"
+#~ msgid "Select a graphics card"
+#~ msgstr "Elektu grafikan karton"
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
+#~ msgid "Warning: testing this graphics card may freeze your computer"
#~ msgstr ""
-#~ "Nun vi devas elekti la uzadon por via komputilo. Jen la elektoj:\n"
-#~ "\n"
-#~ "* Laborstacio: ći tio estas la ideala opcio se vi intencas uzi vian\n"
-#~ " komputilon ćefe por ćiutaga uzado će la oficejo aý hejme.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Programado: se vi intencas uzi vian komputilon ćefe por programado,\n"
-#~ " ći tio estas bona opcio. Vi havos plenan aron de programiloj por\n"
-#~ " kompili, erarserći, formati programfontojn, kaj krei\n"
-#~ " programpakaźojn.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Servilo: se vi intencas uzi ći tiun komputilon kiel servilo, ći tio\n"
-#~ " estas bona opcio. Aý dosierservilo (NFS aý SMB), printservilo\n"
-#~ " (Uniksa stilo aý Mikrosofta Vindoza stilo), aýtentikada servilo\n"
-#~ " (NIS), aý datumbaza servilo, ktp. Kiel tia, ne atendu umojn (KDE,\n"
-#~ " GNOME, ktp.) estas instalotaj."
+#~ "Averto: provado de ći tiu grafika karto eble svenigos vian komputilon"
-#, fuzzy
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "Nun vi povas elekti la pakaźaron kiun vi deziras instali aý promocii.\n"
-#~ "\n"
-#~ "Tiam DrakX kontrolos ću vi havas sufiće da spaco por instali ćiujn de "
-#~ "ili.\n"
-#~ "Se ne, ři informas vin pir ři. Se vi deziras antaýeniri malgraýe, ři\n"
-#~ "antaýeniros je la instalado de ćiuj de la elektitaj pakaźaroj sed lasos\n"
-#~ "fali iujn pakaźojn kiujn estas malpli interesaj. Suben de la listo vi\n"
-#~ "povas elekti la opcion \"Elektado de apartaj pakaźoj\"; ćiokaze vi devus\n"
-#~ "foliumi tra pli ol 1000 pakaźoj..."
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Normala VGA, 640x480 će 60 hercoj (Hz)"
-#, fuzzy
-#~ msgid ""
-#~ "If you have all the CDs in the list above, click Ok. If you have\n"
-#~ "none of those CDs, click Cancel. If only some CDs are missing, unselect "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "Se vi havas ćiujn de la KDROM-oj en la listo sube, klaku \"Jes\".\n"
-#~ "Se vi havas neniujn de ći tiuj KDROM-oj, klaku \"Nuligu\".\n"
-#~ "Se vi mankas nur iujn de la KDROM-oj, malelektu ilin, kaj poste klaku "
-#~ "\"Jes\"."
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Supera VGA, 800x600 će 56 hercoj (Hz)"
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, the correct informations can "
-#~ "be\n"
-#~ "obtained from your Internet Service Provider."
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
#~ msgstr ""
-#~ "Nun vi povas enigi telefon-konektajn opciojn. Se vi ne estas certa kio "
-#~ "enigi,\n"
-#~ "vi povas havigi la řustan informon de via interretprovizanto."
+#~ "8514 kongrua karto, 1024x768 će 87 hercoj (Hz) interplektita (neniu "
+#~ "800x600)"
-#, fuzzy
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
#~ msgstr ""
-#~ "Enigu:\n"
-#~ "\n"
-#~ " - IP-adreson: Se vi ne scias, demandu al via retadministranto.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Retmaskon: \"255.255.255.0\" řenerale estas bona elektaźo. Se vi ne\n"
-#~ "estas certa, demandu al via retadministranto aý interretprovizanto.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Aýtomata IP-adreson: Se via reto uzas BOOTP-an aý DHCP-an "
-#~ "protokolon,\n"
-#~ "elektu ći tiun opcion. Se elektita, neniu valoro estas bezonata en\n"
-#~ "\"IP-adreson\". Se vi ne estas certa, demandu al via retadministranto\n"
-#~ "aý interretprovizanto.\n"
+#~ "Supera VGA, 1024x768 će 87 hercoj (Hz) interplektita, 800x600 će 56 hercoj"
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, ask your network administrator."
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
#~ msgstr ""
-#~ "Se via reto uzas NIS, elektu \"Uzu NIS\". Se vi ne scias, demandu al "
-#~ "via\n"
-#~ "retadministranto."
+#~ "Etendita Supera VGA, 800x600 će 60 hercoj (Hz), 640x480 će 72 hercoj"
-#~ msgid ""
-#~ "You may now enter dialup options. If you're not sure what to enter, the\n"
-#~ "correct information can be obtained from your ISP."
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
#~ msgstr ""
-#~ "Nun vi povas enigi telefon-konektajn opciojn. Se vi ne estas certa kio "
-#~ "enigi,\n"
-#~ "vi povas havigi la řustan informon de via interretprovizanto."
+#~ "Neinterplektita Supera VGA, 1024x768 će 60 hercoj (Hz), 640x480 će 72 "
+#~ "hercoj"
-#~ msgid ""
-#~ "If you will use proxies, please configure them now. If you don't know if\n"
-#~ "you should use proxies, ask your network administrator or your ISP."
-#~ msgstr ""
-#~ "Se vi uzos prokurajn servilojn, bonvolu konfiguri ilin nune. Se vi ne\n"
-#~ "scias ću vi uzos prokurajn servilojn, demandu al via retadministranto aý\n"
-#~ "interretprovizanto."
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "Altfrekvenca Supera VGA, 1024x768 će 70 hercoj (Hz)"
-#, fuzzy
-#~ msgid ""
-#~ "You can install cryptographic package if your internet connection has "
-#~ "been\n"
-#~ "set up correctly. First choose a mirror where you wish to download "
-#~ "packages and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "Vi povas instali kriptografian pakaźon se via interreta konekto estas "
-#~ "řuste\n"
-#~ "pretigita. Unue elektu spegulon de kie vi deziras elţuti pakaźojn kaj "
-#~ "poste\n"
-#~ "elektu la pakaźojn por instali.\n"
-#~ "\n"
-#~ "Notu ke vi devas elekti spegulon kaj kriptografiajn pakaźojn laý la "
-#~ "leřdonoj\n"
-#~ "de via lando."
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Plurfrekvenca kiu povas fari 1024x768 će 60 hercoj (Hz)"
-#, fuzzy
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "Nun vi povas enigi la \"root\" (radiko) pasvorto por via Linuks-"
-#~ "Mandrejka\n"
-#~ "sistemo. Vi devas enigi la pasvorton dufoje por konfirmi ke ambaý fojoj\n"
-#~ "estas identaj.\n"
-#~ "\n"
-#~ "\n"
-#~ "La \"root\"-a uzanto estas la administranto de la sistemo, kaj estas la "
-#~ "sola\n"
-#~ "uzanto permesata ţanři la sisteman konfiguraźon. Tial, elektu ći tiun\n"
-#~ "pasvorton zorge! Nepermesata uzado de la \"root\"-a uzanto povas esti\n"
-#~ "treege danřera al la sistema integreco kaj dateno, kaj al aliaj sistemoj\n"
-#~ "konektata al ři. La pasvorto devus esti miksaźo de literciferaj signoj "
-#~ "kaj\n"
-#~ "almenaý 8 signoj longa. *Neniam* surpaperigu řin. Tamen, ne elektu tro\n"
-#~ "longan aý komplikan pasvorton: vi devas povi memori řin sen tro multe da\n"
-#~ "peno."
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Plurfrekvenca kiu povas fari 1280x1024 će 74 hercoj (Hz)"
-#~ msgid ""
-#~ "You may now create one or more \"regular\" user account(s), as\n"
-#~ "opposed to the \"privileged\" user account, root. You can create\n"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "Nun vi povas krei unu aý pli \"ordinara(j)\" uzanto(j), male al la\n"
-#~ "\"privilegia\" uzanto, \"root\". Vi povas krei unu aý pli uzanto(j) por\n"
-#~ "ćiu persono vi deziras permesi uzi la komputilon. Notu ke ćiu uzanto\n"
-#~ "havos viajn proprajn preferojn (grafikan medion, programajn aranřojn,\n"
-#~ "ktp.) kaj řian propran \"hejman dosierujon\", kie ći tiuj preferoj estas\n"
-#~ "konservata.\n"
-#~ "\n"
-#~ "\n"
-#~ "Antaý ćio, krei uzanton por vi mem! Eć se vi estos la sola uzulo će la\n"
-#~ "komputilo, vi ne devus konekti kiel \"root\" por ćiutaga uzado de la\n"
-#~ "sistemo: ři estas tre alta sekureca risko. Fari la sistemon neuzebla\n"
-#~ "estas oftege nur unu misklavo fora.\n"
-#~ "\n"
-#~ "\n"
-#~ "Tial, vi devus konekti al la sistemo per ordinara uzanto vi kreos ći "
-#~ "tie,\n"
-#~ "kaj saluti kiel \"root\" nur por administraj kaj flegadaj kialoj."
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Plurfrekvenca kiu povas fari 1280x1024 će 76 hercoj (Hz)"
-#, fuzzy
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <number>: use the corresponding text mode.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories\n"
-#~ "stored in \"/tmp\" when you boot your system, select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the\n"
-#~ "BIOS about the amount of RAM present in your computer. As consequence, "
-#~ "Linux may\n"
-#~ "fail to detect your amount of RAM correctly. If this is the case, you "
-#~ "can\n"
-#~ "specify the correct amount or RAM here. Please note that a difference of "
-#~ "2 or 4\n"
-#~ "MB between detected memory and memory present in your system is normal."
-#~ msgstr ""
-#~ "LILO kaj Grub ćefaj opcioj estas:\n"
-#~ " - Startaparato: Fiksas la nomon de la aparato (ekz-e subdisko de "
-#~ "fiksdisko)\n"
-#~ "tiu enhavas la startsektoron. Krom se vi scias specife alie, elektu\n"
-#~ "\"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Prokrastoperiodo antaý starti defaýltan sistemon: Elektas la nombron\n"
-#~ "da dekonoj de sekundo ke la startţargilo devus atendi antaý starti la\n"
-#~ "unuan sistemon. Ći tiu utilas će sistemoj kiuj tuj startas de la\n"
-#~ "fiksdisko malantaý ili ebligas la klavaron. La startţargilo ne atendas "
-#~ "se\n"
-#~ "\"delay\" (prokrastoperiodo) estas ellasita aý estas fiksita al nul.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Grafika reřimo: Ći tiu specifas la VGA tekstan reřimon por uzi dum\n"
-#~ "start. La sekvantaj valoroj estas uzeblaj:\n"
-#~ " * normala: elektu normalan 80 per 25 tekstan reřimon.\n"
-#~ " * <numero>: uzu la respondan tekstan reřimon."
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Ekrano kiu povas fari 1600x1200 će 70 hercoj (Hz)"
-#~ msgid ""
-#~ "SILO is a bootloader for SPARC: it is able to boot\n"
-#~ "either GNU/Linux or any other operating system present on your computer.\n"
-#~ "Normally, these other operating systems are correctly detected and\n"
-#~ "installed. If this is not the case, you can add an entry by hand in this\n"
-#~ "screen. Be careful as to choose the correct parameters.\n"
-#~ "\n"
-#~ "\n"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "anyone, in which case you can delete the corresponding entries. But\n"
-#~ "in this case, you will need a boot disk in order to boot them!"
-#~ msgstr ""
-#~ "SILO estas startţargilo por Sparc: ři povas starti aý Linukson aý iun "
-#~ "ajn\n"
-#~ "mastruman sistemon ćeestanta će via komputilo. Normale, ći tiuj aliaj\n"
-#~ "mastrumaj sistemoj estas řuste detektata kaj instalada. Se tiel ne "
-#~ "estas,\n"
-#~ "vi povas aldoni enskribon mane per ći tiu ekrano. Zorgu elekti la "
-#~ "řustajn\n"
-#~ "parametrojn.\n"
-#~ "\n"
-#~ "\n"
-#~ "Eble vi ankaý ne deziras doni atingon al ći tiuj aliaj mastrumaj "
-#~ "sistemoj\n"
-#~ "al iu ajn. Ćiokaze vi povas forstreki la respondajn enskribojn. Sed\n"
-#~ "ćiokaze, vi bezonos startdiskon por starti ilin!"
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Ekrano kiu povas fari 1600x1200 će 76 hercoj (Hz)"
#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
#~ msgstr ""
-#~ "SILO ćefaj opcioj estas:\n"
-#~ " - Instalado de Startţargilo: Indiki kie vi deziras meti la informon\n"
-#~ "bezonata por start GNU/Linukso. Krom se vi scias specife kion vi faras,\n"
-#~ "elektu \"Unua sektoro de drajvo (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Prokrastoperiodo antaý starti defaýltan sistemon: Elektas la nombron\n"
-#~ "da dekonoj de sekundo ke la startţargilo devus atendi antaý starti la\n"
-#~ "unuan sistemon. Ći tiu utilas će sistemoj kiuj tuj startas de la\n"
-#~ "fiksdisko malantaý ili ebligas la klavaron. La startţargilo ne atendas "
-#~ "se\n"
-#~ "\"delay\" (prokrastoperiodo) estas ellasita aý estas fiksita al nul."
+#~ "La totala grandeco de la grupoj vi elektis estas proksimume %d MB.\n"
#~ msgid ""
-#~ "Now it's time to configure the X Window System, which is the\n"
-#~ "core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
-#~ "Nun estas tempo por konfiguri la X Fenestra Sistemo, kiu estas la kerno\n"
-#~ "de la GNU/Linuksa GUI (Grafika UzulInterfaco). Por tiu celo, vi devas\n"
-#~ "konfiguri vian grafikan karton kaj ekranon. La plejparto de ći tiuj "
-#~ "paţoj\n"
-#~ "estas aýtomatitaj, tamen, do via laboro eble konsistos en konfirmi kion\n"
-#~ "estis farata kaj akcepti la aranřojn. :)\n"
-#~ "\n"
+#~ "Se vi volas instali malpli ol ći tiu grandeco,\n"
+#~ "elektu la procenton el la pakaźoj kiuj vi deziras instali.\n"
#~ "\n"
-#~ "Kiam la konfigurado estas kompleta, X lanćiřos (krom se vi demandas al\n"
-#~ "DrakX ne fari tion) pro ke vi kontrolu řin la observu se la aranřojn\n"
-#~ "taýgas por vi. Se ne, vi povas reveni kaj ţanři ilin, tiom da tempoj "
-#~ "kiom\n"
-#~ "estas necesa."
+#~ "Malalta procento instalos nur la plej gravajn pakaźojn;\n"
+#~ "100%% instalos ćiujn pakaźojn."
#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ "Se iu misas en la X-a konfiguraźo, uzu ći tiujn opciojn por řuste "
-#~ "konfiguri\n"
-#~ "la X Fenestran Sistemon."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "Se vi preferas uzi grafikan saluton, elektu \"Jes\". Aliokaze, elektu "
-#~ "\"Ne\"."
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
+#~ "You have space on your disk for only %d%% of these packages.\n"
#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
#~ msgstr ""
-#~ "Via sistemo restartos.\n"
+#~ "Vi havas spacon će via disko por nur %d%% da ći tiuj pakaźoj.\n"
#~ "\n"
-#~ "Post restartado, via nova Linuks-Mandrejka sistemo ţargiřos aýtomate. Se "
-#~ "vi\n"
-#~ "deziras starti en alian ekzistanta mastruman sistemon, bonvole legu la\n"
-#~ "pluan instrukcion."
-
-#~ msgid "Czech (Programmers)"
-#~ msgstr "Ćeśa (Programistoj)"
-
-#~ msgid "Slovakian (Programmers)"
-#~ msgstr "Slovaka (Programistoj)"
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "Skribu /etc/fstab"
-
-#~ msgid "Format all"
-#~ msgstr "Formatu ćion"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "Post formatado de ćiuj subdisko,"
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "ćiuj datenoj sur tiuj subdisko estos perdata"
-
-#~ msgid "Reload"
-#~ msgstr "Reţargu"
-
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr "Ću vi deziras krei aýtoinstalan disketon por replikado de Linukso?"
-
-#~ msgid "ADSL configuration"
-#~ msgstr "ADSL Konfiguraźo"
-
-#, fuzzy
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ "Kun malproksima CUPS servilo, vi ne devas konfiguri iun printilon\n"
-#~ "ći tie; printiloj estos aýtomate dektektataj. Se vi havas dubojn,\n"
-#~ "elektu \"Malproksima CUPS servilo\"."
-
-#, fuzzy
-#~ msgid "Remote queue name missing!"
-#~ msgstr "Malproksima printvico"
-
-#, fuzzy
-#~ msgid "Command line"
-#~ msgstr "Domajna nomo"
-
-#, fuzzy
-#~ msgid "Modify printer"
-#~ msgstr "Neniu printilo"
-
-#, fuzzy
-#~ msgid "Network Monitoring"
-#~ msgstr "ISDN-a Konfiguraźon"
-
-#, fuzzy
-#~ msgid "Profile "
-#~ msgstr "muntado malsukcesis: "
-
-#~ msgid "Sending Speed:"
-#~ msgstr "Sendrapideco: "
-
-#~ msgid "Receiving Speed:"
-#~ msgstr "Ricevrapideco: "
-
-#, fuzzy
-#~ msgid "Connection Time: "
-#~ msgstr "Speco de konekto"
+#~ "Se vi deziras instali malpli ol tiom,\n"
+#~ "elektu la procenton el la pakaźoj kiun vi deziras instali.\n"
+#~ "Malalta procento instalos nur la plej gravajn pakaźojn;\n"
+#~ "%d%% instalos tiom pakaźojn kiom eblajn."
-#~ msgid "Connecting to Internet "
-#~ msgstr "Konektas al la Interreto"
-
-#, fuzzy
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "Malkonektas el la Interreto"
-
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "Malkonektado el la Interreto malsukcesis."
-
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "Malkonektado el la Interreto finis."
-
-#, fuzzy
-#~ msgid "Connection complete."
-#~ msgstr "Nomo de konekto"
-
-#~ msgid "sent: "
-#~ msgstr "sendita(j): "
-
-#~ msgid "received: "
-#~ msgstr "ricevita(j): "
-
-#, fuzzy
-#~ msgid "Default Runlevel"
-#~ msgstr "Defaýlta"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "Mi ne povas kompreni la enhavon de la konfigurodosiero."
-
-#~ msgid "Adapter"
-#~ msgstr "Adaptilo"
-
-#, fuzzy
-#~ msgid "Disable network"
-#~ msgstr "Malebligu"
-
-#, fuzzy
-#~ msgid "Enable network"
-#~ msgstr "Ebligu"
-
-#, fuzzy
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "Konfiguru interretan konektaźon"
-
-#~ msgid "Choose"
-#~ msgstr "Elektu"
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr "Vi povas specifi rekte la URI por atingi la printilon per CUPS."
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "Jes, printu Askian provpařon"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "Jes, printu PostSkriban provpařon"
-
-#~ msgid "Paper Size"
-#~ msgstr "Papergrandeco"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "Elźetu pařon post tasko?"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "Uniprint-aj pelilaj opcioj"
-
-#~ msgid "Color depth options"
-#~ msgstr "Kolorprofunecaj opcioj"
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "Printu tekston kiel PostScripto?"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "Riparu ţtuparan tekston?"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Nombro de pařoj en eliga pařo"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr ""
-#~ "Dekstra/Maldrekstra marřenoj en punktoj (1/72 de colo, proksimume 1/3 mm)"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr ""
-#~ "Supra/Malsupra marřenoj en punktoj (1/72 de colo, proksimume 1/3 mm)"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "Aldonaj GhostScript-aj opcioj"
-
-#~ msgid "Extra Text options"
-#~ msgstr "Aldonaj Tekstaj opcioj"
-
-#~ msgid "Reverse page order"
-#~ msgstr "Inversigu ordon de pařoj"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Elektu Malproksiman Printilan Konekton"
-
-#~ msgid ""
-#~ "Every printer need a name (for example lp).\n"
-#~ "Other parameters such as the description of the printer or its location\n"
-#~ "can be defined. What name should be used for this printer and\n"
-#~ "how is the printer connected?"
-#~ msgstr ""
-#~ "Ćiuj printilo bezonas nomon (ekzemple lp).\n"
-#~ "Aliaj parametroj, ekzemple la priskribon de la printilo aý řian lokon\n"
-#~ "vi povas difini. Kiu nomo devus uzata por ći tiu printilo kaj kiel\n"
-#~ "ři estas konektata?"
-
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a\n"
-#~ "name (often lp) and a spool directory associated with it. What\n"
-#~ "name and directory should be used for this queue and how is the printer "
-#~ "connected?"
-#~ msgstr ""
-#~ "Ćiuj printvico (al kiu printajn taskojn estas direktata) bezonas nomon\n"
-#~ "(ofte lp) kaj fonan eneligan dosierujon asociata kun ři. Kiu nomo kaj\n"
-#~ "dosierujo devus uzata por ći tiu printvico?"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Vi povos elekti ilin pli precize en la sekvanta paţo."
-#~ msgid "Name of queue"
-#~ msgstr "Nomo de printvico"
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Procento da pakaźoj por instali"
-#~ msgid "Spool directory"
-#~ msgstr "Fona eneliga dosierujo"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Elektu sekurnivelon?"
diff --git a/perl-install/share/po/es.po b/perl-install/share/po/es.po
index fb6f837b3..6c00f2078 100644
--- a/perl-install/share/po/es.po
+++ b/perl-install/share/po/es.po
@@ -1,40 +1,67 @@
-# Translation file (spanish) of Mandrake graphic install
-# Copyright (C) 1999 Mandrakesoft
-# Pablo Saratxaga <pablo@mandrakesoft.com>, 1999-2000
-# Fabian Mandelbaum <fabman@mandrakesoft.com>, 2000, 2001, 2002
-# Juan Manuel GarcĂ­a Molina <juanma_gm@wanadoo.es>, 2000-2002
-# Carlos SĂĄnchez <vcbsaorc@vc.ehu.es>, 2002
+# spanish translation of drakfloppy
+# Copyright (C) 2000, 2001 MandrakeSoft S.A.
+# Fabian Mandelbaum <fabman@mandrakesoft.com>, 2000, 2001.
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-15 10:34-0300\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2001-08-22 10:38-0300\n"
"Last-Translator: Fabian Mandelbaum <fabman@mandrakesoft.com>\n"
-"Language-Team: Spanish <cooker-i18n@linux-mandrake.com>\n"
+"Language-Team: SPANISH <es@li.org>\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 0.9.5\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Configurar los monitores independientemente"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 KB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Usar extensiĂłn Xinerama"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 KB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Configurar sĂłlo la tarjeta \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB o mĂĄs"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Elija un servidor X"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "Servidor X"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "ConfiguraciĂłn multi-monitor"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -42,41 +69,44 @@ msgstr ""
"Su sistema soporta configuraciĂłn multi-monitor.\n"
"ÂżQuĂŠ desea hacer?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Tarjeta grĂĄfica"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Seleccione la cantidad de memoria de su tarjeta grĂĄfica"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Seleccione una tarjeta grĂĄfica"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "ConfiguraciĂłn de XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Elija un servidor X"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "ÂżQuĂŠ tipo de configuraciĂłn de XFree desea tener?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "Servidor X"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Configurar los monitores independientemente"
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Elija un controlador X"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Usar extensiĂłn Xinerama"
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "Controlador X"
+#: ../../Xconfig/card.pm_.c:379
+#, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Configurar sĂłlo la tarjeta \"%s\"%s"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "ÂżQuĂŠ tipo de configuraciĂłn de XFree desea tener?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s con aceleraciĂłn 3D por hardware"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -85,32 +115,17 @@ msgstr ""
"Su tarjeta puede admitir aceleraciĂłn 3D pero sĂłlo con XFree %s.\n"
"XFree %s admite su tarjeta y puede tener mejor comportamiento en 2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Su tarjeta puede admitir aceleraciĂłn 3D por hardware con XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s con aceleraciĂłn 3D por hardware"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Su tarjeta puede admitir aceleraciĂłn 3D por hardware con XFree %s,\n"
-"ADVIERTA QUE ESTO ES EXPERIMENTAL Y PUEDE COLGAR SU ORDENADOR."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s con aceleraciĂłn 3D EXPERIMENTAL por hardware"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -121,31 +136,58 @@ msgstr ""
"ADVIERTA QUE ESTO ES EXPERIMENTAL Y PUEDE COLGAR SU ORDENADOR.\n"
"XFree %s admite su tarjeta y puede tener un mejor comportamiento en 2D."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Su tarjeta puede admitir aceleraciĂłn 3D por hardware con XFree %s,\n"
+"ADVIERTA QUE ESTO ES EXPERIMENTAL Y PUEDE COLGAR SU ORDENADOR."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (instalaciĂłn del controlador de la pantalla)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "ConfiguraciĂłn de XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Seleccione la cantidad de memoria de su tarjeta grĂĄfica"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Elija las opciones para el servidor"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"ÂżConservar los cambios?\n"
+"La configuraciĂłn actual es:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Elija un monitor"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Personalizada"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "GenĂŠrico"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Deshacer"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -169,513 +211,327 @@ msgstr ""
"puede daĂąar su monitor.\n"
" En caso de duda, elija una configuraciĂłn conservadora."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Frecuencia de barrido horizontal"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Frecuencia de barrido vertical"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "El monitor no estĂĄ configurado"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "La tarjeta grĂĄfica todavĂ­a no estĂĄ configurada"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "AĂşn no ha elegido las resoluciones"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "ÂżDesea probar la configuraciĂłn?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-"Advertencia: probar con esta tarjeta de vĂ­deo puede colgar su ordenador"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Probar la configuraciĂłn"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 colores (8 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"intente cambiar algunos parĂĄmetros"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 mil colores (15 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "OcurriĂł un error:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 mil colores (16 bits)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Saliendo en %d segundos"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 millones de colores (24 bits)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "ÂżEs ĂŠsta la configuraciĂłn correcta?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 billones de colores (32 bits)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "OcurriĂł un error, intente cambiar algunos parĂĄmetros"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Resoluciones"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "ResoluciĂłn"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Elija la resoluciĂłn y la profundidad de colores"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Tarjeta grĂĄfica: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Servidor XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "MĂĄs"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Cancelar"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Aceptar"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Modo experto"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Mostrar todo"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "ÂżDesea probar la configuraciĂłn?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Resoluciones"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Probar la configuraciĂłn"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "DistribuciĂłn del teclado: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Tipo de ratĂłn: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Dispositivo del ratĂłn: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Frecuencia horizontal del monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Frecuencia vertical del monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Tarjeta grĂĄfica: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "IdentificaciĂłn de la tarjeta grĂĄfica: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Memoria de la tarjeta grĂĄfica: %s KB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Profundidad de color: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "ResoluciĂłn: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Servidor XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Controlador XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Preparando la configuraciĂłn de X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "ÂżQuĂŠ desea hacer?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Cambiar el monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Cambiar la tarjeta grĂĄfica"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Cambiar las opciones del servidor X"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Cambiar la resoluciĂłn"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Mostrar informaciĂłn"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Probar de nuevo"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Salir"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"ÂżConservar los cambios?\n"
-"La configuraciĂłn actual es:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X al arrancar"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Puede configurar su computadora para que inicie X automĂĄticamente\n"
"al arrancar. ÂżDesea que se lance X cuando reinicie?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Abra de nuevo una sesiĂłn %s para activar los cambios"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Por favor salga de la sesiĂłn y luego pulse Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 colores (8 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mil colores (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mil colores (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 millones de colores (24 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 billones de colores (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 KB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 KB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB o mĂĄs"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "VGA estĂĄndar, 640x480 a 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 a 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Compatible 8514, 1024x768 a 87 Hz entrelazado (sin 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 a 87 Hz entrelazado, 800x600 a 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Super VGA extendido, 800x600 a 60 Hz, 640x480 a 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "SVGA no-entrelazado, 1024x768 a 60 Hz, 800x600 a 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "SVGA alta-frecuencia, 1024x768 a 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Monitor multi-frecuencia que soporta 1280x1024 a 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Monitor multi-frecuencia que soporta 1280x1024 a 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Monitor multi-frecuencia que soporta 1280x1024 a 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor que soporta 1600x1200 a 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor que soporta 1600x1200 a 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Primer sector de la particiĂłn de arranque"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Primer sector del disco (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "InstalaciĂłn de SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "ÂżDĂłnde quiere instalar el cargador de arranque?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "InstalaciĂłn de LILO/grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO con menĂş de texto"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO con menĂş grĂĄfico"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Arrancar desde DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Opciones principales del cargador de arranque"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Cargador de arranque a usar"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "InstalaciĂłn del cargador de arranque"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Dispositivo de arranque"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (no funciona con BIOS antiguos)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Compacto"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "compacto"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Modo de vĂ­deo"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Demora antes de arrancar la imagen predeterminada"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "ContraseĂąa"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "ContraseĂąa (de nuevo)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Restringir las opciones de la lĂ­nea de comandos"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "restringir"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Limpiar /tmp en cada inicio del equipo"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Precise el tamaĂąo de la RAM si es necesario (se encontraron %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Activar perfiles mĂşltiples"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Proporcione el tamaĂąo de la RAM en MB"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"La opciĂłn \"Restringir las opciones de la lĂ­nea de comandos\"\n"
"no tiene sentido sin contraseĂąa"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Vuelva a intentarlo, por favor"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Las contraseĂąas no coinciden"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Mensaje de inicio"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Demora de open firmware"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Tiempo de espera de arranque del nĂşcleo"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "ÂżHabilitar el arranque desde CD?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "ÂżHabilitar el arranque de OF?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "ÂżSO predeterminado?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -689,83 +545,83 @@ msgstr ""
"\n"
"ÂżDesde quĂŠ disco arranca?"
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"AquĂ­ estĂĄn las diferentes entradas.\n"
"Puede aĂąadir otras o cambiar las que ya existen."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
-msgstr "AĂąadir"
+msgstr "Agregar"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Hecho"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Modificar"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "ÂżQuĂŠ tipo de entrada desea aĂąadir?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Otro SO (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Otro SO (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Otro SO (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Imagen"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "RaĂ­z"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "AĂąadir"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Lectura/Escritura"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabla"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Inseguro"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Etiqueta"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Por defecto"
@@ -797,53 +653,77 @@ msgstr "Debe especificar una particiĂłn raĂ­z"
msgid "This label is already used"
msgstr "Esta etiqueta ya estĂĄ en uso"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "%s interfaces %s encontradas"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "ÂżTiene alguna otra?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "ÂżTiene alguna interfaz %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "No"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "SĂ­"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Ver informaciĂłn sobre el hardware"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instalando controlador para la tarjeta %s %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(mĂłdulo %s)"
+#: ../../any.pm_.c:697
+#, fuzzy, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+"Ahora puede proporcionar las opciones al mĂłdulo %s.\n"
+"Note que cualquier direcciĂłn debe ingresarse con el prefijo 0x como '0x123'"
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"AquĂ­ deben ir las diferentes opciones para el mĂłdulo %s.\n"
+"Las opciones son de la forma \"nombre=valor nombre2=valor2 ...\".\n"
+"Por ejemplo, \"io=0x300 irq=7\""
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Opciones de los mĂłdulos:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "ÂżQuĂŠ controlador de %s debo probar?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -862,39 +742,15 @@ msgstr ""
"el probar el equipo puede provocar que ĂŠste se cuelgue, pero no deberĂ­a\n"
"causar ningĂşn daĂąo."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "AutodetecciĂłn"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Especificar las opciones"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"Ahora puede proporcionar las opciones al mĂłdulo %s.\n"
-"Note que cualquier direcciĂłn debe ingresarse con el prefijo 0x como '0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"AquĂ­ deben ir las diferentes opciones para el mĂłdulo %s.\n"
-"Las opciones son de la forma \"nombre=valor nombre2=valor2 ...\".\n"
-"Por ejemplo, \"io=0x300 irq=7\""
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Opciones de los mĂłdulos:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -903,50 +759,55 @@ msgstr ""
"Error al cargar el mĂłdulo %s.\n"
"ÂżDesea intentarlo de nuevo con otros parĂĄmetros?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "acceso a programas X"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "acceso a herramientas rpm"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "permitir \"su\""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "acceso a archivos administrativos"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(%s ya fue aĂąadido)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Esta contraseĂąa es demasiado sencilla"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Introduzca el nombre de usuario"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"El nombre de usuario (login) sĂłlo debe contener letras, nĂşmeros, `-' y `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Este nombre de usuario ya fue aĂąadido"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Este nombre de usuario ya fue aĂąadido"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "AĂąadir un usuario"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -955,32 +816,32 @@ msgstr ""
"Introduzca un usuario\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Aceptar el usuario"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Nombre y apellidos"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Nombre del usuario"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Icono"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Entrada automĂĄtica"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -988,92 +849,73 @@ msgstr ""
"Puede configurar su computadora para que entre automĂĄticamente\n"
"en sesiĂłn con un usuario dado al arrancar. ÂżDesea esa funcionalidad?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Elija el usuario predeterminado:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Elija el gestor de ventanas a ejecutar:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Por favor, elija el idioma a usar."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr ""
"Puede elegir otros idiomas, que estarĂĄn disponibles despuĂŠs de la instalaciĂłn"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Todo"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Permitir a todos los usuarios"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Personalizada"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "No compartir"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Se necesita instalar el paquete %s. ÂżQuiere instalarlo?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Puede exportar usando NFS o Samba. ÂżCuĂĄl elige"
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Falta el paquete obligatorio %s"
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
"ÂżDesea permitir a los usuarios exportar algunos directorios personales?\n"
-"Si lo hace, los usuarios podrĂĄn simplemente hacer clic sobre \"Compartir\" en konqueror y nautilus.\n"
+"Si lo hace, los usuarios podrĂĄn simplemente hacer clic sobre \"Compartir\" "
+"en konqueror y nautilus.\n"
"\n"
"\"Personalizar\" permite una granularidad por usuario.\n"
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Cancelar"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr "Lanzar userdrake"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -1081,31 +923,31 @@ msgstr ""
"La comparticiĂłn por usuario utiliza el grupo \"fileshare\". \n"
"Puede utilizar userdrake para aĂąadir un usuario a este grupo."
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Bienvenidos, crackers"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Pobre"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "EstĂĄndar"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Alta"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
msgstr "MĂĄs alta"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoica"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1115,7 +957,7 @@ msgstr ""
"usar, pero tambiĂŠn mucho mĂĄs vulnerable: no debe usarse para una mĂĄquina\n"
"conectada en red con otras o a Internet. No hay contraseĂąas de acceso."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1123,7 +965,7 @@ msgstr ""
"Las contraseĂąas estĂĄn activadas, pero tampoco se recomienda usar este\n"
"nivel para un ordenador conectado a una red."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1131,7 +973,7 @@ msgstr ""
"Éste es el nivel de seguridad estándar recomendado para una máquina que se\n"
"utilizarĂĄ para conectarse a la Internet como cliente."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1139,13 +981,14 @@ msgstr ""
"Ya hay algunas restricciones, y todas las noches se corren mĂĄs "
"verificaciones automĂĄticas."
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Con este nivel de seguridad, es posible utilizar el sistema como un "
"servidor.\n"
@@ -1153,35 +996,35 @@ msgstr ""
"servidor que acepte conexiones de mĂşltiples clientes. Nota: si su mĂĄquina "
"sĂłlo es un cliente en la Internet, mejor deberĂ­a elegir un nivel inferior."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Basado en el nivel anterior, pero el sistema estĂĄ completamente cerrado.\n"
"Las caracterĂ­sticas de seguridad estĂĄn al mĂĄximo."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Elegir el nivel de seguridad"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Nivel de seguridad"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Utilizar libsafe para los servidores"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Una biblioteca que le defiende ante ataques de desbordamiento de bĂşfer y "
"ataques con cadenas de formato."
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1198,52 +1041,52 @@ 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_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "ÂĄBienvenido a GRUB, el selector de SO de arranque!"
#. -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_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use las teclas %c y %c para seleccionar una entrada."
#. -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_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Pulse intro para iniciar el SO elegido, pulse 'e' para editar"
#. -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_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "los comandos antes de iniciar, o pulse 'c' para una linea de comandos."
#. -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_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Se va a iniciar la entrada resaltada en %d segundos."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "no hay espacio suficiente en /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Escritorio"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "MenĂş inicio"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "No puede instalar el cargador de arranque en una particiĂłn %s\n"
@@ -1256,15 +1099,19 @@ msgstr "todavĂ­a no estĂĄ implementada la ayuda.\n"
msgid "Boot Style Configuration"
msgstr "ConfiguraciĂłn del estilo de arranque"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Archivo"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Archivo/_Salir"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>S"
@@ -1299,14 +1146,14 @@ msgstr "Modo de Yaboot"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"En este momento estĂĄ usando %s como gestor de arranque.\n"
"Haga click sobre configurar para lanzar el asistente de configuraciĂłn."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Configurar"
@@ -1316,7 +1163,7 @@ msgid "System mode"
msgstr "Modo del sistema"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Lanzar el sistema X-Window al comenzar"
#: ../../bootlook.pm_.c:148
@@ -1327,14 +1174,16 @@ msgstr "No, no deseo entrada automĂĄtica"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "SĂ­, deseo entrada automĂĄtica con este (usuario, escritorio)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "Aceptar"
@@ -1384,7 +1233,7 @@ msgstr ""
"Luego de la instalaciĂłn estarĂĄn disponibles las instantĂĄneas de pantalla en %"
"s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Francia"
@@ -1392,7 +1241,7 @@ msgstr "Francia"
msgid "Costa Rica"
msgstr "Costa Rica"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "BĂŠlgica"
@@ -1416,11 +1265,12 @@ msgstr "Noruega"
msgid "Sweden"
msgstr "Suecia"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Holanda"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "Italia"
@@ -1428,7 +1278,7 @@ msgstr "Italia"
msgid "Austria"
msgstr "Austria"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "Estados Unidos"
@@ -1436,8 +1286,8 @@ msgstr "Estados Unidos"
msgid "Please make a backup of your data first"
msgstr "Por favor, haga primero una copia de seguridad de sus datos"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "ÂĄLea con cuidado!"
@@ -1450,11 +1300,12 @@ msgstr ""
"Si piensa usar aboot, no olvide dejar espacio libre (2048 sectores es\n"
"suficiente) al principio del disco"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Error"
@@ -1462,11 +1313,11 @@ msgstr "Error"
msgid "Wizard"
msgstr "Asistente"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Elija una acciĂłn"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1478,144 +1329,149 @@ msgstr ""
"Le sugiero que primero cambie el tamaĂąo de la misma\n"
"(para eso haga clic sobre ella, y luego sobre \"Redimensionar\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Por favor, haga clic sobre una particiĂłn"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Detalles"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "Sistema de. archivos. con journal"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Intercambio"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "VacĂ­o"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Otros"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Tipos de sistemas de archivos:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Crear"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tipo"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Use \"%s\" en su lugar"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Borrar"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Use \"Desmontar\" primero"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Se perderĂĄn todos los datos de la particiĂłn %s despuĂŠs de cambiar su tipo"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Elija una particiĂłn"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Elija otra particiĂłn"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Salir"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Cambiar al modo experto"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Cambiar al modo normal"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Deshacer"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "ÂżSeguir adelante?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Salir sin grabar"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "ÂżSalir del programa sin grabar la tabla de particiones?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "ÂżDesea guardar las modificaciones en /etc/fstab?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "AsignaciĂłn automĂĄtica"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Borrar todas"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "MĂĄs"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "InformaciĂłn del disco rĂ­gido"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Todas las particiones primarias estĂĄn usadas"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "No se pueden agregar mĂĄs particiones"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1623,31 +1479,31 @@ msgstr ""
"Por favor, para tener mĂĄs particiones borre alguna para poder crear una "
"particiĂłn extendida"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "Guardar la tabla de particiones"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "Restaurar la tabla de particiones"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Rescatar la tabla de particiones"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "Volver a cargar la tabla de particiones"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "Montaje automĂĄtico de dispositivos extraĂ­bles"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Elija un archivo"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1655,11 +1511,11 @@ msgstr ""
"La tabla de particiones de respaldo no tiene\n"
"el mismo tamaĂąo. ÂżDesea continuar de todas formas?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Advertencia"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1667,122 +1523,129 @@ msgstr ""
"Inserte un disquete en la unidad\n"
"Se perderĂĄn todos los datos del disquete"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Tratando de rescatar la tabla de particiones"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "InformaciĂłn detallada"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Punto de montaje"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opciones"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Redimensionar"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Desplazar"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formatear"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Montar"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "AĂąadir al RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "AĂąadir al LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Desmontar"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Quitar del RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Quitar del LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Modificar el RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Usar para loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Crear una particiĂłn nueva"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Sector de comienzo: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "TamaĂąo en MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Tipo de sistema de. archivos: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Punto de montaje: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Preferencia: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+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/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "ÂżBorrar el archivo de loopback?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Cambiar el tipo de particiĂłn"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "ÂżQuĂŠ sistema de archivos desea?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Cambiando de ext2 a ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "ÂżDonde desea montar el archivo de loopback %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "ÂżDĂłnde desea montar el dispositivo %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1791,128 +1654,133 @@ msgstr ""
"se usa para un montaje en loopback.\n"
"Quite el montaje de loopback primero"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Calculando los lĂ­mites del sistema de archivos FAT"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Redimensionando"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Esta particiĂłn no es redimensionable"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr ""
"DeberĂ­a hacer una copia de seguridad de todos los datos de esta particiĂłn"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Se perderĂĄn todos los datos de la particiĂłn %s tras cambiar su tamaĂąo"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Eligiendo el tamaĂąo nuevo"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "TamaĂąo nuevo en MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "ÂżA quĂŠ disco desea desplazarla?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sector"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "ÂżA quĂŠ sector desea desplazarla?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Desplazando"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Desplazando una particiĂłn..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Elegir un RAID existente al que aĂąadir"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "nuevo"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Elegir un LVM existente al que aĂąadir"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "Âżnombre de LVM?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Esta particiĂłn no puede usarse para el loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Nombre del archivo de loopback: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Indique el nombre de un archivo"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr ""
"El archivo ya lo utiliza otro dispositivo loopback.\n"
"Elija otro archivo, por favor"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "El archivo ya existe. ÂżDesea usarlo?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Opciones de montaje"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Varios"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "dispositivo"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "nivel"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "tamaĂąo de los bloques"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Cuidado: esta operaciĂłn es peligrosa."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "ÂżQuĂŠ tipo de particionamiento?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Se necesita instalar el paquete %s. ÂżQuiere instalarlo?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1924,7 +1792,7 @@ msgstr ""
"que\n"
"no funcione), o bien no utiliza LILO (y entonces no necesita /boot)"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1936,7 +1804,7 @@ msgstr ""
"Si piensa usar el cargador de arranque LILO, tenga en cuenta que tiene\n"
"que aĂąadir una particiĂłn /boot"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1946,129 +1814,129 @@ msgstr ""
"NingĂşn cargador de arranque es capaz de manejarlo sin una particiĂłn /boot.\n"
"AsĂ­ que tenga en cuenta que tiene que aĂąadir una particiĂłn /boot."
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "ÂĄSe escribirĂĄ al disco la tabla de particiones de la unidad %s!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Necesita reiniciar el equipo para que la modificaciĂłn tenga efecto"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Se perderĂĄn todos los datos de la particiĂłn %s despuĂŠs de formatearla"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Formateando"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formateando el archivo de loopback %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Formateando la particiĂłn %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Ocultar archivos"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Mover los archivos a la nueva particiĂłn"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"El directorio %s ya tiene algunos datos\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "Moviendo los archivos a la nueva particiĂłn"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Copiando %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Borrando %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "la particiĂłn %s ahora se conoce como %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Dispositivo: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Letra DOS: %s (simplemente una adivinanza)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Tipo: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Nombre: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Comienzo: sector %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "TamaĂąo: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sectores"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cilindros %d a %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Formateado\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "No formateado\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Montado\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2077,7 +1945,7 @@ msgstr ""
"Archivo(s) de loopback:\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2085,27 +1953,27 @@ msgstr ""
"ParticiĂłn predeterminada de arranque\n"
" (para arranque de MS-DOS, no para lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Nivel %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "TamaĂąo de los bloques %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "Discos-RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Nombre del archivo de loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2117,7 +1985,7 @@ msgstr ""
"una particiĂłn de Controlador, probablemente\n"
"deberĂ­a dejarla como estĂĄ.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2129,64 +1997,64 @@ msgstr ""
"es para el arranque\n"
"dual de su sistema.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "TamaĂąo: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "GeometrĂ­a: %s cilindros, %s cabezas, %s sectores\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "Discos-LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tipo de la tabla de particiones: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "en el bus %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Opciones: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "Clave de cifrado del sistema de archivos"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "Elija la clave de cifrado de su sistema de archivos"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Esta clave de cifrado es demasiado simple\n"
"(tiene que tener por lo menos una longitud de %d caracteres)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "Las claves de cifrado no coinciden"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "Clave de cifrado"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "Clave de cifrado (otra vez)"
@@ -2195,35 +2063,65 @@ msgid "Change type"
msgstr "Cambiar tipo"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Por favor, haga clic sobre un medio"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "AutentificaciĂłn"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Internet"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Nombre del usuario"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Nombre del usuario"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "Dominio NIS"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "Buscar servidores"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formateo de %s fallĂł"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "No sĂŠ cĂłmo formatear %s en el tipo %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "fallĂł el montaje de la particiĂłn %s en el directorio %s"
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck fallĂł con cĂłdigo de salida %d o seĂąal %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "error desmontando %s: %s"
@@ -2240,70 +2138,323 @@ msgstr "con /usr"
msgid "server"
msgstr "servidor"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "No se puede usar JFS para particiones menores de 32MB"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "No se puede usar ReiserFS para particiones menores de 32MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Los puntos de montaje deben comenzar con una /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Ya existe una particiĂłn con el punto de montaje %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "No puede usar un Volumen LĂłgico LVM para el punto de montaje %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Este directorio deberĂ­a permanecer dentro del sistema de archivos raĂ­z"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Necesita un sistema de archivos verdadero (ext2, reiserfs) para este punto "
"de montaje\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
"No puede usar un sistema de archivos cifrado para el punto de montaje %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "No hay espacio libre suficiente para la asignaciĂłn automĂĄtica"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr "Nada para hacer"
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Error al abrir %s para escribir: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"OcurriĂł un error - no se encontrĂł ningĂşn dispositivo vĂĄlido para crear los "
"nuevos sistemas de archivos. Por favor, verifique su equipo para saber la "
"razĂłn de este fallo"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "ÂĄNo tiene ninguna particiĂłn!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Realizar detecciĂłn automĂĄtica"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "GenĂŠrico"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Memoria (DMA) de la tarjeta"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "configuraciĂłn de la carga"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Cambiar tipo"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Salir"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/A_yuda"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/A_yuda"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Ayuda/_Acerca..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "MĂłdulo"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Memoria (DMA) de la tarjeta"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Cancelar"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "Module"
+msgstr "MĂłdulo"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "DescripciĂłn"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "AutentificaciĂłn"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Elija un archivo"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Dispositivo de pasarela de red"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 botones"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "DetecciĂłn del disco rĂ­gido"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Ver informaciĂłn sobre el hardware"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Mostrar informaciĂłn"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "ConfiguraciĂłn del ratĂłn"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "detectada en el puerto %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Espere, por favor"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d segundos"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Borrando la impresora \"%s\" ..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "AutodetecciĂłn"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
#: ../../help.pm_.c:13
@@ -2319,7 +2470,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2342,19 +2493,19 @@ msgstr ""
"aquĂ­ no podrĂĄn cambiar nada excepto su configuraciĂłn y sus archivos\n"
"propios. TendrĂĄ que crear al menos un usuario no privilegiado para Usted\n"
"mismo. Esa cuenta es donde deberĂ­a conectarse para el uso diario. Aunque es\n"
-"muy prĂĄctico ingresar como \"root\" diariamente, ÂĄtambiĂŠn puede ser muy\n"
+"muy prĂĄctico ingresar como \"root\" diariamente, ÂĄtambien puede ser muy\n"
"peligroso! El error mĂĄs leve podrĂ­a significar que su sistema deje de\n"
"funcionar. Si comete un error serio como usuario no privilegiado, sĂłlo\n"
"puede llegar a perder algo de informaciĂłn, pero no todo el sistema.\n"
"\n"
"Primero tendrĂĄ que ingresar su nombre real. Esto no es obligatorio, por\n"
-"supuesto ya que, en realidad, puede ingresar lo que desee. DrakX tomarĂĄ\n"
+"supuesto - ya que, en realidad, puede ingresar lo que desee. DrakX tomarĂĄ\n"
"entonces la primer palabra que ingresĂł y la copiarĂĄ al campo \"Nombre de\n"
"usuario\". Este es el nombre que este usuario en particular usarĂĄ para\n"
"ingresar al sistema. Lo puede cambiar. Luego tendrĂĄ que ingresar una\n"
"contraseĂąa aquĂ­. La contraseĂąa de un usuario no privilegiado (regular) no\n"
"es tan crucial como la de \"root\" desde el punto de vista de la seguridad,\n"
-"pero esto no es razĂłn alguna para obviarla - despuĂŠs de todo, son sus\n"
+"pero esto no es razĂłn alguna para obviarla - despues de todo, son sus\n"
"archivos los que estĂĄn en riesgo.\n"
"\n"
"Si hace clic sobre \"Aceptar usuario\", entonces puede agregar tantos como\n"
@@ -2404,7 +2555,7 @@ msgstr ""
"mismas son buenas para las instalaciones mĂĄs comunes. Si hace cambios, al\n"
"menos debe definir una particiĂłn raĂ­z (\"/\"). No elija una particiĂłn muy\n"
"pequeĂąa o no podrĂĄ instalar software suficiente. Si desea almacenar sus\n"
-"datos en una particiĂłn separada, tambiĂŠn puede necesitar crear una\n"
+"datos en una particiĂłn separada, tambien puede necesitar crear una\n"
"particiĂłn para \"/home\" (sĂłlo es posible si tiene mĂĄs de una particiĂłn\n"
"Linux disponible).\n"
"\n"
@@ -2419,11 +2570,11 @@ msgstr ""
"\"NĂşmero de disco rĂ­gido\" siempre es una letra que sigue a \"hd\" o a\n"
"\"sd\". Para los discos IDE:\n"
"\n"
-" * \"a\" significa \"disco rĂ­gido maestro en la controladora IDE primaria"
-"\",\n"
+" * \"a\" significa \"disco rĂ­gido maestro en la controladora IDE\n"
+"primaria\",\n"
"\n"
-" * \"b\" significa \"disco rĂ­gido esclavo en la controladora IDE primaria"
-"\",\n"
+" * \"b\" significa \"disco rĂ­gido esclavo en la controladora IDE\n"
+"primaria\",\n"
"\n"
" * \"c\" significa \"disco rĂ­gido maestro en la controladora IDE\n"
"secundaria\",\n"
@@ -2462,9 +2613,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2509,7 +2659,7 @@ msgstr ""
"pedirĂĄ que especifique los CDs que tiene (sĂłlo en modo Experto). Verifique\n"
"las etiquetas de los CDs y marque las casillas que corresponden a los que\n"
"tiene disponibles para la instalaciĂłn. Haga clic sobre \"Aceptar\" cuando\n"
-"estĂŠ listo para continuar.\n"
+"este listo para continuar.\n"
"\n"
"Los paquetes se ordenan en grupos que corresponden a un uso particular de\n"
"su mĂĄquina. Los grupos en sĂ­ mismos estĂĄn clasificados en cuatro secciones:\n"
@@ -2520,10 +2670,9 @@ msgstr ""
" * \"Desarrollo\": si la mĂĄquina se utilizarĂĄ para programaciĂłn, elija\n"
"el(los) grupo(s) deseado(s).\n"
"\n"
-" * \"Servidor\": finalmente, si se pretende usar la mĂĄquina como un "
-"servidor\n"
-"aquĂ­ puede seleccionar los servicios mĂĄs comunes que desea que se instalen\n"
-"en la misma.\n"
+" * \"Servidor\": finalmente, si se pretende usar la mĂĄquina como un\n"
+"servidor aquĂ­ puede seleccionar los servicios mĂĄs comunes que desea que se\n"
+"instalen en la misma.\n"
"\n"
" * \"Entorno grĂĄfico\": seleccione aquĂ­ su entorno grĂĄfico preferido. Si\n"
"desea tener una estaciĂłn de trabajo grĂĄfica, ÂĄseleccione al menos uno!\n"
@@ -2605,7 +2754,7 @@ msgstr ""
"se deben instalar, el proceso puede tardar un rato en completarse. En la\n"
"pantalla se muestra una estimaciĂłn del tiempo necesario para completar la\n"
"instalaciĂłn para ayudarlo a considerar si tiene tiempo suficiente par\n"
-"disfrutar una taza de cafĂŠ.\n"
+"disfrutar una taza de cafe.\n"
"\n"
"!! Si ha sido seleccionado un paquete de servidor ya sea intencionalmente o\n"
"porque era parte de un grupo completo, se le pedirĂĄ que confirme que\n"
@@ -2660,7 +2809,7 @@ msgstr ""
"conectar su computadora a la Internet o a una red de ĂĄrea local, haga clic\n"
"sobre \"Aceptar\". Se lanzarĂĄ la detecciĂłn automĂĄtica de dispositivos de\n"
"red y mĂłdems. Si esta detecciĂłn falla, quite la marca de la casilla \"Usar\n"
-"detecciĂłn automĂĄtica\" la prĂłxima vez. TambiĂŠn puede elegir no configurar\n"
+"detecciĂłn automĂĄtica\" la prĂłxima vez. Tambien puede elegir no configurar\n"
"la red, o hacerlo mĂĄs tarde; en ese caso simplemente haga clic sobre el\n"
"botĂłn \"Cancelar\".\n"
"\n"
@@ -2674,7 +2823,7 @@ msgstr ""
"\n"
"Puede consultar el capĂ­tulo de \"GuĂ­a del Usuario\" sobre las conexiones a\n"
"la Internet para detalles acerca de la configuraciĂłn, o simplemente esperar\n"
-"hasta que su sistema estĂŠ instalado y usar el programa que se describe aquĂ­\n"
+"hasta que su sistema este instalado y usar el programa que se describe aquĂ­\n"
"para configurar su conexiĂłn.\n"
"\n"
"Si desea configurar la red mĂĄs tarde, luego de la instalaciĂłn, o si ha\n"
@@ -2809,7 +2958,7 @@ msgstr ""
"La primera vez que intenta la configuraciĂłn de X Usted puede no estar muy\n"
"satisfecho con el resultado (la pantalla es muy pequeĂąa, estĂĄ corrida hacia\n"
"la izquierda o hacia la derecha...). Es por esto que, incluso si X arranca\n"
-"correctamente, DrakX le preguntarĂĄ si la configuraciĂłn le conviene. TambiĂŠn\n"
+"correctamente, DrakX le preguntarĂĄ si la configuraciĂłn le conviene. Tambien\n"
"propondrĂĄ cambiarla mostrando una lista de modos vĂĄlidos que pudo\n"
"encontrar, y le pedirĂĄ que seleccione alguno.\n"
"\n"
@@ -2832,14 +2981,14 @@ msgstr ""
"Finalmente, se le preguntarĂĄ si desea ver la interfaz grĂĄfica en el\n"
"arranque. Note que esta pregunta se le formula incluso si eligiĂł no probar\n"
"la configuraciĂłn. Obviamente, querrĂĄ responder \"No\" si su mĂĄquina va a\n"
-"actuar como un servidor, o si no tuvo ĂŠxito con la configuraciĂłn de la\n"
+"actuar como un servidor, o si no tuvo exito con la configuraciĂłn de la\n"
"pantalla."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2851,9 +3000,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2869,9 +3017,8 @@ msgstr ""
"caso que su computadora no pueda arrancar desde el CD-ROM, Usted deberĂ­a\n"
"recurrir a este paso al menos en dos situaciones:\n"
"\n"
-" * cuando instala el cargador de arranque, DrakX sobreescribirĂĄ el sector "
-"de\n"
-"arranque (MBR) de su disco principal (a menos que estĂŠ utilizando otro\n"
+" * cuando instala el cargador de arranque, DrakX sobreescribirĂĄ el sector\n"
+"de arranque (MBR) de su disco principal (a menos que este utilizando otro\n"
"administrador de arranque) de forma tal que pueda iniciar o bien Windows o\n"
"bien GNU/Linux (asumiendo que tiene Windows en su sistema). Si necesita\n"
"volver a instalar Windows, el proceso de instalaciĂłn de Microsoft\n"
@@ -2926,21 +3073,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2956,9 +3102,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Ahora necesita elegir el lugar de su disco rĂ­gido donde se instalarĂĄ su\n"
"sistema operativo Mandrake Linux. Si su disco rĂ­gido estĂĄ vacĂ­o o si un\n"
@@ -2987,41 +3133,40 @@ msgstr ""
"Dependiendo de la configuraciĂłn de su disco rĂ­gido, estĂĄn disponibles\n"
"varias opciones:\n"
"\n"
-" * \"Usar espacio libre\": esta opciĂłn simplemente llevarĂĄ a un "
-"particionado\n"
-"automĂĄtico de su(s) disco(s) vacĂ­o(s). No se le pedirĂĄn mĂĄs detalles ni se\n"
-"le formularĂĄn mĂĄs preguntas.\n"
+" * \"Usar espacio libre\": esta opciĂłn simplemente llevarĂĄ a un\n"
+"particionado automĂĄtico de su(s) disco(s) vacĂ­o(s). No se le pedirĂĄn mĂĄs\n"
+"detalles ni se le formularĂĄn mĂĄs preguntas.\n"
"\n"
" * \"Usar particiĂłn existente\": el asistente ha detectado una o mĂĄs\n"
"particiones Linux existentes en su disco rĂ­gido. Si desea utilizarlas,\n"
"elija esta opciĂłn.\n"
"\n"
-" * \"Usar el espacio libre en la particiĂłn Windows\": si MicrosoftWindows\n"
+" * \"Usar el espacio libre en la particiĂłn Windows\": si Microsoft Windows\n"
"estĂĄ instalado en su disco rĂ­gido y ocupa todo el espacio disponible en el\n"
"mismo, Usted tiene que liberar espacio para los datos de Linux. Para\n"
-"hacerlo, puede borrar su particiĂłn y datos MicrosoftWindows (vea las\n"
+"hacerlo, puede borrar su particiĂłn y datos Microsoft Windows (vea las\n"
"soluciones \"Borrar el disco completo\" o \"Modo experto\") o cambie el\n"
"tamaĂąo de su particiĂłn Windows. El cambio de tamaĂąo se puede realizar sin\n"
-"la pĂŠrdida de datos, siempre y cuando Usted ha desfragmentado con\n"
-"anterioridad la particiĂłn Windows. TambiĂŠn se recomienda hacer una copia de\n"
+"la perdida de datos, siempre y cuando Usted ha desfragmentado con\n"
+"anterioridad la particiĂłn Windows. Tambien se recomienda hacer una copia de\n"
"respaldo de sus datos.. Se recomienda esta soluciĂłn si desea utilizar tanto\n"
-"Mandrake Linux como MicrosoftWindows en la misma computadora.\n"
+"Mandrake Linux como Microsoft Windows en la misma computadora.\n"
"\n"
-" Antes de elegir esta opciĂłn, por favor comprenda que despuĂŠs de este\n"
-"procedimiento, el tamaĂąo de su particiĂłn MicrosoftWindows serĂĄ mĂĄs pequeĂąo\n"
-"que ahora. TendrĂĄ menos espacio bajo MicrosoftWindows para almacenar sus\n"
+" Antes de elegir esta opciĂłn, por favor comprenda que despues de este\n"
+"procedimiento, el tamaĂąo de su particiĂłn Microsoft Windows serĂĄ mĂĄs pequeĂąo\n"
+"que ahora. TendrĂĄ menos espacio bajo Microsoft Windows para almacenar sus\n"
"datos o instalar software nuevo.\n"
"\n"
" * \"Borrar el disco entero\": si desea borrar todos los datos y todas las\n"
"particiones presentes en su disco rĂ­gido y reemplazarlas con su nuevo\n"
"sistema Mandrake Linux, elija esta opciĂłn. Tenga cuidado con esta soluciĂłn\n"
-"ya que no podrĂĄ revertir su elecciĂłn despuĂŠs de confirmarla.\n"
+"ya que no podrĂĄ revertir su elecciĂłn despues de confirmarla.\n"
"\n"
" !! Si elige esta opciĂłn, se perderĂĄn todos los datos en su disco. !!\n"
"\n"
-" * \"Quitar Windows\": simplemente esto borrarĂĄ todo en el disco y "
-"comenzarĂĄ\n"
-"particionando todo desde cero. Se perderĂĄn todos los datos en su disco.\n"
+" * \"Quitar Windows\": simplemente esto borrarĂĄ todo en el disco y\n"
+"comenzarĂĄ particionando todo desde cero. Se perderĂĄn todos los datos en su\n"
+"disco.\n"
"\n"
" !! Si elige esta opciĂłn, se perderĂĄn todos los datos en su disco. !!\n"
"\n"
@@ -3050,9 +3195,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3074,24 +3218,22 @@ msgstr ""
"El botĂłn \"Avanzadas\" (sĂłlo en modo Experto) le muestra dos botones mĂĄs\n"
"para:\n"
"\n"
-" * \"Generar un disquete de instalaciĂłn automĂĄtica\": para crear un "
-"disquete\n"
-"de instalaciĂłn que realizarĂĄ una instalaciĂłn completa sin la asistencia de\n"
-"un operador, similar a la instalaciĂłn que ha configurado reciĂŠn.\n"
+" * \"Generar un disquete de instalaciĂłn automĂĄtica\": para crear un\n"
+"disquete de instalaciĂłn que realizarĂĄ una instalaciĂłn completa sin la\n"
+"asistencia de un operador, similar a la instalaciĂłn que ha configurado\n"
+"recien.\n"
"\n"
-" Note que hay dos opciones diferentes disponibles despuĂŠs de hacer clic\n"
+" Note que hay dos opciones diferentes disponibles despues de hacer clic\n"
"sobre el botĂłn:\n"
"\n"
-" * \"Reproducir\". Esta es una instalaciĂłn parcialmente automatizada ya "
-"que\n"
-"la etapa de particionado (y sĂłlo esta etapa) permanece interactiva.\n"
+" * \"Reproducir\" . Esta es una instalaciĂłn parcialmente automatizada ya\n"
+"que la etapa de particionado (y sĂłlo esta etapa) permanece interactiva.\n"
"\n"
-" * \"Automatizada\". InstalaciĂłn completamente automatizada: el disco "
-"rĂ­gido\n"
-"se sobreescribe por completo, y se pierden todos los datos.\n"
+" * \"Automatizada\" . InstalaciĂłn completamente automatizada: el disco\n"
+"rĂ­gido se sobreescribe por completo, y se pierden todos los datos.\n"
"\n"
" Esta caracterĂ­stica es muy Ăştil cuando se instala una cantidad grande de\n"
-"mĂĄquinas similares. Vea la secciĂłn Auto install (en inglĂŠs) en nuestro\n"
+"mĂĄquinas similares. Vea la secciĂłn Auto install (en ingles) en nuestro\n"
"sitio web.\n"
"\n"
" * \"Guardar selecciĂłn de paquetes\"(*): guarda la selecciĂłn de paquetes\n"
@@ -3136,7 +3278,7 @@ msgstr ""
"\n"
"Puede desear volver a formatear algunas particiones ya existentes para\n"
"borrar cualquier dato que pudieran contener. Si asĂ­ lo desea, por favor\n"
-"seleccione tambiĂŠn dichas particiones.\n"
+"seleccione tambien dichas particiones.\n"
"\n"
"Por favor note que no es necesario volver a formatear todas las particiones\n"
"pre-existentes. Debe volver a formatear las particiones que contienen el\n"
@@ -3144,11 +3286,11 @@ msgstr ""
"volver a formatear particiones que contienen datos que desea preservar\n"
"(tĂ­picamente \"/home\").\n"
"\n"
-"Tenga sumo cuidado cuando selecciona las particiones. DespuĂŠs de formatear,\n"
+"Tenga sumo cuidado cuando selecciona las particiones. Despues de formatear,\n"
"se borrarĂĄn todos los datos en las particiones seleccionadas y no podrĂĄ\n"
"recuperarlos en absoluto.\n"
"\n"
-"Haga clic sobre \"Aceptar\" cuando estĂŠ listo para formatear las\n"
+"Haga clic sobre \"Aceptar\" cuando este listo para formatear las\n"
"particiones.\n"
"\n"
"Haga clic sobre \"Cancelar\" si desea elegir otra particiĂłn para la\n"
@@ -3215,9 +3357,9 @@ msgid ""
"terminate the installation. To continue with the installation, click on the\n"
"\"Accept\" button."
msgstr ""
-"Antes de continuar, deberĂ­a leer cuidadosamente los tĂŠrminos de la\n"
+"Antes de continuar, deberĂ­a leer cuidadosamente los terminos de la\n"
"licencia. Los mismos cubren a toda la distribuciĂłn Mandrake Linux, y si\n"
-"Usted no estĂĄ de acuerdo con todos los tĂŠrminos en la misma, haga clic\n"
+"Usted no estĂĄ de acuerdo con todos los terminos en la misma, haga clic\n"
"sobre el botĂłn \"Rechazar\". Esto terminarĂĄ la instalaciĂłn inmediatamente.\n"
"Para continuar con la instalaciĂłn, haga clic sobre el botĂłn \"Aceptar\"."
@@ -3268,38 +3410,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3324,7 +3460,7 @@ msgid ""
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
msgstr ""
-"Ahora necesita elegir quĂŠ particiones se utilizarĂĄn para la instalaciĂłn de\n"
+"Ahora necesita elegir que particiones se utilizarĂĄn para la instalaciĂłn de\n"
"su sistema Mandrake Linux. Si las particiones ya han sido definidas, ya sea\n"
"por una instalaciĂłn previa de GNU/Linux o con otra herramienta de\n"
"particionado, puede utilizarlas. En caso contrario se deben definir\n"
@@ -3350,27 +3486,23 @@ msgstr ""
"\n"
" * \"MĂĄs\": le da acceso a caracterĂ­sticas adicionales:\n"
"\n"
-" * \"Guardar tabla de particiones\": guarda la tabla de particiones en "
-"un\n"
-"disquete. Útil para recuperar la tabla de particiones más adelante en caso\n"
-"que sea necesario. Es altamente recomendable realizar este paso.\n"
+" * \"Guardar tabla de particiones\": guarda la tabla de particiones en\n"
+"un disquete. Útil para recuperar la tabla de particiones más adelante en\n"
+"caso que sea necesario. Es altamente recomendable realizar este paso.\n"
"\n"
-" * \"Recuperar tabla de particiones\": esta opciĂłn le permitirĂĄ "
-"restaurar\n"
-"una tabla de particiones guardada previamente en un disquete.\n"
+" * \"Recuperar tabla de particiones\": esta opciĂłn le permitirĂĄ\n"
+"restaurar una tabla de particiones guardada previamente en un disquete.\n"
"\n"
-" * \"Rescatar tabla de particiones\": si su tabla de particiones estĂĄ "
-"daĂąada\n"
-"puede intentar recuperarla utilizando esta opciĂłn. Por favor, tenga cuidado\n"
-"y recuerde que puede fallar.\n"
+" * \"Rescatar tabla de particiones\": si su tabla de particiones estĂĄ\n"
+"daĂąada puede intentar recuperarla utilizando esta opciĂłn. Por favor, tenga\n"
+"cuidado y recuerde que puede fallar.\n"
"\n"
" * \"Volver a cargar\": descarta todos los cambios y carga su tabla de\n"
"particiones inicial.\n"
"\n"
-" * \"Montaje automĂĄtico de soportes removibles\": si desmarca esta "
-"opciĂłn\n"
-"los usuarios estarĂĄn forzados a montar y desmontar manualmente los soportes\n"
-"removibles como los disquetes y los CD-ROMs.\n"
+" * \"Montaje automĂĄtico de soportes removibles\": si desmarca esta\n"
+"opciĂłn los usuarios estarĂĄn forzados a montar y desmontar manualmente los\n"
+"soportes removibles como los disquetes y los CD-ROMs.\n"
"\n"
" * \"Asistente\": use esta opciĂłn si desea utilizar un asistente para\n"
"particionar su disco rĂ­gido. Se recomienda esto si no tiene un buen\n"
@@ -3385,7 +3517,7 @@ msgstr ""
"guardarĂĄ sus cambios en el disco.\n"
"\n"
"Nota: todas las opciones son accesibles por medio del teclado. Navegue a\n"
-"travĂŠs de las particiones usando [Tab] y las flechas [Arriba/Abajo].\n"
+"traves de las particiones usando [Tab] y las flechas [Arriba/Abajo].\n"
"\n"
"Cuando se selecciona una particiĂłn, puede utilizar:\n"
"\n"
@@ -3440,7 +3572,7 @@ msgid ""
"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
"disk or partition is called \"C:\")."
msgstr ""
-"Se ha detectado mĂĄs de una particiĂłn MicrosoftWindows en su disco rĂ­gido.\n"
+"Se ha detectado mĂĄs de una particiĂłn Microsoft Windows en su disco rĂ­gido.\n"
"Por favor, elija aquella a la cual desea cambiarle el tamaĂąo para poder\n"
"instalar su sistema operativo Mandrake Linux nuevo.\n"
"\n"
@@ -3456,11 +3588,11 @@ msgstr ""
"\"NĂşmero de disco rĂ­gido\" siempre es una letra que sigue a \"hd\" o a\n"
"\"sd\". Para los discos IDE:\n"
"\n"
-" * \"a\" significa \"disco rĂ­gido maestro en la controladora IDE primaria"
-"\",\n"
+" * \"a\" significa \"disco rĂ­gido maestro en la controladora IDE\n"
+"primaria\",\n"
"\n"
-" * \"b\" significa \"disco rĂ­gido esclavo en la controladora IDE primaria"
-"\",\n"
+" * \"b\" significa \"disco rĂ­gido esclavo en la controladora IDE\n"
+"primaria\",\n"
"\n"
" * \"c\" significa \"disco rĂ­gido maestro en la controladora IDE\n"
"secundaria\",\n"
@@ -3493,11 +3625,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3521,7 +3653,7 @@ msgid ""
"choose this unless you know what you are doing."
msgstr ""
"DrakX ahora necesita saber si desea realizar una instalaciĂłn por defecto\n"
-"(\"Recomendada\") o si desea tener un control mayor (\"Experto\"). TambiĂŠn\n"
+"(\"Recomendada\") o si desea tener un control mayor (\"Experto\"). Tambien\n"
"puede elegir realizar una instalaciĂłn nueva o una actualizaciĂłn de un\n"
"sistema Mandrake Linux existente:\n"
"\n"
@@ -3532,12 +3664,12 @@ msgstr ""
" * \"ActualizaciĂłn\": esta clase de instalaciĂłn le permite simplemente\n"
"actualizar los paquetes que en este momento estĂĄn instalados en su sistema\n"
"Mandrake Linux. La misma mantiene las particiones corrientes de sus discos\n"
-"asĂ­ como tambiĂŠn las configuraciones de usuarios. Todos los otros pasos de\n"
+"asĂ­ como tambien las configuraciones de usuarios. Todos los otros pasos de\n"
"instalaciĂłn permanecen disponibles con respecto a la instalaciĂłn simple;\n"
"\n"
" * \"SĂłlo actualizar paquetes\": esta clase completamente nueva le permite\n"
"actualizar un sistema Mandrake Linux existente a la vez que mantiene todas\n"
-"las configuraciones del sistema sin cambios. TambiĂŠn es posible aĂąadir\n"
+"las configuraciones del sistema sin cambios. Tambien es posible aĂąadir\n"
"paquetes nuevos a la instalaciĂłn corriente.\n"
"\n"
"Las actualizaciones deberĂ­an funcionar sin problemas para los sistemas\n"
@@ -3558,7 +3690,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3576,7 +3708,7 @@ msgstr ""
"del idioma que eligiĂł) y Usted ni siquiera verĂĄ este paso. Sin embargo,\n"
"podrĂ­a no tener un teclado que se corresponde exactamente con su idioma:\n"
"por ejemplo, si Usted es una persona hispano-parlante que estĂĄ en Argentina\n"
-"o MĂŠjico, su teclado serĂĄ un teclado Latinoamericano, pero si estĂĄ en\n"
+"o Mejico, su teclado serĂĄ un teclado Latinoamericano, pero si estĂĄ en\n"
"EspaĂąa serĂĄ uno EspaĂąol. En ambos casos, Usted tendrĂĄ que volver a este\n"
"paso de la instalaciĂłn y elegir un teclado apropiado de la lista.\n"
"\n"
@@ -3585,7 +3717,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3608,7 +3740,7 @@ msgstr ""
"aplicaciones. Por ejemplo, si albergarĂĄ a gente de Francia en su mĂĄquina,\n"
"seleccione EspaĂąol como idioma principal en la vista de ĂĄrbol y en la\n"
"secciĂłn avanzada haga clic sobre la estrella gris que corresponde a\n"
-"\"FrancĂŠs|Francia\".\n"
+"\"Frances|Francia\".\n"
"\n"
"Note que se pueden instalar mĂşltiples idiomas. Una vez que ha seleccionado\n"
"cualquier idioma adicional haga clic sobre el botĂłn \"Aceptar\" para\n"
@@ -3616,7 +3748,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3646,7 +3778,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3656,23 +3788,23 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3698,7 +3830,7 @@ msgstr ""
"administrador del sistema y es el Ăşnico autorizado a hacer actualizaciones,\n"
"agregar usuarios, cambiar la configuraciĂłn general del sistema, etc.\n"
"Resumiendo, ÂĄ\"root\" puede hacer de todo!. Es por esto que deberĂĄ elegir\n"
-"una contraseĂąa que sea difĂ­cil de adivinar DrakX le dirĂĄ si la que eligiĂł\n"
+"una contraseĂąa que sea difĂ­cil de adivinar - DrakX le dirĂĄ si la que eligiĂł\n"
"es demasiado fĂĄcil. Como puede ver, puede optar por no ingresar una\n"
"contraseĂąa, pero le recomendamos encarecidamente que ingrese una, aunque\n"
"sea sĂłlo por una razĂłn: no piense que debido a que Usted arrancĂł GNU/Linux,\n"
@@ -3708,9 +3840,9 @@ msgstr ""
"accediendo a las mismas sin el cuidado suficiente. Es por esto que es\n"
"importante que sea difĂ­cil convertirse en \"root\".\n"
"\n"
-"La contraseĂąa deberĂ­a ser una mezcla de caracteres alfanumĂŠricos y tener al\n"
+"La contraseĂąa deberĂ­a ser una mezcla de caracteres alfanumericos y tener al\n"
"menos una longitud de 8 caracteres. Nunca escriba la contraseĂąa de \"root\"\n"
-"eso hace que sea muy fĂĄcil comprometer a un sistema.\n"
+"- eso hace que sea muy fĂĄcil comprometer a un sistema.\n"
"\n"
"Sin embargo, por favor no haga la contraseĂąa muy larga o complicada debido\n"
"a que Usted debe poder recordarla sin realizar mucho esfuerzo.\n"
@@ -3733,7 +3865,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3755,7 +3887,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3763,7 +3895,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3791,20 +3923,19 @@ msgstr ""
"sector de arranque de grub/LILO de forma tal que Usted pueda arrancar\n"
"GNU/Linux u otro sistema operativo;\n"
"\n"
-" * si encuentra un sector de arranque de grub o LILO, lo reemplazarĂĄ con "
-"uno\n"
-"nuevo;\n"
+" * si encuentra un sector de arranque de grub o LILO, lo reemplazarĂĄ con\n"
+"uno nuevo;\n"
"\n"
"En caso de duda, DrakX mostrarĂĄ un diĂĄlogo con varias opciones.\n"
"\n"
" * \"Cargador de arranque a usar\": tiene tres opciones:\n"
"\n"
-" * \"LILO con menĂş grĂĄfico\": si prefiere a LILO con su interfaz "
+" * \"LILO con menĂş grĂĄfico\": si prefiere a LILO con su interfaz\n"
"grĂĄfica.\n"
"\n"
" * \"GRUB\": si prefiere a grub (menĂş de texto).\n"
"\n"
-" * \"LILO con menĂş de texto\": si prefiere a LILO con su interfaz de "
+" * \"LILO con menĂş de texto\": si prefiere a LILO con su interfaz de\n"
"texto.\n"
"\n"
" * \"Dispositivo de arranque\": en la mayorĂ­a de los casos, no cambiarĂĄ lo\n"
@@ -3814,12 +3945,12 @@ msgstr ""
"\n"
" * \"Demora antes de arrancar la imagen predeterminada\": cuando vuelve a\n"
"arrancar la computadora, esta es la demora que se garantiza al usuario para\n"
-"elegir en el menĂş del cargador de arranque, una entrada distinta a la\n"
+"elegir - en el menĂş del cargador de arranque, una entrada distinta a la\n"
"predeterminada.\n"
"\n"
"!! Tenga presente que si no elige instalar un cargador de arranque\n"
"(seleccionando \"Cancelar\"), ÂĄDebe asegurarse que tiene una forma de\n"
-"arrancar a su sistema Mandrake Linux! TambiĂŠn debe asegurarse que sabe lo\n"
+"arrancar a su sistema Mandrake Linux! Tambien debe asegurarse que sabe lo\n"
"que hace antes de cambiar cualquier opciĂłn. !!\n"
"\n"
"Haciendo clic sobre el botĂłn \"Avanzadas\" en este diĂĄlogo se le ofrecerĂĄn\n"
@@ -3837,7 +3968,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3855,14 +3986,14 @@ msgstr ""
"instalan correctamente. Si este no es el caso, puede aĂąadir una entrada a\n"
"mano en esta pantalla. Tenga cuidado de elegir los parĂĄmetros correctos.\n"
"\n"
-"TambiĂŠn puede no desear dar acceso a estos otros sistemas operativos a\n"
+"Tambien puede no desear dar acceso a estos otros sistemas operativos a\n"
"cualquiera. En ese caso, puede borrar las entradas correspondientes. Pero\n"
"entonces, ÂĄnecesitarĂĄ un disquete de arranque para poder arrancar esos\n"
"otros sistemas operativos!"
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3878,29 +4009,28 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3912,35 +4042,35 @@ msgstr ""
"Otros sistemas operativos pueden ofrecerle uno, pero Mandrake Linux le\n"
"ofrece tres.\n"
"\n"
-" * \"pdq\"\"print, don't queue\" (imprimir sin poner en cola), es la\n"
+" * \"pdq\" - \"print, don't queue\" (imprimir sin poner en cola), es la\n"
"elecciĂłn si Usted tiene una conexiĂłn directa a su impresora y desea evitar\n"
"el pĂĄnico de los papeles trabados, y no tiene impresora en red alguna.\n"
"ManejarĂĄ sĂłlo casos de red muy simples y es algo lento para las redes.\n"
-"Elija \"pdq\" si esta es su luna de miel con GNU/Linux. DespuĂŠs de la\n"
+"Elija \"pdq\" si esta es su luna de miel con GNU/Linux. Despues de la\n"
"instalaciĂłn puede cambiar sus elecciones ejecutando PrinterDrake desde el\n"
"Centro de Control Mandrake y eligiendo el modo experto.\n"
"\n"
-" * \"CUPS\"\"Common Unix Printing System\" (Sistema de ImpresiĂłn ComĂşn de\n"
-"Unix) es excelente imprimiendo en su impresora local y tambiĂŠn en la otra\n"
-"punta del planeta. Es simple y puede actuar como servidor o cliente para el\n"
-"sistema de impresiĂłn antiguo \"lpd\", por lo que es compatible con los\n"
-"sistemas anteriores. Puede hacer muchas cosas, pero la configuraciĂłn bĂĄsica\n"
-"es tan simple como la de \"pdq\". Si necesita que emule a un servidor\n"
-"\"lpd\", debe encender el demonio \"cups-lpd\". Tiene interfaces grĂĄficas\n"
-"para imprimir o elegir las opciones de la impresora.\n"
-"\n"
-" * \"lprNG\"\"line printer daemon New Generation\" (servidor de impresora "
-"de\n"
-"lĂ­neas Nueva GeneraciĂłn). Este sistema puede hacer aproximadamente las\n"
-"mismas cosas que los otros, pero imprimirĂĄ en impresoras montadas sobre una\n"
-"red Novell, debido a que soporta el protocolo IPX, y puede imprimir\n"
-"directamente a comandos del shell. Si necesita Novell o imprimir a comandos\n"
-"de sin utilizar tuberĂ­as, utilice lprNG. De no ser asĂ­, se prefiere a CUPS\n"
-"ya que es mĂĄs simple y es mejor al trabajar sobre redes."
+" * \"CUPS\" - \"Common Unix Printing System\" (Sistema de ImpresiĂłn ComĂşn\n"
+"de Unix) es excelente imprimiendo en su impresora local y tambien en la\n"
+"otra punta del planeta. Es simple y puede actuar como servidor o cliente\n"
+"para el sistema de impresiĂłn antiguo \"lpd\", por lo que es compatible con\n"
+"los sistemas anteriores. Puede hacer muchas cosas, pero la configuraciĂłn\n"
+"bĂĄsica es tan simple como la de \"pdq\". Si necesita que emule a un\n"
+"servidor \"lpd\", debe encender el demonio \"cups-lpd\". Tiene interfaces\n"
+"grĂĄficas para imprimir o elegir las opciones de la impresora.\n"
+"\n"
+" * \"lprNG\" - \"line printer daemon New Generation\" (servidor de\n"
+"impresora de lĂ­neas Nueva GeneraciĂłn). Este sistema puede hacer\n"
+"aproximadamente las mismas cosas que los otros, pero imprimirĂĄ en\n"
+"impresoras montadas sobre una red Novell, debido a que soporta el protocolo\n"
+"IPX, y puede imprimir directamente a comandos del shell. Si necesita Novell\n"
+"o imprimir a comandos de sin utilizar tuberĂ­as, utilice lprNG. De no ser\n"
+"asĂ­, se prefiere a CUPS ya que es mĂĄs simple y es mejor al trabajar sobre\n"
+"redes."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3965,11 +4095,11 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"DrakX ahora detecta cualquier dispositivo IDE presente en su computadora.\n"
-"TambiĂŠn buscarĂĄ una o mĂĄs tarjetas SCSI PCI en su sistema. Si se encuentra\n"
+"Tambien buscarĂĄ una o mĂĄs tarjetas SCSI PCI en su sistema. Si se encuentra\n"
"una tarjeta SCSI DrakX instalarĂĄ el controlador apropiado automĂĄticamente.\n"
"\n"
"Debido a que la detecciĂłn de hardware a veces no detectarĂĄ alguna pieza de\n"
@@ -3992,12 +4122,12 @@ msgstr ""
"\"GuĂ­a del Usuario\" (capĂ­tulo 3, secciĂłn \"Recopilando informaciĂłn acerca\n"
"de su hardware\") en busca de consejos para recopilar los parĂĄmetros\n"
"necesarios a partir de la documentaciĂłn del hardware, desde el sitio web\n"
-"del fabricante (si tiene acceso a la Internet) o desde MicrosoftWindows (si\n"
-"utilizaba este hardware con Windows en su sistema)."
+"del fabricante (si tiene acceso a la Internet) o desde Microsoft Windows\n"
+"(si utilizaba este hardware con Windows en su sistema)."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -4007,9 +4137,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -4021,7 +4150,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" 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"
@@ -4069,13 +4198,13 @@ msgstr ""
"botones 2do y 3ro del ratĂłn que por lo general no tienen los ratones\n"
"estĂĄndar de Apple. Algunos ejemplos son los siguientes:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" 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: esta opciĂłn se puede usar o bien para cargar los mĂłdulos\n"
-"iniciales, antes que estĂŠ disponible el dispositivo de arranque, o bien\n"
+"iniciales, antes que este disponible el dispositivo de arranque, o bien\n"
"cargar una imagen de ramdisk para una situaciĂłn de arranque de emergencia.\n"
"\n"
" * TamaĂąo de Initrd: generalmente el tamaĂąo por defecto del ramdisk es 4096\n"
@@ -4092,12 +4221,12 @@ msgstr ""
"\n"
" * Predeterminada: selecciona a esta entrada como la opciĂłn Linux por\n"
"defecto, que se puede elegir simplemente presionando [Intro] en el prompt\n"
-"de Yaboot. Esta entrada tambiĂŠn se marcarĂĄ con un \"*\", si presiona [Tab]\n"
+"de Yaboot. Esta entrada tambien se marcarĂĄ con un \"*\", si presiona [Tab]\n"
"para ver las selecciones del arranque."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -4124,9 +4253,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -4151,26 +4279,25 @@ msgstr ""
"entre CD, arranque OF, MacOS o Linux.\n"
"\n"
" * Demora de arranque del nĂşcleo: esta demora es similar a la demora de\n"
-"arranque de LILO. Luego de seleccionar Linux, tendrĂĄ esta demora en dĂŠcimas\n"
+"arranque de LILO. Luego de seleccionar Linux, tendrĂĄ esta demora en decimas\n"
"de segundo antes que se seleccione su descripciĂłn del nĂşcleo\n"
"predeterminada.\n"
"\n"
-" * ÂżHabilitar arranque desde el CD?: marcando esta opciĂłn Usted puede "
-"elegir\n"
-"\"C\" para el CD en el primer prompt de arranque.\n"
+" * ÂżHabilitar arranque desde el CD?: marcando esta opciĂłn Usted puede\n"
+"elegir \"C\" para el CD en el primer prompt de arranque.\n"
"\n"
" * ÂżHabilitar arranque OF?: marcando esta opciĂłn Usted puede elegir \"N\"\n"
"para Open Firmware en el primer prompt de arranque.\n"
"\n"
-" * SO predeterminado: puede seleccionar quĂŠ sistema operativo arrancarĂĄ por\n"
+" * SO predeterminado: puede seleccionar que sistema operativo arrancarĂĄ por\n"
"defecto cuando expira la demora de Open Firmware."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -4178,12 +4305,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -4199,7 +4325,7 @@ msgid ""
"associated with it."
msgstr ""
"AquĂ­ se le presentan varios parĂĄmetros que conciernen a su mĂĄquina.\n"
-"Dependiendo de su hardware instalado, puede o no, ver las entradas\n"
+"Dependiendo de su hardware instalado, puede - o no, ver las entradas\n"
"siguientes:\n"
"\n"
" * \"RatĂłn\": verifique la configuraciĂłn del ratĂłn y haga clic sobre el\n"
@@ -4218,10 +4344,9 @@ msgstr ""
" * \"Impresora\": al hacer clic sobre el botĂłn \"Sin impresora\" se abrirĂĄ\n"
"el asistente de configuraciĂłn de la impresora.\n"
"\n"
-" * \"Tarjeta de sonido\": si se detecta una tarjeta de sonido en su "
-"sistema,\n"
-"la misma se muestra aquĂ­. Durante la instalaciĂłn no es posible modificaciĂłn\n"
-"alguna.\n"
+" * \"Tarjeta de sonido\": si se detecta una tarjeta de sonido en su\n"
+"sistema, la misma se muestra aquĂ­. Durante la instalaciĂłn no es posible\n"
+"modificaciĂłn alguna.\n"
"\n"
" * \"Tarjeta de TV\": si se detecta una tarjeta de TV en su sistema, la\n"
"misma se muestra aquĂ­. Durante la instalaciĂłn no es posible modificaciĂłn\n"
@@ -4233,7 +4358,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4245,7 +4370,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4263,7 +4388,7 @@ msgstr ""
"Haga clic sobre \"Cancelar\" para cancelar esta operaciĂłn sin perder los\n"
"datos y las particiones presentes en esta unidad de disco."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4275,12 +4400,12 @@ msgstr ""
"disquete de arranque no contiene un nĂşcleo de misma versiĂłn que el soporte "
"de instalaciĂłn (haga un nuevo disquete de arranque por favor)"
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr "TĂş tambiĂŠn debes formatear %s"
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4305,20 +4430,20 @@ msgstr ""
"\n"
"ÂżRealmente desea instalar estos servidores?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "No se puede usar difusiĂłn sin un dominio NIS"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Inserte un disquete formateado con FAT en la disquetera %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Este disquete no estĂĄ formateado con FAT"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4326,7 +4451,7 @@ msgstr ""
"Para utilizar esta selecciĂłn de paquetes salvada, arranque la instalaciĂłn "
"con \"linux defcfg=floppy\""
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Error al leer el archivo %s"
@@ -4357,7 +4482,7 @@ msgstr "Debe tener una particiĂłn de intercambio"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -4365,59 +4490,59 @@ msgstr ""
"\n"
"ÂżDesea continuar de todas formas?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Debe tener una particiĂłn FAT montada en /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Usar el espacio libre"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "No hay espacio libre suficiente para asignar las particiones nuevas"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Usar la particiĂłn existente"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "No hay ninguna particiĂłn existente para usar"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Usar la particiĂłn de Windows para loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "ÂżQuĂŠ particiĂłn desea usar para Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Elija los tamaĂąos"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "TamaĂąo de la particiĂłn raĂ­z en MB: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "TamaĂąo de la particiĂłn de intercambio en MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Usar el espacio libre de la particiĂłn Windows"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "ÂżA quĂŠ particiĂłn desea cambiarle el tamaĂąo?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Calculando los lĂ­mites del sistema de archivos Windows"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4426,13 +4551,16 @@ msgstr ""
"El redimensionador de tamaĂąo de la FAT no puede gestionar su particiĂłn, \n"
"ocurriĂł el error siguiente: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"Su particiĂłn Windows estĂĄ muy fragmentada, por favor primero ejecute \"defrag"
"\""
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -4454,54 +4582,54 @@ msgstr ""
" seguridad de sus datos.\n"
"Cuando estĂŠ seguro, pulse sobre Aceptar."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "ÂżQuĂŠ tamaĂąo desea conservar para windows en la"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "particiĂłn %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FallĂł el redimensionado de la FAT: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"No hay particiones FAT para redimensionar o para usar como loopback (o no "
"queda espacio suficiente)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Borrar el disco entero"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Quitar Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Tiene mĂĄs de un disco rĂ­gido, Âżsobre cuĂĄl desea instalar Linux?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Se perderĂĄn TODAS las particiones y sus datos en la unidad %s"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Particionamiento de disco personalizado"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Usar fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4510,11 +4638,11 @@ msgstr ""
"Ahora puede particionar %s.\n"
"Cuando haya terminado, no se olvide de guardar usando 'w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "No queda espacio libre suficiente en la particiĂłn de Windows"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "No se puede encontrar nada de espacio para instalar"
@@ -4523,16 +4651,16 @@ msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
"El asistente de particionamiento de DrakX encontrĂł las siguientes soluciones:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "FallĂł el particionamiento: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Levantando la red"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Bajando la red"
@@ -4544,12 +4672,12 @@ msgstr ""
"OcurriĂł un error y no se puede gestionar de forma adecuada.\n"
"ContinĂşe bajo su propio riesgo."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Punto de montaje %s duplicado"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4561,12 +4689,12 @@ msgstr ""
"Compruebe el CD de instalaciĂłn en un sistema ya existente con el comando:\n"
" rpm -qpl Mandrake/RPMS/*.rpm\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Bienvenido a %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Ninguna disquetera disponible"
@@ -4576,9 +4704,9 @@ msgstr "Ninguna disquetera disponible"
msgid "Entering step `%s'\n"
msgstr "Entrando en la etapa '%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4587,200 +4715,154 @@ msgstr ""
"Mandrake Linux. Si eso ocurre, puede intentar una instalaciĂłn tipo texto.\n"
"Para ello, presione 'F1' cuando arranque desde el CDROM, e introduzca 'text'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Tipo de instalaciĂłn"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr "Por favor, elija uno de los siguentes tipos de instalaciĂłn:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr ""
-"El tamaĂąo total para los grupos que seleccionĂł es de aproximadamente %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Si desea instalar un tamaĂąo total inferior,\n"
-"elija el porcentaje de paquetes que desea instalar.\n"
-"\n"
-"Un porcentaje bajo instalarĂĄ sĂłlo los paquetes mĂĄs importantes;\n"
-"un porcentaje de 100%% instalarĂĄ todos los paquetes seleccionados."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Tiene espacio en disco para sĂłlo %d%% de esos paquetes.\n"
-"\n"
-"Si desea instalar menos de esto,\n"
-"elija el porcentaje de paquetes que desea instalar.\n"
-"Un porcentaje bajo instalarĂĄ sĂłlo los paquetes mĂĄs importantes;\n"
-"un porcentaje de %d%% instalarĂĄ todos los que sea posible."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "PodrĂĄ elegirlos mĂĄs detalladamente en la etapa siguiente"
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Porcentaje de paquetes a instalar"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "SelecciĂłn de grupos de paquetes"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "SelecciĂłn de paquetes individuales"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "TamaĂąo total: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Paquete incorrecto"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Nombre: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "VersiĂłn: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "TamaĂąo: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Importancia: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"No puede seleccionar este paquete porque no hay espacio suficiente para "
"instalarlo"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Se van a instalar los siguientes paquetes"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Se van a quitar los siguientes paquetes"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "No puede seleccionar/deseleccionar este paquete"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Este es un paquete obligatorio, no puede desmarcarlo"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "No puede desmarcar este paquete. Ya estĂĄ instalado"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Se debe actualizar este paquete\n"
"ÂżEstĂĄ seguro que quiere desmarcarlo?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "No puede desmarcar este paquete. Debe ser actualizado"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Mostrar los paquetes seleccionados automĂĄticamente"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Instalar"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Cargar/Guardar en un disquete"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "Actualizando la selecciĂłn de paquetes"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "InstalaciĂłn mĂ­nima"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Elija los paquetes que desea instalar"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Instalando"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Estimando"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Tiempo restante "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Preparando la instalaciĂłn. Espere, por favor"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d paquetes"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Instalando el paquete %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Aceptar"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Rechazar"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4796,17 +4878,17 @@ msgstr ""
"Si no lo posee, pulse Cancelar para cancelar la instalaciĂłn desde este CD-"
"ROM."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "ÂżSeguir adelante?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Hubo un error al ordenar los paquetes:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Hubo un error al instalar los paquetes:"
@@ -4885,11 +4967,11 @@ msgstr "OcurriĂł un error"
msgid "Do you really want to leave the installation?"
msgstr "ÂżRealmente desea salir de la instalaciĂłn?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Acuerdo de licencia"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4904,7 +4986,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -5123,109 +5205,113 @@ msgstr ""
"competentes de ParĂ­s, Francia. Para cualquier pregunta relacionada con\n"
"este documento, por favor, pĂłngase en contacto con MandrakeSoft S.A.\n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Teclado"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "Seleccione la distribuciĂłn de su teclado."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "AquĂ­ tiene la lista completa de teclados disponibles"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "ÂżQuĂŠ tipo de instalaciĂłn desea?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "InstalaciĂłn/ActualizaciĂłn"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "ÂżEs una instalaciĂłn o una actualizaciĂłn?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Recomendada"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Experto"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "ActualizaciĂłn"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "SĂłlo actualizar los paquetes."
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Por favor, seleccione el tipo de su ratĂłn."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Puerto del ratĂłn"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Seleccione el puerto serie al que estĂĄ conectado el ratĂłn, por favor."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "EmulaciĂłn de los botones"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "EmulaciĂłn del botĂłn 2"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "EmulaciĂłn del botĂłn 3"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Configurando tarjetas PCMCIA..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Configurando dispositivos IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "no hay particiones disponibles"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Rastreando las particiones para encontrar los puntos de montaje"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Seleccione los puntos de montaje"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -5239,7 +5325,7 @@ msgstr ""
"\n"
"ÂżEstĂĄ de acuerdo en perder todas las particiones?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -5247,7 +5333,7 @@ msgstr ""
"DiskDrake no pudo leer correctamente la tabla de particiones.\n"
"ÂĄContinĂşe bajo su propio riesgo!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -5255,78 +5341,81 @@ msgstr ""
"ÂĄNo hay 1MB de espacio para bootstrap! La instalaciĂłn continuarĂĄ, pero para "
"arrancar su sistema, necesitarĂĄ crear la particiĂłn bootstrap en DiskDrake"
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr "No se encontrĂł particiĂłn raĂ­z para efectuar la actualizaciĂłn"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "ParticiĂłn raĂ­z"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "ÂżCual es la particiĂłn raĂ­z (/) de su sistema?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Necesita reiniciar el equipo para que se efectĂşe la modificaciĂłn de la tabla "
"de particiones"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Elija las particiones que desea formatear"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "ÂżVerificar el disco en busca de bloques malos?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Formateando las particiones"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Creando y formateando el archivo %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Espacio de intercambio insuficiente para completar la instalaciĂłn, aĂąada un "
"poco mĂĄs"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Buscando los paquetes disponibles"
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "Buscando los paquetes disponibles"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Encontrando los paquetes a actualizar"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "No puede desmarcar este paquete. Ya estĂĄ instalado"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Su sistema no tiene espacio suficiente para instalar o actualizar (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Completa (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "MĂ­nima (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Recomendada (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5336,35 +5425,35 @@ msgstr ""
"El formato es el mismo que los disquetes generados para la instalaciĂłn "
"automĂĄtica."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Cargar desde un disquete"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Cargando desde un disquete"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "SelecciĂłn de paquetes"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "Introduzca un disquete que contenga la selecciĂłn de paquetes"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Guardar en un disquete"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "El tamaĂąo seleccionado es mayor que el disponible"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr "Tipo de instalaciĂłn."
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5372,19 +5461,19 @@ msgstr ""
"No ha seleccionado ningĂşn grupo de paquetes\n"
"Elija por favor la mĂ­nima instalaciĂłn que quiera."
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "Con X"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr "Con documentaciĂłn bĂĄsica (ÂĄrecomendado!)"
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr "InstalaciĂłn mĂ­nima \"en serio\" (especialmente sin urpmi)"
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5394,16 +5483,16 @@ msgstr ""
"Si no tiene ningĂşn CD, haga clic sobre \"Cancelar\".\n"
"Si sĂłlo le faltan algunos CDs, desmĂĄrquelos y haga clic sobre \"Aceptar\"."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM etiquetado como \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Preparando la instalaciĂłn"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -5412,23 +5501,23 @@ msgstr ""
"Instalando el paquete %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "ConfiguraciĂłn posterior a la instalaciĂłn"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Por favor, inserte el disquete de arranque en la unidad %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Por favor, inserte el disquete de mĂłdulos actualizados en la unidad %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5501,13 +5590,15 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
+#, fuzzy
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
@@ -5519,155 +5610,185 @@ msgstr ""
"\n"
"ÂżDesea instalar las actualizaciones?"
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Contactando con el sitio web de Mandrake Linux para obtener la lista de las "
"rĂŠplicas disponibles"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Elija un sitio de rĂŠplica del que bajar los paquetes"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
"Contactando con el sitio de rĂŠplica para obtener la lista de los paquetes "
"disponibles"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "ÂżCuĂĄl es su huso horario?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Reloj interno puesto a GMT"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "SincronizaciĂłn automĂĄtica de hora (usando NTP)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "Servidor NTP"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Servidor CUPS remoto"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Sin impresora"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
msgstr "ÂżTiene una tarjeta de sonido ISA?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Use \"sndconfig\" luego de la instalaciĂłn para configurar su tarjeta de "
"sonido"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"No se detectĂł tarjeta de sonido. Pruebe \"harddrake\" luego de la instalaciĂłn"
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Resumen"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "RatĂłn"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Huso horario"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Impresora"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "Tarjeta RDSI"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Tarjeta de sonido"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "Tarjeta de TV"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Windows (FAT32)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Archivos locales"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "ContraseĂąa de root"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Sin contraseĂąa"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Esta contraseĂąa es demasiado simple\n"
"(tiene que tener por lo menos una longitud de %d caracteres)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "AutentificaciĂłn"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "AutentificaciĂłn LDAP"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "Servidor LDAP"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "AutentificaciĂłn NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "Dominio NIS"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "Servidor NIS"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "AutentificaciĂłn LDAP"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Obtener tipografĂ­as de Windows"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "Servidor NTP"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -5698,19 +5819,19 @@ msgstr ""
"Si desea crear un disquete de arranque para su sistema, inserte un disquete\n"
"en la primer disquetera y presione \"Aceptar\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Primera disquetera"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Segunda disquetera"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Omitir"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5737,7 +5858,7 @@ msgstr ""
"grave del sistema. ÂżDesea crear un disquete de arranque para su sistema?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5752,28 +5873,28 @@ msgstr ""
"fallar\n"
"porque XFS necesita un controlador muy grande)."
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Disculpe, pero no hay ninguna disquetera disponible"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Elija la disquetera que desea usar para crear el disco de arranque"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
msgstr "Inserte un disquete en %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Creando el disquete de arranque"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Preparando el cargador de arranque"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5785,11 +5906,11 @@ msgstr ""
"La instalaciĂłn continuarĂĄ, pero necesitarĂĄ\n"
"utilizar BootX para arrancar su mĂĄquina."
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "ÂżDesea usar aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5798,16 +5919,16 @@ msgstr ""
"Âżdesea forzar la instalaciĂłn incluso si ello implicara la destrucciĂłn de la "
"primera particiĂłn?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Instalando cargador de arranque"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"FallĂł la instalaciĂłn del cargador de arranque. OcurriĂł el siguiente error:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5825,18 +5946,17 @@ msgstr ""
" Luego escriba: shut-down\n"
"La prĂłxima vez que arranque deberĂ­a ver el prompt del cargador de arranque."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Inserte un disquete en blanco en la unidad %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Creando el disquete de instalaciĂłn automĂĄtica"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5846,7 +5966,8 @@ msgstr ""
"\n"
"ÂżRealmente desea salir ahora?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5857,7 +5978,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5869,7 +5990,7 @@ msgstr ""
"Para obtener informaciĂłn sobre correcciones disponibles para esta versiĂłn\n"
"de Mandrake Linux, consulte el archivo de erratas disponible en\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Hay informaciĂłn disponible sobre cĂłmo configurar su sistema en el capĂ­tulo "
@@ -5877,11 +5998,16 @@ msgstr ""
"configuraciĂłn tras la instalaciĂłn de la guĂ­a de usuario oficial de Mandrake "
"Linux."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+#, fuzzy
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakesoft.com/sales/contact"
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Generar un disquete de instalaciĂłn automĂĄtica"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5895,15 +6021,15 @@ msgstr ""
"\n"
"Puede preferir reproducir la instalaciĂłn.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automatizada"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Reproducir"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Guardar la selecciĂłn de paquetes"
@@ -5931,44 +6057,24 @@ msgstr "falta \"consolehelper\""
msgid "Choose a file"
msgstr "Elija un archivo"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Avanzada"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr "BĂĄsico"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Espere, por favor"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Expandir el ĂĄrbol"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Contraer el ĂĄrbol"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Cambiar entre vista plana y ordenada por grupos"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "ElecciĂłn incorrecta, intĂŠntelo de nuevo\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "ÂżSu elecciĂłn? (por defecto %s)"
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -5977,31 +6083,35 @@ msgstr ""
"Entradas que tendrĂĄ que rellenar:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "ÂżSu elecciĂłn? (0/1, por defecto '%s') "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "BotĂłn `%s': %s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+msgid "Do you want to click on this button?"
msgstr "ÂżDesea pulsar este botĂłn?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "ÂżSu elecciĂłn? (por defecto %s'%s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Hay muchas cosas para seleccionar (%s).\n"
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -6011,7 +6121,7 @@ msgstr ""
"editar, o pulse Intro para continuar.\n"
"ÂżSu elecciĂłn?"
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -6020,327 +6130,327 @@ msgstr ""
"=> Aviso, una etiqueta cambiĂł:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr "Reenviar"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Checo (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "AlemĂĄn"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "EspaĂąol"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "FinlandĂŠs"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "FrancĂŠs"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Noruego"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Polaco"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Ruso"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Sueco"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "BritĂĄnico"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Estadounidense"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Albano"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armenio (antiguo)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armenio (nuevo)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armenio (fonĂŠtico)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "AzerbadjĂĄn (latĂ­n)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belga"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr "BĂşlgaro (fonĂŠtico)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "BĂşlgaro (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "BrasileĂąo (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Bielorruso"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Suizo (germĂĄnico)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Suizo (francĂŠs)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Checo (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "AlemĂĄn (sin teclas muertas)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "DanĂŠs"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Noruego)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Sueco)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estonio"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgiano (estilo \"ruso\")"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgiano (estilo \"latĂ­n\")"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Griego"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "HĂşngaro"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Croata"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "IsraelĂ­"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "IsraelĂ­ (fonĂŠtico)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "IranĂ­"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "IslandĂŠs"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Italiano"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "JaponĂŠs de 106 teclas"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Coreano"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latinoamericano"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Lituano AZERTY (antiguo)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Lituano AZERTY (nuevo)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituano \"numĂŠrico\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituano \"fonĂŠtico\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "LetĂłn"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Macedonio"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "HolandĂŠs"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Polaco (distribuciĂłn qwerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Polaco (distribuciĂłn qwertz)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "PortuguĂŠs"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Canadiense (Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Rumano (qwertz)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Rumano (qwerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Ruso (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Esloveno"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Eslovaco (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Eslovaco (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "Serbio (cirĂ­lico)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr "Tamil"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Teclado tailandĂŠs"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Teclado tajik"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turco (modelo \"F\" tradicional)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turco (modelo \"Q\" moderno)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ucraniano"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Estadounidense (internacional)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamita \"numĂŠrico\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Yugoslavo (latĂ­n)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr "Tecla Alt derecha"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr "Ambas teclas Shift simultĂĄneamente"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr "Las teclas Control y Shift simultĂĄneamente"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr "Tecla CapsLock"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr "Las teclas Ctrl y Alt simultĂĄneamente"
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr "Las teclas Alt y Shift simultĂĄneamente"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr "La tecla \"MenĂş\""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr "Tecla \"Windows\" de la izquierda"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr "Tecla \"Windows\" de la derecha"
@@ -6353,7 +6463,31 @@ msgstr "Montajes circulares %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Quite los volĂşmenes lĂłgicos primero\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "NĂşmero de telĂŠfono"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Formateo de particiones"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -6396,10 +6530,6 @@ msgstr "1 botĂłn"
msgid "Generic 2 Button Mouse"
msgstr "RatĂłn de 2 botones genĂŠrico"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "GenĂŠrico"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Rueda"
@@ -6464,38 +6594,54 @@ msgstr "ninguno"
msgid "No mouse"
msgstr "Sin ratĂłn"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Pruebe su ratĂłn, por favor."
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Para activar el ratĂłn,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "ÂĄMUEVA SU RUEDA!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Finalizar"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Siguiente ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Anterior"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "ÂżEs correcto?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Info"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Expandir el ĂĄrbol"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Contraer el ĂĄrbol"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Cambiar entre vista plana y ordenada por grupos"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Conectar a Internet"
@@ -6542,7 +6688,7 @@ msgstr ""
"No se ha detectado ningĂşn adaptador de red ethernet en su sistema.\n"
"No se puede configurar este tipo de conexiĂłn."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Elija la interfaz de red"
@@ -6557,7 +6703,7 @@ msgstr ""
msgid "no network card found"
msgstr "no se encontrĂł ninguna tarjeta de red"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Configurando la red"
@@ -6574,15 +6720,15 @@ msgstr ""
"completamente,\n"
"como \"mimaquina.milabo.micompa.com\"."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Nombre de la mĂĄquina"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Asistente para la configuraciĂłn de la red"
@@ -6637,7 +6783,7 @@ msgstr "ConfiguraciĂłn de RDSI"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Seleccione su proveedor.\n"
" Si no estĂĄ en la lista, elija No listado"
@@ -6656,14 +6802,14 @@ msgstr "Protocolo para el resto del mundo"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Protocolo para el resto del mundo \n"
" sin canal D (lĂ­neas alquiladas)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "ÂżQuĂŠ protocolo desea utilizar?"
#: ../../network/isdn.pm_.c:199
@@ -6687,7 +6833,8 @@ 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"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Si tiene una tarjeta ISA, los valores de la prĂłxima pantalla deberĂ­an ser "
@@ -6704,13 +6851,13 @@ msgid "Continue"
msgstr "Continuar"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "ÂżCuĂĄl es su tarjeta RDSI?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Se ha detectado una tarjeta RDSI PCI, pero no se conoce el tipo. Por favor, "
"seleccione una tarjeta PCI en la pantalla siguiente."
@@ -6729,47 +6876,47 @@ msgstr "Seleccione el puerto serie al que estĂĄ conectado su mĂłdem."
msgid "Dialup options"
msgstr "Opciones de llamada por mĂłdem"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Nombre de la conexiĂłn"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "NĂşmero de telĂŠfono"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "ID de conexiĂłn"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Por script"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Por terminal"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Nombre de dominio"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Primer servidor DNS (opcional)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Segundo servidor DNS (opcional)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6777,7 +6924,7 @@ msgstr ""
"\n"
"Puede desconectarse o volver a configurar su conexiĂłn."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6785,11 +6932,11 @@ msgstr ""
"\n"
"Puede volver a configurar su conexiĂłn."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Ahora estĂĄ conectado a Internet."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6797,32 +6944,32 @@ msgstr ""
"\n"
"Se puede conectar a Internet o volver a configurar su conexiĂłn."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Ahora no estĂĄ conectado a Internet."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Conectar"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Desconectar"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr "Configurar la conexiĂłn"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "ConfiguraciĂłn y conexiĂłn a Internet"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Ahora vamos a configurar la conexiĂłn %s."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6841,12 +6988,12 @@ msgstr ""
"\n"
"Pulse siguiente para continuar."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "ConfiguraciĂłn de la red"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6859,9 +7006,9 @@ msgstr ""
"para\n"
"volver a configurar sus conexiones de red y a Internet.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"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"
@@ -6871,66 +7018,72 @@ msgstr ""
"Estamos a punto de configurar su conexiĂłn de red/Internet.\n"
"Si no desea usar la detecciĂłn automĂĄtica, desmarque la casilla.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Elija el perfil a configurar"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Usar detecciĂłn automĂĄtica"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Modo experto"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Detectando los dispositivos..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "ConexiĂłn normal por mĂłdem"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "detectada en el puerto %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ConexiĂłn RDSI"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "detectada %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "ConexiĂłn ADSL"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "detectada en la interfaz %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "ConexiĂłn por cable"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "detectada conexiĂłn por cable"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "ConexiĂłn a la red local"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "tarjeta(s) de red detectada(s)"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Elija la conexiĂłn que desea configurar"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6940,23 +7093,23 @@ msgstr ""
"Seleccione la que quiere utilizar.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "ConexiĂłn a Internet"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "ÂżDesea iniciar su conexiĂłn al arrancar?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "ConfiguraciĂłn de la red"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr "La red necesita ser reiniciada"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6967,7 +7120,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6977,7 +7130,7 @@ msgstr ""
"\n"
"Ahora se aplicarĂĄ la configuraciĂłn a su sistema.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6985,19 +7138,19 @@ msgstr ""
"DespuĂŠs de esto, se recomienda que reinicie su entorno X\n"
"para evitar el problema del cambio del nombre de la mĂĄquina."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
"Ocurrieron problemas durante la configuraciĂłn.\n"
"Verifique su conexiĂłn con net_monitor o mcc. Si su conexiĂłn no funciona, "
"puede que desee volver a iniciar la configuraciĂłn"
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"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."
@@ -7007,7 +7160,7 @@ msgstr ""
"Simplemente acepte para mantener la configuraciĂłn del dispositivo.\n"
"Al modificar los campos de abajo se ignorarĂĄ esta configuraciĂłn."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7017,38 +7170,43 @@ msgstr ""
"Cada valor tiene que introducirse como una direcciĂłn IP en notaciĂłn\n"
"decimal con puntos (por ejemplo: 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Configurando el dispositivo de red %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (controlador %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "DirecciĂłn IP"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "MĂĄscara de red"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "DirecciĂłn IP automĂĄtica"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Iniciado al arranque"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "Las direcciones IP deben estar en el formato 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7061,64 +7219,64 @@ msgstr ""
"como \"mimaquina.milabo.micompa.com\".TambiĂŠn puede introducir la direcciĂłn "
"IP de la pasarela si tiene una"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "Servidor DNS"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Pasarela de red (ej %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Dispositivo de pasarela de red"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "ConfiguraciĂłn de los proxies"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Id tarjeta de red (Ăştil para portĂĄtiles)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "El nombre del proxy debe ser http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "El nombre del proxy debe ser ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "ConfiguraciĂłn de Internet"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "ÂżDesea intentar conectarse a Internet ahora?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Probando su conexiĂłn..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Ahora no estĂĄ conectado a Internet."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Por motivos de seguridad, ahora serĂĄ desconectado."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -7126,111 +7284,116 @@ msgstr ""
"El sistema no parece estar conectado al Internet.\n"
"Intente volver a configurar su conexiĂłn."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "ConfiguraciĂłn de la conexiĂłn"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Por favor, complete o verifique el campo de abajo"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ de la tarjeta"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Memoria (DMA) de la tarjeta"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "E/S de la tarjeta"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "E/S_0 de la tarjeta"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "E/S_1 de la tarjeta"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Su nĂşmero de telĂŠfono personal"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Nombre del proveedor (ej proveedor.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "NĂşmero de telĂŠfono del proveedor"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "DNS 1 del proveedor (opcional)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "DNS 2 del proveedor (opcional)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Elija su paĂ­s"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Modo de marcaciĂłn"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Velocidad de la conexiĂłn"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "Demora de la conexiĂłn (en seg)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Usuario de la cuenta (nombre de usuario)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "ContraseĂąa de la cuenta"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "mount fallĂł: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "La particiĂłn extendida no estĂĄ disponible en esta plataforma"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Tiene un hueco en la tabla de particiones, pero no se puede usar.\n"
"La Ăşnica soluciĂłn es desplazar sus particiones primarias para que el hueco "
"estĂŠ despuĂŠs de las particiones extendidas"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "FallĂł la restauraciĂłn a partir del archivo %s: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Archivo de respaldo incorrecto"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Error al escribir en el archivo %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7241,187 +7404,187 @@ msgstr ""
"Esto significa que escribir cualquier cosa en el disco terminarĂĄ produciendo "
"basura al azar"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "necesario"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "importante"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "muy bueno"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "bueno"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "quizĂĄs"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr ""
"CUPS - Common Unix Printing System (Sistema de impresiĂłn comĂşn de Unix)"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR de nueva generaciĂłn"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Line Printer Daemon (Demonio de impresora de lĂ­neas)"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue (Imprimir, no encolar)"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Impresora local"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Impresora remota"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Impresora en un servidor CUPS remoto"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Impresora en un servidor lpd remoto"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Impresora de red (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Impresora en un servidor SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Impresora en un servidor NetWare"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Introduzca el URI del dispositivo de impresiĂłn"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "Filtrar el trabajo en un comando"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Modelo desconocido"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "Impresoras locales"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "Impresoras remotas"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr " en el puerto paralelo \\/*%s"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", impresora USB \\/*%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", dispositivo multifunciĂłn en puerto paralelo \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ", dispositivo multi-funciĂłn en USB"
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ", dispositivo multifunciĂłn en HP JetDirect"
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ", dispositivo multifunciĂłn"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, c-format
msgid ", printing to %s"
msgstr ", imprimiendo en %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr " en servidor LDP \"%s\", impresora \"%s\""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", host TCP/IP \"%s\", puerto \"%s\""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr " en servidor Windows \"%s\", compartida como \"%s\""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr "en servidor Novell \"%s\", impresora \"%s\""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ", usando comando %s"
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr "Impresora \"en crudo\" (sin controlador)"
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(en %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(en esta mĂĄquina)"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, c-format
msgid "On CUPS server \"%s\""
msgstr "En servidor CUPS \"%s\""
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Por defecto)"
@@ -7443,11 +7606,11 @@ msgstr ""
"AquĂ­ no tiene que configurar las impresoras en los servidores CUPS remotos; "
"las mismas se detectarĂĄn automĂĄticamente."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
msgid "CUPS configuration"
msgstr "ConfiguraciĂłn de CUPS"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
msgid "Specify CUPS server"
msgstr "Especificar servidor CUPS"
@@ -7491,7 +7654,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "Las direcciones IP deberĂ­an parecerse a 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "ÂĄEl nĂşmero de puerto debe ser un nĂşmero entero!"
@@ -7499,7 +7662,7 @@ msgstr "ÂĄEl nĂşmero de puerto debe ser un nĂşmero entero!"
msgid "CUPS server IP"
msgstr "IP del servidor CUPS"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Puerto"
@@ -7507,20 +7670,12 @@ msgstr "Puerto"
msgid "Automatic CUPS configuration"
msgstr "ConfiguraciĂłn automĂĄtica de CUPS"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Detectando dispositivos..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Probar puertos"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr "AĂąadir una impresora nueva"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7542,13 +7697,13 @@ msgstr ""
"darle acceso a los controladores de todas las impresoras disponibles, "
"opciones del controlador y tipos de conexiĂłn de impresoras."
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Impresora local"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7582,11 +7737,11 @@ msgstr ""
"impresiĂłn en una impresora remota si printerdrake no la lista "
"automĂĄticamente."
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr "DetecciĂłn automĂĄtica de impresoras"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7610,11 +7765,11 @@ msgstr ""
"de impresiĂłn, ...), seleccione \"Impresora\" en la secciĂłn de \"Hardware\" "
"del Centro de control de Mandrake."
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr "AutodetecciĂłn de impresoras."
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7630,33 +7785,37 @@ msgstr ""
"\n"
"ÂżSeguro que desea detectar automĂĄticamente sus impresoras?"
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "Realizar detecciĂłn automĂĄtica"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr "Configurar la impresora manualmente"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Probar puertos"
+
+#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
msgstr "Detectada %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Impresora en puerto paralelo \\/*%s"
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr "Impresora USB \\/*%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
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, ..., "
@@ -7668,11 +7827,11 @@ msgstr ""
"(Puertos paralelos: /dev/lp0, /dev/lp1, ..., equivalen a LPT1:, LPT2, ..., "
"1ÂŞ impresora USB: /dev/usb/lp0, 2ÂŞ impresora USB: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
msgstr "Debe introducir un dispositivo un un nombre de archivo"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
@@ -7680,7 +7839,7 @@ msgstr ""
"ÂĄNo se encontrarĂł ninguna impresora local!\n"
"\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
@@ -7688,7 +7847,7 @@ msgstr ""
"Las impresoras en red sĂłlo se pueden instalar tras la inslaciĂłn. Seleccione "
"\"Hardware\" y luego \"Impresora\" en el Centro de control de Mandrake."
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
@@ -7696,7 +7855,7 @@ msgstr ""
"Para instalar impresoras en red, haga clic en \"Cancelar\", cambie al \"Modo "
"experto\", y haga clic en \"AĂąadir una nueva impresora\" de nuevo."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7705,7 +7864,7 @@ msgstr ""
"quiere configurar, introduzca en la lĂ­nea de entrada un nombre de "
"dispositivo/nombre de archivo en la lĂ­nea de entrada"
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7714,7 +7873,7 @@ msgstr ""
"favor, seleccione la impresora que quiere configurar o introduzca un nombre "
"de dispositivo/nombre de archivo en la lĂ­nea de entrada"
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7726,7 +7885,7 @@ msgstr ""
"detectĂł correctamente o si prefiere una configuraciĂłn personalizada, active "
"la \"ConfiguraciĂłn manual\"."
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7739,7 +7898,7 @@ msgstr ""
"detectĂł correctamente o si prefiere una configuraciĂłn personalizada, active "
"la \"ConfiguraciĂłn manual\"."
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7747,11 +7906,11 @@ msgstr ""
"Por favor, elija el puerto donde estĂĄ conectada su impresora o ingrese el "
"nombre de un dispositivo o archivo en la lĂ­nea de entrada"
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
msgstr "Por favor, elija el puerto al que estĂĄ conectado su impresora."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7759,52 +7918,65 @@ msgstr ""
"(Puertos paralelo: /dev/lp0, /dev/lp1, ..., equivalen a LPT1:, LPT2, ..., "
"1er impresora USB: /dev/usb/lp0, 2da impresora USB: /dev/usb/lp1, ...) "
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
msgstr "ÂĄDebe elegir/ingresar una impresora o un dispositivo!"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
msgstr "ConfiguraciĂłn manual"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
+#, fuzzy
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
"ÂżEs su impresora un dispositivo multifunciĂłn de HP (OfficeJet, PSC, "
"PhotoSmart LaserJet 1100/1200/1220/3200/3300 con escĂĄner)?"
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
msgstr "Instalando el paquete HPOJ..."
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr "Verificando el dispositivo y configurando HPOJ ..."
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
msgstr "Instalando el paquete SANE..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Instalando paquetes..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr "Escaneando en su dispositivo multifunciĂłn de HP"
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+#, fuzzy
+msgid "Photo memory card access on your HP multi-function device"
+msgstr "Escaneando en su dispositivo multifunciĂłn de HP"
+
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr "Haciendo que el puerto de impresora estĂŠ disponible para CUPS ..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr "Leyendo base de datos de impresoras ..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Opciones de la impresora remota lpd"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7812,27 +7984,27 @@ msgstr ""
"Para utilizar impresora LPD remota, necesita proporcionar el nombre de host "
"del servidor de impresiĂłn y el nombre de la impresora en ese servidor."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Nombre de host del servidor remoto"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Nombre de la impresora remota"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "ÂĄFalta el nombre del host remoto!"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "ÂĄFalta el nombre de la impresora remota!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Opciones de la impresora SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7846,35 +8018,35 @@ msgstr ""
"cualquier otra informaciĂłn del nombre de usuario, contraseĂąa y grupo de "
"trabajo que haga falta."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "MĂĄquina del servidor SMB"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP del servidor SMB"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Nombre del recurso compartido"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Grupo de trabajo"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "ÂĄDebe indicar el nombre o la direcciĂłn IP del servidor!"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "ÂĄNo se encuentra el nombre del recurso compartido de Samba!"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr "ÂĄADVERTENCIA DE SEGURIDAD!"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7897,40 +8069,57 @@ msgid ""
"type in Printerdrake.\n"
"\n"
msgstr ""
-"EstĂĄ a punto de configurar la impresiĂłn a una cuenta Windows con contraseĂąa. Debido a una falla en la arquitectura del cliente Samba la contraseĂąa se pone como texto plano en la lĂ­nea de comandos del cliente Samba que se usa para transmitir el trabajo de impresiĂłn al servidor Windows. Por lo tanto, es posible que cada usuario de esta mĂĄquina vea la clave en pantalla ejecutando \"ps auxwww\".\n"
+"EstĂĄ a punto de configurar la impresiĂłn a una cuenta Windows con contraseĂąa. "
+"Debido a una falla en la arquitectura del cliente Samba la contraseĂąa se "
+"pone como texto plano en la lĂ­nea de comandos del cliente Samba que se usa "
+"para transmitir el trabajo de impresiĂłn al servidor Windows. Por lo tanto, "
+"es posible que cada usuario de esta mĂĄquina vea la clave en pantalla "
+"ejecutando \"ps auxwww\".\n"
"\n"
-"Recomendamos utilizar alguna de las alternativas siguientes (en todos los casos tiene que asegurarse que sĂłlo las mĂĄquinas de su red local tienen acceso al servidor Windows, por ejemplo utilizando un cortafuegos):\n"
+"Recomendamos utilizar alguna de las alternativas siguientes (en todos los "
+"casos tiene que asegurarse que sĂłlo las mĂĄquinas de su red local tienen "
+"acceso al servidor Windows, por ejemplo utilizando un cortafuegos):\n"
"\n"
-"Usar una cuenta sin contraseĂąa en su servidor Windows, por ej. la cuenta \"GUEST\" o una cuenta especial dedicada a la impresiĂłn. No quite la protecciĂłn con contraseĂąa de una cuenta personal o de la cuenta del administrador.\n"
+"Usar una cuenta sin contraseĂąa en su servidor Windows, por ej. la cuenta "
+"\"GUEST\" o una cuenta especial dedicada a la impresiĂłn. No quite la "
+"protecciĂłn con contraseĂąa de una cuenta personal o de la cuenta del "
+"administrador.\n"
"\n"
-"Configure a su servidor Windows para que la impresiĂłn estĂŠ disponible bajo el protocolo LPD y configure la impresiĂłn desde esta mĂĄquina bajo el tipo de conexiĂłn \"%s\" en PrinterDrake.\n"
+"Configure a su servidor Windows para que la impresiĂłn estĂŠ disponible bajo "
+"el protocolo LPD y configure la impresiĂłn desde esta mĂĄquina bajo el tipo de "
+"conexiĂłn \"%s\" en PrinterDrake.\n"
"\n"
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, 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 "Configure a su servidor Windows para que la impresiĂłn estĂŠ disponible bajo el protocolo IPP y configure la impresiĂłn desde esta mĂĄquina bajo el tipo de conexiĂłn \"%s\" en PrinterDrake.\n\n"
+msgstr ""
+"Configure a su servidor Windows para que la impresiĂłn estĂŠ disponible bajo "
+"el protocolo IPP y configure la impresiĂłn desde esta mĂĄquina bajo el tipo de "
+"conexiĂłn \"%s\" en PrinterDrake.\n"
+"\n"
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
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 ""
-"Conecte su impresora a un servidor Linux y permita que su(s) mĂĄquina(s) Windows se conecten al mismo como un cliente.\n"
+"Conecte su impresora a un servidor Linux y permita que su(s) mĂĄquina(s) "
+"Windows se conecten al mismo como un cliente.\n"
"\n"
"ÂżRealmente desea continuar configurando esta impresora como lo estĂĄ haciendo?"
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Opciones de la impresora NetWare"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
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 "
@@ -7942,27 +8131,27 @@ msgstr ""
"de la mĂĄquina en TCP/IP) asĂ­ como el nombre de la cola de impresiĂłn que "
"desea usar y el nombre de usuario y la contraseĂąa apropiados."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Servidor de impresiĂłn"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Nombre de la cola de impresiĂłn"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "ÂĄNo se encuentra el nombre del servidor NCP!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "ÂĄNo se encuentra la cola del servidor NCP!"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
msgstr "Opciones de la impresora por socket/TCP"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -7974,19 +8163,19 @@ msgstr ""
"servidores HP JetDirect el nĂşmero de puerto por lo general es 9100, en otros "
"servidores puede variar. Consulte el manual de su hardware."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Nombre de host de la impresora"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "ÂĄNo se encuentra el nombre de la mĂĄquina de la impresora!"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "URI del dispositivo de impresiĂłn"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
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 "
@@ -7996,11 +8185,11 @@ msgstr ""
"debe cumplir con las especificaciones Foomatic o CUPS. Recuerde que no todos "
"los sistemas de impresiĂłn admiten URIs."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "ÂĄDebe introducir un URI vĂĄlido!"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -8009,27 +8198,23 @@ msgstr ""
"quĂŠ rellenar los campos DescripciĂłn ni UbicaciĂłn. Son comentarios para los "
"usuarios."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Nombre de la impresora"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "DescripciĂłn"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "UbicaciĂłn"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr "Preparando base de datos de impresoras ..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
msgid "Your printer model"
msgstr "El modelo de su impresora"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -8056,24 +8241,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
msgid "The model is correct"
msgstr "El modelo es correcto"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
msgid "Select model manually"
msgstr "Seleccionar el modelo manualmente"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "SelecciĂłn del modelo de impresora"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "ÂżQuĂŠ modelo de impresora tiene?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -8088,7 +8273,7 @@ msgstr ""
"si el cursor estĂĄ sobre un modelo equivocado o si estĂĄ en \"Impresora en "
"crudo\"."
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -8096,11 +8281,11 @@ msgstr ""
"Si no se lista su impresora, elija una compatible (vea el manual de la "
"misma) o una simliar."
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "ConfiguraciĂłn de impresora de windows OKI"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -8117,11 +8302,11 @@ msgstr ""
"impresora no funcionarĂĄ. El controlador ignorarĂĄ la configuraciĂłn del tipo "
"de conexiĂłn."
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "ConfiguraciĂłn de impresora de inyecciĂłn de tinta Lexmark"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -8133,7 +8318,7 @@ msgstr ""
"de impresiĂłn. Por favor, conecte su impresora a un puerto local o "
"configĂşrelo en la mĂĄquina a la que estĂĄ conectada."
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -8156,7 +8341,7 @@ msgstr ""
"pĂĄginas alineadas con la cabeza de impresiĂłn \"lexmarkmaintain\" y ajuste la "
"configuraciĂłn de la alineaciĂłn de la cabeza con este programa."
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -8173,22 +8358,22 @@ msgstr ""
"configurados correctamente. Note que una calidad de impresiĂłn o resoluciĂłn "
"extremadamente alta puede ser bastante lenta."
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "ÂĄLa opciĂłn %s debe ser un nĂşmero entero!"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "ÂĄLa opciĂłn %s debe ser un nĂşmero!"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "ÂĄLa opciĂłn %s estĂĄ fuera de rango"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8197,11 +8382,11 @@ msgstr ""
"ÂżQuiere configurar esta impresora (\"%s\")\n"
"como la impresora predeterminada?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "PĂĄginas de prueba"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8213,39 +8398,39 @@ msgstr ""
"incluso en impresoras lĂĄser con muy poca memoria puede que no salga. En la "
"mayorĂ­a de los casos, basta con imprimir la pĂĄgina de prueba estĂĄndar."
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "No hay pĂĄginas de prueba"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Imprimir"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "PĂĄgina de prueba estĂĄndar"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr "PĂĄgina de prueba alternativa (Letter)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "PĂĄgina de prueba alternativa (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "PĂĄgina de prueba de foto"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
msgstr "No imprimir ninguna pĂĄgina de prueba"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Imprimir la(s) pĂĄgina(s) de prueba..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8260,7 +8445,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8268,15 +8453,15 @@ msgstr ""
"La(s) pĂĄgina(s) de prueba se enviaron al demonio de impresiĂłn.\n"
"Puede que pase algo de tiempo antes de que comience la impresiĂłn.\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr "ÂżFuncionĂł adecuadamente?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr "Impresora en crudo"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8290,7 +8475,7 @@ msgstr ""
"permiten seleccionar la impresora y modificar las opciones de configuraciĂłn "
"fĂĄcilmente.\n"
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
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 "
@@ -8301,8 +8486,8 @@ msgstr ""
"nombre del archivo porque el archivo a imprimir lo proporciona la "
"aplicaciĂłn.\n"
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -8316,11 +8501,11 @@ msgstr ""
"configuraciones deseadas a la lĂ­nea de comando, por ejemplo \"%s <archivo>"
"\". "
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#, fuzzy, 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\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
"Para obtener una lista con las opciones disponibles para la impresora actual "
@@ -8328,7 +8513,7 @@ msgstr ""
"de opciones\".%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8336,7 +8521,7 @@ msgstr ""
"AquĂ­ tiene una lista de las opciones disponibles para la impresora actual:\n"
"\n"
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8345,8 +8530,8 @@ msgstr ""
"Para imprimir un archivo desde la lĂ­nea de comando (ventana de terminal) use "
"el comando \"%s <archivo>\".\n"
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8357,7 +8542,7 @@ msgstr ""
"del archivo porque el nombre del archivo a imprimir lo proporciona la "
"aplicaciĂłn.\n"
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8365,7 +8550,7 @@ msgstr ""
"Para obtener una lista de las opciones disponibles para la impresora actual, "
"haga clic en el botĂłn \"Imprimir lista de opciones\"."
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8374,7 +8559,7 @@ msgstr ""
"Para imprimir un archivo desde la lĂ­nea de comando (ventana de terminal) use "
"el comando \"%s <archivo>\" o \"%s <archivo>\".\n"
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8390,7 +8575,7 @@ msgstr ""
"detiene todos los trabajos de impresiĂłn inmediatamente cuando hace clic en "
"ĂŠl. Esto es Ăştil, por ejemplo, para atascos de papel.\n"
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -8403,38 +8588,49 @@ msgstr ""
"configuraciĂłn para un trabajo de impresiĂłn particular. Simplemente aĂąada las "
"opciones deseadas a la lĂ­nea de comando, por ejemplo \"%s <archivo>\".\n"
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Cerrar"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Imprimiendo/Escaneando en \"%s\""
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Imprimiendo/Escaneando en \"%s\""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Imprimiendo/Escaneando en \"%s\""
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Imprimiendo en la impresora \"%s\""
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Cerrar"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "Imprimir lista de opciones"
-#: ../../printerdrake.pm_.c:1766
-#, c-format
+#: ../../printerdrake.pm_.c:1802
+#, fuzzy, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
@@ -8448,38 +8644,30 @@ msgstr ""
"\n"
"No use \"scannerdrake\" para este dispositivo."
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-"Su dispositivo multifunciĂłn HP se configurĂł automĂĄticamente para ser capaz "
-"de escanear. Ahora puede escanear desde la lĂ­nea comandos con \"ptal-hp %s "
-"scan ...\". No se soporta aĂşn el escaneo por medio de un interfaz grĂĄfico e "
-"desde el GIMP para su dispositivo. EncontrarĂĄ mĂĄs informaciĂłn en el archivo "
-"de su sistema \"/usr/share/doc/hpoj-0.8/ptal-hp-scan.html\". Si tiene una HP "
-"LaserJet 1100 o 1200 puede escanear cuando tenga la opciĂłn del escĂĄner "
-"instalada.\n"
-"No use \"scannerdrake\" para este dispositivo."
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr "Leyendo los datos de la impresora ..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "Transferir configuraciĂłn de la impresora"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8495,7 +8683,7 @@ msgstr ""
"transfieren.\n"
"Debido a las siguientes razones no todas las colas se pueden transferir:\n"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8503,7 +8691,7 @@ msgstr ""
"CUPS no soporta impresoras en servidores Novell o impresoras que envĂ­an los "
"datos en un comando formado libremente.\n"
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -8511,11 +8699,11 @@ msgstr ""
"PDQ sĂłlo soporta impresoras locales, impresoras LPD remotas, e impresoras "
"Socket/TCP.\n"
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD y LPRng no soportan impresoras IPP.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8523,7 +8711,7 @@ msgstr ""
"AdemĂĄs, las colas no creadas con este programa o con \"foomatic-configure\" "
"no se pueden transferir."
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8533,7 +8721,7 @@ msgstr ""
"Tampoco se pueden transferir las impresoras configuradas con los archivos "
"PPD provistos por sus fabricantes o con controladores CUPS nativos."
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8543,15 +8731,15 @@ msgstr ""
"Marque las impresoras que desea transferir y haga clic \n"
"sobre \"Transferir\"."
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr "No transferir impresoras"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr "Transferir"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8562,13 +8750,13 @@ msgstr ""
"Haga clic sobre \"Transferir\" para sobre-escribirla.\n"
"TambiĂŠn puede ingresar un nombre nuevo o saltear esta impresora."
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"El nombre de la impresora sĂłlo deberĂ­a contener letras, nĂşmeros y el guiĂłn "
"bajo"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8577,16 +8765,16 @@ msgstr ""
"La impresora \"%s\" ya existe,\n"
"Âżrealmente desea sobre-escribir la configuraciĂłn de la misma?"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Nuevo nombre de la impresora"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr "Transfiriendo %s ..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8595,29 +8783,29 @@ msgstr ""
"Ha transferido su impresora por defecto anterior (\"%s\"), ÂżDeberĂ­a ser "
"tambiĂŠn la impresora por defecto bajo el nuevo sistema de impresiĂłn %s?"
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr "Refrescando datos de impresora ..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr "ConfiguraciĂłn de una impresora remota"
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "Iniciando la red ..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr "Configurar la red ahora"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "Funcionalidad de red no configurada"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8629,11 +8817,11 @@ msgstr ""
"configuraciĂłn de red, no podrĂĄ utilizar la impresoara que estĂĄ configurando "
"ahora. ÂżCĂłmo desea proceder?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr "Continuar sin configurar la red"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8649,7 +8837,7 @@ msgstr ""
"impresora, tambiĂŠn utilizando el Centro de Control de Mandrake, secciĂłn "
"\"Hardware\"/\"Impresora\"."
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
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 "
@@ -8659,24 +8847,24 @@ msgstr ""
"verifique su configuraciĂłn y su hardware. Luego, intente configurar su "
"impresora remota de nuevo."
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr "Reiniciando el sistema de impresiĂłn ..."
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "Alta"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr "Paranoica"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Instalando un sistema de impresiĂłn en el nivel de seguridad %s"
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8701,11 +8889,11 @@ msgstr ""
"\n"
"ÂżSeguro que desea configurar la impresiĂłn para esta mĂĄquina?"
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr "Iniciar el sistema de impresiĂłn al arrancar"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8728,63 +8916,63 @@ msgstr ""
"ÂżDesea volver a activar el inicio automĂĄtico de la impresiĂłn cuando el "
"sistema se vuelva a encender?"
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr "Verificando software instalado..."
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr "Quitando LPRng..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr "Quitando LPD..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "Seleccione sistema de impresiĂłn (spooler)"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "ÂżQuĂŠ sistema de impresiĂłn (spooler) desea usar?"
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2310
+#, fuzzy, c-format
+msgid "Configuring printer \"%s\"..."
msgstr "ConfiguraciĂłn la impresora \"%s\" ..."
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
msgstr "Instalando Foomatic ..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Opciones de impresiĂłn"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr "Preparando PrinterDrake ..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
msgid "Configuring applications..."
msgstr "Configurando las aplicaciones..."
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "ÂżDesea configurar la impresiĂłn?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr "Sistema de impresiĂłn: "
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -8796,7 +8984,7 @@ msgstr ""
"acerca de la misma o para hacer que una impresora en un servidor CUPS remoto "
"estĂŠ disponible para Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -8806,30 +8994,34 @@ msgstr ""
"ellas para modificarla, para configurarla como predeterminada, o para "
"obtener informaciĂłn sobre la misma."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Refrescar la lista de impresoras (para visualizar todas las impresoras CUPS "
"remotas)"
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
msgid "Change the printing system"
msgstr "Cambiar el sistema de impresiĂłn"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Modo normal"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Salir"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr "ÂżDesea configurar otra impresora?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "Modificar configuraciĂłn de la impresora"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, c-format
msgid ""
"Printer %s\n"
@@ -8838,69 +9030,69 @@ msgstr ""
"Impresora %s\n"
"ÂżQuĂŠ desea modificar de esta impresora?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr "ÂĄHacerlo!"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "Tipo de conexiĂłn de la impresora"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "Nombre de la impresora, descripciĂłn, ubicaciĂłn"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr "Fabricante de la impresora, modelo, controlador"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr "Fabricante de la impresora, modelo"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr "Poner esta impresora como predeterminada"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr "Agregar esta impresora a Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr "Quitar esta impresora de Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr "Imprimir la(s) pĂĄgina(s) de prueba"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
msgstr "Se sabe cĂłmo usar esta impresora"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "Borrar impresora"
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2857
+#, fuzzy, c-format
+msgid "Removing old printer \"%s\"..."
msgstr "Borrando la impresora antigua \"%s\" ..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Impresora predeterminada"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "La impresora \"%s\" ahora es la impresora predeterminada."
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr "Agregando impresora a Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
@@ -8908,16 +9100,16 @@ msgstr ""
"La impresora \"%s\" se agregĂł satisfactoriamente a Star Office/OpenOffice."
"org."
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr "No se pudo agregar la impresora \"%s\" a Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr "Quitando la impresora de Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
@@ -8925,19 +9117,19 @@ msgstr ""
"La impresora \"%s\" se quitĂł satisfactoriamnete de Star Office/OpenOffice."
"org."
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr "No se pudo quitar la impresora \"%s\" de Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "ÂżSeguro que quiere borrar la impresora \"%s\"?"
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2909
+#, fuzzy, c-format
+msgid "Removing printer \"%s\"..."
msgstr "Borrando la impresora \"%s\" ..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -9022,24 +9214,61 @@ msgstr "Las contraseĂąas no coinciden. ÂĄIntĂŠntelo de nuevo!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "No se puede aĂąadir una particiĂłn al RAID md%d _ya formateado_"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "No se puede escribir el archivo %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "FallĂł mkraid"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "FallĂł mkraid (ÂżquizĂĄs no estĂŠn las herramientas de raid (raidtools)?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "No hay suficientes particiones para un RAID de nivel %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Este nivel se debe usar con mucho cuidado. Hace su sistema mĂĄs simple de\n"
+"usar, pero tambiĂŠn mucho mĂĄs vulnerable: no debe usarse para una mĂĄquina\n"
+"conectada en red con otras o a Internet. No hay contraseĂąas de acceso."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+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 ""
+"Con este nivel de seguridad, es posible utilizar el sistema como un "
+"servidor.\n"
+"La seguridad es lo suficientemente alta como para usar el sistema como un\n"
+"servidor que acepte conexiones de mĂşltiples clientes. Nota: si su mĂĄquina "
+"sĂłlo es un cliente en la Internet, mejor deberĂ­a elegir un nivel inferior."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "Opciones avanzadas"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Opciones"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -9100,7 +9329,7 @@ msgstr ""
"HardDrake lanza una prueba del hardware, y opcionalmente configura\n"
"el hardware nuevo/cambiado."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -9179,7 +9408,7 @@ msgstr ""
"El servidor virtual de Linux (LVS) se usa para construir servidores de alto\n"
"rendimiento y alta disponibilidad."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -9259,7 +9488,7 @@ msgstr ""
"actĂşan\n"
"como servidores para protocolos que usan el mecanismo RPC."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -9359,7 +9588,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Compartir archivos"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "Sistema"
@@ -9490,6 +9719,7 @@ msgstr ""
"desarrollo de CĂłdigo Abierto"
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
msgstr "Centro de control de Mandrake"
@@ -9615,6 +9845,15 @@ msgstr "http://www.mandrakesoft.com/sales/contact"
msgid "Installing packages..."
msgstr "Instalando paquetes..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Por favor salga de la sesiĂłn y luego pulse Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Abra de nuevo una sesiĂłn %s para activar los cambios"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -9623,6 +9862,161 @@ msgstr ""
"No se puede leer su tabla de particiones, estĂĄ demasiado deteriorada :-(\n"
"Se intentarĂĄ ir poniendo en blanco las particiones malas"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Transferir configuraciĂłn de la impresora"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Servidor de base de datos"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Servidor de base de datos"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "AĂąadir un usuario"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "Cliente DHCP"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Ayuda"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+#, fuzzy
+msgid "No kernel selected!"
+msgstr "ÂĄNo se detectĂł tarjeta de TV!"
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "No conectado"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Borrar"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Seleccionar todas."
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "AĂąadir un usuario"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "Cliente DHCP"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Configurando..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "reconfigurar"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Por favor, inserte el disquete de arranque en la unidad %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Ninguna disquetera disponible"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "ÂĄError!"
@@ -9675,6 +10069,11 @@ msgstr ""
"Por favor, elija para cada paso si desea que se repita como su instalaciĂłn, "
"o el mismo serĂĄ manual"
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Creando el disquete de instalaciĂłn automĂĄtica"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -9688,12 +10087,12 @@ msgstr ""
"Los parĂĄmetros de la instalaciĂłn automĂĄticas estĂĄn disponibles en las "
"secciones de la izquierda"
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "ÂĄFelicidades!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9701,28 +10100,19 @@ msgstr ""
"El disquete ha sido generado satisfactoriamente.\n"
"Ahora puede repetir su instalaciĂłn."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr "InstalaciĂłn automĂĄtica"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr "AĂąadir un elemento"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr "Borrar el Ăşltimo elemento"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
@@ -9732,7 +10122,7 @@ msgstr ""
" Reporte de DrakBackup \n"
"\n"
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9744,19 +10134,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9768,63 +10146,87 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr "progreso total"
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr "Respaldar archivos del sistema..."
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
msgstr "Respaldar archivos del disco rĂ­gido..."
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
msgstr "Respaldar archivos de usuario..."
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr "Progreso de respaldo del disco rĂ­gido..."
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
msgstr "Respaldar otros archivos..."
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, fuzzy, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
"Lista de archivos envĂ­ada por FTP: %s\n"
" "
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
+#, fuzzy
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
"\n"
"(!) Problema en la conexiĂłn FTP. No fue posible enviar sus archivos de copia "
"de seguridad por FTP.\n"
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
msgstr "(!) Error durante el envĂ­o de correo. \n"
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
msgstr "SelecciĂłn de archivos."
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr "Seleccione los archivos o directorios y haga clic sobre 'Agregar'"
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -9832,26 +10234,26 @@ msgstr ""
"\n"
"Por favor, verifique todas las opciones que necesita.\n"
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Estas opciones pueden respaldar y restaurar todos los archivos en el "
"directorio /etc.\n"
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr "Respaldar archivos del sistema. (directorio /etc)"
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr "Usar repaldo incremental (no reemplazar respaldos antiguos)"
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "No incluir archivos crĂ­ticos (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -9859,85 +10261,79 @@ msgstr ""
"Con esta opciĂłn podrĂĄ restaurar cualquier versiĂłn de su\n"
"directorio /etc."
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
msgstr ""
"Por favor, marque a todos los usuarios que desa incluir en la copia de "
"respaldo"
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr "No incluir el cache del navegador"
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Usar respaldos incrementales (no reemplazar respaldos antiguos)"
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
msgstr "Quitar los seleccionados."
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr "Usuarios"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
msgstr "Usar conexiĂłn FTP para realizar copia de respaldo"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
msgstr "Por favor, ingrese el nombre o la IP del host"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
"Por favor, ingrese el directorio en este host para\n"
" guardar la copia de respaldo."
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
msgstr "Por favor, ingrese su nombre de usuario (login)"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
msgstr "Por favor, ingrese su contraseĂąa"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
msgstr "Recordar esta contraseĂąa"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "ConexiĂłn FTP"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "ConexiĂłn segura"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr "Usar CD/DVDROM para la copia de respaldo"
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
msgstr "Por favor, elija el espacio de su CD"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
msgstr "Por favor, verifique que estĂĄ utilizando un soporte CDRW"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr "Por favor, verifique si desea borrar su CDRW primero"
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
@@ -9945,7 +10341,7 @@ msgstr ""
"Por favor verifique si desea hacer que su\n"
" CD arranque."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -9953,17 +10349,22 @@ msgstr ""
"Por favor, ingrese el nombre del dispositivo de\n"
" su grabadora de CD, ej: 0,1,0"
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
msgstr "Usar cinta para realizar respaldo"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
"Por favor, ingrese el nombre del dispositivo a utilizar para el respaldo"
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Por favor, verifique si desea borrar su CDRW primero"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -9971,51 +10372,57 @@ msgstr ""
"Por favor, ingrese el tamaĂąo mĂĄximo\n"
" permitido para Drakbackup"
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
+#: ../../standalone/drakbackup_.c:1497
+#, fuzzy
+msgid "Please enter the directory to save to:"
msgstr "Por favor, ingrese el directorio a guardar:"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
msgstr "Usar cuota para archivos de respaldo"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
msgstr "Red"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
-msgstr "CDROM / DVDROM"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr "Disco rĂ­gido / NFS"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Tipo"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr "Cada hora."
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr "Cada dĂ­a."
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr "Cada semana."
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr "Cada mes."
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
msgstr "Usar servidor"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -10023,7 +10430,7 @@ msgstr ""
"Por favor, elija el intervalo de\n"
" tiempo entre cada copia de respaldo"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
@@ -10031,72 +10438,68 @@ msgstr ""
"Por favor, elija el soporte\n"
"para la copia de respaldo."
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Usar el disco rĂ­gido con servidor"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "Usar FTP con servidor"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+#, fuzzy
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
"Por favor, asegĂşrese que el servidor cron estĂĄ incluĂ­do entre sus servicios."
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr "Enviar reporte por correo-e luego de cada respaldo a :"
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "QuĂŠ"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "DĂłnde"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "CuĂĄndo"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
msgstr "MĂĄs opciones"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
msgstr "ConfiguraciĂłn de Drakbackup"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
msgstr "Por favor, elija dĂłnde desea realizar la copia de respaldo"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr "en disco rĂ­gido"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr "a travĂŠs de la red"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
msgstr "Por favor, elija quĂŠ desea respaldar"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
msgstr "Respaldar el sistema"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr "Respaldar usuarios"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr "Seleccionar manualmente el usuario"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
@@ -10104,7 +10507,7 @@ msgstr ""
"\n"
"Fuentes de respaldo: \n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
@@ -10112,7 +10515,7 @@ msgstr ""
"\n"
"- Archivos del sistema:\n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
@@ -10120,7 +10523,7 @@ msgstr ""
"\n"
"- Archivos de usuario:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
@@ -10128,7 +10531,7 @@ msgstr ""
"\n"
"- Otros archivos:\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
@@ -10137,16 +10540,45 @@ msgstr ""
"\n"
"- Guardar en el disco en la ruta : %s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Dispositivo del ratĂłn: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"- Guardar por FTP en el host : %s\n"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
"\n"
"- Guardar por FTP en el host : %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -10155,7 +10587,7 @@ msgstr ""
"\t\t nombre de usuario: %s\n"
"\t\t en ruta: %s \n"
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
@@ -10163,19 +10595,19 @@ msgstr ""
"\n"
"- Opciones:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr "\tNo incluir archivos del sistema\n"
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr "\tRespaldar usando tar y bzip2\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr "\tRespaldar usando tar y gzip\n"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
@@ -10184,28 +10616,42 @@ msgstr ""
"\n"
"- Servidor (%s) incluye :\n"
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr "\t-Disco rĂ­gido.\n"
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr "\t-Red por FTP.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr "\t-Red por SSH.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t-Red por FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t-Red por FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
"Sin configuraciĂłn, por favor haga clic sobre el Asistente o Avanzado.\n"
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
@@ -10213,7 +10659,7 @@ msgstr ""
"Lista de datos a restaurar:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10221,135 +10667,138 @@ msgstr ""
"Lista de datos corruptos:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
msgid "Please uncheck or remove it on next time."
msgstr "Por favor, desmarque o quĂ­telo la prĂłxima vez."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr "Los archivos de respaldo estĂĄn corruptos"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr " Todos los datos seleccionados han sido "
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr " Recuperados satisfactoriamente en %s"
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
msgid " Restore Configuration "
msgstr " ConfiguraciĂłn de la restauraciĂłn"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr "Se pueden restaurar los otros archivos."
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Lista de usuarios a restaurar (sĂłlo importa la fecha mĂĄs reciente por "
"usuario)"
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
msgstr "Respaldar los archivos del sistema anteriores a:"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
msgid "please choose the date to restore"
msgstr "Por favor, elija la fecha para restaurar"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
msgstr "Usar el disco rĂ­gido para copia de respaldo"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+msgid "Please enter the directory to save:"
+msgstr "Por favor, ingrese el directorio a guardar:"
+
+#: ../../standalone/drakbackup_.c:2416
+msgid "FTP Connection"
+msgstr "ConexiĂłn FTP"
+
+#: ../../standalone/drakbackup_.c:2424
+msgid "Secure Connection"
+msgstr "ConexiĂłn segura"
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
msgstr "Restaurar desde el disco rĂ­gido."
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
"Por favor, ingrese el directorio donde se almacenan las copias de respaldo"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
msgstr "Elija otro soporte desde el cual restaurar"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
msgid "Other Media"
msgstr "Otros soportes"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
msgid "Restore system"
msgstr "Restaurar archivos del sistema"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
msgstr "Restaurar usuarios"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
msgstr "Restaurar otros"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr "seleccione la ruta para restaurar (en vez de /)"
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Realizar respaldo nuevo antes de restaurar (sĂłlo para respaldos "
"incrementales)"
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr "Borrar directorios de los usuarios antes de restaurar."
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr "Restaurar todas las copias de respaldo"
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
msgid "Custom Restore"
msgstr "RestauraciĂłn personalizada"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Ayuda"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "Anterior"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "Guardar"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
msgstr "Realizar copia de respaldo"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
msgstr "Restaurar"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "Siguiente"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -10357,7 +10806,7 @@ msgstr ""
"Por favor, realize la copia de respaldo antes de restaurarla...\n"
" o verifique que la ruta para almacenar es correcta."
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
@@ -10367,31 +10816,35 @@ msgstr ""
" su correo-e de reporte no se enviĂł\n"
" Por favor, configure a sendmail"
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Lista de paquetes a instalar"
+#: ../../standalone/drakbackup_.c:2933
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Se van a instalar los siguientes paquetes"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
+#, fuzzy
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
"Error enviando el archivo por FTP.\n"
" Por favor, corrija su configuraciĂłn de FTP."
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
msgstr "Por favor, seleccione los datos a restaurar..."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
msgstr "Por favor, seleccione el soporte para la copia de respaldo..."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
msgstr "Por favor, elija los datos a respaldar..."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10399,77 +10852,77 @@ msgstr ""
"No se econtrĂł el archivo de configuraciĂłn,\n"
" por favor haga clic sobre Asistente o Avanzado."
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr "En desarrollo ... por favor, espere."
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
msgid "Backup system files"
msgstr "Respaldar archivos del sistema"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
msgid "Backup user files"
msgstr "Respaldar archivos de usuarios"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
msgid "Backup other files"
msgstr "Respaldar otros archivos"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr "Progreso total"
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr "EnvĂ­o de archivos por FTP"
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
msgid "Sending files..."
msgstr "Enviando archivos..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr "Lista de datos a incluir en el CDROM."
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
msgid "Please enter the cd writer speed"
msgstr "Por favor, ingrese la velocidad de la grabadora de CDs"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
"Por favor, ingrese el nombre del dispositivo de su grabadora de CDs (ej: "
"0,1,0)"
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
msgstr "Por favor, verifique si desea hacer que su CD arranque."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
msgid "Backup Now from configuration file"
msgstr "Respaldar Ahora desde archivo de configuraciĂłn"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
msgid "View Backup Configuration."
msgstr "Ver configuraciĂłn del respaldo"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
msgid "Wizard Configuration"
msgstr "ConfiguraciĂłn del Asistente"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
msgid "Advanced Configuration"
msgstr "ConfiguraciĂłn avanzada"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
msgstr "Respaldar Ahora"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -10529,7 +10982,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10543,7 +10996,7 @@ msgstr ""
" que configurar myhostname o mydomain en /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -10620,7 +11073,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -10670,13 +11123,18 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft por DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10706,7 +11164,7 @@ msgstr ""
" along with this program; if not, write to the Free Software\n"
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -10800,7 +11258,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -10818,7 +11276,7 @@ msgstr ""
"antes de enviarlo al servidor.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10840,7 +11298,7 @@ msgstr ""
"Es importante ser cuidadoso y no modificar los archivos de\n"
"datos de respaldo a mano.\n"
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -10920,99 +11378,532 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "FallĂł la instalaciĂłn de %s. OcurriĂł el siguiente error:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Herramientas para la consola"
+
+#: ../../standalone/drakbug_.c:53
+#, fuzzy
+msgid "HardDrake"
+msgstr "en disco rĂ­gido"
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "MandrakeConsulting"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "MandrakeStore"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "RatĂłn"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Impresora remota"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Nombre del recurso compartido"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Printerdrake"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Asistente para la configuraciĂłn de la red"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "AutentificaciĂłn"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "SelecciĂłn de paquetes"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Espere, por favor"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Post-desinstalaciĂłn"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "puerto"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr ""
+"Luego de la instalaciĂłn estarĂĄn disponibles las instantĂĄneas de pantalla en %"
+"s"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "ConfiguraciĂłn de la red (%d adaptadores)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Perfil: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Borrar perfil..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Perfil a borrar:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Nuevo perfil..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Nombre del perfil a crear (el perfil nuevo se crea como copia del actual):"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Nombre de la mĂĄquina: "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Acceso a Internet"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Tipo:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Pasarela:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Interfaz:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Estado:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "Por favor, espere"
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Configurar el acceso a Internet..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "ConfiguraciĂłn de la red local"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Controlador"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Interfaz"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protocolo"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Estado"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Configurar la red de ĂĄrea local..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "Haga clic aquĂ­ para lanzar el asistente ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Asistente..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Aplicar"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Espere, por favor... Aplicando la configuraciĂłn"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Conectado"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "No conectado"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Conectar..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Desconectar..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+"AtenciĂłn, se ha detectado otra conexiĂłn con la Internet, tal vez estĂĄ usando "
+"su red"
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"No tiene configurada ninguna interfaz.\n"
+"Configure la primera haciendo clic sobre 'Configurar'"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "ConfiguraciĂłn LAN"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Adaptador %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Protocolo de arranque"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Iniciado al arranque"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "cliente DHCP"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "activar ahora"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "desactivar ahora"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"TodavĂ­a no se ha configurado esta interfaz.\n"
+"Lance el asistente de configuraciĂłn en la ventana principal"
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"No tiene ninguna conexiĂłn a Internet.\n"
+"Primero debe crear una haciendo clic sobre 'Configurar'"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "ConfiguraciĂłn de la conexiĂłn a Internet"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "ConfiguraciĂłn de la conexiĂłn a Internet"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Tipo de conexiĂłn: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "ParĂĄmetros"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Pasarela"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Tarjeta ethernet"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "Cliente DHCP"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "uso: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Nombre del mĂłdulo"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "TamaĂąo"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "Creado de disquetes que arrancan"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "predeterminado"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Error de DrakFloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "versiĂłn del nĂşcleo"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "General"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Área experta"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "argumentos opcionales para mkinitrd"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Agregar un mĂłdulo"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "forzar"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "si es necesario"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "omitir mĂłdulos scsi"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "omitir mĂłdulos raid"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Quitar un mĂłdulo"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Salida"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Crear el disquete"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "AsegĂşrese que hay un soporte para el dispositivo %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"No hay soporte alguno para el dispositivo %s.\n"
+"Por favor, inserte uno."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "No se puede hacer fork: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"No se puede cerrar mkbootdisk adecuadamente: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr "Buscar tipografĂ­as instaladas"
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr "Desmarcar las tipografĂ­as instaladas"
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr "analizar todas las tipografĂ­as"
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
msgid "no fonts found"
msgstr "no se encontraron tipografĂ­as"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "hecho"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr "no se pueden encontrar tipografĂ­as en las particiones montadas"
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr "Volver a seleccionar tipografĂ­as correctas"
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr "no se pueden encontrar tipografĂ­as.\n"
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr "Buscar tipografĂ­as en la lista de instaladas"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr "Copiar tipografĂ­as"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
msgid "True Type fonts installation"
msgstr "InstalaciĂłn de tipografĂ­as True Type"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr "por favor, espere mientras corre ttmkfdir..."
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr "InstalaciĂłn de True Type realizada"
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr "ConversiĂłn de tipografĂ­as"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr "Construyendo Type1"
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr "Referenciando a Ghostscript"
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr "ConversiĂłn de tipografĂ­as TTF"
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr "ConversiĂłn de tipografĂ­as PFM"
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr "Suprimir archivos temporales"
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr "Reiniciar XFS"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr "Suprimir archivos de tipografĂ­as"
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
msgid "xfs restart"
msgstr "Reiniciar XFS"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -11027,108 +11918,108 @@ msgstr ""
"-Puede instalar las tipografĂ­as usando la manera normal. En casos raros,\n"
"puede ser que tipografĂ­as \"falsas\" congelen a su servidor X."
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
msgid "Fonts Importation"
msgstr "ImportaciĂłn de tipografĂ­as"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr "Obtener tipografĂ­as de Windows"
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr "Desinstalar tipografĂ­as"
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Opciones avanzadas"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
msgstr "Lista de tipografĂ­as"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
msgid "Choose the applications that will support the fonts :"
msgstr "Elija las aplicaciones que soportarĂĄn las tipografĂ­as:"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
msgstr "Impresoras genĂŠricas"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
"Seleccione el archivo o directorio de tipografĂ­as y haga clic sobre 'Agregar'"
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
msgstr "Instalar lista"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr "haga clic aquĂ­ si estĂĄ seguro."
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr "aquĂ­ si no lo estĂĄ."
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr "Deseleccionar todas."
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
msgid "Selected All"
msgstr "Seleccionar todas."
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
msgstr "Quitar lista"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr "Pruebas iniciales"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
msgstr "Copiar tipografĂ­as en su sistema"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr "Instalar y convertir tipografĂ­as"
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
msgid "Post Install"
msgstr "Post-instalaciĂłn"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
msgstr "Quitar tipografĂ­as de su sistema"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
msgid "Post Uninstall"
msgstr "Post-desinstalaciĂłn"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Compartir la conexiĂłn a Internet"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Ahora, la conexiĂłn compartida a Internet estĂĄ activada ahora"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -11140,31 +12031,31 @@ msgstr ""
"\n"
"ÂżQuĂŠ desea hacer?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "desactivar"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "rechazar"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "reconfigurar"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Desactivando los servidores..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Ahora, la conexiĂłn compartida a Internet estĂĄ inactiva."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Ahora, la conexiĂłn compartida a Internet estĂĄ desactivada"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -11176,19 +12067,19 @@ msgstr ""
"\n"
"ÂżQuĂŠ desea hacer?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "activar"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Activando los servidores..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Ahora, la conexiĂłn compartida a Internet estĂĄ activa."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -11204,21 +12095,21 @@ msgstr ""
"Aviso: necesita un adaptador de red dedicado para configurar una red de ĂĄrea "
"local (LAN)."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interfaz %s (usando el mĂłdulo %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Interfaz %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "ÂĄNo hay ningĂşn adaptador de red en su sistema!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -11226,11 +12117,11 @@ msgstr ""
"No se ha detectado ningĂşn adaptador de red en su sistema. Por favor, ejecute "
"la herramienta de configuraciĂłn del hardware."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Interfaz de red"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11245,7 +12136,7 @@ msgstr ""
"\n"
"Se va a configurar su red de ĂĄrea local con ese adaptador."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -11253,11 +12144,11 @@ msgstr ""
"Por favor, elija quĂŠ adaptador de red estarĂĄ conectado a su red de ĂĄrea "
"local."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr "Interfaz de red ya configurada"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11272,15 +12163,15 @@ msgstr ""
"\n"
"Puede hacerlo manualmente pero necesita saber lo que estĂĄ haciendo."
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr "Volver a configurar automĂĄticamente"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr "Mostrar la configuraciĂłn corriente de la interfaz"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11297,7 +12188,7 @@ msgstr ""
"Atributo IP: %s\n"
"Controlador: %s"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
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 C-Class Network that "
@@ -11317,34 +12208,34 @@ msgstr ""
"un servidor DHCP por Ud.\n"
"\n"
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr "Red Local Clase C"
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr "IP de (este) servidor DHCP"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr "Volver a configurar la interfaz y el servidor DHCP"
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "La red local no finalizĂł con `.0', saliendo."
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"ÂĄSe encontrĂł un conflicto potencial de direcciones LAN en la configuraciĂłn "
"de %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "ÂĄSe detectĂł la configuraciĂłn del cortafuegos!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -11352,21 +12243,21 @@ msgstr ""
"ÂĄAtenciĂłn! Se ha detectado la configuraciĂłn del cortafuegos existente. Puede "
"que necesite algĂşn ajuste manual tras la instalaciĂłn."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Configurando..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Configurando los scripts, instalando el software, iniciando los servidores..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Problemas al instalar el paquete %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11376,23 +12267,23 @@ msgstr ""
"Ahora puede compartir su conexiĂłn a Internet con otros ordenadores de su red "
"de ĂĄrea local, usando la configuraciĂłn automĂĄtica de la red (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "La configuraciĂłn ya se ha hecho, pero ahora estĂĄ desactivada."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "La configuraciĂłn ya se ha hecho, y ahora estĂĄ activada."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "No se ha configurado la conexiĂłn compartida a Internet."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "ConfiguraciĂłn de la conexiĂłn compartida a Internet"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11407,215 +12298,6 @@ msgstr ""
"\n"
"Haga click sobre Configurar para lanzar el asistente de configuraciĂłn."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "ConfiguraciĂłn de la red (%d adaptadores)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Perfil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Borrar perfil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Perfil a borrar:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Nuevo perfil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Nombre del perfil a crear (el perfil nuevo se crea como copia del actual):"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Nombre de la mĂĄquina: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Acceso a Internet"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tipo:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Pasarela:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Interfaz:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Estado:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Por favor, espere"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Configurar el acceso a Internet..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "ConfiguraciĂłn de la red local"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Controlador"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interfaz"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protocolo"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Estado"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Configurar la red de ĂĄrea local..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Haga clic aquĂ­ para lanzar el asistente ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Asistente..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Aplicar"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Espere, por favor... Aplicando la configuraciĂłn"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Conectado"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "No conectado"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Conectar..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Desconectar..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"AtenciĂłn, se ha detectado otra conexiĂłn con la Internet, tal vez estĂĄ usando "
-"su red"
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"No tiene configurada ninguna interfaz.\n"
-"Configure la primera haciendo clic sobre 'Configurar'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "ConfiguraciĂłn LAN"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adaptador %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Protocolo de arranque"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Iniciado al arranque"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "cliente DHCP"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "activar ahora"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "desactivar ahora"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"TodavĂ­a no se ha configurado esta interfaz.\n"
-"Lance el asistente de configuraciĂłn en la ventana principal"
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"No tiene ninguna conexiĂłn a Internet.\n"
-"Primero debe crear una haciendo clic sobre 'Configurar'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "ConfiguraciĂłn de la conexiĂłn a Internet"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "ConfiguraciĂłn de la conexiĂłn a Internet"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Tipo de conexiĂłn: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "ParĂĄmetros"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Pasarela"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Tarjeta ethernet"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "Cliente DHCP"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Definiendo el nivel de seguridad"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Centro de control"
@@ -11624,63 +12306,85 @@ msgstr "Centro de control"
msgid "Choose the tool you want to use"
msgstr "Elija la herramienta que desea usar"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\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 ""
+
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
msgstr "CanadĂĄ (cable)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+#, fuzzy
+msgid "USA (broadcast)"
msgstr "EEUU (bcast)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr "EEUU (cable)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr "EEUU (cable-hrc)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "China (broadcast)"
msgstr "China (bcast)"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "Japan (broadcast)"
msgstr "JapĂłn (bcast)"
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr "JapĂłn (cable)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
msgstr "Europa del este"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Francia"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
msgstr "Irlanda"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
msgstr "Europa del oeste"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
msgstr "Australia"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr "Nueva Zelanda"
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr "SudĂĄfrica"
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr "Argentina"
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
@@ -11688,27 +12392,44 @@ msgstr ""
"Por favor,\n"
"teclee su norma de tv y paĂ­s"
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr "Norma de TV:"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr "Área:"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr "Buscando canales de TV, en progreso ..."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr "Buscando canales de TV"
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Hubo un error al instalar los paquetes:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr "ÂĄNo se detectĂł tarjeta de TV!"
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -11719,7 +12440,8 @@ msgid ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-"No se detectĂł tarjeta de TV en su mĂĄquina. Por favor, verifique que tiene conectada correctamente una tarjeta de vĂ­deo/TV soportada por Linux.\n"
+"No se detectĂł tarjeta de TV en su mĂĄquina. Por favor, verifique que tiene "
+"conectada correctamente una tarjeta de vĂ­deo/TV soportada por Linux.\n"
"\n"
"\n"
"Puede visitar nuestra base de datos de hardware en:\n"
@@ -11760,7 +12482,7 @@ msgstr "ÂĄÂĄÂĄ No se puede iniciar la actualizaciĂłn en vivo !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr "Se ha realizado el cambio, pero no se harĂĄ efectivo hasta que salga"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -11794,7 +12516,7 @@ msgstr "<control>G"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
-msgstr "/Archivo/Guardar _como"
+msgstr "/Archivo/Guardar _Como"
#: ../../standalone/logdrake_.c:106
msgid "/File/-"
@@ -11808,13 +12530,9 @@ msgstr "/_Opciones"
msgid "/Options/Test"
msgstr "/Opciones/Prueba"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Ayuda"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
-msgstr "/Ayuda/_Acerca de..."
+msgstr "/Ayuda/_Acerca..."
#: ../../standalone/logdrake_.c:118
msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
@@ -11872,7 +12590,7 @@ msgstr "Calendario"
msgid "Content of the file"
msgstr "Contenido del archivo"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr "Alerta por correo/SMS"
@@ -11881,11 +12599,11 @@ msgstr "Alerta por correo/SMS"
msgid "please wait, parsing file: %s"
msgstr "por favor, espere, analizando el archivo: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
msgstr "ConfiguraciĂłn de alerta por correo/SMS"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
@@ -11895,65 +12613,97 @@ msgstr ""
"\n"
"AquĂ­ podrĂĄ configurar su sistema de alerta.\n"
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Nombre de dominio"
#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
+#, fuzzy
+msgid "Ftp Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Servidor de correo Postfix, servidor de noticias Inn"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "Servidor NIS"
#: ../../standalone/logdrake_.c:422
+#, fuzzy
+msgid "SSH Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Servicios"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Servidor de impresiĂłn"
+
+#: ../../standalone/logdrake_.c:431
msgid "service setting"
msgstr "configuraciĂłn de servicios"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
"RecibirĂĄ una alerta si se detiene la ejecuciĂłn de uno de los servicios "
"seleccionados"
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
msgstr "configuraciĂłn de la carga"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr "RecibirĂĄ una alerta si la carga es mayor que este valor"
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
msgstr "configuraciĂłn de alerta"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr "Configura la forma en que el sistema le alertarĂĄ"
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Guardar como..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Seleccione el tipo de su ratĂłn, por favor."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "no se encontrĂł ningĂşn usb_serie\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "ÂżEmular el tercer botĂłn?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Leyendo los datos de la impresora ..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "Detectando dispositivos..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -12000,7 +12750,20 @@ msgid ""
"applications menu."
msgstr ""
"Su escĂĄner %s ha sido configurado.\n"
-"Ahora puede escanear documentos usando \"XSane\" en el menĂş Multimedios/GrĂĄficos."
+"Ahora puede escanear documentos usando \"XSane\" en el menĂş Multimedios/"
+"GrĂĄficos."
+
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
@@ -12410,10 +13173,6 @@ msgid "Multimedia - Sound"
msgstr "Multimedios - Sonido"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Utilitarios"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "DocumentaciĂłn"
@@ -12518,10 +13277,6 @@ msgstr ""
"tin...) y para navegar por la Web"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Archivado, emuladores, monitoreo"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Finanzas personales"
@@ -12568,3 +13323,268 @@ msgstr "Multimedios - GrabaciĂłn de CD"
#: ../../share/compssUsers:999
msgid "Scientific Workstation"
msgstr "EstaciĂłn de trabajo CientĂ­fica"
+
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "fsck fallĂł con cĂłdigo de salida %d o seĂąal %d"
+
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "IdentificaciĂłn de la tarjeta grĂĄfica: %s\n"
+
+#~ msgid "Choose options for server"
+#~ msgstr "Elija las opciones para el servidor"
+
+#~ msgid "Monitor not configured"
+#~ msgstr "El monitor no estĂĄ configurado"
+
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "La tarjeta grĂĄfica todavĂ­a no estĂĄ configurada"
+
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "AĂşn no ha elegido las resoluciones"
+
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "intente cambiar algunos parĂĄmetros"
+
+#~ msgid "An error occurred:"
+#~ msgstr "OcurriĂł un error:"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Saliendo en %d segundos"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "ÂżEs ĂŠsta la configuraciĂłn correcta?"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "OcurriĂł un error, intente cambiar algunos parĂĄmetros"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "Servidor XFree86: %s"
+
+#~ msgid "Show all"
+#~ msgstr "Mostrar todo"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Preparando la configuraciĂłn de X-Window"
+
+#~ msgid "What do you want to do?"
+#~ msgstr "ÂżQuĂŠ desea hacer?"
+
+#~ msgid "Change Monitor"
+#~ msgstr "Cambiar el monitor"
+
+#~ msgid "Change Graphics card"
+#~ msgstr "Cambiar la tarjeta grĂĄfica"
+
+#~ msgid "Change Server options"
+#~ msgstr "Cambiar las opciones del servidor X"
+
+#~ msgid "Change Resolution"
+#~ msgstr "Cambiar la resoluciĂłn"
+
+#~ msgid "Show information"
+#~ msgstr "Mostrar informaciĂłn"
+
+#~ msgid "Test again"
+#~ msgstr "Probar de nuevo"
+
+#~ msgid ""
+#~ "Your HP multi-function device was configured automatically to be able to "
+#~ "scan. Now you can scan from the command line with \"ptal-hp %s scan ..."
+#~ "\". Scanning via a graphical interface or from the GIMP is not supported "
+#~ "yet for your device. More information you will find in the \"/usr/share/"
+#~ "doc/hpoj-0.8/ptal-hp-scan.html\" file on your system. If you have an HP "
+#~ "LaserJet 1100 or 1200 you can only scan when you have the scanner option "
+#~ "installed.\n"
+#~ "\n"
+#~ "Do not use \"scannerdrake\" for this device!"
+#~ msgstr ""
+#~ "Su dispositivo multifunciĂłn HP se configurĂł automĂĄticamente para ser "
+#~ "capaz de escanear. Ahora puede escanear desde la lĂ­nea comandos con "
+#~ "\"ptal-hp %s scan ...\". No se soporta aĂşn el escaneo por medio de un "
+#~ "interfaz grĂĄfico e desde el GIMP para su dispositivo. EncontrarĂĄ mĂĄs "
+#~ "informaciĂłn en el archivo de su sistema \"/usr/share/doc/hpoj-0.8/ptal-hp-"
+#~ "scan.html\". Si tiene una HP LaserJet 1100 o 1200 puede escanear cuando "
+#~ "tenga la opciĂłn del escĂĄner instalada.\n"
+#~ "No use \"scannerdrake\" para este dispositivo."
+
+#~ msgid "Use Hard Drive with daemon"
+#~ msgstr "Usar el disco rĂ­gido con servidor"
+
+#~ msgid "Use FTP with daemon"
+#~ msgstr "Usar FTP con servidor"
+
+#~ msgid "Package List to Install"
+#~ msgstr "Lista de paquetes a instalar"
+
+#~ msgid "proftpd"
+#~ msgstr "proftpd"
+
+#~ msgid "sshd"
+#~ msgstr "sshd"
+
+#~ msgid "webmin"
+#~ msgstr "webmin"
+
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
+
+#~ msgid "Setting security level"
+#~ msgstr "Definiendo el nivel de seguridad"
+
+#~ msgid "Graphics card"
+#~ msgstr "Tarjeta grĂĄfica"
+
+#~ msgid "Select a graphics card"
+#~ msgstr "Seleccione una tarjeta grĂĄfica"
+
+#~ msgid "Choose a X driver"
+#~ msgstr "Elija un controlador X"
+
+#~ msgid "X driver"
+#~ msgstr "Controlador X"
+
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr ""
+#~ "Advertencia: probar con esta tarjeta de vĂ­deo puede colgar su ordenador"
+
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "VGA estĂĄndar, 640x480 a 60 Hz"
+
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 a 56 Hz"
+
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "Compatible 8514, 1024x768 a 87 Hz entrelazado (sin 800x600)"
+
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 a 87 Hz entrelazado, 800x600 a 56 Hz"
+
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Super VGA extendido, 800x600 a 60 Hz, 640x480 a 72 Hz"
+
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "SVGA no-entrelazado, 1024x768 a 60 Hz, 800x600 a 72 Hz"
+
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "SVGA alta-frecuencia, 1024x768 a 70 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Monitor multi-frecuencia que soporta 1280x1024 a 60 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Monitor multi-frecuencia que soporta 1280x1024 a 74 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Monitor multi-frecuencia que soporta 1280x1024 a 76 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Monitor que soporta 1600x1200 a 70 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Monitor que soporta 1600x1200 a 76 Hz"
+
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr ""
+#~ "El tamaĂąo total para los grupos que seleccionĂł es de aproximadamente %d "
+#~ "MB.\n"
+
+#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
+#~ msgstr ""
+#~ "Si desea instalar un tamaĂąo total inferior,\n"
+#~ "elija el porcentaje de paquetes que desea instalar.\n"
+#~ "\n"
+#~ "Un porcentaje bajo instalarĂĄ sĂłlo los paquetes mĂĄs importantes;\n"
+#~ "un porcentaje de 100%% instalarĂĄ todos los paquetes seleccionados."
+
+#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
+#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
+#~ msgstr ""
+#~ "Tiene espacio en disco para sĂłlo %d%% de esos paquetes.\n"
+#~ "\n"
+#~ "Si desea instalar menos de esto,\n"
+#~ "elija el porcentaje de paquetes que desea instalar.\n"
+#~ "Un porcentaje bajo instalarĂĄ sĂłlo los paquetes mĂĄs importantes;\n"
+#~ "un porcentaje de %d%% instalarĂĄ todos los que sea posible."
+
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "PodrĂĄ elegirlos mĂĄs detalladamente en la etapa siguiente"
+
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Porcentaje de paquetes a instalar"
+
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Elegir el nivel de seguridad"
+
+#~ msgid "hide expert mode"
+#~ msgstr "ocultar modo experto"
+
+#~ msgid "show expert mode"
+#~ msgstr "mostrar modo experto"
+
+#~ msgid ""
+#~ "If '%s' is a removable peripheral,\n"
+#~ " verify that a media is inserted."
+#~ msgstr ""
+#~ "Si '%s' es un preifĂŠrico removible,\n"
+#~ " verifique que tiene un soporte insertado."
+
+#~ msgid ""
+#~ "WARNING! This will format '%s'.\n"
+#~ "All data will be erased on the peripheral '%s'.\n"
+#~ "If you want to continue, press OK. "
+#~ msgstr ""
+#~ "ÂĄADVERTENCIA! Esto formaterĂĄ a '%s'.\n"
+#~ "Se borrarĂĄn todos los datos en el perifĂŠrico '%s'.\n"
+#~ "Si desea continuar, presione Aceptar. "
+
+#~ msgid "unknown"
+#~ msgstr "desconocido"
+
+#~ msgid "Select a module or write his name:"
+#~ msgstr "Seleccione un mĂłdulo o escriba su nombre:"
+
+#~ msgid "Category"
+#~ msgstr "CategorĂ­a"
+
+#~ msgid "preload module"
+#~ msgstr "pre-cargar mĂłdulo"
+
+#~ msgid "click on a category"
+#~ msgstr "haga clic sobre una categorĂ­a"
+
+#~ msgid "Remove"
+#~ msgstr "Remover"
+
+#~ msgid "Tool for boot disk creation"
+#~ msgstr "Herramienta para crear disquetes que arrancan"
+
+#~ msgid "Show expert mode"
+#~ msgstr "Mostrar modo experto"
+
+#~ msgid "modules"
+#~ msgstr "mĂłdulos"
+
+#~ msgid "Boot disk maker. Still in early stage.\n"
+#~ msgstr ""
+#~ "Generador de disquetes de arranque. TodavĂ­a en etapa experimental.\n"
+
+#~ msgid "experts only"
+#~ msgstr "sĂłlo expertos"
+
+#~ msgid "/File/_Preferences"
+#~ msgstr "/Archivo/_Preferencias"
diff --git a/perl-install/share/po/et.po b/perl-install/share/po/et.po
index d088213a6..04456509a 100644
--- a/perl-install/share/po/et.po
+++ b/perl-install/share/po/et.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
"PO-Revision-Date: 1999-10-28 19:54+0200\n"
"Last-Translator: Riho Kurg <rx@linux.ee>\n"
"Language-Team: Estonian <et@li.org>\n"
@@ -13,25 +13,56 @@ msgstr ""
"Content-Type: text/plain; charset=iso-8859-15\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Seadista kőik monitorid sőltumatult"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Kasuta Xinerama laiendusi"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Seadista ainult kaart \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB vői rohkem"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Valige X server"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X server"
#
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Mitme monitori seadistamine"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -39,43 +70,44 @@ msgstr ""
"Süsteemis on vőimalik kasutada mitut monitori.\n"
"Mida Te soovite teha?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Graafikakaart"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Valige graafikamälu suurus"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Valige graafikakaart"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "XFree sätted"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Valige X server"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Millise XFree konfiguratsiooni soovite kasutada?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X server"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Seadista kőik monitorid sőltumatult"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Valige X server"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Kasuta Xinerama laiendusi"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X server"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Seadista ainult kaart \"%s\" (%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree86 %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Millise XFree konfiguratsiooni soovite kasutada?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s koos 3D graafikakiirendi toega"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -84,32 +116,17 @@ msgstr ""
"Teie videokaardi 3D graafikakiirendit saab kasutada vaid koos XFree %s-ga.\n"
"XFree %s toetab Teie videokaarti ja vőib omada paremat 2D tuge."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Teie kaardi 3D graafikakiirendit toetab XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s koos 3D graafikakiirendi toega"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Teie videokaardi 3D graafikakiirendit saab kasutada koos XFree %s-ga.\n"
-"SEE ON AGA EKSPERIMENTAALNE JA VŐIB OLLA EBASTABIILNE."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s koos EKSPERIMENTAALSE 3D kiirendi toega"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -120,31 +137,58 @@ msgstr ""
"SEE ON AGA EKSPERIMENTAALNE JA VŐIB OLLA EBASTABIILNE.\n"
"Teie kaarti toetab ka XFree %s, millel on ehk parem 2D tugi."
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
+"Teie videokaardi 3D graafikakiirendit saab kasutada koos XFree %s-ga.\n"
+"SEE ON AGA EKSPERIMENTAALNE JA VŐIB OLLA EBASTABIILNE."
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree sätted"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Valige graafikamälu suurus"
+#: ../../Xconfig/card.pm_.c:445
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Valige X server"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Säilita muutused?\n"
+"Olemasolevad sätted:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Valige monitor"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Isetehtud"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Tavaline"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Tagasi"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -164,514 +208,325 @@ msgstr ""
"suurem kui Teie monitor vőimaldab. Vastasel juhul vőib Teie monitor hävida.\n"
"Kui kahtlete, valige pigem väiksem väärtus."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Realaotussagedus"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Ekraaniuuendussagedus"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor ei ole seadistatud"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Graafikakaart ei ole veel seatud"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Kuvatihedus ei ole veel seatud"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Kas soovite seadistusi proovida?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Hoiatus: testimine vőib Teie arvuti peatada"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Proovime seadistusi"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 värvi (8 bitti)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"proovige mőnd parameetrit muuta"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 tuhat värvi (15 bitti)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Tekkis mingi viga:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 tuhat värvi (16 bitti)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Jätkub %d sekundi pärast"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 miljonit värvi (24 bitti)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Kas see on őige?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 miljardit värvi (32 bitti)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Tekkis mingi viga, proovige mőnd parameetrit muuta"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Kuvatihedused"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Kuvatihedus"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Valige kuvatihedus ja värvisügavus"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Graafikakaart: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 server: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Veel.."
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Katkesta"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "OK"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Ekspertresiim"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Näita kőike"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Kas soovite seadistusi proovida?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Kuvatihedused"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Proovime seadistusi"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Klaviatuuriasetus: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Hiire tüüp: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Hiire port: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Realaotussagedus: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Ekraanisagedus: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Graafikakaart: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Graafikakaart: %s\n"
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Videomälu: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Värvisügavus: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Kuvatihedus: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 server: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 juhtprogramm: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Valmistume X-i seadistamiseks"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Mida Te soovite teha?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Muuda monitori"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Muuda graafikakaardi"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Muuda serveri parameetreid"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Muuda kuvatihedust"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Näita lisainfot"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Proovi veel"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Välju"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Säilita muutused?\n"
-"Olemasolevad sätted:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X stardib nüüd"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Teie arvutis on vőimalik käivitada X juba alglaadimisel.\n"
"Kas soovite nii teha?"
-# c-format
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Muudatuste aktiveerimiseks käivitage %s uuesti"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Palun väljuge ja vajutage siis Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 värvi (8 bitti)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 tuhat värvi (15 bitti)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 tuhat värvi (16 bitti)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 miljonit värvi (24 bitti)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 miljardit värvi (32 bitti)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-#, fuzzy
-msgid "16 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-#, fuzzy
-msgid "32 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-#, fuzzy
-msgid "64 MB or more"
-msgstr "16 MB vői rohkem"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "VGA, 640x400 sagedusel 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "SVGA, 800x600 sagedusel 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514-ühilduv, 1024x768, 87 Hz vahelejätuga "
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "SVGA, 1024x768, 87 Hz vahelejätuga, 800x600, 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "SVGA, 800x600 sagedusel 60 Hz, 640x480 sagedusel 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "SVGA, 1024x768 sagedusel 60 Hz, 800x600 sagedusel 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Kőrgsageduslik SVGA, 1024x768, 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Mitmesageduslik, 1280x1024 sagedusel 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Mitmesageduslik, 1280x1024 sagedusel 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Mitmesageduslik, 1280x1024 sagedusel 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Kuvatihedus saab olla 1600x1200 sagedusel 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Kuvatihedus saab olla 1600x1200 sagedusel 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Partitsiooni algusesse"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Ketta algusesse (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "SILO installimine"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Kuhu soovite alglaaduri installida"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "LILO/grub installimine"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO tekstiresiimis"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO graafikaresiimis"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Laadimine DOS/Windowsist (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Alglaaduri peasätted"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Eelistatav alglaadur"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Alglaaduri peasätted"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Alglaadimisseade"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ei tööta vanema BIOSi korral)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Kompaktne"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "kompaktne"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Graafikamood"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Ooteaeg alglaadimisel"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Salasőna"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Salasőna (uuesti)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Piira käsurea suvandeid"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "piiratud"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Puhasta /tmp igal laadimisel"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Kui vaja, täpsusta RAM suurust (leitud %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Vőimalda mitut profiili"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Anna mälu suurus megabaitides"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Säte ``Piira käsurea suvandeid'' on ilma salasőnata mittekasutatav"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Palun proovige veel"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Salasőnad ei klapi"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Initsialiseerimisteade"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Open Firmware viivitus"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Ajapiirang kerneli laadimisel"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "CD-lt laadimine lubatud?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "OF laadimine lubatud?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Vaikimisi OS?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -680,84 +535,84 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Praegu on kasutusel sellised kirjed.\n"
"Te vőite neid lisada ning olemasolevaid muuta."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Lisa"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Tehtud"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
#, fuzzy
msgid "Modify"
msgstr "Modifitseeri RAIDi"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Millisele sektorile soovite seda tősta?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Muu OS (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Muu OS (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Muu OS (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Laadefail"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Juur"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Lisada"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Read-write"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabel"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Ebaturvaline"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Tähis"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Vaikimisi"
@@ -790,53 +645,75 @@ msgstr "Teil peab olema saaleala"
msgid "This label is already used"
msgstr "Selline tähis on juba kasutusel"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Leiti %s %s liidest"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "On Teil veel kaarte?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Kas Teil on ikka mőni %s liides?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Ei"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Jah"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Info riistvara kohta"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Installime juhtprogrammil %s kaardile %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(moodul %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Nüüd vőite moodulile %s parameetreid määrata.\n"
+"Parameetrid on vormingus \"nimi=väärtus nimi2=väärtus2 ...\".\n"
+"Näiteks: \"io=0x300 irq=7\""
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Mooduli parameetrid:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Millist %s juhtprogrammi peaksime proovima?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -852,37 +729,15 @@ msgstr ""
"määratleda vői lasta juhtprogrammil ise Teie arvutit kompida? Vőib juhtuda,\n"
"et see viib arvuti segadusse kuid ei tohiks mingit jäävat kahju teha."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Proovida niisama"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Määrake parameetrid"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Nüüd vőite moodulile %s parameetreid määrata.\n"
-"Parameetrid on vormingus \"nimi=väärtus nimi2=väärtus2 ...\".\n"
-"Näiteks: \"io=0x300 irq=7\""
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Mooduli parameetrid:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -891,49 +746,54 @@ msgstr ""
"Moodule %s laadimine ei őnnestunud.\n"
"Kas soovite proovida parameetreid muuta?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(juba lisatud %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Salasőna on liiga lihtne"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Palun andke kasutajatunnus"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Kasutajatunnus tohib sisaldada ainult väikesi tähti, numbreid, - ja _"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "See kasutajatunnus on juba lisatud"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "See kasutajatunnus on juba lisatud"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Lisa kasutaja"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -942,32 +802,32 @@ msgstr ""
"Sisesta kasutaja\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Kasutaja őige"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Pärisnimi"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Kasutajatunnus"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Käsurida"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Ikoon"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Vaikimisi sisenemine"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -976,121 +836,101 @@ msgstr ""
"Teie arvutit saab seada vaikimisi kasutaja sisenemisele.\n"
"Kui Te seda ei soovi, valige <Katkesta>"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Valige uus vaikimisi kasutaja :"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Valige palun käivitatav aknahaldur:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr "Palun valige kasutatav keel"
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr "Teisi keeli saab valida pärast installimist"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Kőik"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr "Tavakasutaja"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Isetehtud"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr "CUPS käivitatakse"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Valige paketid mida soovite installida"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Katkesta"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Tere tulemast, kräkkerid"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Vähene"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Tavahiir"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Kőrge"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Kőrge"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoiline"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1100,14 +940,14 @@ msgstr ""
"haavatavaks: ligipääsupiirangute puudumise tőttu ei peaks arvutit ühendama\n"
"ei teiste arvutitega ega ka mitte Internetti."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
"Salasőnad on nüüd kasutusel, kuid vőrku ühendamine ei ole siiski soovitav."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1115,57 +955,58 @@ msgid ""
msgstr ""
"See on sobilik turvatase arvutile, mis ühendatakse Internetti kui klient."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr "Sellel turvatasemel vőib süsteemi kasutada Internetis ka serverina."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Süsteem on täielikult suletud. Vőrgust kasutamine on vőimalik ainult\n"
"spetsiaalselt loodud juurdepääsuteid kasutades."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Valige turvatase"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
#, fuzzy
msgid "Security level"
msgstr "Turvataseme seadmine"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Valige X server"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1190,52 +1031,52 @@ 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_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Tere tulemast! Laadimisel aitab Teid GRUB!"
#. -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_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Kasutage valiku tegemiseks %c ja %c klahve"
#. -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_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Enter laeb Teie valiku, 'e' laseb muuta"
#. -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_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "suvandeid enne laadimist ja 'c' veel enam."
#. -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_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Valik laetakse automaatselt %d sekundi jooksul"
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "/boot on liiga täis"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Töölaud"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Startmenüü"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Kuhu soovite alglaaduri installida"
@@ -1248,15 +1089,19 @@ msgstr "selle kohta (veel) abi ei saa.\n"
msgid "Boot Style Configuration"
msgstr "Alglaaduri stiil"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Fail"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Fail/_Välju"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1293,7 +1138,7 @@ msgstr "Alglaadimismood"
#: ../../bootlook.pm_.c:104
#, fuzzy, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Internetiühenduse jagamise Abimees!\n"
@@ -1302,8 +1147,8 @@ msgstr ""
"\n"
"Valige Abimehe käivitamiseks ``OK''"
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Seadista"
@@ -1313,7 +1158,7 @@ msgid "System mode"
msgstr "Töömood"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Käivita X-Windows alglaadimisel"
#: ../../bootlook.pm_.c:148
@@ -1325,14 +1170,16 @@ msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
"Jah, soovin automaatset sisselogimist sellele (kasutajale, keskkonnale)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "OK"
@@ -1381,7 +1228,7 @@ msgstr "Partitsioone ei saa enam lisada"
msgid "Screenshots will be available after install in %s"
msgstr "Teisi keeli saab valida pärast installimist"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Prantsusmaa"
@@ -1389,7 +1236,7 @@ msgstr "Prantsusmaa"
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Belgia"
@@ -1417,11 +1264,12 @@ msgstr "Norra"
msgid "Sweden"
msgstr "Vaata"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr "Itaalia"
@@ -1431,7 +1279,7 @@ msgstr "Itaalia"
msgid "Austria"
msgstr "seerial"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1439,8 +1287,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr "Palun tehke oma andmetest enne tagavarakoopia"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Lugege hoolega!"
@@ -1453,11 +1301,12 @@ msgstr ""
"Kui soovite kasutada aboot-i, jätke palun ketta algusesse vähemalt 2048 \n"
"sektorit vaba ruumi"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Viga"
@@ -1465,11 +1314,11 @@ msgstr "Viga"
msgid "Wizard"
msgstr "Abimees"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Valige tegevus"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1481,149 +1330,154 @@ msgstr ""
"Soovitame teil esmalt selle suurust muuta\n"
"(klikkige ja siis valige \"Muuda\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Palun valige partitsioon"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Üksikasjad"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
#, fuzzy
msgid "Journalised FS"
msgstr "ühendamine ebaőnnestus"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Saaleala"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Tühi"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Muu"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Failisüsteemi tüübid: "
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Tekita"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tüüp"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Kasutage pigem ``%s''"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Kustuta"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Kasutage enne \"Ühenda lahti\""
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "Partitsiooni %s tüübi muutmisel hävivad kőik seal olnud andmed"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose a partition"
msgstr "Valige tegevus"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose another partition"
msgstr "Looge uus partitsioon"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
#, fuzzy
msgid "Exit"
msgstr "ext2"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Tavakasutaja > Ekspert"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Ekspert > Tavakasutaja"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Tagasi"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Jätkate ikkagi?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Lőpeta ilma salvestamata"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Lőpetate ilma partitsioonitabelit salvestamata?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Kas soovite seadistusi proovida?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Paiguta ise"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Kustuta kőik"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Veel.."
+
+#: ../../diskdrake/interactive.pm_.c:263
#, fuzzy
msgid "Hard drive information"
msgstr "Meili informatsioon"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Kőik primaarsed partitsioonid on kasutusel"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Partitsioone ei saa enam lisada"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1631,35 +1485,35 @@ msgstr ""
"Et saada rohkem partitsioone, kustutage palun üks, et luua laiendatud "
"partitsioon"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr "Kirjuta partitsioonitabel"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr "Päästa partitsioonitabel"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Päästa partitsioonitabel"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr "Päästa partitsioonitabel"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Removable media automounting"
msgstr "CD/flopi/.. autoühendamine"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Valige fail"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1667,11 +1521,11 @@ msgstr ""
"Tabeli tagavarakoopia ei ole sama suurusega\n"
"Soovite jätkata?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Hoiatus"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1679,124 +1533,131 @@ msgstr ""
"Pange tühi flopi masinasse\n"
"Kőik andmed sellel hävivad"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Proovin päästa partitsioonitabelit"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
#, fuzzy
msgid "Detailed information"
msgstr "Meili informatsioon"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Ühenduspunkt"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Eelistused"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Muuda suurust"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Liiguta"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Vorminda"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Ühenda"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Lisa RAIDi"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Lisa LVMi"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Ühenda lahti"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Eemalda RAIDist"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Eemalda LVMist"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Modifitseeri RAIDi"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Kasuta loopback-ina"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Looge uus partitsioon"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Algsektor: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Suurus (MB): "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Failisüsteemi tüüp: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Ühenduspunkt:"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Eelistus: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+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/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Vormindan loopback faili %s"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Muuda partitsiooni tüüp"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Mis failisüsteemi soovite kasutada?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Kuhu soovite loopback-faili %s ühendada?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Kuhu soovite seadme %s ühendada?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1804,128 +1665,133 @@ msgstr ""
"Seda ühenduspunkti ei saa eemaldada, kuna partitsioon on kasutusel.\n"
"loopback-ina. Eemaldage enne loopback"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Arvutan FAT failisüsteemi piire"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Muudan suurust"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "See partitsioon ei ole muudetav"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Selle partitsiooni andmetest vőiks olla tagavarakoopia"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Partitsiooni %s suuruse muutmisel hävivad sellel kőik andmed"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Valige uus suurus"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
#, fuzzy
msgid "New size in MB: "
msgstr "Suurus (MB): "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Millisele kettale soovite seda ümber paigutada?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Millisele sektorile soovite seda ümber paigutada?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Paigutan ümber"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Liigutan partitsiooni..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Vali olemasolev RAID, millele lisada"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "uus"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Vali olemasolev LVM, millele lisada"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "LVM nimi?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Seda partitsiooni ei saa loopback-ina kasutada"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "loopback faili nimi:"
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr "Pärisnimi"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "See fail on juba loopback-ina kasutusel, valige mőni muu"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Fail on juba olemas. Kas kasutan seda?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
#, fuzzy
msgid "Mount options"
msgstr "Mooduli parameetrid:"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "seade"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "tase"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "ühiku suurus"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Vaadake ette: see vőib olla ohtlik."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Mis tüüpi partitsioonid teete?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Valige paketid mida soovite installida"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1937,7 +1803,7 @@ msgstr ""
"Kui kasutate LILO-t, ei tööta see sel moel, kui aga ei kasuta, ei ole Teile "
"ka /boot vajalik"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1948,7 +1814,7 @@ msgstr ""
"füüsiliselt tagapool 1024-t silindrit ja Teil ei ole /boot partitsiooni.\n"
"Kui plaanite kasutada LILO alglaadurit, lisage kindlasti /boot partitsioon"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1958,137 +1824,137 @@ msgstr ""
"Ilma /boot partitsioonita ei ole vőimalik sellist süsteemi laadida.\n"
"Lisage kindlasti /boot partitsioon!"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Ketta %s partitsioonitabel salvestatakse!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Muudatuste jőustamiseks vajate alglaadimist"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Partitsiooni %s vormindamisel hävivad sellel kőik andmed"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Vormindan"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Vormindan loopback faili %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Vormindan partitsiooni %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Hide files"
msgstr "mkraid ebaőnnestus"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr "Ei ole piisavalt ruumi uute partitsioonide jaoks"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Ei ole piisavalt ruumi uute partitsioonide jaoks"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Kuvatihedus: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Seade: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS kettatähis: %s (arvatavasti)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Tüüp: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Nimi: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Algus: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Suurus: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sektorit"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Silindrid %d kuni %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Vormindatud\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Vormindamata\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Ühendatud\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "loopback fail(id): %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2096,27 +1962,27 @@ msgstr ""
"Partitsioonilt toimub alglaadimine\n"
" (MS-DOS-i, mitte lilo jaoks)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Tase %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Ühiku suurus %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-kettad %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "loopback faili nimi: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2128,7 +1994,7 @@ msgstr ""
"juhtpartitsiooniga, parem oleks\n"
"seda mitte puutuda.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2141,64 +2007,64 @@ msgstr ""
"vőimaldab mitme operratsioonisüsteemi\n"
"laadimist.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Suurus: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geomeetria: %s silindrit, %s pead, %s sektorit\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-kettad %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partitsioonitabeli tüüp: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "siinil %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Eelistused: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Failisüsteemi tüüp: "
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Salasőna on liiga lihtne (peaks olema vähemalt %d tähemärki)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Salasőnad ei klapi"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2209,36 +2075,66 @@ msgstr "Muuda partitsiooni tüüp"
#: ../../diskdrake/removable_gtk.pm_.c:28
#, fuzzy
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Palun valige partitsioon"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Autentimisviis"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Internet"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Kasutajatunnus"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Kasutajatunnus"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS domeen"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "Nimeserver"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s vormindamine seadmel %s ebaőnnestus"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ei oska seadet %s vormindada tüüpi %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "viga %s lahti ühendamisel: %s"
@@ -2255,68 +2151,322 @@ msgstr ""
msgid "server"
msgstr "server"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "JFS ei ole kasutatav alla 16MB partisioonidel"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "ReiserFS ei ole kasutatav alla 32MB partisioonidel"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Ühenduspunktid peavad algama kaldkriipsuga (/)"
# c-format
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Ühenduspunktile %s on juba üks partitsioon määratud\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Te ei saa ühenduspunkti %s jaoks LVM loogilist ketast kasutada"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "See kataloog peab jääma kokku juurfailisüsteemiga"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr "See ühenduspunkt vajab tőelist (ext2, reiserfs) failisüsteemi\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Te ei saa ühenduspunkti %s jaoks LVM loogilist ketast kasutada"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Ei ole piisavalt ruumi automaatpaigutuseks"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Seadme %s avamine kirjutamiseks ebaőnnestus: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Tekkis viga: failisüsteemi loomiseks ei leitud ühtki seadet. Palun\n"
"kontrollige oma riistvara."
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Teil ei ole ühtki partitsiooni!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Kasuta automaattuvastust"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Tavaline"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Kaardi mälu (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "vormindatakse"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Muuda partitsiooni tüüp"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Välju"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Abi"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Abi"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Abi/_Misvärk"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Hiir"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Kaardi mälu (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Katkesta"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Hiir"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Kirjeldus"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Autentimisviis"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Valige fail"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Lüüsipoolne seade"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 nuppu"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Kővaketta leidmine"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Info riistvara kohta"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Näita lisainfot"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Hiire seadmine"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "leiti port %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Palun oodake"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d sekundit"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Loetakse CUPS juhtprogramme"
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Proovida niisama"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2330,7 +2480,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2432,9 +2582,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2624,7 +2773,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2636,9 +2785,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2685,21 +2833,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2715,9 +2862,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Olete jőudnud punkti, kus peate otsustama, kuhu täpselt Mandrake Linux oma\n"
"kővakettal paigaldada. Kui kővaketas on tühi vői kui mőni muu \n"
@@ -2782,9 +2929,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -2919,38 +3065,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3114,11 +3254,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3166,7 +3306,7 @@ msgstr ""
" süsteemi, mis sobiks nagu valatult Teie täpsete ootustega.\n"
" Aga palun, palun: ÄRGE VALIGE SEDA, KUI TE TÄPSELT EI TEA, MIDA TEETE!"
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3181,7 +3321,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3196,7 +3336,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3212,7 +3352,7 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
#, fuzzy
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
@@ -3221,23 +3361,23 @@ msgstr ""
"Palun valige őige port. Näiteks MS Windows-i COM1 kannab GNU/Linuxis\n"
"nime ttyS0."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3259,7 +3399,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3281,7 +3421,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3289,7 +3429,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3310,7 +3450,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
#, fuzzy
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
@@ -3329,7 +3469,7 @@ msgstr ""
"ka alglaadur. Kui Teil aga ei ole őnne, tuleb parameetrid seada\n"
"käsitsi. Olge sel juhul hoolas valima őiged."
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
#, fuzzy
msgid ""
"You must indicate where you wish to place the information required to boot\n"
@@ -3343,29 +3483,28 @@ msgstr ""
"Valige \"Kővaketta esimene sektor (MBR)\", kui ei tea täpselt, mida\n"
"teha."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3374,7 +3513,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
#, fuzzy
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
@@ -3400,7 +3539,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"Esmalt otsib DrakX PCI siini SCSI liideseid. Kui neid leitakse, ja \n"
@@ -3427,7 +3566,7 @@ msgstr ""
"Ka samas masinas olev Windows oskab vahel SCSI kohta kasulikku \n"
"informatsiooni anda."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
#, fuzzy
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
@@ -3438,9 +3577,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3452,7 +3590,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" 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"
@@ -3547,7 +3685,7 @@ msgstr ""
"with a '*', if you\n"
"press TAB to see the boot selections."
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
#, fuzzy
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
@@ -3575,9 +3713,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -3629,10 +3766,10 @@ msgstr ""
"Firmware \n"
"Delay expires."
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3640,12 +3777,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3661,7 +3797,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
#, fuzzy
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
@@ -3672,7 +3808,7 @@ msgstr ""
"Ettevaatust, kőik sellel leiduvad andmed hävitatakse ja ei ole enam\n"
"taastatavad."
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
#, fuzzy
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
@@ -3691,7 +3827,7 @@ msgstr ""
"\n"
"Katkestamiseks valige \"Katkesta\"."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3699,12 +3835,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3719,20 +3855,20 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "Üldlevi kasutamine on ilma NIS domeenita vőimatu"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Pane FAT formaadis flopi seadmesse %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "See flopi ei ole FAT formaadis"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3740,7 +3876,7 @@ msgstr ""
"Et kasutada seda paketivalikut, alustage installimist käsureaga \"linux "
"defcfg=floppy\""
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Viga faili %s lugemisel"
@@ -3770,7 +3906,7 @@ msgstr "Teil peab olema saaleala"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -3778,60 +3914,60 @@ msgstr ""
"\n"
"Jätkate ikkagi?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Teil peab olema saaleala"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Kasuta vaba ruumi"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Ei ole piisavalt ruumi uute partitsioonide jaoks"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Kasuta olemasolevat partitsiooni"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Kasutatavat partitsiooni ei leitud"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Kasuta Windowsi partitsiooni loopback-ina"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Millisele partitsioonile soovite installida Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Valige suurused"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Juurpartitsiooni suurus (MB): "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Saaleala suurus (MB): "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Kasuta vaba ruumi Windowsi partitsioonil"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Mis partitsiooni soovite muuta?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Arvutan Windowsi failisüsteemi piire"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -3840,12 +3976,15 @@ msgstr ""
"FAT partitsiooni suurust ei őnnestu muuta, \n"
"ilmnes selline viga: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"Teie Windowsi partitsioon on fragmenteerunud, palun kasutada 'defrag'-i"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -3864,52 +4003,52 @@ msgstr ""
"scandisk-i, defrag-i ja tehke tagavarakoopia.\n"
"Kui olete oma otsuses kindel, vajutage OK."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Kui palju ruumi jätate Windowsi jaoks?"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "Partitsioon %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Suuruse muutmine ebaőnnestus: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr "Sobivat FAT partitsiooni ei leitud (ei ole piisavalt ruumi)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Tühjenda kogu ketas"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Eemalda Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Teil on rohkem kui üks kővaketas, millisele neis installite Linuxi?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Kettal %s hävivad KŐIK partitsioonid ja andmed"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Partitsioneerin ise"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Kasuta fdisk-i"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -3918,11 +4057,11 @@ msgstr ""
"Nüüd saate partitsioneerida %s kővaketta\n"
"Kui olete valmis, salvestage käsuga 'w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Teil ei ole piisavalt vaba ruumi Windowsi partitsioonil"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Installimiseks ei ole üldse ruumi"
@@ -3930,16 +4069,16 @@ msgstr "Installimiseks ei ole üldse ruumi"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX kettajagamise abimees leidis sellised lahendused:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Ketta jagamine ebaőnnestus: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Käivitame vőrguliidesed"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Seiskame vőrguliidesed"
@@ -3951,12 +4090,12 @@ msgstr ""
"Tekkis mingi viga, aga seda ei suuda programm ise klaarida.\n"
"Jätkake omal vastutusel."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Ühenduspunkt %s on määratud topelt"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3967,12 +4106,12 @@ msgstr ""
"Teie CD-lugeja vői CD on ilmselt vigane.\n"
"Paketifaile CD-l saate kontrollida käsuga \"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "See ongi %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Flopiseade ei ole kättesaadav"
@@ -3982,9 +4121,9 @@ msgstr "Flopiseade ei ole kättesaadav"
msgid "Entering step `%s'\n"
msgstr "Järgmine samm: '%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -3993,198 +4132,156 @@ msgstr ""
"Kui nii juhtub, proovige palun tekstipőhjalist paigaldust. Selleks \n"
"vajutaga laadimisel F1 ja sisestage 'text'"
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Installi klass"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Palun valige üks järgnevatest paigaldusklassidest"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Teie poolt valitud gruppide kogusuurus on umbes %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Kui soovite installida sellest vähem, valige vastav protsent.\n"
-"\n"
-"Madalama protsendi puhul installitakse vaid kőige tähtsamad paketid;\n"
-"100%% tähendab kőige valitud pakettide installimist."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, fuzzy, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Teil on kettal ruumi vaid %d%% pakettide jaoks.\n"
-"\n"
-"Kui soovite sellest vähem, valige väiksem protsent ja installimisele\n"
-"kuuluvad vaid olulisemad paketid."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Täpsemalt saate valida järgmisel sammul"
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Installitavate pakettide protsent"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Paketigruppide valik"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Valik paketthaaval"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Suurus kokku: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Vigane pakett"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Nimi: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Versioon: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Suurus: %d kB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Tähtsus: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "Seda paketti ei saa valida, kettaruumi ei ole paigalsuseks piisavalt"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Installimiseks on valitud järgmised paketid"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Eemaldamiseks on valitud järgmised paketid"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Seda paketti ei saa (mitte) valida"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "See pakett on kohustuslik"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "See pakett on juba installitud"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Selle paketi peaks uuendame\n"
"Olete kindel, et Te ei vali seda?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Selle paketi peate valima, sest selle uuendamine on kohustuslik"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Näita automaatselt valitud pakette"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Installimine"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Salvesta flopile"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
#, fuzzy
msgid "Updating package selection"
msgstr "Salvest paketivalik"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
#, fuzzy
msgid "Minimal install"
msgstr "Eemaldamine"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Valige paketid installimiseks"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Installin"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Oletan"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Aega jäänud "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Palun oodake, valmistun installimiseks"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d paketti"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Paketi %s installimine"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Nőus"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Keeldun"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4198,17 +4295,17 @@ msgstr ""
"Palun sisestage CD pealdisega \"%s\" lugejasse ja vajutage <OK>.\n"
"Kui teil säherdust ei ole, vajutage <Katkesta>"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Ikkagi edasi?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Pakettide tellimisel tekkis viga:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Pakettide installimisel tekkis viga:"
@@ -4281,11 +4378,11 @@ msgstr "Tekkis mingi viga"
msgid "Do you really want to leave the installation?"
msgstr "Kas soovite vőrguühendust taaskäivitada?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Lőppkasutaja litsentsileping"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4300,7 +4397,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -4420,7 +4517,7 @@ msgstr ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -4525,113 +4622,117 @@ msgstr ""
"Paris - France.\n"
"For any question on this document, please contact MandrakeSoft S.A. \n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Klaviatuur"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Palun valige klaviatuuriasetus"
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Vőimalike klaviatuuride täielik nimekiri"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Millist installi klassi Te soovite"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Installimine/Uuendus"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "On see installimine vői taastamine?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Soovituslik"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Ekspert"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade"
msgstr "Uuendus"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr "Salvest paketivalik"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Palun valige hiire tüüp"
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Hiire port"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Millisesse seerialporti on Teie hiir ühendatud?"
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Nuppude teesklemine"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Teeskle 2 hiirenupp"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Teeskle 3 hiirenuppu"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "PCMCIA kaartide seadmine..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "IDE seadistamine"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "ei leia partitsioone"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Otsin partitsioonidelt ühenduspunkte"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Valige ühenduspunktid"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4642,7 +4743,7 @@ msgstr ""
"(Viga oli selline: %s)\n"
"Kas olete nőus partitsioonide kaotamisega?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4650,138 +4751,141 @@ msgstr ""
"DiskDrake ei saanud partitsioonitabeli lugemisega hakkama.\n"
"Jätkate omal vastutusel!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Juurpartitsiooni ei leitud"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Juurpartitsioon"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Millisel partitsioonil hoiate juurkataloogi (/)?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Partitsioonitabeli säilitamiseks vajate alglaadimist"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Valige partitsioonid, mida soovite vormindada"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Blokkide kontroll?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Vormindan partitsioone"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Loon ja vormindan faili %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Saaleala on installimiseks liiga väike, palun lisage"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Otsin kättesaadavaid pakette"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
+msgstr "Otsin kättesaadavaid pakette"
+
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Otsin uuendatavaid pakette"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "See pakett on juba installitud"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr "Teie kővakettal ei ole piisavalt vaba ruumi (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Täielik (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimaalne (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Soovitatav (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
#, fuzzy
msgid "Load from floppy"
msgstr "Taasta flopilt"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Loading from floppy"
msgstr "Taasta flopilt"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Package selection"
msgstr "Paketigruppide valik"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Pane flopi seadmesse %s"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Salvesta flopile"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
#, fuzzy
msgid "Type of install"
msgstr "Valige pakett installimiseks"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
#, fuzzy
msgid "With X"
msgstr "Oodake"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4791,16 +4895,16 @@ msgstr ""
"Kui Teil ei ole ühtki neist, klikkige <Katkesta>.\n"
"Kui puuduvad mőned CD-d, märkige vaid olemasolevad ja siis <OK>."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD pealdisega \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Valmistun installimiseks"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4809,23 +4913,23 @@ msgstr ""
"Paketi %s installimine\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Paigaldusjärgsed sätted"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Pane flopi seadmesse %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Pange palun tühi flopi seadmesse %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -4891,166 +4995,197 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Proovin lugeda peeglilt pakettide nimekirja"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Valige peegel, millelt lugeda pakettide nimekiri"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Proovin lugeda peeglilt pakettide nimekirja"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Millises ajavöötmes asute?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Kas Teie arvuti sisekell on seatud GMT ajale?"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
#, fuzzy
msgid "NTP Server"
msgstr "NIS server:"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "CUPS printserver"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Printerit ei ole"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "On Teil veel kaarte?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Kokkuvőte"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Hiir"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Ajavööde"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Printer"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "ISDN kaart"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Helikaart"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV kaart"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "NIS"
msgstr "Kasuta NIS-i"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Eemalda Windows(TM)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Local files"
msgstr "Kohalik printer"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Juurkasutaja salasőna"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Salasőna puudub"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr "Salasőna on liiga lihtne (peaks olema vähemalt %d tähemärki)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autentimisviis"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
#, fuzzy
msgid "Authentication LDAP"
msgstr "Autentimisviis"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "LDAP Server"
msgstr "NIS server:"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
#, fuzzy
msgid "Authentication NIS"
msgstr "NIS autentimine"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS domeen"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS server:"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Autentimisviis"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Gnome tööjaam"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NIS server:"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -5078,19 +5213,19 @@ msgstr ""
"Alglaadimisketta loomiseks asetage flopi esimesse seadmesse ning vajutage\n"
"\"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Esimene flopiseade"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Teine flopiseade"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Jäta vahele"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5114,7 +5249,7 @@ msgstr ""
"ka Jumal!\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5123,28 +5258,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Flopiseade ei ole kättesaadav"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Vali flopiseade, mida kasutad alglaadimisketta tegemiseks"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Pane flopi seadmesse %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Loome alglaadimisketta"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Alglaaduri sätted"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5152,11 +5287,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Soovite aboot-i kasutada?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5164,16 +5299,16 @@ msgstr ""
"Viga aboot-i installimisel, \n"
"kas forseerida, riskides esimese partitsiooni hävinguga?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
#, fuzzy
msgid "Installing bootloader"
msgstr "Alglaaduri sätted"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Alglaaduri installimine ebaőnnestus. Tekkis järgnev viga:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, fuzzy, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5190,18 +5325,17 @@ msgstr ""
" Then type: shut-down\n"
"At your next boot you should see the bootloader prompt."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Pange palun tühi flopi seadmesse %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Loon kiirpaigaldusflopi"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5211,7 +5345,8 @@ msgstr ""
"\n"
"Olete kindel, et väljute programmist?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5222,7 +5357,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5236,17 +5371,21 @@ msgstr ""
"Mandrake Linux koduleheküljelt \n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Abi süsteemi edasiseks konfigureerimiseks saab eelkőige dokumendist\n"
"\"Official Mandrake Linux User's Guide\""
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Loo kiirpaigaldusflopi"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5259,15 +5398,15 @@ msgstr ""
"\n"
"Vőite valida ka lihtsalt installi kordamise.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automaatne"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Korda"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Salvest paketivalik"
@@ -5294,421 +5433,405 @@ msgstr ""
msgid "Choose a file"
msgstr "Valige tegevus"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Edasijőudnud"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Palun oodake"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Ava puu"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Sule puu"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Sorteeritud vői sorteerimata"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Halb valik, proovige palun uuesti\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Teie valik? (vaikimisi %s)"
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Teie valik? (vaikimisi %s)"
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Eelistused: %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr "Soovite aboot-i kasutada?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Teie valik? (vaikimisi %s)"
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "T¨ehhi (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Saksa"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "DVORAK"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Hispaania"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Soome"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Prantsuse"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norra"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Poola"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Vene"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Rootsi"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Briti"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "US"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Albanian"
msgstr "Iraani"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armeenia (vanem)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armeenia (trükimasin)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armeenia (foneetiline)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Aserbaidţaani (ladina)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgia"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armeenia (foneetiline)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Bulgaaria"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brasiilia (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Valgevene"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Đveitsi (Saksa asetus)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Đveitsi (Prantsuse asetus)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Tđehhi (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Saksa (ilma sammuta)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Taani"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "DVORAK (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "DVORAK (Norra)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "DVORAK (US)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Eesti"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Gruusia (vene)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Gruusia (ladina)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Kreeka"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Ungari"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Kroaadi"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Iisraeli"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Iisraeli foneetiline"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iraani"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islandi"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Itaalia"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Jaapani 106 klahviga"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Korea"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Ladina-Ameerika"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Leedu AZERTY (vanem)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Leedu AZERTY (uuem)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Leedu numbrireaga QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Leedu foneetiline QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
#, fuzzy
msgid "Latvian"
msgstr "Asukoht"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Makedoonia"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Hollandi"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Poola (QWERTY)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Poola (QWERTZ)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugali"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Kanada (Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Vene (Yawerty)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Vene (Yawerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Vene (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Sloveenia"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovaki (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovaki (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Aserbaidţaani (kirillitsa)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Tabel"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Tai"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Tai"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Türgi (\"F\" mudel)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Türgi (\"Q\" mudel)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukraina"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US (rahvusvaheline)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnami numbrireaga QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Jugoslaavia (koos kirillitsaga)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5721,7 +5844,31 @@ msgstr "Ringühendus %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Eemalda enne kettarühmad (logical volumes)\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Sissehelistamiskeskuse number"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Vormindamine"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5762,10 +5909,6 @@ msgstr "1 nupp"
msgid "Generic 2 Button Mouse"
msgstr "Lihtsalt 2-nupuline hiir"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Tavaline"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Ratas"
@@ -5830,38 +5973,54 @@ msgstr "ei soovi"
msgid "No mouse"
msgstr "Hiirt ei ole"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Palun testige hiirt"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Hiire aktiveerimiseks"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "KEERUTAGE RATTAKEST!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Lőpeta"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Järgmine ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Eelmine"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Kas see on sobiv?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Info"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Ava puu"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Sule puu"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Sorteeritud vői sorteerimata"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Loo internetiühendus"
@@ -5908,7 +6067,7 @@ msgstr ""
"Ühtki vőrgukaarti ei őnnestunud tuvastada\n"
"Seega ei saa ka sellist ühendust seadistada."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Valige vőrguliides"
@@ -5922,7 +6081,7 @@ msgstr ""
msgid "no network card found"
msgstr "vőrgukaarti ei leitud"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Vőrguseadistused"
@@ -5938,15 +6097,15 @@ msgstr ""
"Masina nimi peab olema esitatud täiskujul,\n"
"nagu ``minumasin.minufirma.ee''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Masinanimi"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Vőrgu sätete abimees"
@@ -5996,7 +6155,7 @@ msgstr "ISDN sätted"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Vali oma teenusepakkuja.\n"
" Kui see ei ole nimekirjas, vali Tundmatu"
@@ -6019,14 +6178,14 @@ msgstr "Ülejäänud maailm"
#: ../../network/isdn.pm_.c:185
#, fuzzy
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Ülejäänud maailm \n"
" ilma D-kanalita"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Mis protokolli soovite kasutada?"
#: ../../network/isdn.pm_.c:199
@@ -6050,7 +6209,8 @@ 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"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Kui Teil on ISA kaart, siis peaks järgmised väärtused olema őiged.\n"
@@ -6067,13 +6227,13 @@ msgid "Continue"
msgstr "Jätka"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Milline on Teie ISDN kaart?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Leidsin küll PCI ISDN kaardi, kui selle tüüp on tundmatu. Palun valige üks "
"PCI kaart järgmisel sammul."
@@ -6090,47 +6250,47 @@ msgstr "Millisesse seerialporti on Teie modem ühendatud?"
msgid "Dialup options"
msgstr "DialUp parameetrid"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Ühenduse nimi"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Sissehelistamiskeskuse number"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Kasutajakonto"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Skriptipőhine"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Terminalipőhine"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Domeeninimi"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Esimene nimeserver (soovituslik)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Teine nimeserver (soovituslik)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6138,7 +6298,7 @@ msgstr ""
"\n"
"Saate ühenduse katkestada vői uuesti seadistada."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6146,11 +6306,11 @@ msgstr ""
"\n"
"Saate seadistada ühenduse uuesti."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Hetkel olete Internetiga ühendatud."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6158,37 +6318,37 @@ msgstr ""
"\n"
"Saate ühenduda Internetti vői seadistada ühendus uuesti."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Hetkel ei ole Te Internetti ühendatud."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Connect"
msgstr "Ühendatud"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
#, fuzzy
msgid "Disconnect"
msgstr "Lahuta..."
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "Seadista TV-kaabli ühendus"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Internetiühenduse seadistamine"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
"\n"
"Saate ühenduse katkestada vői uuesti seadistada."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, fuzzy, c-format
msgid ""
"\n"
@@ -6202,12 +6362,12 @@ msgstr ""
"\n"
"Saate ühenduse katkestada vői uuesti seadistada."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Vőrgu sätted"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6218,9 +6378,9 @@ msgstr ""
"Kui soovite neid seadistusi säilitada, valige OK, muidu katkestage ja saate "
"seadistada uuesti.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"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"
@@ -6230,93 +6390,99 @@ msgstr ""
"Nüüd hakkame internetiühendust seadistama.\n"
"Kui Te ei soovi automaatset tuvastamist siis jätke see märkimata.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Valige profiil, mida seadistada"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Kasuta automaattuvastust"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Ekspertresiim"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Otsin printerit..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Tavaline modemiühendus"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "leiti port %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN ühendus"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "tuvastati %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy
msgid "ADSL connection"
msgstr "LAN ühendus"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "leiti liidesel %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Kaabliühendus"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "cable connection detected"
msgstr "Kaabliühendus"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "LAN ühendus"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "vőrgukaart(i) leiti üles"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Valige kasutatav vahend"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
#, fuzzy
msgid "Internet connection"
msgstr "Internetiühenduse jagamine"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Kas soovite luua ühenduse juba alglaadimisel?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Vőrgusätted"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6324,7 +6490,7 @@ msgid ""
"%s"
msgstr "Kas soovite vőrguühendust taaskäivitada?"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6334,7 +6500,7 @@ msgstr ""
"\n"
"Sätted salvestatakse nüüd.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6342,16 +6508,16 @@ msgstr ""
"Soovitame taaskäivitada ka X keskkonna, et vältida vőimalikke\n"
"masinanime muutmisest tingitud probleeme."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"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."
@@ -6359,7 +6525,7 @@ msgstr ""
"HOIATUS: See seade on juba seadistatud Interneti jaoks.\n"
"Valige lihtsalt OK, et sätteid mitte muuta."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6369,38 +6535,43 @@ msgstr ""
"Kőik read tuleb sisestada IP-aadressi kujul\n"
"(Näiteks 12.34.56.78)"
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Seadistame vőrgukaardi %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (juhtprogramm %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP-aadress"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Vőrgu mask"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Automaatne IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Käivitub laadimisel"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP-aadress peab olema formaadis 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6412,64 +6583,64 @@ msgstr ""
"nagu ``minumasin.minufirma.ee''.\n"
"Kui Teil on vaikimisi lüüs, siis sisestage ka selle IP-aadress"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "Nimeserver"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Lüüsipoolne seade"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Vahendajate sätted"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP vahendaja"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP vahendaja"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Vahendaja peab olema kujul http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Vahendaja peab olema kujul ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Interneti sätted"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Kas soovite oma internetiühendust proovida?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Testime Teie ühendust..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Süsteem on nüüd Internetti ühendatud"
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Turvakaalutlusel katkestan nüüd ühenduse."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6477,114 +6648,119 @@ msgstr ""
"Paistab, et süsteem ei ole Internetti ühendatud.\n"
"Palun seadistage ühendus uuesti."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Internetiühenduse sätted"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Palun täida allpool olev väli"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "Kaardi IRQ"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Kaardi mälu (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "Kaardi IO"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "Kaardi IO_0"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "Kaardi IO_1"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Teie telefoninumber"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Teenusepakkuja tunnus (näiteks minuisp.ee)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Sissehelistamiskeskuse number"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "DNS 1 (vőib jätta tühjaks)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "DNS 2 (vőib jätta tühjaks)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
#, fuzzy
msgid "Choose your country"
msgstr "Klaviatuuri valik"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Valimisviis"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection speed"
msgstr "Ühenduse tüüp: "
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Ühenduse tüüp: "
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Kasutajatunnus"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Salasőna"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "ühendamine ebaőnnestus: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Sellel platformil ei saa laiendatud partitsiooni luua"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Partitsioonitabelis on miskipärast tühi koht, aga see ei ole kasutatav.\n"
"Ainuke lahendus on nihutada primaarset partitsiooni, et auk satuks "
"laiendatud partitsioonide kőrvale"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Taastamine failist %s ebaőnnestus: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Viga faili %s kirjutamisel"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6594,193 +6770,193 @@ msgstr ""
"Andmete pidevuse kontroll ebaőnnestus. \n"
"See tähendab, et kettale kirjutamisel tekivad jamad"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "vajalik"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "tähtis"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "väga kena"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "kena"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "vőib olla"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr ""
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr ""
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Kohalik printer"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Vőrguprinter"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "CUPS printserver"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "lpd printserver"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Vőrguprinter (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Printserver:"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Printeri seadme URI"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr "Kohalik printer"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr "Vőrguprinter"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Viga faili %s kirjutamisel"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(moodul %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "CUPS serveri IP"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Vaikimisi)"
@@ -6803,12 +6979,12 @@ msgstr ""
"printereid seadistada, need leitakse automaatselt.\n"
"Kui kahtlete, valige \"CUPS printserver\"."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "LAN sätted"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "CUPS printserver"
@@ -6839,7 +7015,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP-aadress peab olema formaadis 1.2.3.4"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
#, fuzzy
msgid "The port number should be an integer!"
msgstr "Pordi number peab olema ikkagi number"
@@ -6848,7 +7024,7 @@ msgstr "Pordi number peab olema ikkagi number"
msgid "CUPS server IP"
msgstr "CUPS serveri IP"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Port"
@@ -6857,22 +7033,13 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Alglaaduri stiil"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "Otsin printerit..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Proovin porte"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "Printerit ei ole"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6885,14 +7052,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr "Kohalik printer"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6910,12 +7077,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "Vőrguprinter"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6929,11 +7096,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6943,35 +7110,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "Kasuta automaattuvastust"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "Vőrguprinter"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Proovin porte"
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "tuvastati %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
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, ..., "
@@ -6979,43 +7150,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Printeri seadme URI"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr "Kohalik printer"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7023,7 +7194,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7031,73 +7202,83 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Millisesse seerialporti on Teie modem ühendatud?"
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Printeri seadme URI"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "Seadistused"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "Paketi %s installimine"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
+msgstr "Paketi %s installimine"
+
+#: ../../printerdrake.pm_.c:524
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing mtools packages..."
msgstr "Paketi %s installimine"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
#, fuzzy
-msgid "Making printer port available for CUPS ..."
+msgid "Making printer port available for CUPS..."
msgstr "Loetakse CUPS juhtprogramme"
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
#, fuzzy
-msgid "Reading printer database ..."
+msgid "Reading printer database..."
msgstr "Loetakse CUPS juhtprogramme"
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Vőrguprinteri sätted"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7107,31 +7288,31 @@ msgstr ""
"printserveri nime ja prindijärjekorra nime, mida soovite\n"
"serveril kasutada."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
#, fuzzy
msgid "Remote host name"
msgstr "Printserveri nimi:"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
#, fuzzy
msgid "Remote printer name"
msgstr "Vőrguprinter"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
#, fuzzy
msgid "Remote host name missing!"
msgstr "Printserveri nimi:"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Printserveri nimi:"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) printeri sätted"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7144,35 +7325,35 @@ msgstr ""
"printserveri IP-aadressi, samuti ka serveri poolt jagatava printeri\n"
"nime ning serveri poolt aktsepteeritud kasutajatunnuse, salasőna ja töögrupi"
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "SMB serveri nimi"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "SMB serveri IP"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Jagatav printer"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Töögrupp"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7196,7 +7377,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7205,7 +7386,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7213,11 +7394,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "NetWare printeri sätted"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7229,28 +7410,28 @@ msgstr ""
"nime (NB! See vőib olla erinev tema TCP/IP nimest!) samuti nagu ka\n"
"prindijärjekorra nime serveril ning kasutajatunnuse ja salasőna"
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Printserver:"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Prindijärjekorra nimi:"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Pistikprinteri sätted"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
@@ -7261,60 +7442,56 @@ msgstr ""
"Sisestage palun printeri masinanimi ja vőimaluse\n"
"korral pordi number"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
#, fuzzy
msgid "Printer host name"
msgstr "Printeri nimi"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
#, fuzzy
msgid "Printer host name missing!"
msgstr "Printeri nimi"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Printeri seadme URI"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
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 ""
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Printeri nimi"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Kirjeldus"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Asukoht"
-#: ../../printerdrake.pm_.c:1021
+#: ../../printerdrake.pm_.c:1045
#, fuzzy
-msgid "Preparing printer database ..."
+msgid "Preparing printer database..."
msgstr "Loetakse CUPS juhtprogramme"
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "Vőrguprinter"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7329,28 +7506,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "Kas see on sobiv?"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "Vőrguprinter"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
#, fuzzy
msgid "Printer model selection"
msgstr "Printeri ühendusviis"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Mis tüüpi printer see on?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7359,18 +7536,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Interneti sätted"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7380,12 +7557,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Interneti sätted"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7393,7 +7570,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7406,7 +7583,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7416,34 +7593,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Kas soovite seadistusi proovida?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
#, fuzzy
msgid "Test pages"
msgstr "Proovin porte"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7451,45 +7628,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
#, fuzzy
msgid "No test pages"
msgstr "Jah, trüki mőlemad testleheküljed"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
#, fuzzy
msgid "Print"
msgstr "Printer"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
#, fuzzy
msgid "Standard test page"
msgstr "Standardtööriistad"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Trükitakse testlehekülg(i)..."
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
#, fuzzy
msgid "Photo test page"
msgstr "Trükitakse testlehekülg(i)..."
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "Trükitakse testlehekülg(i)..."
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Trükitakse testlehekülg(i)..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7505,7 +7682,7 @@ msgstr ""
"\n"
"Kas tulemust on juba näha?"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7518,16 +7695,16 @@ msgstr ""
"\n"
"Kas tulemust on juba näha?"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "Printerit ei ole"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7536,15 +7713,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
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 ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7553,49 +7730,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, 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\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7605,7 +7782,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7614,31 +7791,42 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-#, fuzzy
-msgid "Close"
-msgstr "Hiir"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Seiskame vőrguliidesed"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Seiskame vőrguliidesed"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Seiskame vőrguliidesed"
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Seiskame vőrguliidesed"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+#, fuzzy
+msgid "Close"
+msgstr "Hiir"
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "Otse ühendatud printeri sätted"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7646,38 +7834,38 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
#, fuzzy
-msgid "Reading printer data ..."
+msgid "Reading printer data..."
msgstr "Loetakse CUPS juhtprogramme"
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Interneti sätted"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7687,51 +7875,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7739,62 +7927,62 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Printeri nimi tohib sisaldada vaid tähti, numbreid ja alakriipsu"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid "New printer name"
msgstr "Printerit ei ole"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, 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 ""
-#: ../../printerdrake.pm_.c:1887
+#: ../../printerdrake.pm_.c:1935
#, fuzzy
-msgid "Refreshing printer data ..."
+msgid "Refreshing printer data..."
msgstr "Loetakse CUPS juhtprogramme"
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Sea printer"
-#: ../../printerdrake.pm_.c:1896
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
-msgid "Starting network ..."
+msgid "Starting network..."
msgstr "Testime Teie ühendust..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr "Vőrgusätted"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "Monitor ei ole seadistatud"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7802,12 +7990,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Vőrguseadistused"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7817,34 +8005,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
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 ""
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
-msgid "Restarting printing system ..."
+msgid "Restarting printing system..."
msgstr "Millist printimissüsteemi soovite kasutada?"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "Kőrge"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "Paranoiline"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7859,12 +8047,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Millist printimissüsteemi soovite kasutada?"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7878,69 +8066,69 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Vali printeri ühendusviis"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Millist printimissüsteemi soovite kasutada?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Printeri sätted"
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr "Paketi %s installimine"
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Otse ühendatud printeri sätted"
-#: ../../printerdrake.pm_.c:2318
+#: ../../printerdrake.pm_.c:2389
#, fuzzy
-msgid "Preparing PrinterDrake ..."
+msgid "Preparing PrinterDrake..."
msgstr "Loetakse CUPS juhtprogramme"
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Printeri sätted"
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Kas soovite printerit seadistada?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "PrinterDrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7951,7 +8139,7 @@ msgstr ""
"Kirjeldatud on järgnevad prindijärjekorrad.\n"
"Te vőite neid lisada ning olemasolevaid muuta."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7961,139 +8149,143 @@ msgstr ""
"Kirjeldatud on järgnevad prindijärjekorrad.\n"
"Te vőite neid lisada ning olemasolevaid muuta."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Vőrgusätted"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Tavakasutus"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Välju"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Kas soovite seadistusi proovida?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
#, fuzzy
msgid "Modify printer configuration"
msgstr "Interneti sätted"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Kas soovite seadistusi proovida?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
#, fuzzy
msgid "Printer connection type"
msgstr "Internetiühenduse jagamine"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
#, fuzzy
msgid "Printer name, description, location"
msgstr "Printeri ühendusviis"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
#, fuzzy
msgid "Print test pages"
msgstr "Trükitakse testlehekülg(i)..."
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "Kas soovite seadistusi proovida?"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
#, fuzzy
msgid "Remove printer"
msgstr "Vőrguprinter"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
msgstr "Loetakse CUPS juhtprogramme"
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
#, fuzzy
msgid "Default printer"
msgstr "Kohalik printer"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Kas soovite vőrguühendust taaskäivitada?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr "Loetakse CUPS juhtprogramme"
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -8177,24 +8369,57 @@ msgstr "Salasőnad ei klapi"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Juba vormindatud RAID-ile (md%d) ei saa partitsiooni lisada"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Ei saa kirjutada faili %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid ebaőnnestus"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid ebaőnnestus (puudub 'raidtools'?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ei ole piisavalt partitsiooni RAID-%d jaoks\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Seda tase muudab küll süsteemi lihtsalt kasutatavaks, kui väga\n"
+"haavatavaks: ligipääsupiirangute puudumise tőttu ei peaks arvutit ühendama\n"
+"ei teiste arvutitega ega ka mitte Internetti."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+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 "Sellel turvatasemel vőib süsteemi kasutada Internetis ka serverina."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "ISDN sätted"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Eelistused"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -8248,7 +8473,7 @@ msgid ""
"new/changed hardware."
msgstr ""
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8310,7 +8535,7 @@ msgid ""
"available server."
msgstr ""
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -8380,7 +8605,7 @@ msgstr ""
"portmapper haldab RPC ühendusi, mida kasutavad NFS ja NIS. Neil \n"
"serveritel on see hädavajalik."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -8473,7 +8698,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "Töömood"
@@ -8596,6 +8821,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Juhtimiskeskus"
@@ -8700,6 +8926,16 @@ msgstr ""
msgid "Installing packages..."
msgstr "Paketi %s installimine"
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Palun väljuge ja vajutage siis Ctrl-Alt-BackSpace"
+
+# c-format
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Muudatuste aktiveerimiseks käivitage %s uuesti"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8708,6 +8944,162 @@ msgstr ""
"Partitsioonitabel on loetamatu, liiga rikutud DrakX-i jaoks :(\n"
"Proovin loetamatud kirjed puhastada"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Interneti sätted"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Server, Andmebaasid"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Server, Andmebaasid"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS server:"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS server:"
+
+#: ../../standalone/drakTermServ_.c:234
+#, fuzzy
+msgid "Etherboot Floppy/ISO"
+msgstr "Loo alglaadimisflopi"
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Lisa kasutaja"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP klient"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#, fuzzy
+msgid "Help"
+msgstr "/_Abi"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Ei ole ühendatud"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Kustuta"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Valige fail"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Lisa kasutaja"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "DHCP klient"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Seadista..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "seadista uuesti"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Pane flopi seadmesse %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Flopiseade ei ole kättesaadav"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
#, fuzzy
msgid "Error!"
@@ -8749,6 +9141,11 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Loon kiirpaigaldusflopi"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -8757,47 +9154,40 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Őnnitleme!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "Installimine"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "Tavakasutaja"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "Vormindan loopback faili %s"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8805,15 +9195,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8821,711 +9203,774 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "Viga faili %s lugemisel"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "Paketigruppide valik"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "Eemalda prindijärjekord"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Eemalda Windows(TM)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr "Kasutajatunnus"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Palun testige hiirt"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "Palun proovige veel"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "Palun proovige veel"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "Salasőna puudub"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "LAN ühendus"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Vali printeri ühendusviis"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Palun valige klaviatuuriasetus"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Palun valige partitsioon"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Palun valige paketid installimiseks"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "Palun testige hiirt"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "Vőrgu mask:"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Tüüp"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "Kasutajatunnus"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Palun valige kasutatav keel"
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Kas optimiseerime kővaketast?"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Kas optimiseerime kővaketast?"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
#, fuzzy
msgid "What"
msgstr "Oodake"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr "Ratas"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr "Ratas"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "Mooduli parameetrid:"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Vőrgu sätted"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
#, fuzzy
msgid "across Network"
msgstr "Vőrgu mask:"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "Failisüsteemid"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Hiire port: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Eelistused"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Millisesse seerialporti on Teie modem ühendatud?"
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "Vőrgu sätted"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "Palun valige hiire tüüp"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Palun testige hiirt"
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "LAN ühendus"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Vali printeri ühendusviis"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Taasta flopilt"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "Palun valige hiire tüüp"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "Muu"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "Süsteemi installimine"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "Taasta failist"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "Taasta failist"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "Isetehtud"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/_Abi"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
#, fuzzy
msgid "Previous"
msgstr "<- Eelmine"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr "Olek:"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr "Taasta failist"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr "Tekst"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "Pakettide valik"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Installimiseks on valitud järgmised paketid"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "Palun valige kasutatav keel"
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "Palun valige kasutatav keel"
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "Palun valige kasutatav keel"
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "Salvesta faili"
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "Palun testige hiirt"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Vőrgu sätted"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "Vőrgu sätted"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "LAN sätted"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "ISDN sätted"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "Failisüsteemid"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9557,7 +10002,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9566,7 +10011,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9607,7 +10052,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9635,12 +10080,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -9657,7 +10107,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9697,7 +10147,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9708,7 +10158,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9721,7 +10171,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9765,105 +10215,537 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "%s installimine ebaőnnestus. Tekkis järgnev viga:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Konsooliprogrammid"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "Juhtimiskeskus"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "kohustuslik"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Hiir"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Vőrguprinter"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Jagatav printer"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+#, fuzzy
+msgid "Windows Migration tool"
+msgstr "Gnome tööjaam"
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Kasuta diskdrake-i"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Vőrgu sätete abimees"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Tegevused"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Pakett"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Palun oodake"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Välju programmist"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "Port"
+
+#: ../../standalone/drakbug_.c:123
+#, fuzzy
+msgid "connecting to Bugzilla wizard ..."
+msgstr "Seadistan uuesti abimehega..."
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Teisi keeli saab valida pärast installimist"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Vőrgusätted (%d liidest)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profiil: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Kustuta profiil..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Profiil kustutamiseks:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Uus profiil..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Masinanimi: "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Internetiühendus"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Tüüp: "
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Vaikelüüs:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Liides:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Olek:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Seadiste internetiühendus..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "LAN sätted"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Juhtprogramm"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Liides"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protokoll"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "State"
+msgstr "Olek:"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Seadista kohtvőrk (LAN) ..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Abimees..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Rakenda"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Palun oodake... Rakendan seadistusi"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Ühendatud"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Ei ole ühendatud"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Ühenda..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Lahuta..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "LAN sätted"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Vőrgukaart %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Laadimisprotokoll"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Käivitub laadimisel"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP klient"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "activate now"
+msgstr "Aktiivne"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "deactivate now"
+msgstr "Aktiivne"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Internetiühenduse seadistamine"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Internetiühenduse seadistamine"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Ühenduse tüüp: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parameetrid"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Vaikelüüs"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Vőrgukaart"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP klient"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:69
+#, fuzzy
+msgid "Module name"
+msgstr "Mooduli parameetrid:"
+
+#: ../../standalone/drakfloppy_.c:69
+#, fuzzy
+msgid "Size"
+msgstr "Suurus: %s"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+#, fuzzy
+msgid "drakfloppy"
+msgstr "Taasta flopilt"
+
+#: ../../standalone/drakfloppy_.c:91
+#, fuzzy
+msgid "boot disk creation"
+msgstr "Alglaadimise stiil"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "tavaline"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:126
+#, fuzzy
+msgid "kernel version"
+msgstr "Interneti tööjaam"
+
+#: ../../standalone/drakfloppy_.c:132
+#, fuzzy
+msgid "General"
+msgstr "Tavaline"
+
+#: ../../standalone/drakfloppy_.c:137
+#, fuzzy
+msgid "Expert Area"
+msgstr "Ekspertresiim"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:141
+#, fuzzy
+msgid "Add a module"
+msgstr "Tavakasutaja"
+
+#: ../../standalone/drakfloppy_.c:161
+#, fuzzy
+msgid "force"
+msgstr "Veel.."
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:163
+#, fuzzy
+msgid "omit scsi modules"
+msgstr "kasutades moodulit"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:200
+#, fuzzy
+msgid "Remove a module"
+msgstr "Viimane leht enne"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:427
+#, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:429
+#, fuzzy, c-format
+msgid "Unable to fork: %s"
+msgstr "Keela vőrguühendus"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "%s ei leitud"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr "Tehtud"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
#, fuzzy
msgid "Fonts copy"
msgstr "Vorminda flopi"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "Valmistun installimiseks"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
#, fuzzy
msgid "Restart XFS"
msgstr "piiratud"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "piiratud"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -9872,123 +10754,122 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "Vormindamine"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
#, fuzzy
msgid "Uninstall Fonts"
msgstr "RPM-ide eemaldamine"
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "ISDN sätted"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr "Ühenduspunkt"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Valige partitsioonid, mida soovite vormindada"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "Kontor"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr "Katkesta"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr "Printer"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "Süsteemi installimine"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "Valige fail"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "Vőrguprinter"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
#, fuzzy
msgid "Initials tests"
msgstr "Initsialiseerimisteade"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr "Teie süsteemis ei ole vőrgukaarti!"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "Installimine"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr "Teie süsteemis ei ole vőrgukaarti!"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "Välju programmist"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Internetiühenduse jagamine"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Internetiühenduse jagamine töötab"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10000,31 +10881,31 @@ msgstr ""
"\n"
"Mida Te soovite teha?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "keela"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "tühista"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "seadista uuesti"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Peaten serverid..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Internetiühendust nüüd enam ei jagata"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Internetiühendust hetkel ei jagata"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10036,19 +10917,19 @@ msgstr ""
"\n"
"Mida Te soovite teha?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "luba"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Käivitan serverid..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Internetiühenduse jagamine nüüd töötab"
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
#, fuzzy
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -10062,21 +10943,21 @@ msgstr ""
"\n"
"Märkus: kohtvőrgu (LAN) jaoks on vajalik eraldi vőrgukaardi olemasolu."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Liides %s (kasutab moodulit %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Liides %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Teie süsteemis ei ole vőrgukaarti!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10084,11 +10965,11 @@ msgstr ""
"Ühtki vőrgukaarti ei ole hetkel seadistatud. Palun kasutage selleks "
"riistvara sätteseadjat."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Vőrguliides"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10103,7 +10984,7 @@ msgstr ""
"\n"
"Kohtvőrgu sätted seotakse selle liidesga."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -10111,12 +10992,12 @@ msgstr ""
"Palun valige millist vőrguliidest soovite kasutada kohtvőrgu\n"
"jaoks."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "Monitor ei ole seadistatud"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10126,17 +11007,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Alglaaduri stiil"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "Interneti sätted"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10147,7 +11028,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
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 C-Class Network that "
@@ -10159,34 +11040,34 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "CUPS serveri IP"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Vőimalik kohtvőrgu aadressi konflikt %s konfiguratsioonis!\n"
#
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Leitud tulemüüri sätted!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10194,20 +11075,20 @@ msgstr ""
"Hoiatus! Leiti olemasolevad tulemüüri sätted. Tőenäoliselt peaksite need "
"hiljem üle vaatame."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Seadistan..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Häälestan skriptid, installin tarkvara, käivitan serverid..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Probleemid paketi %s installimisel"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10217,24 +11098,24 @@ msgstr ""
"Nüüd saate internetiühendust jagada teistele kohtvőrgu arvutitele, kasutades "
"neil automaatset konfigureerimist (DHCP)"
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "Internetiühenduse jagamine on juba seadistatud aga hetkel keelatud."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
"Internetiühenduse jagamine on juba seadistatud ja see on praegu aktiivne."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Internetiühenduse jagamist ei ole kunagi seadistatud"
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Interneti jagamise seadistamine"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, fuzzy, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10249,209 +11130,6 @@ msgstr ""
"\n"
"Valige Abimehe käivitamiseks ``OK''"
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Vőrgusätted (%d liidest)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profiil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Kustuta profiil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Profiil kustutamiseks:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Uus profiil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Masinanimi: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Internetiühendus"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tüüp: "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Vaikelüüs:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Liides:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Olek:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Seadiste internetiühendus..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "LAN sätted"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Juhtprogramm"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Liides"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokoll"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Olek:"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Seadista kohtvőrk (LAN) ..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Abimees..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Rakenda"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Palun oodake... Rakendan seadistusi"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Ühendatud"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Ei ole ühendatud"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Ühenda..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Lahuta..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "LAN sätted"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Vőrgukaart %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Laadimisprotokoll"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Käivitub laadimisel"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP klient"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Aktiivne"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Aktiivne"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Internetiühenduse seadistamine"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Internetiühenduse seadistamine"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Ühenduse tüüp: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parameetrid"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Vaikelüüs"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Vőrgukaart"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP klient"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Turvataseme seadmine"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Juhtimiskeskus"
@@ -10460,94 +11138,130 @@ msgstr "Juhtimiskeskus"
msgid "Choose the tool you want to use"
msgstr "Valige kasutatav vahend"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\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 ""
+
+#: ../../standalone/drakxtv_.c:72
#, fuzzy
msgid "Canada (cable)"
msgstr "Kanada (Quebec)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "East Europe"
msgstr "Euroopa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Prantsusmaa"
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr "Islandi"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "West Europe"
msgstr "Euroopa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr "seerial"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Pakettide installimisel tekkis viga:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10591,7 +11305,7 @@ msgstr "Ei saa kiiruuendust alustada !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
#, fuzzy
msgid "logdrake"
msgstr "DrakNet"
@@ -10640,10 +11354,6 @@ msgstr "/_Eelistused"
msgid "/Options/Test"
msgstr "/Eelistused/Test"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Abi"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr "/Abi/_Misvärk"
@@ -10708,7 +11418,7 @@ msgstr ""
msgid "Content of the file"
msgstr ""
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -10717,81 +11427,111 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr ""
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "LAN sätted"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache ja Pro-ftpd"
-
#: ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid "sshd"
-msgstr "varjutatud"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Domeeninimi"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "ext2"
+msgid "Ftp Server"
+msgstr "NIS server:"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Server, Andmebaasid"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS server:"
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "NIS server:"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "seade"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Printserver:"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "huvitav"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "vormindatakse"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "Seadistused"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Salvesta kui..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Palun valige hiire tüüp"
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "ei leitud: serial_usb\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Teeskleme keskmist hiirenuppu?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Loetakse CUPS juhtprogramme"
+
+#: ../../standalone/scannerdrake_.c:42
+#, fuzzy
+msgid "Detecting devices ..."
+msgstr "Otsin printerit..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -10835,6 +11575,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
@@ -11228,10 +11980,6 @@ msgid "Multimedia - Sound"
msgstr "Multimeedia - Heli"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Utiliidid"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Dokumentatsioon"
@@ -11335,10 +12083,6 @@ msgid ""
msgstr "Komplekt programme meili ja uudiste lugemiseks ning veebi brausimiseks"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arhiveerimine, emuleerimine, monitoorimine"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Isiklikud finantsid"
@@ -11385,25 +12129,159 @@ msgstr "Multimeedia - CD kirjutamine"
msgid "Scientific Workstation"
msgstr "Teadustööjaam"
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Katkesta"
+#~ msgid "Choose options for server"
+#~ msgstr "Valige X server"
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
+#~ msgid "Monitor not configured"
+#~ msgstr "Monitor ei ole seadistatud"
-#~ msgid "None"
-#~ msgstr "Ei soovi"
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Graafikakaart ei ole veel seatud"
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Valige uus vaikimisi kasutaja :"
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Kuvatihedus ei ole veel seatud"
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Vőrguprinter"
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "proovige mőnd parameetrit muuta"
+
+#~ msgid "An error occurred:"
+#~ msgstr "Tekkis mingi viga:"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Jätkub %d sekundi pärast"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Kas see on őige?"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Tekkis mingi viga, proovige mőnd parameetrit muuta"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 server: %s"
+
+#~ msgid "Show all"
+#~ msgstr "Näita kőike"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Valmistume X-i seadistamiseks"
-#~ msgid "You may now provide its options to module %s."
+#~ msgid "What do you want to do?"
+#~ msgstr "Mida Te soovite teha?"
+
+#~ msgid "Change Monitor"
+#~ msgstr "Muuda monitori"
+
+#~ msgid "Change Graphics card"
+#~ msgstr "Muuda graafikakaardi"
+
+#~ msgid "Change Server options"
+#~ msgstr "Muuda serveri parameetreid"
+
+#~ msgid "Change Resolution"
+#~ msgstr "Muuda kuvatihedust"
+
+#~ msgid "Show information"
+#~ msgstr "Näita lisainfot"
+
+#~ msgid "Test again"
+#~ msgstr "Proovi veel"
+
+#~ msgid "Setting security level"
+#~ msgstr "Turvataseme seadmine"
+
+#~ msgid "Graphics card"
+#~ msgstr "Graafikakaart"
+
+#~ msgid "Select a graphics card"
+#~ msgstr "Valige graafikakaart"
+
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "Hoiatus: testimine vőib Teie arvuti peatada"
+
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "VGA, 640x400 sagedusel 60 Hz"
+
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "SVGA, 800x600 sagedusel 56 Hz"
+
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514-ühilduv, 1024x768, 87 Hz vahelejätuga "
+
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "SVGA, 1024x768, 87 Hz vahelejätuga, 800x600, 56 Hz"
+
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "SVGA, 800x600 sagedusel 60 Hz, 640x480 sagedusel 72 Hz"
+
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "SVGA, 1024x768 sagedusel 60 Hz, 800x600 sagedusel 72 Hz"
+
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "Kőrgsageduslik SVGA, 1024x768, 70 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Mitmesageduslik, 1280x1024 sagedusel 60 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Mitmesageduslik, 1280x1024 sagedusel 74 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Mitmesageduslik, 1280x1024 sagedusel 76 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Kuvatihedus saab olla 1600x1200 sagedusel 70 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Kuvatihedus saab olla 1600x1200 sagedusel 76 Hz"
+
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Teie poolt valitud gruppide kogusuurus on umbes %d MB.\n"
+
+#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
+#~ msgstr ""
+#~ "Kui soovite installida sellest vähem, valige vastav protsent.\n"
+#~ "\n"
+#~ "Madalama protsendi puhul installitakse vaid kőige tähtsamad paketid;\n"
+#~ "100%% tähendab kőige valitud pakettide installimist."
+
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Täpsemalt saate valida järgmisel sammul"
+
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Installitavate pakettide protsent"
+
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Valige turvatase"
+
+#~ msgid "Complete (%dMB)"
+#~ msgstr "Täielik (%d MB)"
+
+#~ msgid "Minimum (%dMB)"
+#~ msgstr "Minimaalne (%d MB)"
+
+#~ msgid "Recommended (%dMB)"
+#~ msgstr "Soovitatav (%d MB)"
+
+#~ msgid "Utilities"
+#~ msgstr "Utiliidid"
+
+#~ msgid "Archiving, emulators, monitoring"
+#~ msgstr "Arhiveerimine, emuleerimine, monitoorimine"
+
+#~ msgid "None"
+#~ msgstr "Ei soovi"
+
+#~ msgid "You may now provide options to module %s."
#~ msgstr "Nüüd vőite moodulile %s parameetreid määrata"
#~ msgid "mount failed"
@@ -11420,14 +12298,6 @@ msgstr "Teadustööjaam"
#~ "more security warnings and checks."
#~ msgstr "Turvataset on parandatud, lisatud on hoiatusi ja piiranguid."
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr "Multimeedia"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Ekspert"
-
#~ msgid ""
#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
#~ "local time according to the time zone you selected."
@@ -11444,47 +12314,9 @@ msgstr "Teadustööjaam"
#~ msgid "Configure network connection (LAN or Internet)"
#~ msgstr "Seadista vőrguühendus (kohtvőrk vői Internet)"
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Millisele kettale soovite seda ümber paigutada?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Palun valige paketid installimiseks"
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Info"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Gnome tööjaam"
-
-#, fuzzy
-#~ msgid "user"
-#~ msgstr "Kasutaja:"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
-#~ "\n"
-#~ msgstr "Palun valige hiire tüüp"
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "Välju"
-
-#, fuzzy
-#~ msgid "Removable media"
-#~ msgstr "CD/flopi/.. autoühendamine"
-
#~ msgid "Active"
#~ msgstr "Aktiivne"
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "Ei"
-
#~ msgid "A printer, model \"%s\", has been detected on "
#~ msgstr "Leiti printer, nimega \"%s\" "
@@ -11494,70 +12326,6 @@ msgstr "Teadustööjaam"
#~ msgid "Printer Device"
#~ msgstr "Printeri seade"
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "CUPS printserver"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "CUPS printserver"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Töömood"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "Muu"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Palun valige klaviatuuriasetus"
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Palun valige partitsioon"
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Tüüp: "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Kőlbmatu tagavarakoopia"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "Seadista X"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Printeri seade"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Katkesta"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "OK"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Hiir"
-
-#, fuzzy
-#~ msgid "toto"
-#~ msgstr "tuut"
-
-#, fuzzy
-#~ msgid "Starting your connection..."
-#~ msgstr "Testime Teie ühendust..."
-
#~ msgid "Closing your connection..."
#~ msgstr "Sulgeme nüüd ühenduse..."
@@ -11609,17 +12377,6 @@ msgstr "Teadustööjaam"
#~ msgid "New"
#~ msgstr "Uus"
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "Eemalda"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Palun valige partitsioon"
-
#~ msgid "Ambiguity (%s), be more precise\n"
#~ msgstr "Mitmeselt mőistetav (%s), palun täpsustage\n"
@@ -11648,26 +12405,6 @@ msgstr "Teadustööjaam"
#~ msgid "I'm about to restart the network device %s. Do you agree?"
#~ msgstr "Kas olete valmis vőrguliidese %s taaskäivitamiseks?"
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Tavaline valik on \"/dev/hda\" (esimese IDE kanali master), kui Te ei\n"
-#~ "tea täpselt, et tahate teisiti teha."
-
-#, fuzzy
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "Ühenduse tüüp: "
-
-#, fuzzy
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Valige uus vaikimisi kasutaja :"
-
-#, fuzzy
-#~ msgid "Test the mouse here."
-#~ msgstr "Palun testige hiirt"
-
#~ msgid ""
#~ "Please choose your preferred language for installation and system usage."
#~ msgstr "Valige keel süsteemi installimiseks ja kasutamiseks."
@@ -12541,57 +13278,9 @@ msgstr "Teadustööjaam"
#~ msgid "Remote queue"
#~ msgstr "Prindijärjekorra nimi"
-#, fuzzy
-#~ msgid "Remote queue name missing!"
-#~ msgstr "Prindijärjekorra nimi"
-
-#, fuzzy
-#~ msgid "Command line"
-#~ msgstr "Domeeninimi"
-
-#, fuzzy
-#~ msgid "Modify printer"
-#~ msgstr "Printerit ei ole"
-
-#, fuzzy
-#~ msgid "Network Monitoring"
-#~ msgstr "Vőrgusätted"
-
#~ msgid "Profile "
#~ msgstr "Profiil "
-#, fuzzy
-#~ msgid "Connection Time: "
-#~ msgstr "Ühenduse tüüp: "
-
-#, fuzzy
-#~ msgid "Connecting to Internet "
-#~ msgstr "Loo internetiühendus"
-
-#, fuzzy
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "Katkesta internetiühendus"
-
-#, fuzzy
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "Katkesta internetiühendus"
-
-#, fuzzy
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "Katkesta internetiühendus"
-
-#, fuzzy
-#~ msgid "Connection complete."
-#~ msgstr "Ühenduse nimi"
-
-#, fuzzy
-#~ msgid "average"
-#~ msgstr "rämps"
-
-#, fuzzy
-#~ msgid "Default Runlevel"
-#~ msgstr "Vaikimisi"
-
#~ msgid "NetWare"
#~ msgstr "NetWare"
@@ -12607,10 +13296,6 @@ msgstr "Teadustööjaam"
#~ msgid "Disable network"
#~ msgstr "Keela vőrguühendus"
-#, fuzzy
-#~ msgid "Enable network"
-#~ msgstr "Keela vőrguühendus"
-
#~ msgid ""
#~ "You can now test your mouse. Use buttons and wheel to verify\n"
#~ "if settings are good. If not, you can click on \"Cancel\" to choose "
@@ -12623,10 +13308,6 @@ msgstr "Teadustööjaam"
#~ msgid "DSL (or ADSL) connection"
#~ msgstr "DSL (vői ADSL) ühendus"
-#, fuzzy
-#~ msgid "Choose"
-#~ msgstr "Hiir"
-
#~ msgid "You can specify directly the URI to access the printer with CUPS."
#~ msgstr "Vőite anda ette ka URI, mille järgi CUPS printeri leiab."
@@ -12669,9 +13350,6 @@ msgstr "Teadustööjaam"
#~ msgid "Extra Text options"
#~ msgstr "Lisa teksti parameetrid"
-#~ msgid "Reverse page order"
-#~ msgstr "Viimane leht enne"
-
#~ msgid "Select Remote Printer Connection"
#~ msgstr "Vali vőrguprinteri ühendusviis"
@@ -12708,20 +13386,12 @@ msgstr "Teadustööjaam"
#~ msgid "Enable"
#~ msgstr "Luba"
-#, fuzzy
-#~ msgid "Light configuration"
-#~ msgstr "LAN sätted"
-
#~ msgid "Provider dns 1"
#~ msgstr "Teenusepakkuja DNS 1"
#~ msgid "Provider dns 2"
#~ msgstr "Teenuspakkuja DNS 2"
-#, fuzzy
-#~ msgid "fsck failed: "
-#~ msgstr "ühendamine ebaőnnestus: "
-
#~ msgid ""
#~ "To enable a more secure system, you should select \"Use shadow file\" "
#~ "and\n"
@@ -12745,25 +13415,15 @@ msgstr "Teadustööjaam"
#~ msgid "How do you want to connect to the Internet?"
#~ msgstr "Kuidas soovite luua internetiühendust?"
-#~ msgid "Configure..."
-#~ msgstr "Seadista..."
-
#~ msgid "Selected size %d%s"
#~ msgstr "Valitud suurus %d%s"
#~ msgid "Opening your connection..."
#~ msgstr "Testime Teie ühendust..."
-#, fuzzy
-#~ msgid "Configuration de Lilo/Grub"
-#~ msgstr "Seadistused: Lisa asukoht"
-
#~ msgid "This startup script try to load your modules for your usb mouse."
#~ msgstr "See skript proovib seadistada USB hiirt"
-#~ msgid "Boot style configuration"
-#~ msgstr "Alglaadimise stiil"
-
#~ msgid ""
#~ "Now that your Internet connection is configured,\n"
#~ "your computer can be configured to share its Internet connection.\n"
@@ -12787,9 +13447,6 @@ msgstr "Teadustööjaam"
#~ msgid "Configure LILO/GRUB"
#~ msgstr "LILO/GRUB seadistamine"
-#~ msgid "Create a boot floppy"
-#~ msgstr "Loo alglaadimisflopi"
-
#~ msgid "Choice"
#~ msgstr "Valik"
@@ -12919,9 +13576,6 @@ msgstr "Teadustööjaam"
#~ msgid "not connected"
#~ msgstr "ei ole ühendatud"
-#~ msgid "Actions"
-#~ msgstr "Tegevused"
-
#~ msgid "Scientific applications"
#~ msgstr "Teadusrakendused"
@@ -12937,9 +13591,6 @@ msgstr "Teadustööjaam"
#~ msgid "Second DNS Server"
#~ msgstr "Teine nimeserver:"
-#~ msgid "using module"
-#~ msgstr "kasutades moodulit"
-
#~ msgid "Development, Database"
#~ msgstr "Arendus, Andmebaasid"
@@ -12996,9 +13647,6 @@ msgstr "Teadustööjaam"
#~ "Kohtvőrk on juba seadistatud.\n"
#~ "Kas soovite:"
-#~ msgid "Reconfigure using wizard..."
-#~ msgstr "Seadistan uuesti abimehega..."
-
#~ msgid "Graphics Manipulation"
#~ msgstr "Graafikaprogrammid"
@@ -13051,18 +13699,12 @@ msgstr "Teadustööjaam"
#~ msgid "Confirm Password"
#~ msgstr "Salasőna uuesti"
-#~ msgid "default"
-#~ msgstr "tavaline"
-
#~ msgid "What is your system used for?"
#~ msgstr "Milline on Teie süsteemi kasutusala?"
#~ msgid "Select the size you want to install"
#~ msgstr "Valige paigalduse maht"
-#~ msgid "Use diskdrake"
-#~ msgstr "Kasuta diskdrake-i"
-
#~ msgid "Customized"
#~ msgstr "Isetehtud"
@@ -13092,9 +13734,6 @@ msgstr "Teadustööjaam"
#~ msgid "Search"
#~ msgstr "Otsi"
-#~ msgid "Package"
-#~ msgstr "Pakett"
-
#~ msgid "Tree"
#~ msgstr "Puu"
diff --git a/perl-install/share/po/fi.po b/perl-install/share/po/fi.po
index a3cc4183d..c377124d8 100644
--- a/perl-install/share/po/fi.po
+++ b/perl-install/share/po/fi.po
@@ -1,13 +1,12 @@
-# Translation file of Mandrake graphic install
-# Copyright (C) 1999, 2002 Mandrakesoft
-# Kim Enkovaara <kim.enkovaara@iki.fi>, 1999, 2000
-# Matias Griese <mahagr@utu.fi>, 2001, 2002
+# drakfloppy Finnish Translation.
+# Copyright (C) 2001 Free Software Foundation, Inc.
+# Matias Griese <mahagr@utu.fi>, 2001.
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-02-20 22:55EET\n"
+"Project-Id-Version: drakfloppy VERSION\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2001-12-17 23:18EET\n"
"Last-Translator: Matias Griese <mahagr@utu.fi>\n"
"Language-Team: Finnish\n"
"MIME-Version: 1.0\n"
@@ -15,24 +14,55 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 0.9.5\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Aseta kaikki näytöt erikseen"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kt"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Käytä Xinerama-laajennusta"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kt"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Määrittele vain kortin \"%s\" (%s) asetukset"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 Mt"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 Mt"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 Mt"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 Mt"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 Mt"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 Mt"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 Mt tai enemmän"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Valitse X-palvelin"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X-palvelin"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Monen näytön asettaminen"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -40,43 +70,44 @@ msgstr ""
"Järjestelmäsi tukee monen näytön laitteistokokoonpanoa.\n"
"Mitä haluat tehdä?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Näytönohjain"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Valitse näytönohjaimen muistin määrä"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Valitse näytönohjain"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "XFreen asentaminen"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Valitse X-palvelin"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Mitä versiota XFree-serveristä haluat käyttää?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X-palvelin"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Aseta kaikki näytöt erikseen"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Valitse X-palvelin"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Käytä Xinerama-laajennusta"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X-palvelin"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Määrittele vain kortin \"%s\" (%s) asetukset"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Mitä versiota XFree-serveristä haluat käyttää?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s laitteistokiihdytetyllä 3D-tuella"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -86,33 +117,18 @@ msgstr ""
"ssa.\n"
"Korttisi on tuettu myös XFree %s:ssa, jossa on mahdollisesti parempi 2D-tuki."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Näytönohjaimelle on olemassa laitteistokiihdytetyt 3D-ajurit XFree %s:ssa."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s laitteistokiihdytetyllä 3D-tuella"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Näytönohjaimelle on olemassa laitteistokiihdytetyt 3D-ajurit XFree %s:ssa.\n"
-"HUOMAA, ETTÄ TUKI ON KOKEELLINEN JA VOI JUMITTAA TIETOKONEESI."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s KOKEELLISELLA laitteistokiihdytetyllä 3D-tuella"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -124,31 +140,58 @@ msgstr ""
"HUOMAA, ETTÄ TUKI ON KOKEELLINEN JA VOI JUMITTAA TIETOKONEESI.Korttisi on "
"tuettu myös XFree %s:ssa, jossa on mahdollisesti parempi 2D-tuki."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Näytönohjaimelle on olemassa laitteistokiihdytetyt 3D-ajurit XFree %s:ssa.\n"
+"HUOMAA, ETTÄ TUKI ON KOKEELLINEN JA VOI JUMITTAA TIETOKONEESI."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (näytönohjaimen ajurin asennus)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFreen asentaminen"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Valitse näytönohjaimen muistin määrä"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Valitse optioita palvelimelle"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Säilytä muutokset?\n"
+"Nykyiset asetukset ovat:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Valitse monitori"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Näyttö"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Mukautettu"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Yleinen"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Peruuta"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -171,511 +214,326 @@ msgstr ""
"vaakavirkistystaajuus\n"
"on suurempi kuin oman näyttösi. Jos epäröit, valitse pienempi taajuus."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Vaakavirkistystaajuus"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Pystyvirkistystaajuus"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Näyttöä ei ole asetettu"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Näytönohjainta ei ole vielä asetettu"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Näytön resoluutiota ei ole vielä valittu"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Haluatko kokeilla asetuksia?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Varoitus: näytönohjaimesi testaaminen voi jumittaa tietokoneen"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Kokeile asetuksia"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 väriä (8 bittiä)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"kokeile joidenkin parametrien muuttamista"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 tuhatta väriä (15 bittiä)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Tapahtui virhe:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 tuhatta väriä (16 bittiä)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Lopetan %d sekunnissa"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 miljoonaa väriä (24 bittiä)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Onko tämä oikea asetus?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 miljardia väriä (32 bittiä)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Tapahtui virhe, kokeile joidenkin parametrien vaihtamista"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Resoluutiot"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Resoluutio"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Valitse resoluutio ja värisyvyys"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Näytönohjain: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 palvelin: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Lisäasetukset"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Peruuta"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Asiantuntijatila"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Näytä kaikki"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Haluatko kokeilla asetuksia?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Resoluutiot"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Kokeile asetuksia"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Näppäinasettelu: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Hiiren tyyppi: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Hiiren laite: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Näyttö: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Näytön vaakajuovataajuus: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Näytön virkistystaajuus: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Näytönohjain: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Näytönohjaimen tunniste: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Grafiikkamuisti: %s kt\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Värisyvyys: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Resoluutio: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 palvelin: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 ajurit: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Valmistelen X-Windowin asetuksia"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Mitä haluat tehdä?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Vaihda näyttöä"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Vaihda näytönohjainta"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Vaihda palvelimen optioita"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Vaihda resoluutiota"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Näytä tiedot"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Kokeile uudelleen"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Lopeta"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Säilytä muutokset?\n"
-"Nykyiset asetukset ovat:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "Käynnistettäessä X:ää"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"X voidaan laittaa käynnistymään automaattisesti käynnistyksen yhteydessä.\n"
"Haluatko käynnistää X:n automaattisesti?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Kirjaudu uudelleen %s:een aktivoidaksesi muutokset"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Kirjaudu ulos ja kirjoita sitten Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 väriä (8 bittiä)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 tuhatta väriä (15 bittiä)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 tuhatta väriä (16 bittiä)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 miljoonaa väriä (24 bittiä)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 miljardia väriä (32 bittiä)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kt"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kt"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 Mt"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 Mt"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 Mt"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 Mt"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 Mt"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 Mt"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 Mt tai enemmän"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Perus-VGA, 640x480 @ 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "SVGA, 800x600 @ 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514-yhteensopiva, 1024x768 @ 87 Hz lomitettu (ei 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "SVGA, 1024x768 @ 87 Hz lomitettu, 800x600 @ 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Laajennettu SVGA, 800x600 @ 60 Hz, 640x480 @ 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Lomittamaton SVGA, 1024x768 @ 60 Hz, 800x600 @ 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Korkeataajuuksinen SVGA, 1024x768 @ 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Näyttö, joka pystyy 1280x1024 @ 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Näyttö, joka pystyy 1280x1024 @ 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Näyttö, joka pystyy 1280x1024 @ 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Näyttö, joka pystyy 1600x1200 @ 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Näyttö, joka pystyy 1600x1200 @ 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Ensimmäinen sektori käynnistysosiolla"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Levyn ensimmäinen sektori (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "SILOn asennus"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Minne haluat asentaa käyttöjärjestelmän lataajan?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "LILO/grub asennus"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO tekstipohjaisella valikolla"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO graafisella valikolla"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Käynnistä DOSista/Windowsista (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Käyttöjärjestelmän lataajan pääasetukset"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Käytettävä käyttöjärjestelmän lataaja"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Käyttöjärjestelmän lataajan asennus"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Käynnistyslaite"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ei toimi vanhoissa BIOSeissa)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Tiivis"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "tiivis"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Näyttötila"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Tauko ennen oletusjärjestelmän käynnistystä"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Salasana"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Salasana (uudelleen)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Rajoita komentorivioptioita"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "rajoita"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Tyhjennä /tmp jokaisella käynnistyskerralla"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Tarkka muistin koko, jos tarpeen (löydettiin %d Mt)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Käytä montaa profiilia"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Anna muistin koko megatavuina"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Asetus ``Rajoita komentorivioptioita'' ei ole hyödyllinen ilman salasanaa"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Yritä uudelleen"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Salasanat poikkeavat toisistaan"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Käynnistysviesti"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Vapaa Firmware-viive"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Timeout ytimen käynnistyksessä"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Mahdollista käynnistys CD:ltä"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Mahdollista käynnistys OFilta"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Oletuskäyttöjärjestelmä?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -684,83 +542,83 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Tässä ovat asetustietueet.\n"
"Voit lisätä uusia tai muuttaa olemassaolevia."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Lisää"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Valmis"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Muokkaa"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Minkä tyyppisen tietueen haluat lisätä"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Muu käyttöjärjestelmä (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Muu käyttöjärjestelmä (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Muu käyttöjärjestelmä (Windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Kuva"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Juuri"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Liitä"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Luku-kirjoitus"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Taulukko"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Turvaton"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Otsikko"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Oletus"
@@ -792,53 +650,75 @@ msgstr "Sinulla täytyy määritellä juuriosio"
msgid "This label is already used"
msgstr "Otsikko on jo käytössä"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Löysin %s %s liitännät"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Onko sinulla muita?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Onko koneessa %s liityntää?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Ei"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Kyllä"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Katso laitteistotietoja"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Asetan ajuria %s ohjaimelle %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(moduli %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Voit antaa lisäasetuksia modulille %s.\n"
+"Asetukset ovat muotoa ``nimi=arvo nimi2=arvo2 ...''.\n"
+"Esimerkiksi, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Moduulin optiot:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Mitä %s-ajuria kokeillaan?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -854,37 +734,15 @@ msgstr ""
"lisämääreitä vai annatko sen itse etsiä tarvitsemansa tiedot? Joskus haku\n"
"voi jumittaa tietokoneen, mutta se ei aiheuta vahinkoa."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Automaattihaku"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Lisäasetukset"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Voit antaa lisäasetuksia modulille %s.\n"
-"Asetukset ovat muotoa ``nimi=arvo nimi2=arvo2 ...''.\n"
-"Esimerkiksi, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Moduulin optiot:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -893,50 +751,55 @@ msgstr ""
"Modulin %s lataaminen epäonnistui.\n"
"Haluatko yrittää muilla asetuksilla?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "oikeudet X-ohjelmille"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "oikeudet rpm-työkaluihin"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "salli \"su\""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "oikeudet ylläpidollisiin tiedostoihin"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(lisätty jo %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Salasana on liian yksinkertainen"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Anna käyttäjätunnus"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Käyttäjätunnus saa sisältää vain pieniä kirjaimia, numeroita, `-' ja `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Käyttäjätunnus on jo lisätty"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Käyttäjätunnus on jo lisätty"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Lisää käyttäjä"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -945,32 +808,32 @@ msgstr ""
"Lisää käyttäjä\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Hyväksy käyttäjä"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Oikea nimi"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Käyttäjätunnus"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Komentotulkki"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Kuvake"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Automaattinen kirjautuminen"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -979,119 +842,99 @@ msgstr ""
"tietokoneellesi.\n"
"Haluatko käyttää tätä ominaisuutta?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Valitse oletuskäyttäjä:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Valitse käytettävä ikkunointijärjestelmä:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Valitse käytettävä kieli."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr "Voit valita kielet jotka ovat käytettävissä asennuksen jälkeen"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Kaikki"
# Asennuksen sivuvalikko
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Salli kaikille käyttäjille"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Mukautettu"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "Ei jaettu"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Paketti %s pitää asentaa. Haluatko asentaa sen?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Voit jakaa sekä NFS:llä että Samballa. Kumpaa haluat käyttää"
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Pakollinen paketti %s puuttuu"
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Peruuta"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Tervetuloa murtautujat"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Huono"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Standardi"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Korkea"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Korkea"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoidi"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1103,14 +946,14 @@ msgstr ""
"koneisiin\n"
"tai Internettiin. Koneessa ei ole salasanoja."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
"Salasanat ovat nyt käytössä mutta koneen käyttö verkossa ei ole suositeltua."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1120,59 +963,60 @@ msgstr ""
"käytetään Internettiin liitettynä. Järjestelmässä on "
"turvallisuustarkastuksia."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Tällä turvallisuustasolla järjestelmän käyttö palvelimena on mahdollista.\n"
"Järjestelmää voidaan käyttää palvelimena joka hyväksyy yhteyksiä monilta\n"
"asiakkailta. "
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Pohjautuu edelliseen tasoon, mutta järjestelmä on kokonaan suljettu.\n"
"Turvallisuusasetukset ovat tiukimmillaan."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Valitse turvataso"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Turvataso"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Käytä libsafea palvelimille"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Kirjasto joka suojelee puskurin ylivuoto ja merkkijonon muotovirhehykkäyksiä "
"vastaan."
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1197,7 +1041,7 @@ 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_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Tervetuloa GRUB k~^Dytt~^Tj~^Drjestelm~^Dnvalitsijaan!"
@@ -1211,7 +1055,7 @@ msgstr "Tervetuloa GRUB k~^Dytt~^Tj~^Drjestelm~^Dnvalitsijaan!"
#
#. -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_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Kayt~^D %c- ja %c-napp~^Dimi~^D valitaksesi korostetun tietueen"
@@ -1226,7 +1070,7 @@ msgstr "Kayt~^D %c- ja %c-napp~^Dimi~^D valitaksesi korostetun tietueen"
#
#. -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_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr ""
"Paina enter kaynnist~^D~^Dksesi valitun kaytt”j„rjestelm„n, 'e' muokataksesi"
@@ -1241,7 +1085,7 @@ 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_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "komennot ennen k„ynnistyst„, tai 'c' komentoriville"
@@ -1255,27 +1099,27 @@ msgstr "komennot ennen k„ynnistyst„, tai 'c' komentoriville"
#
#. -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_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Korostettu tietue k„ynnistet„„n automaattisesti %d sekunnissa."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "ei tarpeeksi tilaa /boot-hakemistossa"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Työpöytä"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Käynnistysvalikko"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Et voi asentaa käyttöjärjestelmän lataajaa partitiolle %s\n"
@@ -1288,15 +1132,19 @@ msgstr "ohjeita ei ole vielä olemassa.\n"
msgid "Boot Style Configuration"
msgstr "Käynnistyksen tavan asetus"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Tiedosto"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
-msgstr "/Tiedosto/_Poistu"
+msgstr "/Tiedosto/Poistu"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1331,14 +1179,14 @@ msgstr "Yaboot-tila"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Tällä hetkellä käytössä oleva järjestelmälataaja on %s.\n"
"Valitse Aseta käynnistääksesi asennusohjelman."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Määrittele"
@@ -1348,7 +1196,7 @@ msgid "System mode"
msgstr "Järjestelmän tila"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Käytä X-Window-järjestelmää"
#: ../../bootlook.pm_.c:148
@@ -1359,16 +1207,18 @@ msgstr "Ei, en halua autologinia"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Kyllä, haluan autologinin (käyttäjä, ympäristö)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
-msgstr "OK"
+msgstr "Ok"
#: ../../bootlook.pm_.c:229
#, c-format
@@ -1414,7 +1264,7 @@ msgstr "Kuvankaappauksia ei voi tehdä ennen osiointia"
msgid "Screenshots will be available after install in %s"
msgstr "Kuvankaappaukset löytyvät asennuksen jälkeen hakemistosta %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Ranska"
@@ -1422,7 +1272,7 @@ msgstr "Ranska"
msgid "Costa Rica"
msgstr "Costa Rica"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Belgia"
@@ -1446,11 +1296,12 @@ msgstr "Norja"
msgid "Sweden"
msgstr "Ruotsi"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Alankomaat"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "Italia"
@@ -1458,7 +1309,7 @@ msgstr "Italia"
msgid "Austria"
msgstr "Itävalta"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "Yhdysvallat"
@@ -1466,8 +1317,8 @@ msgstr "Yhdysvallat"
msgid "Please make a backup of your data first"
msgstr "Tee ensin varmuuskopio tiedoistasi"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Lue tarkkaan!"
@@ -1480,11 +1331,12 @@ msgstr ""
"Jos aiot käyttää aboot:ia, varmista että jätät vapaata tilaa levyn alkuun\n"
"(2048 sektoria on tarpeeksi)"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Virhe"
@@ -1492,11 +1344,11 @@ msgstr "Virhe"
msgid "Wizard"
msgstr "Velho"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Valitse toiminta"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1508,144 +1360,149 @@ msgstr ""
"Ehdotus: muuta ensimmäiseksi osion kokoa\n"
"(klikkaa osiota ja valitse sitten \"Uusi koko\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Klikkaa osiota"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Yksityiskohdat"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "Journaloitu FS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Tyhjä"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Muut"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Tiedostojärjestelmien tyypit:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Luo"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tyyppi"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Käytä sen sijaan ``%s'':ää"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Poista"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Käytä ensin komentoa ``Irroita''"
# mat
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "Vaihdettuasi osion %s tyyppiä kaikki sillä olevat tiedot häviävät"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Valitse osio"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Valitse toinen osio"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Poistu"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Vaihda asiantuntijatilaan"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Vaihda normaalitilaan"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Peruuta"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Jatka joka tapauksessa?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Lopeta tallentamatta"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Lopeta kirjoittamatta osiotalua?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "Haluatko tallentaa muutokset tiedostoon /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Automaattinen varaus"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Tyhjennä kaikki"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Lisäasetukset"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "Kiintolevyn tiedot"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Kaikki primääriosiot käytetty"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Uusia osioita ei voida lisätä"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1653,31 +1510,31 @@ msgstr ""
"Voidaksesi luoda lisää osioita tuhoa yksi olemassaoleva osio jotta voisit "
"luoda laajennetun osion"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "Tallenna osiotaulu"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "Palauta osiotaulu"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Pelasta osiotaulu"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "Uudelleenlataa osiotaulu"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "Vaihdettavan median automaattinen liittäminen"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Valitse tiedosto"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1685,11 +1542,11 @@ msgstr ""
"Osiotaulun varmuuskopio ei ole saman kokoinen\n"
"Jatka silti?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Varoitus"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1697,124 +1554,131 @@ msgstr ""
"Aseta levyke asemaan\n"
"Kaikki levykkeen tiedot häviävät"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Yritän osiotalulun palautusta"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Yksityiskohtaiset tiedot"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Liitospaikka"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Optiot"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Uusi koko"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Siirrä"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Alusta"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Liitä"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Lisää RAIDiin"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Lisää LVM:iin"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Irroita"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Poista RAIDista"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Poista LVM:stä"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Muokkaa RAIDia"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Käytä loopback-tiedostoa"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Luo uusi osio"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Aloitussektori: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Koko Mt: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Tiedostojärjestelmä: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Liitospaikka: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Etuoikeus: "
+#: ../../diskdrake/interactive.pm_.c:463
+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 ""
+
# mat
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "Poista loopback-tiedosto?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Muuta osiotyyppiä"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Minkä tiedostojärjestelmän haluat?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Vaihdan ext2:sta ext3:een"
# mat
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Minne haluat liittää loopback-tiedoston %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Minne haluat liittää laitteen %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1822,126 +1686,131 @@ msgstr ""
"Ei voida poistaa liitospaikkaa koska osiota käytetään loopback-tilassa.\n"
"Poista loopback-tiedosto ensin"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Lasken FAT-tiedostojärjestelmän rajoja"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Muutan kokoa"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Tämän osion kokoa ei voi muuttaa"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Kaikki osion tiedot tulee varmuuskopioida"
# mat
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Osion %s koon muuttamisen jälkeen kaikki osion tiedot tuhoutuvat"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Valitse uusi koko"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Uusi koko (Mt): "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Mille levylle haluat siirtää?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektori"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Mille sektorille haluat siirtää?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Siirrän"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Siirrän osiota..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Valitse olemassaoleva RAID johon lisätään"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "uusi"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Valitse olemassaoleva LVM johon lisätään"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "LVM:n nimi?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Osiota ei voida käyttää loopback-osiona"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Loopback tiedostonimi: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Anna tiedostonimi"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Tiedosto on jo käytössä toiselle loopbackille, valitse toinen"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Tiedosto on jo olemassa. Käytä sitä?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Liittämisen optiot"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Useita"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "laite"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "taso"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "palan koko"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Varo: tämä on vaarallinen toiminto"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Minkä tyyppinen osiointi?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Paketti %s pitää asentaa. Haluatko asentaa sen?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1953,7 +1822,7 @@ msgstr ""
"Joko käytät LILOa ja se ei toimi, tai et käytä LILOa, jolloin et tarvitse /"
"boot -hakemistoa"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1964,7 +1833,7 @@ msgstr ""
"eikä sinulla ole /boot osiota.\n"
"Jos haluat käyttää LILO-käynnistyksenhallintaa, lisää Linuxille /boot osio."
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1974,132 +1843,132 @@ msgstr ""
"Mikään käynnistyslataaja ei osaa käsitellä tätä ilman /boot -osiota.\n"
"Lisää /boot -osio, jos haluat käyttää liloa tai grubia"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Levyn %s osiotaulu kirjotetaan levylle!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Sinun täytyy käynnistää kone uudelleen ennen kuin muutos tulee voimaan"
# mat
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Kaikki osiolla %s olevat tiedot häviävät osion alustuksen yhteydessä"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Alustan"
# mat
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Alustan loopback-osiota %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Alustan osiota %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Piilota tiedostot"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Siirrä tiedostot uuteen osioon"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"Hakemisto %s sisältää jo jotakin tietoa\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "Siirrän tiedostoja uudelle osiolle"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Kopioidaan %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Poistetaan %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "osio %s tunnetaan nyt nimellä %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Laite: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS-asema: %s (vain arvaus)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Tyyppi: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Nimi: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Alkaa: sektori %s\n"
# mat
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Koko: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sektoria"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Sylinteristä %d sylinteriin %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Alustettu\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Ei alustettu\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Liitetty\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2108,7 +1977,7 @@ msgstr ""
"Loopback tiedosto(t):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2116,27 +1985,27 @@ msgstr ""
"Osiolta käynnistetään oletuksena\n"
" (MS-DOS käynnistys, ei lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Taso %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Palan koko %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-levyt %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback-tiedoston nimi: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2148,7 +2017,7 @@ msgstr ""
"ajuriosio. Sinun olisi kaiketi\n"
"parasta jättää se rauhaan.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2160,64 +2029,64 @@ msgstr ""
"osio on järjestelmäsi\n"
"kaksoiskäynnistämiseksi.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Koko: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometria: %s sylinteriä, %s lukupäätä, %s sektoria\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Tietoja: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-levyt %s\n"
# mat
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Osion tyyppi: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "väylässä %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Optiot: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "Tiedostojärjestelmän salausavain"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "Valitse tiedostojärjestelmäsi salausavain"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Salausavain on liian yksinkertainen (sen pitää olla ainakin %d merkkiä pitkä)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "Salausavaimet eivät täsmää"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "Salausavain"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "Salausavain (uudelleen)"
@@ -2226,35 +2095,65 @@ msgid "Change type"
msgstr "Muuta tyyppiä"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Klikkaa mediaa"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Tunnistustapa"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Internet"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Käyttäjätunnus"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Käyttäjätunnus"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS-alue"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "Hae palvelimet"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s:n alustus %s:ta epäonnistui"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "en osaa alustaa %s:ää tyyppiä %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck epäonnistui virhekoodilla %d tai signaalilla %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "virhe irroitettaessa %s: %s"
@@ -2271,68 +2170,323 @@ msgstr ""
msgid "server"
msgstr "palvelin"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Et voi käyttää JFS:ää alle 16 Mt osioilla"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Et voi käyttää ReiserFS:ää alle 32 Mt osioilla"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Liitospaikan pitää alkaa /-merkillä."
# mat
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "On jo olemassa osio, jonka liitospaikka on %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Et voi käyttää LVM loogista taltiota liitekohtana %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Tämän hakemiston pitäisi olla juuritiedostojärjestelmässä"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Tarvitset tähän liitoskohtaan oikean tiedostojärjestelmän (ext2, reiserfs)\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Et voi käyttää salattua tiedostojärjestelmää liitoskohdassa %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "Vapaa tila ei riitä automaattiseen varaukseen"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr "Ei mitään tekemistä"
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Virhe kirjoitettaessa tiedostoon %s: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"On tapahtunut virhe - ei löytynyt ainuttakaan laitetta, joille voi luoda "
"uuden tiedostojärjestelmän. Tarkista laitteistosi korjataksesi ongelman"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Sinulla ei ole yhtään osiota!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Tee automaattinen tunnistus"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Yleinen"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Kortin muisti (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "lataa asetukset"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Muuta tyyppiä"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Lopeta"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Ohje"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Ohje"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Ohje/_Tietoja..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Hiiri"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Kortin muisti (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Peruuta"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Hiiri"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Kuvaus"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Tunnistustapa"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Valitse tiedosto"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Yhdyskäytävän laite"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 näppäintä"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Kiintolevyjen tunnistus"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Katso laitteistotietoja"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Näytä tiedot"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+# Asennuksen sivuvalikko
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Hiiren määrittely"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "löydetty portista %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Odota hetki"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d sekuntia"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Poistetaan tulostin \"%s\" ..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Automaattihaku"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2346,7 +2500,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2462,9 +2616,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2683,7 +2836,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2695,9 +2848,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2744,21 +2896,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2774,9 +2925,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Tässä vaiheessa sinun pitää valita mihin haluat asentaa Mandrake Linux\n"
"-käyttöjärjestelmän. Jos kiintolevysi on tyhjä tai olemassaoleva "
@@ -2883,9 +3034,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3037,38 +3187,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3259,11 +3403,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3325,7 +3469,7 @@ msgstr ""
" Älä valitse tätä asennusluokkaa, ellet ole aivan varma, mitä olet "
"tekemässä."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3355,7 +3499,7 @@ msgstr ""
"Paina \"Lisää\"-painiketta saadaksesi täydellisen listan tuetuista "
"näppäimistöistä. "
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3382,7 +3526,7 @@ msgstr ""
"ylimääräiset\n"
"kielet, paina \"Ok\"-painiketta jatkaaksesi."
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3409,7 +3553,7 @@ msgstr ""
"hiiri ei toimi kunnolla, paina välilyöntiä tai enteriä peruttaaksesi, minkä\n"
"jälkeen voit valita uudelleen."
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3417,23 +3561,23 @@ msgstr ""
"Valitse oikea portti. Esimerkiksi \"COM1\" portti Windowsissa\n"
"on nimetty \"ttyS0\":ksi GNU/Linuxissa."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3455,7 +3599,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3477,7 +3621,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3485,7 +3629,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3506,7 +3650,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3529,7 +3673,7 @@ msgstr ""
"tuhoa kyseiset kohdat. Mutta että siinä tapauksessa tarvitset itse\n"
"käynnistyslevykettä päästäksesi kyseisiin käyttöjärjestelmiin!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3543,29 +3687,28 @@ msgstr ""
"Jos et tiedä tarkalleen mitä olet tekemässä, valitse \"Levyn ensimmäinen\n"
"sektori (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3574,7 +3717,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
#, fuzzy
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
@@ -3600,7 +3743,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"DrakX hakee koneeseen asennettuja PCI-väyläisiä SCSI-laitteita. \n"
@@ -3631,7 +3774,7 @@ msgstr ""
"(jos\n"
"se on asennettu tietokoneeseesi)."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3641,9 +3784,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3655,7 +3797,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" 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"
@@ -3681,7 +3823,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3708,18 +3850,17 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3727,12 +3868,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3748,7 +3888,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -3758,7 +3898,7 @@ msgstr ""
"Ole varovainen, koska kaikki asemalla oleva tieto tuhoutuu eikä ole enää\n"
"palautettavissa!"
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3776,7 +3916,7 @@ msgstr ""
"Paina \"Peruuta\" keskeyttääksesi tämän toiminnon ilman että menetät\n"
"mitään kiintolevyllä ollutta tietoa ja osoita."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3784,12 +3924,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr "Sinun täytyy myös alustaa %s"
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3814,20 +3954,20 @@ msgstr ""
"\n"
"Haluatko todella asentaa nämä palvelimet?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr ""
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Aseta tyhjä FAT-alustettu levyke levyasemaan %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Tämä levyke ei ole FAT-alustettu"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3835,7 +3975,7 @@ msgstr ""
"Käyttääksesi tätä \"tallennetut paketit\" valintaa, käynnistä asennus "
"optiolla \"linux defcfg=floppy\""
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Virhe lukiessa tiedostoa %s"
@@ -3866,7 +4006,7 @@ msgstr "Sinulla tulee olla heittovaihtotiedosto"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -3874,59 +4014,59 @@ msgstr ""
"\n"
"Jatka kuitenkin?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Sinulla pitää olla FAT-osio liitettynä hakemistoon /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Käytä tyhjää tilaa"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Ei tarpeeksi tilaa uusien osioiden luomiseksi"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Käytä olemassa olevia osioita"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Ei ole olemassa olevaa osiota käytettäväksi"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Käytä Windows-osiota loopback-tiedostona"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Mille osiolle haluat laittaa Linux4Win:in?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Valitse koot"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Juuriosion koko Mt: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Sivutusosion koko Mt: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Käytä tyhjää tilaa Windows-osiolla"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Minkä osion kokoa haluat muuttaa?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Lasken Windows-tiedostojärjestelmän rajoja"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -3935,12 +4075,15 @@ msgstr ""
"FAT-järjestelmän koon muuttaja ei osaa käsitellä osiotasi,\n"
"saatiin seuraava virhe: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+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-osiosi on liian pirstoutunut, mene Windowsiin ja aja \"defrag\" ensin"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -3961,55 +4104,55 @@ msgstr ""
"Samalla suosittelen ottamaan varmuuskopiot tärkeistä tiedoista.Kun olet "
"varma, paina Ok."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Kuinka paljon tilaa haluat säilyttää Windowsilla"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "osio %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT-tiedostojärjestelmän koon muuttaminen epäonnistui: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Ei ole FAT-osioita, joiden kokoa voisi muuttaa tai käyttää loopback-"
"tiedostoina (tai osiot ovat täynnä)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Tyhjennä koko levy"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Poista Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Sinulla on enemmän kuin yksi kiintolevy. Mille haluat asentaa Linuxin?"
# mat
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "KAIKKI olemassaolevat osiot ja niissä oleva tieto tuhoutuu asemalta %s"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Mukautettu levyn osiointi"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Käytä fdiskiä"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4018,11 +4161,11 @@ msgstr ""
"Voit nyt osioda kiintolevysi %s\n"
"Kun olet valmis, älä unohda tallettaa asetuksia komennolla `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Sinulla ei ole tarpeeksi tilaa Windows-osiollasi"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Ei ole tarpeeksi tilaa asentamiseen"
@@ -4031,16 +4174,16 @@ msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX-Osiointivelho löysi seuraavat ratkaisut:"
# mat
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Osiointi epäonnistui: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Käynnistän verkkoa"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Ajan alas verkkoa"
@@ -4052,12 +4195,12 @@ msgstr ""
"Tapahtui virhe, sitä ei voida käsitellä kunnolla.\n"
"Jatka omalla riskilläsi."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Kahdentunut liitospaikka %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4069,12 +4212,12 @@ msgstr ""
"Tarkista cdrom Linux-koneessa käyttämällä \"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
# mat
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Tervetuloa %s:n"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Ei levykeasemaa käytettävissä"
@@ -4084,9 +4227,9 @@ msgstr "Ei levykeasemaa käytettävissä"
msgid "Entering step `%s'\n"
msgstr "Siirryn vaiheeseen `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4097,200 +4240,156 @@ msgstr ""
"paina `F1' kun\n"
"käynnistät asennusohjelmaa CDROM-asemasta. Tämän jälkeen kirjoita `text'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Asennusluokka"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr "Valitse yksi seuraavista asennusluokista:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Valitsemiesi ryhmien kokonaiskoko on suunnilleen %d Mt.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Jos haluat asentaa vähemmän kuin tämä koko,\n"
-"valitse prosenttiosuus paketeista jonka haluat asentaa.\n"
-"\n"
-"Pieni prosenttiosuus asentaa vain tärkeimmät paketit,\n"
-"100%% osuus asentaa kaikki paketit."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Sinulla on levyllä tilaa vain %d%% paketeista\n"
-".Jos haulat asentaa vähemmän kuin tämän osan,\n"
-"valitse prosenttiosuus paketeista jotka haluat asentaa.\n"
-"Pieni prosentti asentaa vain tärkeimmät paketit, %d%%\n"
-" prosenttiosuus asentaa niin monta pakettia kuin on mahdollista."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Voit valita paketit tarkemmin seuraavassa vaiheessa"
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Prosenttiosuus asennettavista paketeista"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Pakettiryhmien valinta"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Yksittäisten pakettien valinta"
# mat
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Koko yhteensä: %d / %d Mt"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Viallinen paketti"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Nimi: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Versio: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Koko: %d Kt\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Tärkeys: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Et voi asentaa tätä pakettia, koska levyllä ei ole tarpeeksi tilaa sen "
"asentamiseksi"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Seuraavat paketit asennetaan"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Seuraavat paketit poistetaan"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Et voi valita/poistaa tätä pakettia"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Tämä on pakollinen paketti, sitä ei voida poistaa valinnoista"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Et voi poistaa tämän paketin valintaa. Se on jo asennettu"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Tämä paketti tulee päivittää\n"
"Oletko varma että haluat poistaa valinnan?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Et voi poistaa tämän paketin valintaa. Paketti pitää päivittää."
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Näytä automaattisesti valitut paketit"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Asenna"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Lataa/Tallenna levykkeelle"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "Päivitän pakettien valintaa"
# Asennuksen sivuvalikko
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "Minimaalinen asennus"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Valitse asennettavat paketit"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Asennan"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Arvioin aikaa"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Jäljellä "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Valmistelen asennusta"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d pakettia"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Asennan pakettia %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Hyväksy"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Hylkää"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4305,17 +4404,17 @@ msgstr ""
"Jos sinulla ei ole levyä, paina Peruuta välttääksesi asennukset tältä "
"levyltä."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Jatka kuitenkin?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Tapahtu virhe järjestettäessä paketteja:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Tapahtu virhe asennettaessa paketteja:"
@@ -4390,11 +4489,11 @@ msgstr "Tapahtui virhe"
msgid "Do you really want to leave the installation?"
msgstr "Haluatko todella poistua asennuksesta?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Lisenssin hyväksyminen"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4409,7 +4508,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -4515,109 +4614,113 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Näppäimistö"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "Valitse näppäimistösi asettelu."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Tässä on koko lista olemassa olevista näppäimistöistä"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Valitse asennuksen luokka?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Asenna/Päivitä"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Onko tämä asennus vai päivitys?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Suositeltu"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Asiantuntija"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "Päivitä"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "Päivitä vain paketit"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Valitse hiiren tyyppi."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Hiiren portti"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Mihin sarjaporttiin hiiresi on liitetty."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Näppäinemulaatio"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "2. näppäimen emulaatio"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "3. näppäimen emulaatio"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Asetan PCMCIA kortteja...."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Asetan IDE-levyä"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "ei vapaita osioita"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Tarkistan osioita löytääkseni liitoskohdat"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Valitse liitospaikat"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4629,7 +4732,7 @@ msgstr ""
"\n"
"Hyväksytkö kaikkien osioiden menettämisen?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4637,7 +4740,7 @@ msgstr ""
"DiskDrake ei pystynyt lukemaan osiotaulua oikein.\n"
"Jatka omalla vastuullasi!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -4646,76 +4749,79 @@ msgstr ""
"käynnistääksesi järjestelmän, sinun pitää luoda käynnistyslohko-osio "
"DiskDrakessa."
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr "Päivitykseen tarvittavaa juuriosiota ei löytynyt"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Juuriosio"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Mikä on järjestelmäsi juuriosio (/) ?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Sinun tulee käynnistää järjestelmä uudelleen jotta muutokset tulevat voimaan"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Valitse alustettavat osiot"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Tarkista vialliset lohkot?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Alustan osioita"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Luon ja alustan tiedostoa %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Heittovaihtotiedosto ei ole riittävän suuri, suurenna sitä"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Etsin saatavilla olevia paketteja"
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "Etsin saatavilla olevia paketteja"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Etsin päivitettäviä paketteja"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Et voi poistaa tämän paketin valintaa. Se on jo asennettu"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Järjestelmässäsi ei ole riittävästi tilaa asennukseen tai päivitykseen (%d > "
"%d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Täydellinen (%dMt)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimi (%dMt)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Suositeltu (%dMt)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -4723,35 +4829,35 @@ msgstr ""
"Lataa tai tallenna pakettien valinta levykkeelle.\n"
"Muoto on sama kuin auto_install-toiminnon luomilla levykkeillä."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Lataa levykkeeltä"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Ladataan levykkeeltä"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Pakettien valinta"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "Aseta levyke, jossa on pakettien valinta"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Tallenna levykkeelle"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Valittu koko on suurempi kuin olemassa oleva levytila"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr "Asennuksen tyyppi"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -4759,19 +4865,19 @@ msgstr ""
"Et ole valinnut yhtäkään pakettiryhmää\n"
"Valitse haluamasti minimaalinen asennus"
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "X:llä"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr "Perusdokumentaation kanssa (suositeltu!)"
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr "Pienin mahdollinen asennus (erityisesti ei urpmia)"
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4781,16 +4887,16 @@ msgstr ""
"Jos sinulla ei ole mitään levyistä, paina Peruuta.\n"
"Jos jotkut levyistä puuttuvat, poista niiden valinnat, ja paina OK."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom nimeltään \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Valmistelen asennusta"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4799,24 +4905,24 @@ msgstr ""
"Asennan pakettia %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Asennuksen jälkeiset toiminnot"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Aseta käyttämäsi käynnistyslevyke asemaan %s"
# mat
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Aseta moduulien päivityslevyke asemaan %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -4890,13 +4996,15 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
+#, fuzzy
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
@@ -4908,152 +5016,182 @@ msgstr ""
"\n"
"Haluatko asentaa päivitykset ?"
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Otan yhteyttä Mandrake Linuxin sivustolle saadakseni listan olemassaolevista "
"peileistä"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Valitse peilijärjestelmä josta paketit haetaan"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Yhdistän peilijärjestelmään hakeakseni uusimman pakettilistan"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Mikä on järjestelmäsi aikavyöhyke?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Laitteistokello asetettu GMT-aikaan"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Automaattinen kellon synkronisointi (käyttäen NTP:tä)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "NTP-palvelin"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Ulkoinen CUPS-palvelin"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Ei kirjoitinta"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Onko sinulla muita?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
# Asennuksen sivuvalikko
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Johtopäätös"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Hiiri"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Aikavyöhyke"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Kirjoitin"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "ISDN-kortti"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Äänikortti"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV-kortti"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Windows (FAT32)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Paikalliset tiedostot"
# Asennuksen sivuvalikko
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Ylläpitäjän salasana"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Ei salasanaa"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Salasana on liian yksinkertainen (sen tulee olla ainakin %d merkkiä pitkä)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Tunnistustapa"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "Tunnistus LDAPilla"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "LDAP perus-dn"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "LDAP-palvelin"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "Tunnistus NIS:llä"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS-alue"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS-palvelin"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Tunnistus LDAPilla"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Hae Windowsin kirjasimet"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NTP-palvelin"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -5080,19 +5218,19 @@ msgstr ""
"Jos haluat luoda käynnistyslevykkeen järjestelmääsi, aseta levyke\n"
"ensimmäiseen asemaan ja paina \"Ok\","
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Ensimmäinen levyasema"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Toinen levyasema"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Ohita"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5117,7 +5255,7 @@ msgstr ""
"Haluatko luoda käynnistyslevykkeen järjestelmääsi?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5126,28 +5264,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Levyajuria ei ole saatavilla"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Valitse levyasema jolla luot käynnistyslevykkeen"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
msgstr "Aseta levyke asemaan %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Luon käynnistyslevykettä"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Valmistelen käyttöjärjestelmän lataajaa"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5159,11 +5297,11 @@ msgstr ""
"Asennus jatkuu, mutta sinun täytyy käyttää BootX:ää\n"
"koneesi käynnistämiseen"
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Haluatko käyttää aboot:ia?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5172,15 +5310,15 @@ msgstr ""
"yritä pakkoasennusta vaikka se tuhoaa ensimmäisen osion?"
# Asennuksen sivuvalikko
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Asennan käyttöjärjestelmän lataajaa"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Järjestelmälataajan asennus epäonnistu. Seuraava virhe tapahtui:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5200,18 +5338,17 @@ msgstr ""
"komentokehoite."
# mat
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Aseta tyhjä levyke levyasemaan %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Valmistelen automaattiasennuslevykettä"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5221,7 +5358,8 @@ msgstr ""
"\n"
"Haluatko todella lopettaa?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5232,7 +5370,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5247,17 +5385,21 @@ msgstr ""
"korjattujen virheiden listan osoitteesta:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Järjestelmän asettamisesta saat tietoja virallisen Linux Mandraken\n"
"käyttäjäoppaan jälkiasennuskappaleesta."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Valmistelen automaattista asennuslevykettä"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5271,15 +5413,15 @@ msgstr ""
"\n"
"Ehkä haluat mieluummin toistaa asennuksen.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automaattinen"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Toista"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Yksittäisten pakettien valinta"
@@ -5306,44 +5448,24 @@ msgstr ""
msgid "Choose a file"
msgstr "Valitse tiedosto"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Lisäasetukset"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr "Perusasetukset"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Odota hetki"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Tietoja"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Laajenna puu"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Sulje puu"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Vaihda tasaisen ja ryhmäjärjestyksen välillä"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Huono valinta, yritä uudelleen\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Valintasi? (oletus %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -5352,31 +5474,35 @@ msgstr ""
"Kohdat, jotka sinun pitää täyttää:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Valintasi? (0/1, oletus '%s') "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "Painike '%s': %s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+msgid "Do you want to click on this button?"
msgstr "Haluatko klikata tätä painiketta? "
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Valintasi? (oletus '%s'%s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> On monta asiaa, joista valita (%s).\n"
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -5386,7 +5512,7 @@ msgstr ""
"tai paina vain Enter jatkaaksesi.\n"
"Valintasi? "
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -5395,328 +5521,328 @@ msgstr ""
"=> Huomaa, nimike vaihtui:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr "Lähetä uudelleen"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Tsekki (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Saksa"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Espanja"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Suomi"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Ranska"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norja"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Puola"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Venäjä"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Ruotsi"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "UK näppäimistö"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "US näppäimistö"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Albaani"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armeenia (vanha)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armeenia (kirjoituskone)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armeenia (foneettinen)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr ""
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgia"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr "Bulgaria (foneettinen)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "Bulgaria (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brasilia"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Valkovenäjä"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Sveitsi (Saksalainen järjestys)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Sveitsi (Ranskalainen järjestys)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Tsekki (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Saksa (ei kuolleita näppäimiä)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Tanska"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Norja (Dvorak)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Ruotsi)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Eesti"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgia (\"Venäläinen\"-järjestys)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgia (\"Latin\"-järjestys)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Kreikka"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Unkari"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Kroatia"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Israeli"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Israeli (Foneettinen)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iran"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islanti"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Italia"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Japani 106-näppäiminen"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Korealainen näppäimistö"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latinalainen amerikka"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Liettua AZERTY (vanha)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Liettua AZERTY (uusi)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Liettua \"numerorivi\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Liettua \"foneettinen\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "Latvia"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Makedonia"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Hollanti"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Puola (qwerty järjestys)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Puola (qwertz järjestys)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugali"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Kanada (Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Romania (qwertz)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Romania (qwerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Venäjä (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slovenia"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovakia (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovakia (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "Serbia (cyrillic)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr "Tamil"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thai-näppäimistö"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Tajik-näppäimistö"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turkki (perinteinen \"F\"-malli)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turkki (perinteinen \"Q\"-malli)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukraina"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US näppäimistö (kansainvälinen)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamilainen \"numerorivi\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Jugoslavia (latin)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
#, fuzzy
msgid "Left \"Windows\" key"
msgstr "Hae Windowsin kirjasimet"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5729,7 +5855,32 @@ msgstr "Rengasmaisia liitoksia %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Poista loogiset osiot ensin\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Puhelinnumero"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+# Asennuksen sivuvalikko
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Levyjen osiointi"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr "PCMCIA:ta ei tueta enää 2.2-sarjan ytimissä. Käytä 2.4 ydintä."
@@ -5770,10 +5921,6 @@ msgstr "1 näppäin"
msgid "Generic 2 Button Mouse"
msgstr "Yleinen 2-nappinen hiiri"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Yleinen"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Rulla"
@@ -5838,38 +5985,54 @@ msgstr "ei mikään"
msgid "No mouse"
msgstr "Ei hiirtä"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Testaa hiiri"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Aktivoidaksesi hiiren,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "PYÖRITÄ HIIREN RULLAA!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Loppu"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Seuraava ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Edellinen"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Onko tämä oikein?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Tietoja"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Laajenna puu"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Sulje puu"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Vaihda tasaisen ja ryhmäjärjestyksen välillä"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Ota yhteys internettiin"
@@ -5916,7 +6079,7 @@ msgstr ""
"Ethernet-verkkokorttia ei löytynyt järjestelmästä.\n"
"Ei voida asentaa tämän tyyppistä yhteyttä."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Valitse verkkoliittymä"
@@ -5929,7 +6092,7 @@ msgstr "Valitse mitä verkkokorteista haluat käyttää internetiin liittymiseen"
msgid "no network card found"
msgstr "verkkokorttia ei löytynyt"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Asetan verkkoa"
@@ -5945,15 +6108,15 @@ msgstr ""
"Koneesi nimen pitäisi olla täysin laillinen nimi, kuten\n"
"\" minunkone.omapaikka.net\"."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Koneen nimi"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Verkkoasetusten velho"
@@ -6008,7 +6171,7 @@ msgstr "ISDN:n asetus"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Valitse palveluntarjoajasi.\n"
" Jos se ei ole listassa, valitse `Ei listattu'"
@@ -6027,14 +6190,14 @@ msgstr "Muun maailman käyttämä protokolla"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Muun maailman käyttämä protokolla \n"
" ei D-kanavaa (leased lines)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Mitä protokollaa haluat käyttää?"
#: ../../network/isdn.pm_.c:199
@@ -6058,7 +6221,8 @@ 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"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Jos sinulla on ISA-kortti, seuraavien arvojen pitäisi olla oikeat.\n"
@@ -6074,13 +6238,13 @@ msgid "Continue"
msgstr "Jatka"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Mikä ISDN-kortti sinulla on?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Olen havainnut ISDN PCI-kortin, mutta en tunnista tyyppiä. Valitseyksi "
"seuraavassa ruudussa olevista korteista."
@@ -6097,47 +6261,47 @@ msgstr "Valitse sarjaportti, johon modeemisi on kytketty."
msgid "Dialup options"
msgstr "Soittoasetukset"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Yhteyden nimi"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Puhelinnumero"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Käyttäjä ID"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Script-pohjainen"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Terminaalipohjainen"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Verkkoalueen nimi"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Ensimmäinen nimipalvelin (ei pakollinen)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Toinen nimipalvelin (ei pakollinen)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6145,7 +6309,7 @@ msgstr ""
"\n"
"Voit joko katkaista yhteyden tai asettaa sen uudelleen."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6153,11 +6317,11 @@ msgstr ""
"\n"
"Voit asettaa yhteytesi uudelleen."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Olet parasta aikaa yhteydessä internettiin."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6165,33 +6329,33 @@ msgstr ""
"\n"
"Voit joko ottaa yhteyden internettiin tai asettaa yhteyden uudelleen."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Et ole juuri nyt yhteydessä internettiin."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Ota yhteys"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Katkaise yhteys"
# Asennuksen sivuvalikko
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr "Aseta verkkoyhteys"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Internetyhteyden muodostus ja asetukset"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Asetamme seuraavaksi %s-yhteyden."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6210,12 +6374,12 @@ msgstr ""
"\n"
"Paina Ok jatkaaksesi."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Verkon asetukset"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6227,9 +6391,9 @@ msgstr ""
"Paina Ok säilyttääksesi nykyiset asetukset tai peruuta asettaaksesi "
"internet- ja verkkoasetukset uudelleen.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"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"
@@ -6239,66 +6403,72 @@ msgstr ""
"Seuraavassa vaiheessa määritellään sinun internet- / verkkoasetukset.\n"
"Jos et halua käyttää automaattista tunnistusta, poista kyseinen valinta.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Valitse uusi asetusprofiili"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Käytä automaattista tunnistusta"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Asiantuntijatila"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Etsin laitteita...."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Tavallinen modeemiyhteys"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "löydetty portista %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN-yhteys"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "löydetty %s:sta"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "ADSL-yhteys"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "löydetty seuraavasta liitännästä: %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Kaapeliyhteys"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "Kaapeliyhteys havaittu"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "Lähiverkko"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "seuraavat ethernet-verkkokortit löydetty"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Valitse yhteys, jonka haluat asettaa"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6308,23 +6478,23 @@ msgstr ""
"Valitse se, jota haluat käyttää.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Internetyhteys"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Haluatko ottaa yhteyden koneen käynnistyksen yhteydessä?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Verkon asetukset"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr "Verkko pitää käynnistää uudelleen"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6335,7 +6505,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6345,7 +6515,7 @@ msgstr ""
"\n"
"Asetukset tulevat käyttöön myös itse järjestelmässä.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6353,19 +6523,19 @@ msgstr ""
"Kun tämä on tehty, suosittelemme käynnistämään X-ympäristön\n"
"uudelleen välttääksesi järjestelmän nimen vaihdoksesta tulevat ongelmat."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
"Ongelmia asettamisen aikana.\n"
"Testaa yhteytesi net_monitor- tai mcc-työkalulla. Jos yhteytesi ei toimi, "
"voit käynnistää asetustyökalun uudelleen"
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"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."
@@ -6374,7 +6544,7 @@ msgstr ""
"Hyväksy, jos haluat pitää laitteen asetukset sellaisina, kun ne olivat.\n"
"Alla olevien kohtien muokkaaminen korvaa voimassa olevat asetukset."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6383,38 +6553,43 @@ msgstr ""
"Anna koneen IP-asetukset. Kukin kohta tulee syöttää IP-osoitteena,\n"
"pisteillä eroteltuna nelinumeroisena lukuna (esim. 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Asetan verkkolaitetta %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (ajuri %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP-osoite"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Verkkopeite"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Automaattinen IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Käynnistetty koneen käynnistämisen yhteydessä"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP-osoitteen tullee olla muotoa 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6425,64 +6600,64 @@ msgstr ""
"Koneesi nimen pitäisi olla täydellinen, kuten ``minunkone.yritys.fi''.\n"
"Voit antaa myös yhdyskäytävän IP-osoitteen jos sinulla on sellainen."
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "Nimipalvelin"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Yhdyskäytävä (esim. %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Yhdyskäytävän laite"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Proxyjen asettaminen"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP-välityspalvelin:"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP-välityspalvelin:"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Selvitä verkkokortti-id (hyödyllistä sylimikroille)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Välityspalvelimen tulee olla muotoa http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Välityspalvelimen tulee olla muotoa ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Internetin asetukset"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Haluatko kokeilla internetyhteyttä nyt?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Testaan yhteyttäsi..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Järjestelmä on nyt internetissä."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Turvallisuussyistä yhteys suljetaan nyt."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6490,112 +6665,117 @@ msgstr ""
"Järjestelmä ei näytä olevan internetissä.\n"
"Yritä muuttaa internet-asetuksia."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Yhteyden asetus"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Valitse alla olevista kohdista"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "Kortin IRQ"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Kortin muisti (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "Kortin IO"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "Kortin IO_0"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "Kortin IO_1"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Henkilökohtainen puhelinnumerosi"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Palveluntarjoajan nimi (esim: tarjoaja.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Palveluntarjoajan puhelinnumero"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Yhteydentarjoajan dns 1 (vapaaehtoinen)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Yhteydentarjoajan dns 2 (vapaaehtoinen)"
# Asennuksen sivuvalikko
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Valitse maasi"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Soittotila"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Yhteyden nopeus"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "Yhteyden aikaraja (sekunneissa)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Käyttäjätunnus (käyttäjän nimi)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Salasana"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "liittäminen epäonnistui: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Laajennettua osiotyyppiä ei ole tuettu tässä ympäristössä"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Sinulla on reikä osiotaulussasi eikä sitä voida käyttää.\n"
"Ainoa ratkaisu on siirtää primääriosioita siten että reikä on ennen "
"laajennettuja osioita"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Palautus tiedostosta %s epäonnistui: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Huono varmuuskopiotiedosto"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Virhe kirjoitettaessa tiedostoon %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6605,186 +6785,186 @@ msgstr ""
"Tiedon oikeellisuuden tarkistus epäonnistui.\n"
"Kaikki asemalle kirjoitettu tieto muuttuu tunnistamattomaksi"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "pakollinen"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "tärkeä"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "erittäin hyvä"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "hyvä"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "ehkä"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Common Unix Printing System"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR New Generation"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Line Printer Daemon"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Paikallinen tulostin"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Ulkoinen tulostin"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Tulostin ulkoisella CUPS-palvelimella"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Tulostin ulkoisella lpd-palvelimella"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Verkkotulostin (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Tulostin SMB/Windows 95/98/NT -palvelimella"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Tulostin NetWare-palvelimella"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Syötä tulostinlaitteen osoite (URI)"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "Putkita työ käskylle"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Tuntematon malli"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "Paikalliset tulostimet"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "Ulkoiset tulostimet"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr " rinnakkaisliitännässä \\/*%s"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", USB tulostin \\/*%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", monikäyttölaite rinnakkaisportissa \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ", monikäyttölaite USB:ssa"
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ", monitoimilaite HP JetDirectissä"
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ", monitoimilaite"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, c-format
msgid ", printing to %s"
msgstr ", tulostetaan: %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr "LPD-palvelimella \"%s\", tulostin \"%s\""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", TCP/IP -verkkopäätteellä \"%s\", portissa %s"
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr "Windows-palvelimella \"%s\", jako \"%s\""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr "Novell-palvelimella \"%s\", tulostin \"%s\""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ", käyttäen komentoa %s"
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr "Raakatulostin (ei ajuria)"
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(%s:ssa)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(tällä koneella)"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, c-format
msgid "On CUPS server \"%s\""
msgstr "CUPS-palvelimella \"%s\""
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Oletus)"
@@ -6806,12 +6986,12 @@ msgstr ""
"Tulostimia, jotka ovat ulkoisella CUPS-palvelimella, ei tarvitse asettaa\n"
"tässä; nämä tulostimet tunnistetaan automaattisesti."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "Asetustyökalut"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "Ulkoinen CUPS-palvelin"
@@ -6851,7 +7031,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP-osoitteen tullee olla muotoa 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "Portin numeron pitäisi olla kokonaisluku!"
@@ -6859,7 +7039,7 @@ msgstr "Portin numeron pitäisi olla kokonaisluku!"
msgid "CUPS server IP"
msgstr "CUPS-palvelimen IP"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Portti"
@@ -6867,20 +7047,12 @@ msgstr "Portti"
msgid "Automatic CUPS configuration"
msgstr "CUPSin automaattinen asettaminen"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Etsin laitteita ..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Kokeile portteja"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr "Lisää uusi tulostin"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6893,13 +7065,13 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Paikallinen tulostin"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6917,11 +7089,11 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr "Etsi tulostimet"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6935,11 +7107,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr "Tulostimien automaattinen löytäminen"
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6949,33 +7121,37 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "Tee automaattinen tunnistus"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr "Aseta tulostin manuaalisesti"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Kokeile portteja"
+
+#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
msgstr "Löydetty %s:sta"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Tulostin rinnakkaisportissa \\/*%s"
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr "USB-tulostin \\/*%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
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, ..., "
@@ -6983,11 +7159,11 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
msgstr "Sinun täytyy syöttää laitteen tai tiedoston nimi!"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
@@ -6995,19 +7171,19 @@ msgstr ""
"Paikallisia tulostimia ei löytynyt!\n"
"\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7015,7 +7191,7 @@ msgstr ""
"Seuraava tulostin löydettiin, jos se ei ole se, jonka haluat asettaa, syötä "
"laite- tai tiedostonimi syöteriville"
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7023,7 +7199,7 @@ msgstr ""
"Tässä on lista löydetyistä tulostimista. Valitse se tulostin, jonka haluat "
"asettaa tai syötä laite- tai tiedostonimi syöteriville"
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7031,7 +7207,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7039,7 +7215,7 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7047,11 +7223,11 @@ msgstr ""
"Valitse portti, johon tulostimesi on kytketty tai syötä laitteen tai "
"tiedoston nimi syöteriville"
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
msgstr "Valitse portti, johon tulostimesi on kytketty."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7059,50 +7235,62 @@ msgstr ""
" (Rinnakkaisportit: /dev/lp0, /dev/lp1, ..., vastaavat LPT1:, LPT2:, ..., 1. "
"USB-tulostin: /dev/usb/lp0, 2. USB-tulostin: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
msgstr "Sinun täytyy valita tai syöttää tulostinlaite!"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
msgstr "Manuaalinen asettaminen"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
msgstr "Asennetaan HPOJ-pakettia..."
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr "Tarkistetaan laite ja asetetaan HPOJ ..."
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
msgstr "Asennetaan SANE-paketteja..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Asennan paketteja..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr "Skannataan HP-monikäyttölaitteella"
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+#, fuzzy
+msgid "Photo memory card access on your HP multi-function device"
+msgstr "Skannataan HP-monikäyttölaitteella"
+
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr "Asetetaan tulostusportti CUPSin saataville..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr "Luetaan tulostintietokantaa ..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Ulkoisen lpd-palvelimen tulostimen parametrit"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7110,27 +7298,27 @@ msgstr ""
"Jotta voisit käyttää ulkoista lpd-tulostinta, sinun pitäisi syöttää "
"tulostuspalvelimen verkkonimi sekä tulostimen nimi kyseisellä palvelimella."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Palvelimen verkkonimi"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Ulkoisen tulostimen nimi"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "Palvelimen verkkonimi puuttuu!"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "Ulkoisen tulostimen nimi puuttuu!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) -tulostimen parametrit"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7142,35 +7330,35 @@ msgstr ""
"tulostuspalvelimen IP-osoite, tulostimen jakonimi sekä soveltuva "
"käyttäjätunnus, salasana ja työryhmä-tieto."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "SMB-palvelimen nimi"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "SMB-palvelimen IP"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Jakonimi"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Työryhmä"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "Joko palvelimen nimi tai IP-numero on annettava!"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "Samba-jaon nimi puuttuu!"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7194,7 +7382,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7203,7 +7391,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7211,11 +7399,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "NetWare-palvelimen tulostimen parametrit"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
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 "
@@ -7227,27 +7415,27 @@ msgstr ""
"mahdollisesti tulostusjonon nimi sille tulostimelle, jota haluat käyttää, "
"sekä soveltuva käyttäjätunnus ja salasana."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Tulostuspalvelin"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Tulostusjonon nimi"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "NCP-palvelimen nimi puuttuu!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "NCP-jonon nimi puuttuu!"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
msgstr "TCP/Socket -tulostimen parametrit"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -7259,57 +7447,53 @@ msgstr ""
"porttinumero on useimmiten 9100, muissa palvelimissa portti voi vaihdella. "
"Tarkista portti laitteistosi ohjekirjasta."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Tulostinlaitteen verkkonimi"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "Tulostinlaitteen verkkonimi puuttuu!"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Tulostinlaitteen osoite (URI)"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
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 ""
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "Sinun pitää syöttää laillinen URI!"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Tulostimen nimi"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Kuvaus"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Paikka"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr "Valmistellaan tulostintietokantaa ..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "Ulkoisen tulostimen nimi"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7324,26 +7508,26 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "Onko tämä oikein?"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "Valitse käyttäjät yksitellen"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Tulostimen mallin valinta"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Mikä tulostinmalli sinulla on?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7352,17 +7536,17 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "OKI winprinterin asettaminen"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7372,11 +7556,11 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "Lexmark inkjetin asettaminen"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7384,7 +7568,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7397,7 +7581,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7407,22 +7591,22 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Valitsimen %s pitää olla kokonaisluku!"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "Valitsimen %s pitää olla luku!"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "Valitsin %s on arvoalueensa ulkopuolella!"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7431,11 +7615,11 @@ msgstr ""
"Haluatko asettaa tämän tulostimen (\"%s\")\n"
"oletustulostimeksi?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "Testisivut"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7443,39 +7627,39 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "Ei testisivuja"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Tulosta"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "Standardi testisivu"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr "Vaihtoehtoinen testisivu (Letter)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "Vaihtoehtoinen testisivu (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "Valokuvatestisivu"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
msgstr "Älä tulosta testisivua"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Tulostan testisivu(j)a..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7490,7 +7674,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -7498,15 +7682,15 @@ msgstr ""
"Testisivu(t) on lähetetty tulostimelle.\n"
"Voi kestää hetken ennen kuin tulostus alkaa.\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr "Toimiko tulostus kunnolla?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr "Raakatulostin"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7515,15 +7699,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
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 ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7532,18 +7716,18 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#, fuzzy, 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\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
"Saadaksesi selville nykyisen tulostimen parametrit lue joko alla oleva lista "
"tai klikkaa \"Tulostuksen valintalista\"-painiketta.%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -7551,7 +7735,7 @@ msgstr ""
"Tässä on lista nykyisen tulostinen käytössä olevista tulostusvalinnoista:\n"
"\n"
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -7560,15 +7744,15 @@ msgstr ""
"Tulostaaksesi tiedoston komentoriviltä (pääteikkunasta) käytä komentoa \"%s "
"<tiedosto>\".\n"
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -7576,7 +7760,7 @@ msgstr ""
"Saadaksesi listan nykyisen tulostimen parametreistä klikkaa \"Tulostuksen "
"valintalista\"-painiketta."
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -7585,7 +7769,7 @@ msgstr ""
"Tulostaaksesi tiedoston komentoriviltä (pääteikkunasta) käytä komentoa \"%s "
"<tiedosto>\". tai \"%s <tiedosto>\".\n"
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7595,7 +7779,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7604,29 +7788,40 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Sulje"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Tulostetaan/skannataan laitteella \"%s\""
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Tulostetaan/skannataan laitteella \"%s\""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Tulostetaan/skannataan laitteella \"%s\""
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Tulostus käynnissä tulostimella \"%s\""
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Sulje"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "Tulostusparametrien lista"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7634,36 +7829,36 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr "Luetaan tulostimen tietoja ..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "Siirrä tulostimen asetukset"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7673,51 +7868,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD ja LPRng eivät tue IPP-tulostimia.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr "Älä siirrä tulostimia"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr "Siirrä"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7725,11 +7920,11 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Tulostimen nimi saa sisältää vain kirjaimia, numeroita ja alaviivan"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -7738,46 +7933,46 @@ msgstr ""
"Tulostin \"%s\" on jo olemassa,\n"
"haluatko todellakin tuhota olemassa olevat asetukset?"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Uuden tulostimen nimi"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr "Siirrän %s ..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, 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 ""
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr "Päivitetään tulostintietoja ..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr "Ulkoisen tulostimen asetukset"
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "Luon verkkoyhteyttä ..."
# Asennuksen sivuvalikko
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr "Aseta verkkoyhteys nyt"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "Verkkotoimintoja ei ole asetettu"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7785,11 +7980,11 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr "Jatka asettamatta verkkoyhteyttä"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7799,31 +7994,31 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
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 ""
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr "Käynnistän tulostusjärjestelmää uudelleen ..."
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "korkea"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr "paranoidi"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Asennan tulostusjärjestelmän turvatasolla %s"
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7838,11 +8033,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr "Käynnistää tulostusjärjestelmän käynnistyksen aikana"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7856,64 +8051,64 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr "Tarkistan asennetut ohjelmistot..."
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr "Poistetaan LPRng..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr "Poistetaan LPD..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "Valitse tulostusjono"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "Mitä tulostusjärjestelmää (jonoa) haluat käyttää?"
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2310
+#, fuzzy, c-format
+msgid "Configuring printer \"%s\"..."
msgstr "Asetetaan tulostinta \"%s\" ..."
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
msgstr "Asennan Foomaticin ..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Tulostimen asetukset"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr "Valmistellaan PrinterDrakea ..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Asetetaan tulostinta \"%s\" ..."
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "Haluatko asettaa tulostuksen?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr "Tulostusjärjestelmä: "
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -7921,38 +8116,42 @@ msgid ""
"OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
"it."
msgstr ""
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Päivitä tulostinlistaa (näytä kaikki saatavilla olevat CUPS-etätulostimet)"
# Asennuksen sivuvalikko
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Aseta tulostusjärjestelmä"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Perustila"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Lopeta"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr "Haluatko asettaa toisen tulostimen?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "Muokkaa tulostimen asetuksia"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, c-format
msgid ""
"Printer %s\n"
@@ -7961,102 +8160,102 @@ msgstr ""
"Tulostin %s\n"
"Mitä haluat muokata tästä tulostimesta?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr "Tee se!"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "Tulostusyhteyden tyyppi"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "Tulostimen nimi, kuvaus, paikka"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr "Tulostimen valmistaja, malli, ajuri"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr "Tulostimen valmistaja, malli"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr "Aseta tämä tulostin oletukseksi"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr "Tulosta testisivut"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
msgstr "Tiedä kuinka käyttää tätä tulostinta"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "Poista tulostin"
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2857
+#, fuzzy, c-format
+msgid "Removing old printer \"%s\"..."
msgstr "Poistetaan vanha tulostin \"%s\" ..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Oletustulostin"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Tulostin \"%s\" on asetettu oletustulostimeksi."
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Haluatko todella poistaa tulostimen \"%s\"?"
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2909
+#, fuzzy, c-format
+msgid "Removing printer \"%s\"..."
msgstr "Poistetaan tulostin \"%s\" ..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -8141,24 +8340,61 @@ msgstr "Salasanat poikkeavat toisistaan. Kokeile uudelleen!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "En voi lisätä osiota _alustetulle_ RAID:lle md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "En voi kirjoittaa tiedostoa %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid epäonnistui"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid epäonnistui (ehkä raid-työkalut puuttuvat?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ei riittävästi osioita RAID tasolle %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Tätä tasoa tulee käyttää varoen. Se tekee järjestelmästäsi helpomman "
+"käyttää,\n"
+"mutta hyvin herkän: sitä ei tule käyttää koneessa joka on kytketty muihin "
+"koneisiin\n"
+"tai Internettiin. Koneessa ei ole salasanoja."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+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 ""
+"Tällä turvallisuustasolla järjestelmän käyttö palvelimena on mahdollista.\n"
+"Järjestelmää voidaan käyttää palvelimena joka hyväksyy yhteyksiä monilta\n"
+"asiakkailta. "
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "Lisävalinnat"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Optiot"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Käynnistä ALSA (Advanced Linux Sound Architecture) äänijärjestelmä"
@@ -8213,7 +8449,7 @@ msgstr ""
"HardDrake etsii uutta laitteistoa ja mahdollisesti konfiguroi\n"
"uuden/muuttuneen laitteiston."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8292,7 +8528,7 @@ msgstr ""
"Linux Virtual Server, jonka avulla voidaan rakentaa suuritehoinen\n"
"korkean käytettävyyden palvelin."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -8368,7 +8604,7 @@ msgstr ""
"NFS ja NIS-protokollat. portmap-palvelin on oltava käynnissä\n"
"järjestelmissä jotka haluavat tarjota näitä protokollia."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -8463,7 +8699,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Tiedostojen jako"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "Järjestelmä"
@@ -8471,7 +8707,6 @@ msgstr "Järjestelmä"
msgid "Remote Administration"
msgstr "Etähallinta"
-# ../../share/compssUsers
#: ../../services.pm_.c:141
msgid "Database Server"
msgstr "Tietokantapalvelin"
@@ -8579,6 +8814,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
msgstr "Mandraken hallintapaneeli"
@@ -8677,6 +8913,15 @@ msgstr ""
msgid "Installing packages..."
msgstr "Asennan paketteja..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Kirjaudu ulos ja kirjoita sitten Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Kirjaudu uudelleen %s:een aktivoidaksesi muutokset"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8685,6 +8930,160 @@ msgstr ""
"Osiotaulua ei voida lukea, siinä on liikaa virheitä :(\n"
"Taulu yritetään korjata nollaamalla se"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Siirrä tulostimen asetukset"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Tietokantapalvelin"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Tietokantapalvelin"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS-palvelin"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS-palvelin"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Lisää käyttäjä"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP-asiakas"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Apua"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Ei yhteyttä"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Poista"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Valitse kaikki"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Lisää käyttäjä"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "DHCP-asiakas"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Määrittelen..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "aseta uudelleen"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Aseta käyttämäsi käynnistyslevyke asemaan %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Ei levykeasemaa käytettävissä"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "Virhe!"
@@ -8725,6 +9124,11 @@ msgstr ""
"Välitse jokaiselle vaiheelle toistetaanko asennus samalla tapaa kuin nyt vai "
"onko kyseinen vaihe manuaalinen"
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Valmistelen automaattiasennuslevykettä"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -8737,12 +9141,12 @@ msgstr ""
"\n"
"Automaattisen asennuksen parametrit löytyvät vasemmalla olevista lohkoista"
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Onnittelut!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -8750,30 +9154,21 @@ msgstr ""
"Levykkeen luominen onnistui.\n"
"Voit nyt toistaa asennuksesi."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr "Automaattinen asennus"
# Asennuksen sivuvalikko
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr "Lisää alkio"
# mat
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr "Poista viimeinen alkio"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
@@ -8783,7 +9178,7 @@ msgstr ""
" DrakBackup-raportti \n"
"\n"
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8795,19 +9190,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8819,62 +9202,86 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr "kokonaisedistyminen"
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr "Varmuuskopioi järjestelmätiedostot..."
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
msgstr "Kiintolevyn varmuuskopiotiedostot..."
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
msgstr "Varmuuskopioi käyttäjätiedostot..."
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr "Kiintolevyn varmuuskopion edistyminen..."
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
msgstr "Varmuuskopioi muut tiedostot..."
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, fuzzy, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
"tiedostolistan lähetti FTP : %s\n"
" "
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
+#, fuzzy
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
"\n"
"(!) FTP-yhteysongelma: varmuuskopion lähettäminen FTPn kautta epäonnistui.\n"
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
msgstr "(!) Virhe lähetettäessä sähköpostia. \n"
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
msgstr "Tiedostojen valinta"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr "Valitse tiedostot tai hakemistot ja klikkaa 'Lisää'"
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -8882,26 +9289,26 @@ msgstr ""
"\n"
"Valitse kaikki asetukset, jotka tarvitset.\n"
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Naillä asetuksilla voit varmuuskopioida ja palauttaa kaikki tiedostot /etc-"
"hakemistosta.\n"
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr "Varmuuskopioi systeemitiedostot ( /etc-hakemisto )"
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr "Käytä kasvavaa varmuuskopiointia (älä korvaa vanhoja varmuuskopioita)"
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Älä sisällytä kriittisiä tiedostoja (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -8909,83 +9316,77 @@ msgstr ""
"Tällä valitsimella voit palauttaa minkä tahansa version\n"
"/etc-hakemistostasi."
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
msgstr "Valitse kaikki ne käyttäjät, jotka haluat sisällyttää varmuuskopioosi."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr "Älä sisällytä selaimen välimuistia"
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Käytä kasvavia varmuuskopitoita (älä korvaa vanhoja varmuuskopioita)"
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
msgstr "Poista valitut"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr "Käyttäjät"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
msgstr "Käytä FTP-yhteyttä varmuuskopiointiin"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
msgstr "Syötä verkkoaseman nimi tai IP."
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
"Syötä hakemisto, johon tämän\n"
"koneen varmuuskopio laitetaan."
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
msgstr "Syötä käyttäjätunnuksesi"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
msgstr "Syötä salasanasi"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
msgstr "Muista tämä salasana"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "FTP-yhteys"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Salattu yhteys"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr "Käytä CD/DVD-ROM -levyä varmuuskopioille"
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
msgstr "Valitse käytettävä CD:n koko"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
msgstr "Valitse, jos käytät CD-RW-mediaa"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr "Valitse, jos haluat tyhjentää CD-RW:n ennen kopiointia"
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
@@ -8993,7 +9394,7 @@ msgstr ""
"Valitse, jos haluat tehdä CD-levystäsi\n"
"käynnistettävän."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -9001,16 +9402,21 @@ msgstr ""
"Syötä kirjoittavan CD-asemasi laitenimi\n"
"esim: 0,1,0"
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
msgstr "Käytä nauhaa varmuuskopioinnissa"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr "Syötä varmuuskopioinnissa käytettävän laitteen nimi"
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Valitse, jos haluat tyhjentää CD-RW:n ennen kopiointia"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -9018,51 +9424,57 @@ msgstr ""
"Syötä suurin sallittu koko\n"
"Drakbackup-varmuuskopiolle"
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
+#: ../../standalone/drakbackup_.c:1497
+#, fuzzy
+msgid "Please enter the directory to save to:"
msgstr "Syötä hakemisto, johon tallennetaan:"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
msgstr "Käytä quotaa varmuuskopiotiedostoille."
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
msgstr "Verkko"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
-msgstr "CD-ROM / DVD-ROM"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr "Kiintolevy / NFS"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Tyyppi"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr "tunneittain"
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr "päivittäin"
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr "viikoittain"
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr "kuukausittain"
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
msgstr "Käytä daemonia"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -9070,7 +9482,7 @@ msgstr ""
"Valitse peräkkäisten\n"
"varmuuskopioiden aikaväli"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
@@ -9078,72 +9490,68 @@ msgstr ""
"Valitse varmuuskopiointiin\n"
"käytettävä media."
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Käytä kiintolevyä daemonilla"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "Käytä FTPtä daemonilla"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+#, fuzzy
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr "Varmista että cron-daemon on mukana käytössä olevissa palveluissa."
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr "Lähetä raportti jokaisesta varmuuskopiosta sähköpostitse :"
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "Mitä"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "Missä"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "Koska"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
msgstr "Lisävalinnat"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
msgstr "Drakbackup-asetukset"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
msgstr "Valitse, mihin haluat tehdä varmuuskopiot"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr "kiintolevylle"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr "verkon yli"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
msgstr "Valitse mitä haluat varmuuskopioida"
# Asennuksen sivuvalikko
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
msgstr "Varmuuskopioi järjestelmä"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr "Varmuuskopioi käyttäjät"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr "Valitse käyttäjät yksitellen"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
@@ -9151,7 +9559,7 @@ msgstr ""
"\n"
"Varmuuskopion lähteet: \n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
@@ -9159,7 +9567,7 @@ msgstr ""
"\n"
"- Järjestelmätiedostot:\n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
@@ -9167,7 +9575,7 @@ msgstr ""
"\n"
"- Käyttäjätiedostot:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
@@ -9175,7 +9583,7 @@ msgstr ""
"\n"
"- Muut tiedostot:\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
@@ -9184,16 +9592,45 @@ msgstr ""
"\n"
"- Tallenna kiintolevylle polulle : %s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Hiiren laite: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"- Tallenna FTP:llä verkkoasemalle : %s\n"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
"\n"
"- Tallenna FTP:llä verkkoasemalle : %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -9202,7 +9639,7 @@ msgstr ""
"\t\t käyttäjätunnus: %s\n"
"\t\t polulla: %s \n"
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
@@ -9210,19 +9647,19 @@ msgstr ""
"\n"
"- Valitsimet:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr "\tÄlä sisällytä järjestelmätiedostoja\n"
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr "\tVarmuuskopiot käyttävät: tar ja bzip2\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr "\tVarmuuskopiot käyttävät: tar ja gzip\n"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
@@ -9231,27 +9668,41 @@ msgstr ""
"\n"
"- Daemon (%s) sisältää :\n"
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr "\t-Kiintolevy.\n"
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr "\t-CD-ROM.\n"
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr "\t-Verkkoon käyttäen FTP:tä.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr "\t-Verkkoon käyttäen SSH:ta.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t-Verkkoon käyttäen FTP:tä.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t-Verkkoon käyttäen FTP:tä.\n"
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Ei asetettu, valitse Velho tai Edistynyt.\n"
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
@@ -9259,7 +9710,7 @@ msgstr ""
"Lista palautettavista tiedoista:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
@@ -9267,134 +9718,137 @@ msgstr ""
"Lista vahingoittuneista tiedoista:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
msgid "Please uncheck or remove it on next time."
msgstr "Poista valinta tai poista se seuraavalla kerralla."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr "Varmuuskopiot ovat vahingoittuneet"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr " Kaikki valitsemasi tieto on "
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr " onnistuneesti palautettu paikkaan %s "
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
msgid " Restore Configuration "
msgstr " Palauta asetukset "
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr "Ok palauttaakseen muut tiedostot."
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Palautettava käyttäjälista (vain uusin päivä kutakin käyttäjää kohti on "
"tärkeä)"
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
msgstr "Tee järjestelmätiedostoista varmuuskopio ennen:"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
msgid "please choose the date to restore"
msgstr "Valitse päivämäärä, johon tiedon palauttaminen tehdään"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
msgstr "Käytä kiintolevyä varmuuskopiointiin"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+msgid "Please enter the directory to save:"
+msgstr "Syötä hakemisto, johon tallennetaan:"
+
+#: ../../standalone/drakbackup_.c:2416
+msgid "FTP Connection"
+msgstr "FTP-yhteys"
+
+#: ../../standalone/drakbackup_.c:2424
+msgid "Secure Connection"
+msgstr "Salattu yhteys"
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
msgstr "Palauta kiintolevyltä."
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr "Anna hakemisto, johon varmuuskopiot on tallennettu"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
msgstr "Valitse toinen media, josta palauttaa"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
msgid "Other Media"
msgstr "Muu media"
# Asennuksen sivuvalikko
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
msgid "Restore system"
msgstr "Palauta järjestelmä"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
msgstr "Palauta käyttäjät"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
msgstr "Palauta muut"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr "valitse polku, josta palautat (juurihakemiston sijaan)"
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Tee uusi varmuuskopio ennen palauttamista (vain kasvavilla varmuuskopioilla)"
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr "Poista käyttäjien hakemistot ennen palauttamista."
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr "Palauta kaikki varmuuskopiot"
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
msgid "Custom Restore"
msgstr "Mukautettu palautus"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Apua"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "Edellinen"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "Tallenna"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
msgstr "Tee varmuuskopio"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
msgstr "Palauta"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "Seuraava"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -9402,7 +9856,7 @@ msgstr ""
"Tee varmuuskopio ennen kuin yrität palauttaa sen...\n"
"tai tarkista että tallennuspolku on oikea."
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
@@ -9412,31 +9866,35 @@ msgstr ""
" raporttipostiasi ei lähetetty\n"
" Konfiguroi sendmail"
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Lista asennettavista paketeista"
+#: ../../standalone/drakbackup_.c:2933
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Seuraavat paketit asennetaan"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
+#, fuzzy
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
"Virhe FTP-siirron aikana.\n"
" Korjaa FTP-asetuksesi."
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
msgstr "Valitse palautettava tieto..."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
msgstr "Valitse varmuuskopioinnissa käytettävä media..."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
msgstr "Valitse varmuuskopioitava tieto..."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -9444,76 +9902,76 @@ msgstr ""
"Asetustiedostoa ei löytynyt\n"
"valitse joko Velho tai Kehittynyt."
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr "Kehityksen alla ... odota."
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
msgid "Backup system files"
msgstr "Varmuuskopioi järjestelmätiedostot"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
msgid "Backup user files"
msgstr "Varmuuskopioi käyttäjätiedostot"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
msgid "Backup other files"
msgstr "Varmuuskopioi muut tiedostot"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr "Kokonaisedistyminen"
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr "tiedostoja lähetetään FTP:n yli"
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
msgid "Sending files..."
msgstr "Lähetän tiedostoja..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr "Tietolista sisällytettäväksi CD-ROMiin"
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
msgid "Please enter the cd writer speed"
msgstr "Valitse kirjoittavan CD-aseman nopeus"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr "Valitse kirjoittavan CD-aseman laitenimi (esim. 0,1,0)"
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
msgstr "Valitse, jos haluat tehdä käynnistettävän CD:n."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
msgid "Backup Now from configuration file"
msgstr "Tee heti asetustiedoston varmuuskopio"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
msgid "View Backup Configuration."
msgstr "Näytä varmuuskopioinnin asetukset."
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
msgid "Wizard Configuration"
msgstr ""
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
msgid "Advanced Configuration"
msgstr ""
# Asennuksen sivuvalikko
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
msgstr "Varmuuskopioi heti"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9545,7 +10003,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9554,7 +10012,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9595,7 +10053,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9623,14 +10081,19 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft. Tekijä: DUPONT Sebastien <dupont_s\\@epita."
"fr>"
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -9647,7 +10110,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9687,7 +10150,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9698,7 +10161,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9711,7 +10174,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9755,99 +10218,531 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "%s:n asennus epäonnistu. Seuraava virhe tapahtui:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Komentorivityökalut"
+
+#: ../../standalone/drakbug_.c:53
+#, fuzzy
+msgid "HardDrake"
+msgstr "kiintolevylle"
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "MandrakeConsulting"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "MandrakeExpert"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Hiiri"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Ulkoinen tulostin"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Jakonimi"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Printerdrake"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Verkkoasetusten velho"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Tunnistustapa"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Pakettien valinta"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Odota hetki"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+# Asennuksen sivuvalikko
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Poistamisen jälkeiset toiminnot"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "portti"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Kuvankaappaukset löytyvät asennuksen jälkeen hakemistosta %s"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Verkon asetukset (%d-laitteille)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profiili: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Poista profiili..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Valitse poistettava profiili:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Uusi profiili..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Luotavan profiilin nimi (uusi profiili luodaan kopioimalla nykyisen tiedot) :"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Koneen nimi:"
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Internetyhteys"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Tyyppi:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Yhdyskäytävä:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Liitäntä:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Tila:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "Odota hetki"
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Määrittele internetyhteys..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "Lähiverkon asetukset"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Ajurit"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Liitäntä"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protokolla"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Tila"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Aseta paikallisverkko..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "Paina tähän käynnistääksesi asennusohjelman ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Velho..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Toteuta"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Odota hetki... Otetaan asetukset käyttöön"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Yhteys muodostettu"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Ei yhteyttä"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Yhdistä..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Katkaise yhteys..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+"Varoitus, toinen internet-yhteys on havaittu, mahdollisesti käyttäen sinun "
+"vekkoasi"
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Sinulla ei ole ainoatakaan asetettua liityntää.\n"
+"Aseta ne ensin klikkaamalla 'Aseta'"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "Lähiverkon asetukset"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Laite %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Käynnistysprotokolla"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Käynnistetty koneen käynnistämisen yhteydessä"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP-asiakas"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "aktivoi nyt"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "deaktivoi nyt"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Tätä liityntärajapintaa ei ole vielä asetettu.\n"
+"Käynnistä pääikkunasta löytyvä asetusvelho"
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Sinulla ei ole ainoatakaan internet-yhteyttä.\n"
+"Luo sellainen ensin klikkaamalla 'Aseta'"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Internetyhteyden asetus"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Internetyhteyden asetus"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Yhteyden nimi: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parametrit"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Yhdyskäytävä"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Verkkokortti"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP-asiakas"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "käyttö: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Moduulin nimi"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Koko"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "käynnistyslevykkeen luonti"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "oletus"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Virhe DrakFloppyssa: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "ytimen versio"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Yleinen"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Asiantuntijan alue"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrd:n vapaaehtoiset parametrit"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Lisää moduuli"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "pakota"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "jos tarvitaan"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "jätä pois scsi-moduulit"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "jätä pois raid-moduulit"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Poista moduuli"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Tuloste"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Muodosta levy"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Varmista, että media on laitteessa %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"Laitteessa %s ei ole mediaa.\n"
+"Aseta media."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Prosessia %s ei voitu haarauttaa"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"mkbootdisk:iä ei voitu sulkea oikein: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr "Etsi asennetut kirjasimet"
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr "Poista asetettujen kirjasimien valinta"
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr "jäsennä kaikki kirjasimet"
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
msgid "no fonts found"
msgstr "kirjasimia ei löytynyt"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "valmis"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr "liitetyiltä osioilta ei löytynyt ainoatakaan kirjasinta"
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr "Valitse uudelleen oikeat kirjasimet"
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr "kirjasimia ei löytynyt.\n"
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr "Etsi kirjasimia asennettujen listalta"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr "Kirjasimet kopioi"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
msgid "True Type fonts installation"
msgstr "True Type kirjasimien asennus"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr "odota kunnes ttmkfdir on valmis..."
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr "True Type -asennus valmis"
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr "Kirjasinten muuntaminen"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr "rakennetaan: type1inst"
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr "ttf kirjasinten muunnos"
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr "pfm kirjasinten muunnos"
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr "Poista väliaikaistiedostot"
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr "Käynnistä XFS uudelleen"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr "Poista kirjasintiedostot"
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
msgid "xfs restart"
msgstr "xfs:n uudelleenkäynnistys"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -9862,109 +10757,109 @@ msgstr ""
"kirjasimet voivat lukitä X-palvelimen."
# Asennuksen sivuvalikko
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
msgid "Fonts Importation"
msgstr "Kirjasinten tuonti"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr "Hae Windowsin kirjasimet"
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr "Poista kirjasimet levyltä"
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Lisävalinnat"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
msgstr "Kirjasinlista"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
msgid "Choose the applications that will support the fonts :"
msgstr "Valitse sovellukset, jotka tukevat kirjasimia :"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
msgstr "Yleiset tulostimet"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr "Valitse kirjasintiedosto tai hakemisto ja klikkaa 'Lisää'"
# Asennuksen sivuvalikko
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
msgstr "Asenna lista"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr "paina tähän, kun olet varma."
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr "tähän jos et ole."
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr "Poista valinta kaikista"
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
msgid "Selected All"
msgstr "Valitse kaikki"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
msgstr "Poista lista"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr "Alkutestit"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
msgstr "Kopioi kirjasimet järjestelmääsi"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr "Asenna & muunna kirjasimia"
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
msgid "Post Install"
msgstr "Asennuksen jälkeiset toiminnot"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
msgstr "Poista järjestelmässäsi olevia kirjasimia"
# Asennuksen sivuvalikko
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
msgid "Post Uninstall"
msgstr "Poistamisen jälkeiset toiminnot"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Internetyhteyden jakaminen"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Internetyhteyden jakaminen on käytössä"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -9976,31 +10871,31 @@ msgstr ""
"\n"
"Mitä haluat tehdä?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "poista käytöstä"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "lopeta"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "aseta uudelleen"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Poistan palvelut käytöstä..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Internetyhteyden jakaminen ei ole enää käytössä."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Internetyhteyden jakaminen ei ole käytössä"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10012,19 +10907,19 @@ msgstr ""
"\n"
"Mitä haluat tehdä?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "ota käyttöön"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Otan palvelut käyttöön.."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Internetyhteyden jakaminen on nyt käytössä."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10040,32 +10935,32 @@ msgstr ""
"\n"
"Huomaa: tarvitset erityisen verkkokortin pystyttääksesi oman paikallisverkon."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Liittymä %s (käyttäen moduulia %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Liittymä %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Koneessasi ei ole verkkokorttia!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
"Koneestasi ei löytynyt yhtään verkkokorttia. Aja laitteistonhakutyökalu."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Verkkoliittymä"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10080,17 +10975,17 @@ msgstr ""
"\n"
"Valmistaudun asettamaan lähiverkkosi asetukset kyseiselle laitteelle."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr "Valitse verkkokortti, joka on kytketty paikallisverkkoon."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr "Verkkoliitäntä on jo asetettu"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10106,15 +11001,15 @@ msgstr ""
"Voit asettaa sen myös manuaalisesti, mutta silloin sinun pitää tietää, mitä "
"olet tekemässä."
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr "Automaattinen uudelleenasetus"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr "Näytä nykyiset liitäntäasetukset"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10131,7 +11026,7 @@ msgstr ""
"IP-määreet: %s\n"
"Ajuri: %s"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
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 C-Class Network that "
@@ -10151,33 +11046,33 @@ msgstr ""
"palvelimen puolestasi.\n"
"\n"
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr "C-luokan paikallisverkko"
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr "(Tämän) DHCP-palvelimen IP"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr "Aseta liityntärajapinta ja DHCP-palvelin uudelleen"
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Paikallisverkko ei loppunut '.0':aan, töydennetään."
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Mahdollinen lähiverkon osoitetörmäys löydetty nykyisillä asetuksilla %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Palomuuri löydetty!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10185,21 +11080,21 @@ msgstr ""
"Varoitus! Olemassaoleva palomuuri löydetty. Tarvitset mahdollisesti käsin "
"tehtäviäkorjauksia asennuksen jälkeen."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Määrittelen..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Määrittelen komentotiedostot, asennan ohjelmistot, käynnistän palvelimet..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Asennan pakettia %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10209,24 +11104,24 @@ msgstr ""
"Voit nyt jakaa internetyhteyden muiden lähiverkon koneiden kanssakäyttämällä "
"automaattista lähiverkon määrittelyä (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
"Asetukset on jo tehty, mutta ne ovat tällä hetkellä poistettu käytöstä."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Asetukset on jo tehty ja ne ovat käytössä."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Internetyhteyden jakamista ei ole koskaan asetettu."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Internetyhteyden jakamisen asetukset"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10241,215 +11136,6 @@ msgstr ""
"\n"
"Paina Aseta käynnistääksesi asennusohjelman."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Verkon asetukset (%d-laitteille)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profiili: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Poista profiili..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Valitse poistettava profiili:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Uusi profiili..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Luotavan profiilin nimi (uusi profiili luodaan kopioimalla nykyisen tiedot) :"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Koneen nimi:"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Internetyhteys"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tyyppi:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Yhdyskäytävä:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Liitäntä:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Tila:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Odota hetki"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Määrittele internetyhteys..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Lähiverkon asetukset"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Ajurit"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Liitäntä"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokolla"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Tila"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Aseta paikallisverkko..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Paina tähän käynnistääksesi asennusohjelman ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Velho..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Toteuta"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Odota hetki... Otetaan asetukset käyttöön"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Yhteys muodostettu"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Ei yhteyttä"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Yhdistä..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Katkaise yhteys..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Varoitus, toinen internet-yhteys on havaittu, mahdollisesti käyttäen sinun "
-"vekkoasi"
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Sinulla ei ole ainoatakaan asetettua liityntää.\n"
-"Aseta ne ensin klikkaamalla 'Aseta'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Lähiverkon asetukset"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Laite %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Käynnistysprotokolla"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Käynnistetty koneen käynnistämisen yhteydessä"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP-asiakas"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "aktivoi nyt"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "deaktivoi nyt"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Tätä liityntärajapintaa ei ole vielä asetettu.\n"
-"Käynnistä pääikkunasta löytyvä asetusvelho"
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Sinulla ei ole ainoatakaan internet-yhteyttä.\n"
-"Luo sellainen ensin klikkaamalla 'Aseta'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Internetyhteyden asetus"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Internetyhteyden asetus"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Yhteyden nimi: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametrit"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Yhdyskäytävä"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Verkkokortti"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP-asiakas"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Asetan turvatasoa"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Kontrollipaneeli"
@@ -10458,63 +11144,85 @@ msgstr "Kontrollipaneeli"
msgid "Choose the tool you want to use"
msgstr "Valitse haluamasi työkalu"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\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 ""
+
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
msgstr "Kanada (kaapeli)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+#, fuzzy
+msgid "USA (broadcast)"
msgstr "Yhdysvallat (bcast)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr "Yhdysvallat (kaapeli)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr "Yhdysvallat (hrc-kaapeli)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "China (broadcast)"
msgstr "Kiina (bcast)"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "Japan (broadcast)"
msgstr "Japani (bcast)"
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr "Japani (kaapeli)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
msgstr "Itä-Eurooppa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Ranska"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
msgstr "Irlanti"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
msgstr "Länsi-Eurooppa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
msgstr "Australia"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr "Uusi-Seelanti"
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr "Etelä-Afrikka"
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr "Argentiina"
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
@@ -10522,27 +11230,44 @@ msgstr ""
"Ole hyvä,\n"
"kirjoita käyttämäsi tv-normi sekä asuinmaa"
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr "TV-normi :"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr "Alue :"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr "TV-kanavien haku käynnissä ..."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr "Haetaan TV-kanavia"
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Tapahtu virhe asennettaessa paketteja:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10586,7 +11311,7 @@ msgstr "Järjestelmän päivitystä ei voida aloittaa!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -10596,31 +11321,31 @@ msgstr "Näytä vain valittu päivä"
#: ../../standalone/logdrake_.c:102
msgid "/File/_New"
-msgstr "/Tiedosto/_Uusi"
+msgstr "/Tiedosto/Uusi"
#: ../../standalone/logdrake_.c:102
msgid "<control>N"
-msgstr "<control>U"
+msgstr "<control>N"
#: ../../standalone/logdrake_.c:103
msgid "/File/_Open"
-msgstr "/Tiedosto/_Avaa"
+msgstr "/Tiedosto/Avaa"
#: ../../standalone/logdrake_.c:103
msgid "<control>O"
-msgstr "<control>A"
+msgstr "<control>O"
#: ../../standalone/logdrake_.c:104
msgid "/File/_Save"
-msgstr "/Tiedosto/_Tallenna"
+msgstr "/Tiedosto/Talleta"
#: ../../standalone/logdrake_.c:104
msgid "<control>S"
-msgstr "<control>T"
+msgstr "<control>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
-msgstr "/File/Tallenna _Nimellä"
+msgstr "/Tiedosto/Talleta nimellä"
#: ../../standalone/logdrake_.c:106
msgid "/File/-"
@@ -10628,15 +11353,11 @@ msgstr "/Tiedosto/-"
#: ../../standalone/logdrake_.c:108
msgid "/_Options"
-msgstr "/_Valinnat"
+msgstr "/Asetukset"
#: ../../standalone/logdrake_.c:109
msgid "/Options/Test"
-msgstr "/Valinnat/Testi"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Ohje"
+msgstr "/Asetukset/Testaa"
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
@@ -10698,7 +11419,7 @@ msgstr "Kalenteri"
msgid "Content of the file"
msgstr "Tiedoston sisältö"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr "Posti- ja SMS-hälytys"
@@ -10707,11 +11428,11 @@ msgstr "Posti- ja SMS-hälytys"
msgid "please wait, parsing file: %s"
msgstr "odota hetki, jäsennän tiedostoa : %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
msgstr "Posti- ja SMS-hälytyksen asetukset"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
@@ -10721,64 +11442,95 @@ msgstr ""
"\n"
"Täällä voit pystyttää hälyytysjärjestelmän.\n"
-# ../../share/compssUsers
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Verkkoalueen nimi"
#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
+#, fuzzy
+msgid "Ftp Server"
+msgstr "NIS-palvelin"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Postfix-postipalvelin, Inn-nyytispalvelin"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS-palvelin"
#: ../../standalone/logdrake_.c:422
+#, fuzzy
+msgid "SSH Server"
+msgstr "NIS-palvelin"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Palvelut"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Tulostuspalvelin"
+
+#: ../../standalone/logdrake_.c:431
msgid "service setting"
msgstr "Palveluiden asettaminen"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr "Saat hälytyksen kun jokin valituista palveluista ei ole enää käynnissä"
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
msgstr "lataa asetukset"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr "Saat hälytyksen jos kuorma on tätä arvoa suurempi"
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
msgstr "hälytyksen asetukset"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr "Aseta tapa, jolla järjestelmä hälyttää sinulle"
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Tallenna nimellä.."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Valitse hiiren tyyppi."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "serial_usb:ta ei löytynyt\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Emuloi kolmatta näppäintä?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Luetaan tulostimen tietoja ..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "Etsin laitteita ..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -10821,6 +11573,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "Palomuurin asetukset"
@@ -11156,7 +11920,6 @@ msgid ""
" Try to install them manually."
msgstr ""
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Web/FTP"
msgstr "Web/FTP"
@@ -11165,7 +11928,6 @@ msgstr "Web/FTP"
msgid "Network Computer (client)"
msgstr "Verkkopääte (asiakas)"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "NFS server, SMB server, Proxy server, ssh server"
msgstr "NFS-, SMB-, SSH- ja välipalvelin"
@@ -11178,7 +11940,6 @@ msgstr "Toimistosovellukset"
msgid "Gnome Workstation"
msgstr "Gnome-työasema"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Tools for your Palm Pilot or your Visor"
msgstr "Työkalut Palm Pilotin tai Visorin liittämiseksi"
@@ -11187,7 +11948,6 @@ msgstr "Työkalut Palm Pilotin tai Visorin liittämiseksi"
msgid "Workstation"
msgstr "Työasema"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Firewall/Router"
msgstr "Palomuuri / Reititys"
@@ -11196,7 +11956,6 @@ msgstr "Palomuuri / Reititys"
msgid "Domain Name and Network Information Server"
msgstr "Nimipalvelin ja tietoverkon informaatiopalvelin"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid ""
"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
@@ -11205,12 +11964,10 @@ msgstr ""
"Office-ohjelmistot: tekstinkäsittely (kword, abiword), taulukkolaskenta "
"(kspread,gnumeric), pdf-lukijat jne"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr "Äänenkäsittely: mp3, midi, mikserit, jne"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
msgstr "Kirjoja ja ohjeita Linuxista sekä vapaan lähdekoodin ohjelmista"
@@ -11219,7 +11976,6 @@ msgstr "Kirjoja ja ohjeita Linuxista sekä vapaan lähdekoodin ohjelmista"
msgid "KDE Workstation"
msgstr "KDE-työasema"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr "Icewm, Window Maker, Enlightenment, Fvwm, jne"
@@ -11228,14 +11984,12 @@ msgstr "Icewm, Window Maker, Enlightenment, Fvwm, jne"
msgid "Multimedia - Video"
msgstr "Multimedia - Video"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Set of tools for mail, news, web, file transfer, and chat"
msgstr ""
"Kokoelma työkaluja sähköpostiin, nyytisiin, webiin, tiedostonsiirtoon ja "
"jutusteluun"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Database"
msgstr "Tietokanta"
@@ -11252,16 +12006,10 @@ msgstr "Työkalut, jotka helpottavat tietokoneesi asetusten muokkaamista"
msgid "Multimedia - Sound"
msgstr "Multimedia - Ääni"
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Apuohjelmat"
-
#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Dokumentaatio"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Console Tools"
msgstr "Komentorivityökalut"
@@ -11282,12 +12030,10 @@ msgstr "Multimedia-asema"
msgid "Configuration"
msgstr "Asetustyökalut"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "More Graphical Desktops (Gnome, IceWM)"
msgstr "Lisää graafisia työpöytiä (Gnome, IceWM)"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid ""
"The K Desktop Environment, the basic graphical environment with a collection "
@@ -11299,12 +12045,10 @@ msgstr ""
msgid "Graphical Environment"
msgstr "Graafinen ympäristö"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr "Apache WWW-palvelin ja Pro-ftpd FTP-palvelin"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Tools to create and burn CD's"
msgstr "Työkalut CD:iden luomiseen ja polttamiseen"
@@ -11317,22 +12061,18 @@ msgstr "Toimistotyöasema"
msgid "Server"
msgstr "Palvelin"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, jne"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Graphics programs such as The Gimp"
msgstr "Grafiikkaohjelmistot, kuten Gimp"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "DNS/NIS "
msgstr "DNS/NIS "
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "C and C++ development libraries, programs and include files"
msgstr "C ja C++ ohjelmointityökalut, kirjastot ja include-tiedostot"
@@ -11341,7 +12081,6 @@ msgstr "C ja C++ ohjelmointityökalut, kirjastot ja include-tiedostot"
msgid "Network Computer server"
msgstr "Verkkotietokone (palvelin)"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Mail/Groupware/News"
msgstr "Sähköposti/Groupware/Nyytiset"
@@ -11350,7 +12089,6 @@ msgstr "Sähköposti/Groupware/Nyytiset"
msgid "Game station"
msgstr "Pelikone"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Video players and editors"
msgstr "Videon katselu ja editointi"
@@ -11359,12 +12097,10 @@ msgstr "Videon katselu ja editointi"
msgid "Multimedia - Graphics"
msgstr "Multimedia - Grafiikka"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Amusement programs: arcade, boards, strategy, etc"
msgstr "Pelit: tasohyppely, korttipelit, strategia, jne"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid ""
"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
@@ -11373,17 +12109,10 @@ msgstr ""
"Valikoima työkaluja sähköpostin ja nyytisten lukemiseen (pine, mutt, tin...) "
"sekä internetissä surffailuun"
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Varmuuskopiointi, emulaattorit, järjestelmän tarkkailu"
-
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Henkilökohtainen kirjanpito"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid ""
"A graphical environment with user-friendly set of applications and desktop "
@@ -11391,7 +12120,6 @@ msgid ""
msgstr ""
"Graafinen ympäristö käyttäjäystävällisellä ohjelmistolla ja työkaluilla."
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Clients for different protocols including ssh"
msgstr "Asiakasohjelmat eri protokollille (ssh jne)"
@@ -11400,27 +12128,22 @@ msgstr "Asiakasohjelmat eri protokollille (ssh jne)"
msgid "Internet gateway"
msgstr "Internetyhdyskäytävä"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Sound and video playing/editing programs"
msgstr "Äänen sekä videon soitto- ja editointiohjelmat"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Other Graphical Desktops"
msgstr "Muut graafiset käyttöympäristöt"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Editors, shells, file tools, terminals"
msgstr "Editorit, komentotulkit, tiedostotyökalut, terminaalit"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Programs to manage your finance, such as gnucash"
msgstr "Tilinpito-ohjelmia, kuten gnucash"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Personal Information Management"
msgstr "Henkilökohteisen tiedon hallinta"
@@ -11433,57 +12156,178 @@ msgstr "Multimedia - CD:n poltto"
msgid "Scientific Workstation"
msgstr "Tieteelliinen työasema"
-#~ msgid "About"
-#~ msgstr "Tietoja"
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "fsck epäonnistui virhekoodilla %d tai signaalilla %d"
+
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Näytönohjaimen tunniste: %s\n"
-#~ msgid " Help "
-#~ msgstr " Apua "
+#~ msgid "Choose options for server"
+#~ msgstr "Valitse optioita palvelimelle"
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
+#~ msgid "Monitor not configured"
+#~ msgstr "Näyttöä ei ole asetettu"
+
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Näytönohjainta ei ole vielä asetettu"
+
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Näytön resoluutiota ei ole vielä valittu"
#~ msgid ""
-#~ "Can't access kernel modules corresponding to your kernel (file %s is "
-#~ "missing)"
-#~ msgstr "Ei saantia käytössä olevan ytimen moduuleihin (tiedosto %s puuttuu)"
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "kokeile joidenkin parametrien muuttamista"
+
+#~ msgid "An error occurred:"
+#~ msgstr "Tapahtui virhe:"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Lopetan %d sekunnissa"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Onko tämä oikea asetus?"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Tapahtui virhe, kokeile joidenkin parametrien vaihtamista"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 palvelin: %s"
+
+#~ msgid "Show all"
+#~ msgstr "Näytä kaikki"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Valmistelen X-Windowin asetuksia"
+
+#~ msgid "What do you want to do?"
+#~ msgstr "Mitä haluat tehdä?"
+
+#~ msgid "Change Monitor"
+#~ msgstr "Vaihda näyttöä"
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
+#~ msgid "Change Graphics card"
+#~ msgstr "Vaihda näytönohjainta"
-#~ msgid "None"
-#~ msgstr "Ei asetettu"
+#~ msgid "Change Server options"
+#~ msgstr "Vaihda palvelimen optioita"
-#~ msgid "Choose a default printer!"
-#~ msgstr "Valitse oletustulostin !"
+#~ msgid "Change Resolution"
+#~ msgstr "Vaihda resoluutiota"
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Toteuta/Lue uudelleen tulostimet"
+#~ msgid "Show information"
+#~ msgstr "Näytä tiedot"
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Voit antaa lisäasetuksia modulille %s."
+#~ msgid "Test again"
+#~ msgstr "Kokeile uudelleen"
-#~ msgid "Low"
-#~ msgstr "Matala"
+#~ msgid "Use Hard Drive with daemon"
+#~ msgstr "Käytä kiintolevyä daemonilla"
-#~ msgid "Medium"
-#~ msgstr "Keskitaso"
+#~ msgid "Use FTP with daemon"
+#~ msgstr "Käytä FTPtä daemonilla"
+
+#~ msgid "Package List to Install"
+#~ msgstr "Lista asennettavista paketeista"
+
+#~ msgid "proftpd"
+#~ msgstr "proftpd"
+
+#~ msgid "sshd"
+#~ msgstr "sshd"
+
+#~ msgid "webmin"
+#~ msgstr "webmin"
+
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
+
+#~ msgid "Setting security level"
+#~ msgstr "Asetan turvatasoa"
+
+#~ msgid "Graphics card"
+#~ msgstr "Näytönohjain"
+
+#~ msgid "Select a graphics card"
+#~ msgstr "Valitse näytönohjain"
+
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "Varoitus: näytönohjaimesi testaaminen voi jumittaa tietokoneen"
+
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Perus-VGA, 640x480 @ 60 Hz"
+
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "SVGA, 800x600 @ 56 Hz"
+
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514-yhteensopiva, 1024x768 @ 87 Hz lomitettu (ei 800x600)"
+
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "SVGA, 1024x768 @ 87 Hz lomitettu, 800x600 @ 56 Hz"
+
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Laajennettu SVGA, 800x600 @ 60 Hz, 640x480 @ 72 Hz"
+
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Lomittamaton SVGA, 1024x768 @ 60 Hz, 800x600 @ 72 Hz"
+
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "Korkeataajuuksinen SVGA, 1024x768 @ 70 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Näyttö, joka pystyy 1280x1024 @ 60 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Näyttö, joka pystyy 1280x1024 @ 74 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Näyttö, joka pystyy 1280x1024 @ 76 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Näyttö, joka pystyy 1600x1200 @ 70 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Näyttö, joka pystyy 1600x1200 @ 76 Hz"
+
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Valitsemiesi ryhmien kokonaiskoko on suunnilleen %d Mt.\n"
#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
-#~ "Muutamia parannuksia tällä turvaasolla, suurimpana se että "
-#~ "järjestelmässä\n"
-#~ "on enemmän turvallisuusvaroituksia ja tarkistuksia."
+#~ "Jos haluat asentaa vähemmän kuin tämä koko,\n"
+#~ "valitse prosenttiosuus paketeista jonka haluat asentaa.\n"
+#~ "\n"
+#~ "Pieni prosenttiosuus asentaa vain tärkeimmät paketit,\n"
+#~ "100%% osuus asentaa kaikki paketit."
-#~ msgid "mount failed"
-#~ msgstr "liittäminen epäonnistui"
+#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
+#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
+#~ msgstr ""
+#~ "Sinulla on levyllä tilaa vain %d%% paketeista\n"
+#~ ".Jos haulat asentaa vähemmän kuin tämän osan,\n"
+#~ "valitse prosenttiosuus paketeista jotka haluat asentaa.\n"
+#~ "Pieni prosentti asentaa vain tärkeimmät paketit, %d%%\n"
+#~ " prosenttiosuus asentaa niin monta pakettia kuin on mahdollista."
-#~ msgid "Boot mode"
-#~ msgstr "Käynnistila"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Voit valita paketit tarkemmin seuraavassa vaiheessa"
-#~ msgid "Export"
-#~ msgstr "Vie"
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Prosenttiosuus asennettavista paketeista"
-#~ msgid "click here"
-#~ msgstr "klikkaa tähän"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Valitse turvataso"
diff --git a/perl-install/share/po/fr.po b/perl-install/share/po/fr.po
index abfe2a8c9..d5a5efdce 100644
--- a/perl-install/share/po/fr.po
+++ b/perl-install/share/po/fr.po
@@ -40,8 +40,8 @@
# avec la commande suivante :
# xmodmap -e 'keycode 116 = Multi_key'
#
-# Les guillemets françaises sont Ť et ť et non ". La guillemet ouvrante
-# Ť est suivie d'un espace insécable et la guillemet fermante ť est
+# Les guillemets françaises sont Ť et ť et non ". La guillemet ouvrante
+# Ť est suivie d'un espace insécable et la guillemet fermante ť est
# précédée du męme type d'espace. Pour le tapper, vous pouvez utiliser
# la combinaison Compose < <, et Compose > >.
#
@@ -53,33 +53,63 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX for MDK 8.1\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-06 01:36GMT+1\n"
-"Last-Translator: Combelles Christophe <ccomb@club-internet.fr>\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2002-07-31 13:31+0200\n"
+"Last-Translator: Guy CLOTILDE <guy.clotilde@wanadoo.fr>\n"
"Language-Team: french <fr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-15\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 0.9.5\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Configurer les écrans séparément"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 ko"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Étaler l'affichage sur plusieurs écrans (Xinerama)"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 ko"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Configurer seulement la carte Ť %s ť (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 Mo"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 Mo"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 Mo"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 Mo"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 Mo"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 Mo"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 Mo ou plus"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Choisissez un serveur d'affichage (serveur XFree)"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "serveur XFree"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Configuration multi-écrans"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -87,41 +117,45 @@ msgstr ""
"Votre systčme peut utiliser simultanément plusieurs écrans.\n"
"Que souhaitez-vous faire ?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Carte graphique"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr ""
+"Veuillez préciser la quantité de mémoire vidéo de votre carte graphique"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Choisissez une carte graphique"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "Configuration d'XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Choisissez un serveur d'affichage (serveur XFree)"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Quelle configuration d'XFree désirez-vous utiliser ?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "serveur XFree"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Configurer les écrans séparément"
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Choisissez un pilote d'affichage X11"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Étaler l'affichage sur plusieurs écrans (Xinerama)"
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "serveur X11"
+#: ../../Xconfig/card.pm_.c:379
+#, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Configurer seulement la carte Ť %s ť %s"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Quelle configuration d'XFree désirez-vous utiliser ?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s avec accélération 3D matérielle"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -132,35 +166,18 @@ msgstr ""
"Votre carte vidéo est supportée par XFree %s. Ce dernier peut ętre plus\n"
"performant en 2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Votre carte vidéo peut utiliser l'accélération 3D matérielle avec XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s avec accélération 3D matérielle"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Votre carte vidéo peut utiliser l'accélération 3D matérielle en utilisant\n"
-"XFree %s.\n"
-"Veuillez noter que ce support est EXPÉRIMENTAL et qu'il peut BLOQUER VOTRE\n"
-"ORDINATEUR."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s avec support EXPÉRIMENTAL de l'accélération 3D matérielle"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -175,32 +192,59 @@ msgstr ""
"Votre carte vidéo est supportée par XFree %s. Ce dernier peut ętre plus\n"
"performant en 2D."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Votre carte vidéo peut utiliser l'accélération 3D matérielle en utilisant\n"
+"XFree %s.\n"
+"Veuillez noter que ce support est EXPÉRIMENTAL et qu'il peut BLOQUER VOTRE\n"
+"ORDINATEUR."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installation du pilote d'affichage)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Configuration d'XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
msgstr ""
-"Veuillez préciser la quantité de mémoire vidéo de votre carte graphique"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Choisissez les options du serveur d'affichage"
+"Désirez-vous conserver les changements ?\n"
+"La configuration actuelle est :\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Choisissez un moniteur"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Moniteur"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Personnalisée"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr "Plug'n Play"
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Générique"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+msgid "Vendor"
+msgstr "Vendeur"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -224,514 +268,325 @@ msgstr ""
"En cas de doute, choisissez un réglage moins performant mais\n"
"sans risque pour votre matériel."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Fréquence horizontale"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Fréquence verticale"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Le moniteur n'est pas configuré"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "La carte graphique n'est pas encore configurée"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "La résolution n'a pas encore été choisie"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Désirez-vous tester la configuration ?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Attention : tester cette carte vidéo peut bloquer votre ordinateur"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Test de la configuration"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 couleurs (8 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"essayez de modifier quelques paramčtres"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 768 couleurs (15 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Une erreur est survenue :"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 536 couleurs (16 bits)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Fin du test dans %d secondes"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16,7 millions de couleurs (24 bits)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Ętes-vous satisfait(e) ?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4,3 milliards de couleurs (32 bits)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr ""
-"Une erreur est survenue, essayez de modifier\n"
-"quelques paramčtres"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Résolutions"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Résolution"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Choix de la résolution et du nombre de couleurs"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Carte graphique : %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Serveur XFree86 : %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Davantage"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Annuler"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Mode expert"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Tout montrer"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Désirez-vous tester la configuration ?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Résolutions"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Test de la configuration"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Type de clavier : %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Type de souris : %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Périphérique : %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Moniteur : %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Fréquence horizontale : %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Fréquence verticale : %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Carte graphique : %s\n"
-#: ../../Xconfigurator.pm_.c:1516
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Indentification de la carte graphique : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Mémoire vidéo : %s ko\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Nombre de couleurs : %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Résolution : %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Serveur XFree86 : %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Pilote XFree86 : %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Préparation de la configuration de X Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Que désirez-vous faire ?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Choisir un type de moniteur"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Choisir un type de carte graphique"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Changer les options du serveur d'affichage"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Changer la résolution"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Afficher la configuration actuelle"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Tester ŕ nouveau"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Quitter"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Désirez-vous conserver les changements ?\n"
-"La configuration actuelle est :\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "Interface graphique lors du démarrage"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Voulez-vous que l'interface graphique soit\n"
"automatiquement lancée lors du démarrage ?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Veuillez relancer %s pour activer les changements"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr ""
-"Veuillez vous déconnecter puis presser simultanément les touches Ctrl-Alt-"
-"BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 couleurs (8 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 768 couleurs (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 536 couleurs (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16,7 millions de couleurs (24 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4,3 milliards de couleurs (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 ko"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 ko"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 Mo ou plus"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standard VGA, 640x480 ŕ 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 ŕ 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Compatible 8514, 1024x768 ŕ 87 Hz entrelacé (sans 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 ŕ 87 Hz entrelacé, 800x600 ŕ 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Super VGA étendu, 800x600 ŕ 60 Hz, 640x480 ŕ 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "SVGA non entrelacé, 1024x768 ŕ 60 Hz, 800x600 ŕ 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "SVGA haute fréquence, 1024x768 ŕ 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-fréquences supportant le 1280x1024 ŕ 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-fréquences supportant le 1280x1024 ŕ 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-fréquences supportant le 1280x1024 ŕ 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Moniteur supportant le 1600x1200 ŕ 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Moniteur supportant le 1600x1200 ŕ 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Premier secteur de la partition d'amorçage"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Premier secteur du disque (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "Installation de SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Oů désirez-vous installer le programme d'amorçage ?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "Installation de LILO ou Grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO en mode texte"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO en mode graphique"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Démarrer ŕ partir de DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Principales options du programme d'amorçage"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Programme d'amorçage ŕ utiliser"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Installation du programme d'amorçage"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Périphérique d'amorçage"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ne fonctionne pas avec des BIOS anciens)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Compact"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "compact"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Mode vidéo"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Délai avant l'activation du choix par défaut"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Mot de passe"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Mot de passe (vérif)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Protéger par mot de passe les options"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "Protection des options"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
-msgstr "Vider le dossier /tmp ŕ chaque démarrage"
+msgstr "Vider le répertoire /tmp ŕ chaque démarrage"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Précisez la taille mémoire si nécessaire (%d Mo trouvés)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Autoriser plusieurs profils"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Indiquez la quantité de mémoire en Mo"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Le protection des options est inutile sans mot de passe"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Veuillez réessayer"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Les mots de passe ne correspondent pas"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Message de démarrage"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Délai de l'Open Firmware"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Délai d'amorçage du noyau"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Autoriser le démarrage sur CD ?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Autoriser le démarrage sur l'OF ?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "OS par défaut ?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -745,83 +600,83 @@ msgstr ""
"\n"
"Sur quel disque est-ce que le systčme démarre ?"
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Voici les différentes entrées.\n"
"Vous pouvez en rajouter de nouvelles ou changer les entrées existantes."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Ajouter"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Terminer"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Modifier l'élément sélectionné"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Quel type de systčme voulez-vous ajouter ?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Autres systčmes (SunOS, etc.)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Autres systčmes (MacOS, etc.)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Autres systčmes (Windows, etc.)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "fichier noyau"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Partition racine"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "options passées au noyau"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Fichier RamDisk"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Préactivé en écriture"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Table des partitions"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Peu sűr"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Label"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Choix par défaut"
@@ -853,53 +708,77 @@ msgstr "Vous devez spécifier une partition racine"
msgid "This label is already used"
msgstr "Ce label est déjŕ utilisé"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Interface(s) %s %s détectée(s)"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "En possédez-vous d'autres ?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Possédez-vous des interfaces %s ?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Non"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Oui"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Voir les informations sur le matériel"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Installation du pilote pour la carte %s %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(module %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+"Vous pouvez maintenant founir des options au module %s.\n"
+"Veuillez noter que les adresses doivent ętre précédées de 0x, comme Ť 0x123 ť"
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Vous pouvez maintenant préciser les options du module %s.\n"
+"Les options sont de la forme Ť nom=valeur nom2=valeur2 ... ť.\n"
+"Par exemple, Ť io=0x300 irq=7 ť"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Options du module :"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Quel pilote %s faut-il essayer ?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -917,40 +796,15 @@ msgstr ""
"(La détection peut dans certains cas bloquer l'ordinateur,\n"
"mais sans lui causer de dommage.)"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Détection automatique"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Spécifier des options"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"Vous pouvez maintenant founir des options au module %s.\n"
-"Veuillez noter que les adresses doivent ętre généralement préfixées de 0x, "
-"comme '0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Vous pouvez maintenant préciser les options du module %s.\n"
-"Les options sont de la forme Ť nom=valeur nom2=valeur2 ... ť.\n"
-"Par exemple, Ť io=0x300 irq=7 ť"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Options du module :"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -959,51 +813,55 @@ msgstr ""
"Le chargement du module %s a échoué.\n"
"Désirez-vous réessayer avec d'autres paramčtres ?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "accčs aux programmes graphiques"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "accčs aux outils rpm"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "autoriser Ť su ť"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "accčs aux fichiers d'administration"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "Utilisateur(s) existant(s) : %s"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Ce mot de passe est trop simple"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Veuillez taper un nom d'utilisateur"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Le nom d'utilisateur ne peut contenir que des lettres minuscules,\n"
"des nombres, ainsi que les caractčres Ť - ť et Ť _ ť"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+msgid "The user name is too long"
+msgstr "Ce nom d'utilisateur est trop long"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Ce nom d'utilisateur est déjŕ utilisé"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Ajouter un utilisateur"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -1012,32 +870,32 @@ msgstr ""
"Créer un compte utilisateur\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Accepter"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Nom et prénom"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Nom d'utilisateur"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Interpréteur"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Icône"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Connexion automatique"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -1045,94 +903,76 @@ msgstr ""
"Lors du démarrage, voulez-vous que le systčme connecte\n"
"automatiquement un utilisateur par défaut ?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Choisissez l'utilisateur par défaut :"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Choisissez l'environnement graphique :"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Choisissez la langue :"
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr ""
"Vous pouvez choisir d'autres langues.\n"
"Elles seront disponibles aprčs l'installation."
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Tout"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Autoriser tous les utilisateurs"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Personnalisée"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "Pas de partage"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Le paquetage %s doit ętre installé. Voulez-vous l'installer ?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
"Voulez-vous exporter par NFS (protocole Unix) ou SMB (protocole Windows)?"
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Le paquetage %s, qui est obligatoire, est manquant"
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-"Voulez-vous permettre aux utilisateurs de partager certains sous-répertoires de leur répertoire personnel (/home) ?\n"
-"Permettre cela autorisera les utilisateurs ŕ cliquer simplement sur Ť Partager ť dans konqueror et nautilus.\n"
+"Voulez-vous permettre aux utilisateurs de partager certains sous-répertoires "
+"de leur répertoire personnel (/home) ?\n"
+"Permettre cela autorisera les utilisateurs ŕ cliquer simplement sur "
+"Ť Partager ť dans konqueror et nautilus.\n"
"\n"
"Ť Personnalisée ť permet de choisir pour chaque utilisateur.\n"
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Annuler"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr "Lancer userdrake"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -1140,31 +980,31 @@ msgstr ""
"Le partage par utilisateur utilise le groupe Ť fileshare ť.\n"
"Vous pouvez utiliser userdrake pour rajouter un utilisater dans ce groupe."
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Bienvenue aux pirates"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Trčs faible"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Standard"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Élevée"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
msgstr "Plus élevée"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoďaque"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1172,11 +1012,10 @@ msgid ""
msgstr ""
"Ce niveau de sécurité doit ętre utilisé avec précaution. Il rend votre\n"
"systčme plus facile ŕ utiliser, aux dépens de la sécurité. Il ne devrait\n"
-"donc pas ętre utilisé sur une machine connectée ŕ un réseau ou ŕ "
-"l'internet.\n"
+"donc pas ętre utilisé sur une machine connectée ŕ un réseau ou ŕ Internet.\n"
"Aucun mot de passe n'est requis."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1184,15 +1023,15 @@ msgstr ""
"Les mots de passe sont maintenant requis. Pour autant, il n'est pas\n"
"recommandé d'utiliser cette machine sur un réseau."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
msgstr ""
"Ceci est le niveau de sécurité standard recommandé pour un ordinateur \n"
-"utilisé pour se connecter ŕ l'internet en tant que client."
+"utilisé pour se connecter ŕ Internet en tant que client."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1200,13 +1039,14 @@ msgstr ""
"Il y a déjŕ des restrictions, et des vérifications automatiques sont "
"effectuées chaque nuit."
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Avec ce niveau de sécurité, l'utilisation de cette machine en tant que\n"
"serveur devient envisageable. La sécurisation est suffisamment forte pour\n"
@@ -1214,41 +1054,41 @@ msgstr ""
"seulement connectée en tant que client sur Internet, vous devriez plutôt\n"
"choisir un niveau inférieur."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Ce niveau de sécurité est basé sur le précédent mais le systčme est "
"maintenant\n"
"complčtement clos (vu du réseau). La sécurité est maximale."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Choisissez le niveau de sécurité"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Niveau de sécurité"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Utilisation de Ť libsafe ť pour les serveurs"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Une bibliothčque qui protčge contre les attaques par débordement de pile.\n"
"(les plus fréquentes)"
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr "Administrateur sécurité (identifiant (login) ou adresse email)"
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1265,52 +1105,52 @@ 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_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Bienvenue dans GRUB, le chargeur de systemes d'exploitation"
#. -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_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Utilisez les touches %c et %c pour faire votre choix."
#. -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_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Appuyez sur <Entree> pour demarrer, sur <e> pour modifier la"
#. -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_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "commande de demarrage ou sur <c> pour utiliser la ligne de commande."
#. -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_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Demarrage automatique dans %d secondes."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
-msgstr "il n'y a pas assez de place dans le dossier /boot"
+msgstr "il n'y a pas assez de place dans le répertoire /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Bureau"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Menu Démarrer"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr ""
@@ -1325,15 +1165,19 @@ msgstr "pas d'aide disponible pour l'instant.\n"
msgid "Boot Style Configuration"
msgstr "Configuration du style de démarrage"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Fichier"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Fichier/_Quitter"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1368,14 +1212,14 @@ msgstr "Menu d'amorçage"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Le choix du systčme d'exploitation est actuellement géré par %s.\n"
"Vous pouvez ici modifier la liste du menu d'amorçage."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Configurer"
@@ -1385,7 +1229,7 @@ msgid "System mode"
msgstr "Choix pour l'interface utilisateur"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Lancer l'interface graphique au démarrage"
#: ../../bootlook.pm_.c:148
@@ -1396,14 +1240,16 @@ msgstr "Ne pas connecter automatiquement un utilisateur"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Connexion automatique (choisir utilisateur et environnement)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "OK"
@@ -1451,7 +1297,7 @@ msgstr "Impossible de faire des captures d'écran avant le partitionnement"
msgid "Screenshots will be available after install in %s"
msgstr "Les captures d'écran seront disponibles aprčs l'installation dans %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "France"
@@ -1459,7 +1305,7 @@ msgstr "France"
msgid "Costa Rica"
msgstr "Costa Rica"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Belgique"
@@ -1483,11 +1329,12 @@ msgstr "Norvčge"
msgid "Sweden"
msgstr "Sučde"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Pays-Bas"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "Italie"
@@ -1495,7 +1342,7 @@ msgstr "Italie"
msgid "Austria"
msgstr "Autriche"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "États-Unis"
@@ -1505,8 +1352,8 @@ msgstr ""
"Avant d'utiliser un logiciel de partitionnement de disques,\n"
"il est prudent de faire une copie de sauvegarde de vos données !!"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "MISE EN GARDE"
@@ -1519,11 +1366,12 @@ msgstr ""
"Si vous voulez utiliser Ť aboot ť, vous devez réserver\n"
"un espace libre d'au moins 2048 secteurs au début du disque."
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Erreur"
@@ -1531,11 +1379,11 @@ msgstr "Erreur"
msgid "Wizard"
msgstr "Assistant"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Choisissez une action"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1547,77 +1395,77 @@ msgstr ""
"Vous devriez la réduire pour pouvoir créer d'autres partitions :\n"
"cliquez sur la partition puis sur Ť Redimensionner ť."
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Veuillez cliquer sur une partition"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Détails"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "SF journalisé"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Vide"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Autre"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Types des systčmes de fichiers :"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Créer"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Type"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Utilisez plutôt Ť %s ť"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Supprimer"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Cliquez d'abord sur Ť Démonter ť"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1625,67 +1473,72 @@ msgstr ""
"Aprčs avoir modifié le type de la partition %s, toutes les données\n"
"présentes sur cette partition seront perdues."
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Choisissez une partition"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Choisissez une autre partition"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Quitter"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Passer en mode expert"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Passer en mode normal"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "État précédent"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Désirez-vous tout de męme continuer ?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Quitter sans sauvegarder"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Désirez-vous réellement quitter sans écrire la table des partitions ?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "Désirez-vous sauvegarder les modifications de /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Partitionnement automatique"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Supprimer toutes les partitions"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Davantage"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "Informations sur les disques durs"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Toutes les partitions primaires sont utilisées"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Impossible d'ajouter une partition"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1693,31 +1546,31 @@ msgstr ""
"Pour pouvoir utiliser plus de partitions, vous devez d'abord en supprimer "
"une pour la remplacer par une partition étendue."
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "Sauvegarder la table des partitions..."
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "Charger une table des partitions..."
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Deviner automatiquement la table des partitions"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "Relire la table des partitions"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "Auto-montage des périphériques amovibles"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Sélectionnez un fichier"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1726,11 +1579,11 @@ msgstr ""
"n'a pas la męme taille que le disque.\n"
"Désirez-vous tout de męme continuer ?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Attention"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1738,122 +1591,129 @@ msgstr ""
"Insérez une disquette dans le lecteur.\n"
"Toutes les données présentes sur cette disquette seront perdues."
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Tentative de lecture de l'organisation des partitions..."
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Informations détaillées"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Point de montage"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Options"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Redimensionner"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Déplacer"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formater"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Monter"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Ajouter au RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Ajouter au LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Démonter"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Supprimer du RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Supprimer du LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Modifier le RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Utiliser pour loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Créer une nouvelle partition"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Secteur de début : "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Taille en Mo : "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Type du systčme de fichiers : "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Point de montage : "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Préférence : "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+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/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "Supprimer le fichier loopback ?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Changement du type de partition"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Quel systčme de fichiers désirez-vous utiliser ?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Passage de ext2 ŕ ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Oů désirez-vous monter le fichier loopback %s ?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Oů désirez-vous monter la partition %s ?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1861,131 +1721,136 @@ msgstr ""
"Il est impossible de désélectionner ce point de montage car il est\n"
"utilisé pour le loopback. Veuillez supprimer ce dernier d'abord."
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Calcul des limites du systčme de fichiers FAT ..."
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Redimensionnement"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Cette partition ne peut pas ętre redimensionnée"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr ""
"Toutes les données présentes sur cette partition\n"
"devraient avoir été sauvegardées."
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Aprčs avoir redimensionné la partition %s, toutes les données présentes\n"
"sur cette partition seront perdues"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Choisissez la nouvelle taille"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Nouvelle taille en Mo : "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Sur quel disque voulez-vous la déplacer ?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Secteur"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Sur quel secteur voulez-vous la déplacer ?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Déplacement"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Déplacement de la partition..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Choisissez un RAID existant"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "Nouveau"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Choisissez un LVM existant"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "Nom LVM ?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Cette partition ne peut pas ętre utilisée pour du loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Nom du fichier loopback :"
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Donnez un nom de fichier"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr ""
"Ce fichier est déjŕ utilisé par un autre loopback.\n"
"Veuillez en choisir un autre."
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Le fichier existe déjŕ. Faut-il l'utiliser ?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Options de montage"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Divers"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
-msgstr "Périphérique"
+msgstr "périphérique"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "Niveau de RAID"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "Taille de bloc"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Soyez prudent : cette opération est dangereuse."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Quel type de partitionnement ?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Le paquetage %s doit ętre installé. Voulez-vous l'installer ?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1993,11 +1858,11 @@ msgid ""
"need /boot"
msgstr ""
"Le programme d'amorçage LILO ne peut pas fonctionner si vous placez\n"
-"la partition du dossier /boot aussi loin sur le disque (c'est-ŕ-dire\n"
+"la partition du répertoire /boot aussi loin sur le disque (c'est-ŕ-dire\n"
"au delŕ du 1024čme cylindre). Si vous n'utilisez pas LILO, vous n'avez\n"
-"pas besoin de partition spécifique pour le dossier /boot."
+"pas besoin de partition spécifique pour le répertoire /boot."
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -2006,9 +1871,10 @@ msgid ""
msgstr ""
"Attention, votre partition racine se situe au delŕ du 1024čme cylindre.\n"
"Si vous comptez utiliser le programme d'amorçage LILO, vous devez créer\n"
-"une autre partition juste pour le dossier /boot en deçŕ du 1024čme cylindre."
+"une autre partition juste pour le répertoire /boot en deçŕ du 1024čme "
+"cylindre."
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2016,135 +1882,135 @@ msgid ""
msgstr ""
"Attention, vous avez choisi une partition RAID logiciel comme partition\n"
"racine. Pour que votre systčme puisse démarrer, vous devez ajouter\n"
-"une partition non RAID, spécifique pour le dossier /boot."
+"une partition non RAID, spécifique pour le répertoire /boot."
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr ""
"La table des partitions de %s va maintenant ętre écrite sur le disque !"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Vous devez redémarrer pour que les modifications soient prises en compte"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Aprčs avoir formaté la partition %s, toutes les données présentes\n"
"sur cette partition seront perdues."
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Formatage"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatage du fichier loopback %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Formatage de la partition %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Cacher les fichiers"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Déplacer les fichiers sur la nouvelle partition"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
-"Le dossier %s contient déjŕ des données\n"
+"Le répertoire %s contient déjŕ des données\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "Déplacement des fichiers sur la nouvelle partition..."
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Copie de %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Suppression de %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "la partition %s est maintenant connue comme %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Périphérique : "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Lettre de lecteur DOS supposée : %s:\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Type : "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Nom : "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Début : secteur %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Taille : %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s secteurs"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cylindre %d ŕ %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Formatée\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Non formatée\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Montée\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "Appartient au RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2153,7 +2019,7 @@ msgstr ""
"Fichier(s) loopback :\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2161,27 +2027,27 @@ msgstr ""
"Partition d'amorçage par défaut\n"
"(pour DOS/Windows, pas pour LILO)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "RAID de niveau %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Taille de bloc %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "disques RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Nom du fichier loopback : %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2193,7 +2059,7 @@ msgstr ""
"soit une partition de pilotes systčmes,\n"
"vous ne devriez pas la toucher.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2205,62 +2071,62 @@ msgstr ""
"est nécessaire si vous avez plusieurs\n"
"systčmes d'exploitation. \n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Taille : %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Géométrie : %s cylindres, %s tętes, %s secteurs\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Information : "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "disques LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Table des partitions de type : %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
-msgid "on bus %d id %d\n"
-msgstr "sur bus %d id %d\n"
+msgid "on channel %d id %d\n"
+msgstr "sur canal %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Options : %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "Clef de chiffrement du systčme de fichiers"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "Choisissez la clef de chiffrement du systčme de fichiers"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Cette clef de chiffrement est trop courte (minimum %d caractčres)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "Les clefs de chiffrement ne correspondent pas"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "Clef de chiffrement"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "Clef de chiffrement (confirmation)"
@@ -2269,35 +2135,62 @@ msgid "Change type"
msgstr "Changer le type"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
-msgstr "Veuillez cliquer sur une source"
+msgid "Please click on a medium"
+msgstr "Veuillez cliquer sur un médium"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr "Impossible de se connecter avec le nom %s (mauvais mot de passe?)"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+msgid "Domain Authentication Required"
+msgstr "Domaine d'authentification nécessaire"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Another one"
+msgstr "Un autre"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Which username"
+msgstr "Quel nom d'utilisateur"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+"Veuillez entrez vos nom d'utilisateur, mot de passe et nom de domaine pour "
+"accéder ŕ ce serveur"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+msgid "Username"
+msgstr "Nom d'utilisateur"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+msgid "Domain"
+msgstr "Domaine"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "Rechercher les serveurs"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "le formatage au format %s de %s a échoué"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Impossible de formater %s au format %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "le montage de la partition %s dans le répertoire %s a échoué"
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck a échoué avec le code de sortie %d ou le signal %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "Le démontage de %s a échoué : %s"
@@ -2314,72 +2207,318 @@ msgstr "avec /usr"
msgid "server"
msgstr "serveur"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "Les partitions JFS doivent faire plus de 16 Mo."
+msgstr "Les partitions JFS doivent faire au moins 16 Mo."
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "Les partitions ReiserFS doivent faire plus de 32 Mo."
+msgstr "Les partitions ReiserFS doivent faire au moins 32 Mo."
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Les points de montage doivent commencer par /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Le point de montage %s est déjŕ utilisé\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
"Vous ne pouvez pas utiliser une partition logique LVM pour le point de "
"montage %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
-msgstr "Ce dossier devrait rester dans la partition racine"
+msgstr "Ce répertoire doit rester dans la partition racine"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
-"Vous avez besoin d'un vrai systčme de fichiers (ext2, reiserfs) pour ce "
-"point de montage\n"
+"Vous avez besoin d'un vrai systčme de fichiers (ext2/ext3, reiserfs, xfs, ou "
+"jfs) pour ce point de montage\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
"Vous ne pouvez pas utiliser de systčme de fichiers crypté pour le point de "
"montage %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "Pas assez d'espace libre pour le partitionnement automatique"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr "Rien ŕ faire"
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Erreur lors de l'ouverture de %s en écriture : %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Une erreur est survenue : aucun périphérique valide n'a été trouvé pour\n"
"créer de nouvelles partitions. Veuillez vérifier votre matériel."
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Vous n'avez défini aucune partition !"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+msgid "Auto-detect"
+msgstr "Auto-détecter"
+
+#: ../../harddrake/bttv.pm_.c:64
+msgid "Unknown|Generic"
+msgstr "Inconnu|Générique"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr "Inconnu|CPH05X (bt878) [nombreux vendeurs]"
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr "Inconnu|CPH06X (bt878) [nombreux vendeurs]"
+
+#: ../../harddrake/bttv.pm_.c:193
+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 ""
+"Pour la plupart des cartes TV récentes, le module bttv du noyau GNU/Linux "
+"auto-détecte tout seul les bons paramčtres.\n"
+"Si votre carte est mal détectée, vous pouvez donner les types de tuner et de "
+"carte corrects ici. Vous n'avez qu'a sélectionner les paramčtres nécessaires "
+"ŕ votre carte TV si nécessaire."
+
+#: ../../harddrake/bttv.pm_.c:196
+msgid "Card model :"
+msgstr "Modčle de carte :"
+
+#: ../../harddrake/bttv.pm_.c:197
+msgid "PLL setting :"
+msgstr "Réglage de la BVP (PLL)"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr "Nombre de tampons de capture"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr "nombre de tampons pour la capture via mmap()"
+
+#: ../../harddrake/bttv.pm_.c:199
+msgid "Tuner type :"
+msgstr "Type de tuner :"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr "Support de la radio :"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr "activer le support de la radio"
+
+#: ../../harddrake/ui.pm_.c:12
+msgid "/_Quit"
+msgstr "/_Quitter"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Aide"
+
+#: ../../harddrake/ui.pm_.c:14
+msgid "/_Help..."
+msgstr "/_Aide..."
+
+#: ../../harddrake/ui.pm_.c:15
+msgid "/_About..."
+msgstr "/_A propos..."
+
+#: ../../harddrake/ui.pm_.c:22
+msgid "Model"
+msgstr "Modčle"
+
+#: ../../harddrake/ui.pm_.c:22
+msgid "hard disk model"
+msgstr "Modčle de disque dur"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "Channel"
+msgstr "Canal"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr "Nappe EIDE/Canal SCSI"
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr "Bus"
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+"ceci est le bus physique sur lequel le périphérique est connecté (ex: PCI, "
+"USB, ...)"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "Module"
+msgstr "Module"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr "le module du noyau GNU/Linux qui gčre ce périphérique"
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr "Classe de matériel"
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr "classe de matériel"
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Description"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr "ce champs décrit le périphérique"
+
+#: ../../harddrake/ui.pm_.c:31
+msgid "Bus identification"
+msgstr "IDs du matériel"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+"- péphériques PCI et USB: liste des identifiants vendeur, péphériques, sous-"
+"vendeur, sous-péphériques PCI/USB"
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr "Position sur le bus"
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+"- péphériques PCI: slot, péphériques et fonction PCI de cette carte\n"
+"- péphériques EIDE: ce péphériques est soit maitre soit esclave\n"
+"- péphériques SCSI: the bus et l'identifiant SCSI"
+
+#: ../../harddrake/ui.pm_.c:38
+msgid "Old device file"
+msgstr "Ancien nom de péphérique"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr "ancien nom de périphérique statique utilisé dans le paquetage dev"
+
+#: ../../harddrake/ui.pm_.c:40
+msgid "New devfs device"
+msgstr "Nouveau périphérique devfs"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr "nouveau nom de périphérique dynamique généré par le kernel"
+
+#: ../../harddrake/ui.pm_.c:42
+msgid "Number of buttons"
+msgstr "Nombre de bouttons"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr "le nom du vendeur de ce périphérique"
+
+#: ../../harddrake/ui.pm_.c:92
+msgid "Harddrake2 version "
+msgstr "Harddrake2 version"
+
+#: ../../harddrake/ui.pm_.c:122
+msgid "Detected hardware"
+msgstr "Matériel détecté"
+
+#: ../../harddrake/ui.pm_.c:136
+msgid "Informations"
+msgstr "Informations"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr "Lancer l'outil de configuration"
+
+#: ../../harddrake/ui.pm_.c:158
+msgid "Configure module"
+msgstr "Configuration du module"
+
+#: ../../harddrake/ui.pm_.c:168
+msgid "Detection in progress"
+msgstr "Détection en cours"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Veuillez patienter"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr "maître"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "secondary"
+msgstr "esclave"
+
+#: ../../harddrake/ui.pm_.c:260
+#, c-format
+msgid "Running \"%s\" ..."
+msgstr "Lancement de Ť %s ť..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr "A propos de Harddrake"
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+"Harddrake est l'outil de configuration Mandrake du matériel.\n"
+"Version:"
+
+#: ../../harddrake/ui.pm_.c:281
+msgid "Author:"
+msgstr "Auteur:"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr "Aide de Harddrake"
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+"Description des champs:\n"
+"\n"
+
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
#: ../../help.pm_.c:13
@@ -2395,7 +2534,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2411,36 +2550,36 @@ msgid ""
"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
"for that user (bash by default)."
msgstr ""
-"GNU/Linux est un systčme multi-utilisateurs, ce qui signifie généralement que chaque\n"
-"utilisateur peut avoir des préférences différences, ses propres fichiers,\n"
-"etc. Pour plus d'informations, consultez le manuel d'utilisation.\n"
+"GNU/Linux est un systčme multi-utilisateurs, ce qui signifie generalement\n"
+"que chaque utilisateur peut avoir des preferences differences, ses propres\n"
+"fichiers, etc. Pour plus d'informations, consultez le manuel d'utilisation.\n"
"Contrairement ŕ Ť root ť qui a tous les droits, les utilisateurs que vous\n"
"ajouterez ici n'auront que des permissions pour agir sur leurs propres\n"
"fichiers exclusivement.\n"
"\n"
-"L'utilisateur/administrateur devrait également se créer un compte\n"
+"L'utilisateur/administrateur devrait egalement se creer un compte\n"
"Ť normal ť. C'est ŕ travers cet utilisateur que celui-ci devrait se\n"
"connecter pour accomplir ses tâches quotidiennes. Car, bien qu'il soit\n"
-"pratique d'avoir tous les accčs, cette situation peut également engendrer\n"
-"des situations désastreuses si un fichier est détruit par inadvertance. Un\n"
+"pratique d'avoir tous les accčs, cette situation peut egalement engendrer\n"
+"des situations desastreuses si un fichier est detruit par inadvertance. Un\n"
"utilisateur normal n'ayant pas accčs aux fichiers sensibles, ne peut causer\n"
"de dommages majeurs.\n"
"\n"
"Il faut d'abord entrer le vrai nom de la personne. Évidemment, vous pouvez\n"
-"y inscrire n'importe quoi. DrakX prendra le premier mot inséré et le\n"
-"transposera comme Ť Nom de login ť. C'est le nom qui sera utilisé pour se\n"
+"y inscrire n'importe quoi. DrakX prendra le premier mot insere et le\n"
+"transposera comme Ť Nom de login ť. C'est le nom qui sera utilise pour se\n"
"connecter au systčme. Vous pouvez le modifier. Il faut maintenant entrer un\n"
"mot de passe. Celui-ci n'est pas aussi crucial que le mot de passe de\n"
"Ť root ť, mais ce n'est pas une raison pour rentrer 123456. Aprčs tout,\n"
-"ceci mettrait vos fichiers en péril.\n"
+"ceci mettrait vos fichiers en peril.\n"
"\n"
"Si vous cliquez Ť Accepter ť, il vous sera possible d'ajouter d'autres\n"
-"utilisateurs. Créez un utilisateur différent pour chaque personne devant\n"
-"utiliser votre ordinateur. Une fois chaque utilisateur défini, cliquez sur\n"
+"utilisateurs. Creez un utilisateur different pour chaque personne devant\n"
+"utiliser votre ordinateur. Une fois chaque utilisateur defini, cliquez sur\n"
"Ť Terminer ť.\n"
"\n"
-"En cliquant sur Ť Avancé ť, vous pourrez sélectionner un Ť shell ť\n"
-"différent pour cet utilisateur (bash est assigné par défaut)."
+"En cliquant sur Ť Avance ť, vous pourrez selectionner un Ť shell ť\n"
+"different pour cet utilisateur (bash est assigne par defaut)."
#: ../../help.pm_.c:41
msgid ""
@@ -2516,10 +2655,10 @@ msgid ""
"knows if a selected package is located on another CD-ROM and will eject the\n"
"current CD and ask you to insert a different one as required."
msgstr ""
-"Les paquetages requis ŕ l'installation de Mandrake Linux sont distribués sur plusieurs\n"
-"CDROM. Heureusement, DrakX connaît l'emplacement de chacun des paquetages.\n"
-"Il éjectera celui présent dans le lecteur et vous demandera d'insérer le\n"
-"CDROM approprié, selon le cas."
+"Les paquetages requis ŕ l'installation de Mandrake Linux sont distribues\n"
+"sur plusieurs CDROM. Heureusement, DrakX connaît l'emplacement de chacun\n"
+"des paquetages. Il ejectera celui present dans le lecteur et vous demandera\n"
+"d'inserer le CDROM approprie, selon le cas."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
@@ -2537,9 +2676,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2576,61 +2714,62 @@ msgid ""
"groups to avoid installing any new package. This is useful for repairing or\n"
"updating an existing system."
msgstr ""
-"C'est maintenant le moment de choisir les paquetages qui seront installés\n"
-"sur votre systčme. Sachez que Mandrake Linux contient plusieurs milliers de paquetages ŕ\n"
-"installer, et qu'il n'est pas nécessaire de tous les connaître par coeur.\n"
+"C'est maintenant le moment de choisir les paquetages qui seront installes\n"
+"sur votre systčme. Sachez que Mandrake Linux contient plusieurs milliers de\n"
+"paquetages ŕ installer, et qu'il n'est pas necessaire de tous les connaître\n"
+"par coeur.\n"
"\n"
"Si vous ętes en train de faire une installation normale ŕ partir d'un\n"
-"CDROM, il vous sera d'abord demandé de spécifier quel CD vous avez (en mode\n"
-"Expert). Vérifier les étiquettes et cliquez sur les boîtes leur étant\n"
-"associées. Cliquez sur Ť OK ť, lorsque vous ętes pręt ŕ continuer.\n"
+"CDROM, il vous sera d'abord demande de specifier quel CD vous avez (en mode\n"
+"Expert). Verifier les etiquettes et cliquez sur les boîtes leur etant\n"
+"associees. Cliquez sur Ť OK ť, lorsque vous ętes pręt ŕ continuer.\n"
"\n"
-"Les paquetages sont regroupés selon la nature de l'installation. Les\n"
-"groupes sont divisés en quatre sections principales:\n"
+"Les paquetages sont regroupes selon la nature de l'installation. Les\n"
+"groupes sont divises en quatre sections principales :\n"
"\n"
" * Ť Station de travail ť: si vous comptez utiliser votre machine ainsi,\n"
-"sélectionner un ou plusieurs groupes y correspondant.\n"
+"selectionner un ou plusieurs groupes y correspondant.\n"
"\n"
-" * Ť Environnement graphique ť: ce groupe vous permettra de déterminer quel\n"
+" * Ť Environnement graphique ť: ce groupe vous permettra de determiner quel\n"
"environnement graphique vous voulez avoir sur votre systčme. Évidemment, il\n"
"vous en faut au moins un pour utiliser votre station en mode graphique.\n"
"\n"
-" * Ť Développement ť: si votre systčme sera utilisé pour la programmation,\n"
-"choisissez les groupes désirés.\n"
+" * Ť Developpement ť: si votre systčme sera utilise pour la programmation,\n"
+"choisissez les groupes desires.\n"
"\n"
" * Ť Serveur ť: finalement, si vous systčme doit agir en tant que serveur,\n"
-"vous pourrez sélectionner les services que vous voulez installer.\n"
+"vous pourrez selectionner les services que vous voulez installer.\n"
"\n"
-" * Ť Environnement graphique ť: ce groupe vous permettra de déterminer quel\n"
+" * Ť Environnement graphique ť: ce groupe vous permettra de determiner quel\n"
"environnement graphique vous voulez avoir sur votre systčme. Évidemment, il\n"
"vous en faut au moins un pour utiliser votre station en mode graphique.\n"
"\n"
"En plaçant votre souris au dessus d'un nom de groupe, vous verrez\n"
-"apparaître une courte description de ce groupe. Si vous désélectionnez tous\n"
+"apparaître une courte description de ce groupe. Si vous deselectionnez tous\n"
"les groupes lors d'une installation standard (par opposition ŕ une mise ŕ\n"
-"jour), un dialogue apparaîtra proposant différentes options pour une\n"
-"installation minimale:\n"
+"jour), un dialogue apparaîtra proposant differentes options pour une\n"
+"installation minimale :\n"
"\n"
-" * Ť Avec X ť: installe le moins de paquetages possible pour avoir un\n"
-"environnement de travail graphique;\n"
+" * Ť Avec X ť : installe le moins de paquetages possible pour avoir un\n"
+"environnement de travail graphique ;\n"
"\n"
-" * Ť Avec la documentation de base ť: installe le systčme de base plus\n"
+" * Ť Avec la documentation de base ť : installe le systčme de base plus\n"
"certains utilitaires de base et leur documentation. Cette installation est\n"
-"utilisable comme base pour monter un serveur;\n"
+"utilisable comme base pour monter un serveur ;\n"
"\n"
-" * Ť Installation vraiment minimale ť: installera le strict minimum\n"
-"nécessaire pour obtenir un systčme fonctionnel, en ligne de commande. Cette\n"
-"installation prends ŕ peu prčs 65Mo.\n"
+" * Ť Installation vraiment minimale ť : installera le strict minimum\n"
+"necessaire pour obtenir un systčme GNU/Linux fonctionnel, en ligne de\n"
+"commande. Cette installation prends ŕ peu prčs 65Mo.\n"
"\n"
-"Vous pouvez finalement cocher l'option Ť Sélection individuelle des\n"
+"Vous pouvez finalement cocher l'option Ť Selection individuelle des\n"
"paquetages ť. Cette option est ŕ utiliser si vous connaissez exactement le\n"
-"paquetage désiré ou si vous voulez avoir le contrôle total de votre\n"
+"paquetage desire ou si vous voulez avoir le contrôle total de votre\n"
"installation.\n"
"\n"
-"Si vous avez démarré l'installation en mode \"mise ŕ jour\", vous pouvez\n"
-"\"dé-sélectionner\" tous les groupes afin d'éviter l'installation de\n"
+"Si vous avez demarre l'installation en mode \"mise ŕ jour\", vous pouvez\n"
+"\"de-selectionner\" tous les groupes afin d'eviter l'installation de\n"
"nouveaux programmes. Cette option est trčs utile pour restaurer un systčme\n"
-"défectueux."
+"defectueux."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
@@ -2671,41 +2810,41 @@ msgid ""
"another installation. See the second tip of last step on how to create such\n"
"a floppy."
msgstr ""
-"Finalement, si vous avez choisi de sélectionner individuellement les\n"
-"paquetages ŕ installer, DrakX vous présentera un arbre contenant tous les\n"
-"paquetages, classés par groupes et sous-groupes. En naviguant ŕ travers\n"
-"l'arbre, vous pouvez sélectionner des groupes, des sous-groupes ou des\n"
+"Finalement, si vous avez choisi de selectionner individuellement les\n"
+"paquetages ŕ installer, DrakX vous presentera un arbre contenant tous les\n"
+"paquetages, classes par groupes et sous-groupes. En naviguant ŕ travers\n"
+"l'arbre, vous pouvez selectionner des groupes, des sous-groupes ou des\n"
"paquetages individuels.\n"
"\n"
-"Dčs que vous sélectionnez un paquetage dans l'arbre, une descriptions\n"
-"apparaît ŕ droite. Une fois votre sélection complétée, cliquez sur\n"
+"Dčs que vous selectionnez un paquetage dans l'arbre, une descriptions\n"
+"apparaît ŕ droite. Une fois votre selection completee, cliquez sur\n"
"Ť Installation ť pour lancer le processus. Soyez patient, car en fonction\n"
-"du type d'installation choisi ou du nombre de paquetages sélectionnés, le\n"
-"temps requis peut ętre substantiellement différent. Une estimation du temps\n"
-"requis est présentée sur l'écran en cours d'opération afin de vous\n"
-"permettre d'évaluer de combien de temps vous disposez pour prendre votre\n"
-"déjeuner.\n"
-"\n"
-"!! Si un logiciel serveur a été sélectionné, vous devrez confirmer que vous\n"
-"voulez vraiment que celui-ci soit installé. Sous Mandrake, par défaut, tous\n"
-"les serveurs installés sont lancés au démarrage. Malgré tous les efforts\n"
-"investis pour vous livrer une distribution Linux sécuritaire, il est\n"
-"possible que certaines failles de sécurité affectes les serveurs installés\n"
-"au-delŕ de la date de publication. Si vous ne savez pas précisément ŕ quoi\n"
-"sert un serveur en particulier ou pourquoi il est installé, cliquez sur\n"
-"Ť NON ť. En cliquant sur Ť OUI ť, le serveur sera installé et le service\n"
-"rendu disponible au démarrage. !!\n"
-"\n"
-"L'option Ť Dépendances automatiques ť désactive les avertissements qui\n"
-"apparaissent ŕ chaque fois que l'installeur sélectionne un nouveau paquet.\n"
-"Ces avertissements surviennent parce que DrakX a déterminé que pour qu'un\n"
-"paquetage soit fonctionnel, il lui en faut un autre dont il est dépendant.\n"
+"du type d'installation choisi ou du nombre de paquetages selectionnes, le\n"
+"temps requis peut ętre substantiellement different. Une estimation du temps\n"
+"requis est presentee sur l'ecran en cours d'operation afin de vous\n"
+"permettre d'evaluer de combien de temps vous disposez pour prendre votre\n"
+"dejeuner.\n"
+"\n"
+"!! Si un logiciel serveur a ete selectionne, vous devrez confirmer que vous\n"
+"voulez vraiment que celui-ci soit installe. Sous Mandrake, par defaut, tous\n"
+"les serveurs installes sont lances au demarrage. Malgre tous les efforts\n"
+"investis pour vous livrer une distribution Linux securitaire, il est\n"
+"possible que certaines failles de securite affectes les serveurs installes\n"
+"au-delŕ de la date de publication. Si vous ne savez pas precisement ŕ quoi\n"
+"sert un serveur en particulier ou pourquoi il est installe, cliquez sur\n"
+"Ť NON ť. En cliquant sur Ť OUI ť, le serveur sera installe et le service\n"
+"rendu disponible au demarrage. !!\n"
+"\n"
+"L'option Ť Dependances automatiques ť desactive les avertissements qui\n"
+"apparaissent ŕ chaque fois que l'installeur selectionne un nouveau paquet.\n"
+"Ces avertissements surviennent parce que DrakX a determine que pour qu'un\n"
+"paquetage soit fonctionnel, il lui en faut un autre dont il est dependant.\n"
"\n"
"La petite icône de disquette qui apparaît au bas de la liste permet de\n"
-"récupérer une liste de paquetages sélectionnés durant une autre\n"
-"installation. En cliquant dessus, on vous demandera d'insérer la disquette\n"
-"créée lors d'une installation précédente. Voir la deuxičme note de la\n"
-"derničre étape afin de savoir comment créer une telle disquette."
+"recuperer une liste de paquetages selectionnes durant une autre\n"
+"installation. En cliquant dessus, on vous demandera d'inserer la disquette\n"
+"creee lors d'une installation precedente. Voir la deuxičme note de la\n"
+"derničre etape afin de savoir comment creer une telle disquette."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
@@ -2732,27 +2871,27 @@ msgid ""
"If you wish to configure the network later after installation, or if you\n"
"are finished configuring your network connection, click \"Cancel\"."
msgstr ""
-"Si vous désirez connecter votre systčme ŕ un réseau ou ŕ l'Internet,\n"
-"cliquez sur Ť OK ť. L'autodétection des périphériques réseau et modems sera\n"
-"alors lancée. Si cette détection échoue, décochez la case Ť Utiliser\n"
-"l'autodétection ť. Vous pouvez aussi choisir de ne pas configurer le\n"
-"réseau, ou de le faire plus tard. Dans ce cas, cliquez simplement sur\n"
+"Si vous desirez connecter votre systčme ŕ un reseau ou ŕ l'Internet,\n"
+"cliquez sur Ť OK ť. L'autodetection des peripheriques reseau et modems sera\n"
+"alors lancee. Si cette detection echoue, decochez la case Ť Utiliser\n"
+"l'autodetection ť. Vous pouvez aussi choisir de ne pas configurer le\n"
+"reseau, ou de le faire plus tard. Dans ce cas, cliquez simplement sur\n"
"Ť Annuler ť.\n"
"\n"
-"Les types de connexion supportées sont: modem téléphonique, modem ISDN,\n"
-"connexion ADSL, modem câble ou simplement LAN (réseau ethernet).\n"
+"Les types de connexion supportees sont : modem telephonique, modem ISDN,\n"
+"connexion ADSL, modem câble ou simplement LAN (reseau ethernet).\n"
"\n"
-"Nous ne détaillerons pas ici chacune des configurations possible. Assurez\n"
+"Nous ne detaillerons pas ici chacune des configurations possible. Assurez\n"
"vous seulement que vous avez toutes les informations de votre fournisseur\n"
-"de service Internet ŕ portée de main.\n"
+"de service Internet ŕ portee de main.\n"
"\n"
-"Vous pouvez consulter le chapitre du ŤGuide de l'utilisateurť concernant les connexions ŕ Internet\n"
-"pour plus de détails ŕ propos des configurations spécifiques de chaque type\n"
-"de connexion. Vous pouvez également configurer votre connexion ŕ Internet\n"
-"une fois l'installation terminée.\n"
+"Vous pouvez consulter le chapitre du Ť Guide de l'utilisateur ť concernant\n"
+"les connexions ŕ Internet pour plus de details ŕ propos des configurations\n"
+"specifiques de chaque type de connexion. Vous pouvez egalement configurer\n"
+"votre connexion ŕ Internet une fois l'installation terminee.\n"
"\n"
-"Si vous désirez configurer votre réseau plus tard ou si vous avez terminé\n"
-"l'installation de votre réseau, cliquez sur Ť Annuler ť."
+"Si vous desirez configurer votre reseau plus tard ou si vous avez termine\n"
+"l'installation de votre reseau, cliquez sur Ť Annuler ť."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
@@ -2774,20 +2913,20 @@ msgid ""
"enabled on a server. In general, select only the services you really need.\n"
"!!"
msgstr ""
-"Vous pouvez maintenant choisir les services disponibles au démarrage de\n"
+"Vous pouvez maintenant choisir les services disponibles au demarrage de\n"
"votre systčme.\n"
"\n"
-"Ici sont présentés tous les services disponibles avec l'installation en\n"
-"place. Faites une bonne vérification et enlevez tout ce qui n'est pas\n"
-"absolument nécessaire au démarrage du systčme.\n"
+"Ici sont presentes tous les services disponibles avec l'installation en\n"
+"place. Faites une bonne verification et enlevez tout ce qui n'est pas\n"
+"absolument necessaire au demarrage du systčme.\n"
"\n"
"Vous pouvez obtenir une courte explication des services en les\n"
-"sélectionnant spécifiquement. Cela dit, si vous n'ętes pas certain de\n"
-"l'application d'un service, conservez les paramčtres par défaut\n"
+"selectionnant specifiquement. Cela dit, si vous n'ętes pas certain de\n"
+"l'application d'un service, conservez les paramčtres par defaut\n"
"\n"
-"!! Ŕ cette étape, soyez particuličrement attentif dans le cas d'un systčme\n"
-"destiné ŕ agir comme serveur. Dans ce cas, vous voudrez probablement\n"
-"permettre exclusivement les services nécessaires. !!"
+"!! Ŕ cette etape, soyez particuličrement attentif dans le cas d'un systčme\n"
+"destine ŕ agir comme serveur. Dans ce cas, vous voudrez probablement\n"
+"permettre exclusivement les services necessaires. !!"
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
@@ -2806,21 +2945,20 @@ msgid ""
"actually install on your machine a time server which can be optionally used\n"
"by other machines on your local network."
msgstr ""
-"GNU-Linux manipule l'heure au format GMT (Greenwich Mean Time) et la "
-"convertit en\n"
-"temps local selon le fuseau horaire choisi. Il est néanmoins possible de\n"
-"désactiver cela en désélectionnant Ť Horloge systčme réglée sur le méridien\n"
-"de Greenwich ť de façon ŕ ce que l'horloge matérielle soit la męme que\n"
-"celle du systčme. Cela est particuličrement utile si la machine accueille\n"
-"un autre systčme d'exploitation tel que .\n"
+"GNU/Linux manipule l'heure au format GMT (Greenwich Mean Time) et la\n"
+"convertit en temps local selon le fuseau horaire choisi. Il est neanmoins\n"
+"possible de desactiver cela en deselectionnant Ť Horloge systčme reglee sur\n"
+"le meridien de Greenwich ť de façon ŕ ce que l'horloge materielle soit la\n"
+"męme que celle du systčme. Cela est particuličrement utile si la machine\n"
+"accueille un autre systčme d'exploitation tel que Windows.\n"
"\n"
-"La Ť Synchronisation automatique ť permet de régler l'heure automatiquement\n"
+"La Ť Synchronisation automatique ť permet de regler l'heure automatiquement\n"
"en se connectant ŕ un serveur de temps sur Internet. Dans la liste qui est\n"
-"alors présentée, choisissez un serveur géographiquement proche de vous.\n"
+"alors presentee, choisissez un serveur geographiquement proche de vous.\n"
"Vous devez avoir une connexion Internet pour que cela fonctionne bien\n"
"entendu. Cela installera en fait sur votre machine un serveur de temps\n"
-"local qui pourra optionnellement ętre lui-męme utilisé par d'autres\n"
-"machines de votre réseau local."
+"local qui pourra optionnellement ętre lui-męme utilise par d'autres\n"
+"machines de votre reseau local."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
@@ -2846,13 +2984,13 @@ msgid ""
"after 10 seconds, restoring the screen."
msgstr ""
"X (pour le X Window system) est le coeur de votre interface graphique sous\n"
-"GNU/Linux. Tous les environnements graphiques (Gnome, KDE, Afterstep, ...) présents\n"
-"sur Mandrake Linux dépendent de X. A cette étape, DrakX, va tenter de le configurer\n"
-"automatiquement.\n"
+"GNU/Linux. Tous les environnements graphiques (Gnome, KDE, Afterstep, ...)\n"
+"presents sur Mandrake Linux dependent de X. A cette etape, DrakX, va tenter\n"
+"de le configurer automatiquement.\n"
"\n"
-"Il est trčs rare que cette étape échoue, ŕ moins d'avoir un équipement\n"
-"obsolčte (ou trop récent). Si le processus réussit, il va démarrer X\n"
-"automatiquement avec la meilleure résolution d'écran possible, en fonction\n"
+"Il est trčs rare que cette etape echoue, ŕ moins d'avoir un equipement\n"
+"obsolčte (ou trop recent). Si le processus reussit, il va demarrer X\n"
+"automatiquement avec la meilleure resolution d'ecran possible, en fonction\n"
"de la taille du moniteur. Une fenętre apparaît alors vous demandant si\n"
"cette configuration vous convient.\n"
"\n"
@@ -2861,8 +2999,8 @@ msgstr ""
"manuel pour plus d'information.\n"
"\n"
"Si vous pouvez voir le message et cliquez sur oui, DrakX continuera ŕ la\n"
-"prochaine étape. Si vous ne pouvez voir la fenętre, ceci signifie que le\n"
-"test a échoué et vous serez ramené ŕ l'écran précédant en 10 secondes."
+"prochaine etape. Si vous ne pouvez voir la fenętre, ceci signifie que le\n"
+"test a echoue et vous serez ramene ŕ l'ecran precedant en 10 secondes."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
@@ -2880,14 +3018,14 @@ msgid ""
"modern graphics card. Then choose \"Test again\" to be sure."
msgstr ""
"Il se peut que vous ne soyez pas entičrement satisfait ŕ la premičre\n"
-"tentative de configuration graphique (écran trop petit, peu de\n"
-"couleurs...). Ainsi, męme si X démarre correctement, DrakX vous demande si\n"
+"tentative de configuration graphique (ecran trop petit, peu de\n"
+"couleurs...). Ainsi, męme si X demarre correctement, DrakX vous demande si\n"
"la configuration vous convient. Il proposera aussi de la changer en\n"
"affichant une liste des modes valides, si possible.\n"
"\n"
"En dernier recours, si vous ne pouvez pas faire fonctionner X, choisissez\n"
-"Ť Changer la carte graphique ť, sélectionnez Ť carte non listée ť, et\n"
-"lorsqu'il vous sera demandé le serveur graphique, choisissez Ť FBDev ť.\n"
+"Ť Changer la carte graphique ť, selectionnez Ť carte non listee ť, et\n"
+"lorsqu'il vous sera demande le serveur graphique, choisissez Ť FBDev ť.\n"
"c'est une option de secours qui fonctionnera sur n'importe quelle carte\n"
"graphique moderne. Choisissez ensuite Ť Tester ŕ nouveau ť pour vous\n"
"assurer que tout va bien."
@@ -2902,17 +3040,17 @@ msgid ""
"act as a server, or if you were not successful in getting the display\n"
"configured."
msgstr ""
-"Finalement, il vous sera demandé si vous souhaitez obtenir l'interface\n"
-"graphique dčs le démarrage ou non. Notez que cette question sera posée męme\n"
-"si vous choisissez de ne pas tester la configuration. Il est évidemment\n"
-"souhaitable de répondre Ť Non ť si cette machine est un serveur sur\n"
-"laquelle personne n'est censée travailler en mode graphique."
+"Finalement, il vous sera demande si vous souhaitez obtenir l'interface\n"
+"graphique dčs le demarrage ou non. Notez que cette question sera posee męme\n"
+"si vous choisissez de ne pas tester la configuration. Il est evidemment\n"
+"souhaitable de repondre Ť Non ť si cette machine est un serveur sur\n"
+"laquelle personne n'est censee travailler en mode graphique."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2924,9 +3062,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2936,26 +3073,27 @@ msgid ""
"you do not need. You will not have to format it since DrakX will rewrite\n"
"the whole disk."
msgstr ""
-"Le CDROM d'installation de Mandrake Linux a un mode de récupération prédéfini. Vous pouvez\n"
-"y accéder en démarrant l'ordinateur sur le CDROM. Selon la version de votre\n"
-"Ť BIOS ť, il faut lui spécifier de démarrer sur le CDROM. Vous devriez\n"
-"revenir au disquette de démarrage dans deux cas précis :\n"
+"Le CDROM d'installation de Mandrake Linux a un mode de recuperation\n"
+"predefini. Vous pouvez y acceder en demarrant l'ordinateur sur le CDROM.\n"
+"Selon la version de votre Ť BIOS ť, il faut lui specifier de demarrer sur\n"
+"le CDROM. Vous devriez revenir au disquette de demarrage dans deux cas\n"
+"precis :\n"
"\n"
-" * Au moment d'installer le Ť Programme d'amorce ť, DrakX va réécrire sur le\n"
-"secteur (MBR) contenant le programme d'amorce (boot loader) afin de vous\n"
-"permettre de démarrer avec Linux ou Windows (en prenant pour acquis que\n"
-"vous avez deux systčmes d'exploitation installés. Si vous réinstallez\n"
-"Windows, celui-ci va réécrire sur le MBR et il vous sera désormais\n"
-"impossible de démarrer Linux.\n"
+" * Au moment d'installer le Ť Programme d'amorce ť, DrakX va reecrire sur\n"
+"le secteur (MBR) contenant le programme d'amorce (boot loader) afin de vous\n"
+"permettre de demarrer avec Linux ou Windows (en prenant pour acquis que\n"
+"vous avez deux systčmes d'exploitation installes. Si vous reinstallez\n"
+"Windows, celui-ci va reecrire sur le MBR et il vous sera desormais\n"
+"impossible de demarrer Linux.\n"
"\n"
-" * Si un problčme survient et qu'il vous est impossible de démarrer ŕ partir\n"
-"du disque dur, cette disquette deviendra votre seul moyen de démarrer votre\n"
-"systčme Linux. Elle contient un bon nombre d'outils pour récupérer un\n"
-"systčme défectueux, peu importe la source du problčme.\n"
+" * Si un problčme survient et qu'il vous est impossible de demarrer\n"
+"GNU/Linux ŕ partir du disque dur, cette disquette deviendra votre seul\n"
+"moyen de demarrer votre systčme Linux. Elle contient un bon nombre d'outils\n"
+"pour recuperer un systčme defectueux, peu importe la source du problčme.\n"
"\n"
-"En cliquant sur cette étape, on vous demandera d'insérer une disquette. La\n"
-"disquette insérée sera complčtement effacée et DrakX se chargera de la\n"
-"formater et d'y insérer les fichiers nécessaires."
+"En cliquant sur cette etape, on vous demandera d'inserer une disquette. La\n"
+"disquette inseree sera complčtement effacee et DrakX se chargera de la\n"
+"formater et d'y inserer les fichiers necessaires."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
@@ -2994,21 +3132,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -3024,73 +3161,76 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-"Cette étape vous permet de déterminer précisément l'emplacement de votre\n"
-"installation de Mandrake Linux. Si votre disque est vide ou utilisé par un autre systčme\n"
-"d'exploitation, vous devrez repartitionner votre disque. Partitionner un\n"
-"disque signifie de le diviser précisément afin de créer un espace pour\n"
-"votre installation.\n"
-"\n"
-"Comme les effets du partition sont irréversibles (l'ensemble du disque est\n"
-"effacé), le partitionnement est généralement intimidant et stressant pour\n"
-"un utilisateur inexpérimenté. Heureusement, une interface a été prévue ŕ\n"
-"cet effet. Avant de commencer, révisez vos manuels et surtout, prenez votre\n"
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
+msgstr ""
+"Cette etape vous permet de determiner precisement l'emplacement de votre\n"
+"installation de Mandrake Linux. Si votre disque est vide ou utilise par un\n"
+"autre systčme d'exploitation, vous devrez repartitionner votre disque.\n"
+"Partitionner un disque signifie de le diviser precisement afin de creer un\n"
+"espace pour votre installation.\n"
+"\n"
+"Comme les effets du partition sont irreversibles (l'ensemble du disque est\n"
+"efface), le partitionnement est generalement intimidant et stressant pour\n"
+"un utilisateur inexperimente. Heureusement, une interface a ete prevue ŕ\n"
+"cet effet. Avant de commencer, revisez vos manuels et surtout, prenez votre\n"
"temps.\n"
"\n"
"Si vous ętes en mode expert, l'application DiskDrake, l'outil de\n"
-"partitionnement de Mandrake Linux, vous permettra de déterminer précisément l'emplacement\n"
-"de chacune de vos partitions. Ŕ partir de l'interface d'installation, vous\n"
-"pouvez lancer les assistants en cliquant sur Ť Assistant ť.\n"
+"partitionnement de Mandrake Linux, vous permettra de determiner precisement\n"
+"l'emplacement de chacune de vos partitions. Ŕ partir de l'interface\n"
+"d'installation, vous pouvez lancer les assistants en cliquant sur\n"
+"Ť Assistant ť.\n"
"\n"
-"Si des partitions ont déjŕ été définies, peu importe qu'elles proviennent\n"
+"Si des partitions ont dejŕ ete definies, peu importe qu'elles proviennent\n"
"d'une autre installation ou d'un autre outil de partitionnement, il vous\n"
"suffit de simplement choisir sur quelle partition vous voulez installer\n"
"Mandrake.\n"
"\n"
-"Si vos partitions ne sont pas définies, vous devrez les créer en utilisant\n"
+"Si vos partitions ne sont pas definies, vous devrez les creer en utilisant\n"
"l'assistant. Selon la configuration de votre disque, plusieurs options sont\n"
"disponibles :\n"
"\n"
-" * Ť Utilisez l'espace disponible ť: cette option tentera simplement de\n"
-"partitionner automatiquement l'espace inutilisé sur votre disque. Il n'y\n"
+" * Ť Utilisez l'espace disponible ť : cette option tentera simplement de\n"
+"partitionner automatiquement l'espace inutilise sur votre disque. Il n'y\n"
"aura pas d'autre question.\n"
"\n"
-" * Ť Utiliser les partitions existantes ť: l' assistant a détecté une ou\n"
+" * Ť Utiliser les partitions existantes ť : l' assistant a detecte une ou\n"
"plusieurs partitions existants sur votre disque. Si vous voulez les\n"
"utiliser, choisissez cette option.\n"
"\n"
-" * Ť Utilisez l'espace libre sur une partition Windows ť: si Microsoft Windows est installé\n"
-"sur votre disque et prend l'ensemble de l'espace vous devez créer une place\n"
-"pour votre installation Mandrake. Pour ce faire, vous pouvez tout effacer\n"
-"(voir Ť effacer tout le disque ť ou Ť Mode expert ť) ou vous pouvez\n"
-"redimensionner l'espace utilisé par GNU/Linux. Le redimensionnement peut ętre\n"
-"effectué sans pertes de données, ŕ condition que vous ayez préalablement\n"
-"défragmenté la partition Windows. Une sauvegarde de Vos données ne fera pas de mal\n"
-"non plus. Cette seconde option peut ętre accomplie sans perte de données.\n"
-"Cette solution est recommandée pour faire cohabiter Linux et Windows sur le\n"
-"męme ordinateur.\n"
-"\n"
-" Avant de choisir cette option, il faut comprendre qu'aprčs cette procédure\n"
-"l'espace disponible pour Windows sera réduit. Vous aurez moins d'espace\n"
-"pour installer des logiciels ou sauvegarder de l'information avec Windows.\n"
-"\n"
-" * Ť Effacer tout le disque ť: si vous voulez effacer toutes les données et\n"
-"les applications installées sur votre systčme et les remplacer par votre\n"
-"nouveau systčme Mandrake Linux, choisissez cette option. Soyez prudent, car ce choix est\n"
-"irréversible et permanent. Il vous sera impossible de retrouver vos données\n"
-"effacées.\n"
-"\n"
-" !! En choisissant cette option, l'ensemble du contenu de votre disque sera\n"
-"détruit. !!\n"
-"\n"
-" * Ť Supprimer Microsoft Windows ť: ce choix effacera tout simplement ce que\n"
-"contient le disque et recommencera ŕ zéro. Toutes les données et les\n"
-"programmes présents sur le disque seront effacés.\n"
-"\n"
-" !! En choisissant cette option, l'ensemble de votre disque sera effacé. !!\n"
+" * Ť Utilisez l'espace libre sur une partition Windows ť : si Microsoft\n"
+"Windows est installe sur votre disque et prend l'ensemble de l'espace vous\n"
+"devez creer une place pour votre installation Mandrake. Pour ce faire, vous\n"
+"pouvez tout effacer (voir Ť effacer tout le disque ť ou Ť Mode expert ť) ou\n"
+"vous pouvez redimensionner l'espace utilise par Windows. Le\n"
+"redimensionnement peut ętre effectue sans pertes de donnees, ŕ condition\n"
+"que vous ayez prealablement defragmente la partition Windows. Une\n"
+"sauvegarde de Vos donnees ne fera pas de mal non plus. Cette seconde option\n"
+"peut ętre accomplie sans perte de donnees. Cette solution est recommandee\n"
+"pour faire cohabiter Linux et Windows sur le męme ordinateur.\n"
+"\n"
+" Avant de choisir cette option, il faut comprendre qu'aprčs cette\n"
+"procedure l'espace disponible pour Windows sera reduit. Vous aurez moins\n"
+"d'espace pour installer des logiciels ou sauvegarder de l'information avec\n"
+"Windows.\n"
+"\n"
+" * Ť Effacer tout le disque ť: si vous voulez effacer toutes les donnees et\n"
+"les applications installees sur votre systčme et les remplacer par votre\n"
+"nouveau systčme Mandrake Linux, choisissez cette option. Soyez prudent, car\n"
+"ce choix est irreversible et permanent. Il vous sera impossible de\n"
+"retrouver vos donnees effacees.\n"
+"\n"
+" !! En choisissant cette option, l'ensemble du contenu de votre disque\n"
+"sera detruit. !!\n"
+"\n"
+" * Ť Supprimer Microsoft Windows ť: ce choix effacera tout simplement ce\n"
+"que contient le disque et recommencera ŕ zero. Toutes les donnees et les\n"
+"programmes presents sur le disque seront effaces.\n"
+"\n"
+" !! En choisissant cette option, l'ensemble de votre disque sera efface.\n"
+"!!\n"
"\n"
" * Ť Mode expert ť: permet de partitionner manuellement votre disque. Soyez\n"
"prudent, parce que bien que plus puissante, cette option est dangereuse.\n"
@@ -3118,9 +3258,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3133,35 +3272,36 @@ msgid ""
"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
"\"mformat a:\")"
msgstr ""
-"Votre installation de Mandrake Linux est maintenant terminée et votre systčme est pręt ŕ\n"
-"ętre utilisé. Cliquez sur Ť OK ť pour redémarrer votre systčme. Vous aurez\n"
-"alors le choix de démarrer ou Windows (s'il est présent).\n"
+"Votre installation de Mandrake Linux est maintenant terminee et votre\n"
+"systčme est pręt ŕ ętre utilise. Cliquez sur Ť OK ť pour redemarrer votre\n"
+"systčme. Vous aurez alors le choix de demarrer GNU/Linux ou Windows (s'il\n"
+"est present).\n"
"\n"
-"Le bouton Ť Avancée ť (en mode Expert uniquement) permet deux autres\n"
-"options:\n"
+"Le bouton Ť Avancee ť (en mode Expert uniquement) permet deux autres\n"
+"options :\n"
"\n"
-" * Ť Générer une disquette d'auto-install ť: Pour créer une disquette\n"
+" * Ť Generer une disquette d'auto-install ť: Pour creer une disquette\n"
"d'installation qui permettra de reproduire l'installation que vous venez de\n"
-"réaliser sans l'aide d'un administrateur.\n"
+"realiser sans l'aide d'un administrateur.\n"
"\n"
-" Notez que les deux options suivantes apparaissent aprčs avoir cliqué sur le\n"
-"bouton:\n"
+" Notez que les deux options suivantes apparaissent aprčs avoir clique sur\n"
+"le bouton :\n"
"\n"
-" * Ť Replay ť. C'est une installation partiellement automatique oů il est\n"
-"possible de personnaliser le partitionnement du disque (exclusivement).\n"
+" * Ť Replay ť. C'est une installation partiellement automatique oů il\n"
+"est possible de personnaliser le partitionnement du disque (exclusivement).\n"
"\n"
-" * Ť Automatique ť. Complčtement automatique, cette installation reformate\n"
-"le disque au complet.\n"
+" * Ť Automatique ť. Complčtement automatique, cette installation\n"
+"reformate le disque au complet.\n"
"\n"
-" Cette fonctionnalité est particuličrement pratique pour l'installation de\n"
-"multiples systčmes. Voir la sectionAuto install de notre site Web.\n"
+" Cette fonctionnalite est particuličrement pratique pour l'installation\n"
+"de multiples systčmes. Voir la sectionAuto install de notre site Web.\n"
"\n"
-" * Ť Sauvegarder les paquetages sélectionnés ť(*) sauve la sélection des\n"
-"paquetages installés. Puis, lorsque vous ferez une autre installation,\n"
-"insérer la disquette dans le lecteur et accéder au menu d'aide en tapant\n"
-"[f1], et entrez la commande suivante: Ť linux defcfg=\"floppy\" ť.\n"
+" * Ť Sauvegarder les paquetages selectionnes ť (*) sauve la selection des\n"
+"paquetages installes. Puis, lorsque vous ferez une autre installation,\n"
+"inserer la disquette dans le lecteur et acceder au menu d'aide en tapant\n"
+"[f1], et entrez la commande suivante : Ť linux defcfg=\"floppy\" ť.\n"
"\n"
-"(*) Vous avez besoin d'une disquette formatée avec FAT (pour la créer sous\n"
+"(*) Vous avez besoin d'une disquette formatee avec FAT (pour la creer sous\n"
"Linux, tapez Ť mformat a: ť)"
# DO NOT BOTHER TO MODIFY HERE, SEE:
@@ -3193,30 +3333,30 @@ msgid ""
"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
"for bad blocks on the disk."
msgstr ""
-"Chaque partition nouvellement définie doit ętre formatée, c'est ŕ dire\n"
-"qu'un systčme de fichier (filesystem) doit y ętre créé.\n"
+"Chaque partition nouvellement definie doit ętre formatee, c'est ŕ dire\n"
+"qu'un systčme de fichier (filesystem) doit y ętre cree.\n"
"\n"
-"Durant cette étape, vous pouvez également choisir de reformater d'autres\n"
-"partitions existantes afin d'effacer les données qu'elles contiennent. Si\n"
-"c'est ce que vous désirez, il faut également choisir ces partitions.\n"
+"Durant cette etape, vous pouvez egalement choisir de reformater d'autres\n"
+"partitions existantes afin d'effacer les donnees qu'elles contiennent. Si\n"
+"c'est ce que vous desirez, il faut egalement choisir ces partitions.\n"
"\n"
-"Sachez qu'il n'est pas nécessaire de reformater toutes les partitions\n"
+"Sachez qu'il n'est pas necessaire de reformater toutes les partitions\n"
"existantes. Vous devez reformater les partitions contenant le systčme\n"
"d'exploitation, (tel que : Ť / ť, Ť /usr ť ou Ť /var ť) mais vous n'avez\n"
-"pas ŕ reformater les partitions de données que vous voulez garder,\n"
+"pas ŕ reformater les partitions de donnees que vous voulez garder,\n"
"habituellement Ť /home ť.\n"
"\n"
-"Restez prudent au moment de sélectionner les partitions. Une fois formatée,\n"
-"toutes les données contenues sur les partitions sélectionnées seront\n"
-"détruites et il sera impossible de les récupérer.\n"
+"Restez prudent au moment de selectionner les partitions. Une fois formatee,\n"
+"toutes les donnees contenues sur les partitions selectionnees seront\n"
+"detruites et il sera impossible de les recuperer.\n"
"\n"
"Cliquez sur Ť OK ť lorsque vous ętre pręt ŕ formater vos partitions.\n"
"\n"
"Cliquez sur Ť Annuler ť si vous voulez choisir d'autres partitions pour\n"
"votre installation.\n"
"\n"
-"Cliquez sur Ť Avancé ť, si vous désirez choisir les partitions qui seront\n"
-"vérifiées pour des secteurs corrompus."
+"Cliquez sur Ť Avance ť, si vous desirez choisir les partitions qui seront\n"
+"verifiees pour des secteurs corrompus."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
@@ -3229,9 +3369,10 @@ msgid ""
"\n"
"Please be patient."
msgstr ""
-"Votre nouveau systčme Mandrake Linux est maintenant en cours d'installation. Selon le\n"
-"nombre de paquetages ŕ installer et la puissance de votre ordinateur, cette\n"
-"opération peut prendre de quelques minutes ŕ quelques heures."
+"Votre nouveau systčme Mandrake Linux est maintenant en cours\n"
+"d'installation. Selon le nombre de paquetages ŕ installer et la puissance\n"
+"de votre ordinateur, cette operation peut prendre de quelques minutes ŕ\n"
+"quelques heures."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
@@ -3249,18 +3390,19 @@ msgid ""
"appears: review the selection, and press \"Install\" to retrieve and\n"
"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-"Au moment oů vous ętes en train d'installer Mandrake Linux, il est possible que certains\n"
-"paquetages aient été mis ŕ jour depuis la sortie du produit. Des bogues ont\n"
-"pu ętre corrigés, et des problčmes de sécurité résolus. Pour vous permettre\n"
-"de bénéficier de ces mises ŕ jour, il vous est maintenant proposé de les\n"
-"télé-charger sur Internet. Choisissez Ť Oui ť si vous avez une connexion\n"
-"Internet, ou Ť Non ť si vous préférez installer les mises ŕ jour plus tard.\n"
+"Au moment oů vous ętes en train d'installer Mandrake Linux, il est possible\n"
+"que certains paquetages aient ete mis ŕ jour depuis la sortie du produit.\n"
+"Des bogues ont pu ętre corriges, et des problčmes de securite resolus. Pour\n"
+"vous permettre de beneficier de ces mises ŕ jour, il vous est maintenant\n"
+"propose de les tele-charger sur Internet. Choisissez Ť Oui ť si vous avez\n"
+"une connexion Internet, ou Ť Non ť si vous preferez installer les mises ŕ\n"
+"jour plus tard.\n"
"\n"
"En choisissant Ť Oui ť, la liste des sites depuis lesquels les mises ŕ\n"
-"jours peuvent ętre télé-chargées est affichée. Choisissez le site le plus\n"
-"proche. Puis un arbre de choix des paquetages apparaît: vérifiez la\n"
-"sélection, puis cliquez sur Ť Installer ť pour télé-charger et installer\n"
-"les mises ŕ jour sélectionnées, ou Ť Annuler ť pour abandonner."
+"jours peuvent ętre tele-chargees est affichee. Choisissez le site le plus\n"
+"proche. Puis un arbre de choix des paquetages apparaît : verifiez la\n"
+"selection, puis cliquez sur Ť Installer ť pour tele-charger et installer\n"
+"les mises ŕ jour selectionnees, ou Ť Annuler ť pour abandonner."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
@@ -3272,11 +3414,11 @@ msgid ""
"terminate the installation. To continue with the installation, click on the\n"
"\"Accept\" button."
msgstr ""
-"Avant d'aller plus loin, il est fortement recommandé de lire attentivement\n"
-"les termes et conditions d'utilisations de la licence. Celle-ci régit\n"
+"Avant d'aller plus loin, il est fortement recommande de lire attentivement\n"
+"les termes et conditions d'utilisations de la licence. Celle-ci regit\n"
"l'ensemble de la distribution Mandrake Linux. Si, pour une raison ou une\n"
"autre, vous n'acceptez pas ces conditions, cliquez sur Ť Refuser ť.\n"
-"L'installation sera alors immédiatement interrompue. Pour continuer,\n"
+"L'installation sera alors immediatement interrompue. Pour continuer,\n"
"cliquez sur Ť Accepter ť."
# DO NOT BOTHER TO MODIFY HERE, SEE:
@@ -3292,17 +3434,17 @@ msgid ""
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
-"Ŕ cette étape, vous devrez déterminer le niveau de sécurité requis par\n"
-"votre systčme. Le niveau de sécurité requis se détermine en fonction de\n"
-"l'exposition du systčme ŕ d'autres utilisateurs (s'il est connecté\n"
-"directement sur Internet par exemple) et selon le niveau de sensibilité de\n"
-"l'information contenu dans le systčme (des numéros de carte de crédit par\n"
-"exemple). Sachez que, de maničre générale, plus la sécurité d'un systčme\n"
-"est élevée, plus il est complexe ŕ opérer. Référez-vous au chapitre\n"
-"Ť msec ť du Ť Manuel de référence ť pour obtenir plus d'informations sur\n"
-"les niveaux de sécurité.\n"
+"Ŕ cette etape, vous devrez determiner le niveau de securite requis par\n"
+"votre systčme. Le niveau de securite requis se determine en fonction de\n"
+"l'exposition du systčme ŕ d'autres utilisateurs (s'il est connecte\n"
+"directement sur Internet par exemple) et selon le niveau de sensibilite de\n"
+"l'information contenu dans le systčme (des numeros de carte de credit par\n"
+"exemple). Sachez que, de maničre generale, plus la securite d'un systčme\n"
+"est elevee, plus il est complexe ŕ operer. Referez-vous au chapitre\n"
+"Ť msec ť du Ť Manuel de reference ť pour obtenir plus d'informations sur\n"
+"les niveaux de securite.\n"
"\n"
-"Si vous ne savez pas quel niveau choisir, gardez la sélection par défaut."
+"Si vous ne savez pas quel niveau choisir, gardez la selection par defaut."
#: ../../help.pm_.c:442
msgid ""
@@ -3326,38 +3468,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3528,11 +3664,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3555,48 +3691,49 @@ msgid ""
"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
"choose this unless you know what you are doing."
msgstr ""
-"DrakX doit maintenant savoir quel type d'installation vous désirez\n"
-"réaliser. Deux types d'installations sont proposés: Par défaut (Ť \n"
-"Recommandée ť), qui limite le nombre de questions ŕ l'utilisateur au\n"
-"minimum ou Ť Expert ť qui vous permet de sélectionner individuellement\n"
+"DrakX doit maintenant savoir quel type d'installation vous desirez\n"
+"realiser. Deux types d'installations sont proposes : Par defaut (Ť \n"
+"Recommandee ť), qui limite le nombre de questions ŕ l'utilisateur au\n"
+"minimum ou Ť Expert ť qui vous permet de selectionner individuellement\n"
"chacune des composantes ŕ installer. Également, on vous propose de faire\n"
-"une Ť Installation ť ou une Ť Mise ŕ jour ť d'un systčme existant:\n"
+"une Ť Installation ť ou une Ť Mise ŕ jour ť d'un systčme Mandrake Linux\n"
+"existant :\n"
"\n"
-" * Ť Installation ť: balaye l'ancien systčme. En fait, selon ce que votre\n"
+" * Ť Installation ť : balaye l'ancien systčme. En fait, selon ce que votre\n"
"machine comporte, vous pourrez garder intacte certaines des anciennes\n"
-"partition (Linux ou autres);\n"
+"partition (Linux ou autres) ;\n"
"\n"
-" * Ť Mise ŕ jour ť: cette classe d'installation permet de simplement mettre\n"
-"ŕ jours les paquetages qui composent votre systčme GNU/Linux. Elle conserve les\n"
-"partitions existantes, ainsi que la configuration des utilisateurs. Toutes\n"
-"les autres étapes de l'installation sont accessibles en comparaison avec\n"
-"une installation classique;\n"
+" * Ť Mise ŕ jour ť : cette classe d'installation permet de simplement\n"
+"mettre ŕ jours les paquetages qui composent votre systčme Mandrake Linux.\n"
+"Elle conserve les partitions existantes, ainsi que la configuration des\n"
+"utilisateurs. Toutes les autres etapes de l'installation sont accessibles\n"
+"en comparaison avec une installation classique ;\n"
"\n"
-" * Ť Mise ŕ jour des paquetages uniquement ť: Cette nouvelle classe\n"
-"d'installation permet de mettre ŕ jour un systčme Mandrake Linux existant, tout en gardant\n"
-"sa configuration inchangée. L'ajout de nouveaux paquetages durant la mise ŕ\n"
-"jour est cependant possible.\n"
+" * Ť Mise ŕ jour des paquetages uniquement ť : Cette nouvelle classe\n"
+"d'installation permet de mettre ŕ jour un systčme Mandrake Linux existant,\n"
+"tout en gardant sa configuration inchangee. L'ajout de nouveaux paquetages\n"
+"durant la mise ŕ jour est cependant possible.\n"
"\n"
-"La mise ŕ jour devrait fonctionner correctement pour les systčmes Mandrake Linux ŕ partir\n"
-"de la version Ť 8.1 ť.\n"
+"La mise ŕ jour devrait fonctionner correctement pour les systčme Mandrake\n"
+"Linux ŕ partir de la version Ť 8.1 ť.\n"
"\n"
-"Selon votre niveau d'expertise avec les systčmes d'exploitations GNU/Linux, il faut\n"
-"choisir l'un des deux types d'installations suivants:\n"
+"Selon votre niveau d'expertise avec les systčmes d'exploitations GNU/Linux,\n"
+"il faut choisir l'un des deux types d'installations suivants:\n"
"\n"
-" * Ť Recommandée ť: choisissez cette option si vous n'avez jamais installé\n"
-"de systčme d'exploitation GNU/Linux. C'est la méthode la plus facile, la plupart des\n"
-"choix ont déjŕ été fait pour vous.\n"
+" * Ť Recommandee ť: choisissez cette option si vous n'avez jamais installe\n"
+"de systčme d'exploitation GNU/Linux. C'est la methode la plus facile, la\n"
+"plupart des choix ont dejŕ ete fait pour vous.\n"
"\n"
-" * Expert: si vous avez une bonne connaissance de GNU/Linux, vous pouvez choisir ce\n"
-"type d'installation. Cette méthode vous permettra de personnaliser\n"
-"l'ensemble des composantes de votre systčme. Ces questions peuvent s'avérer\n"
-"complexes, particuličrement en matičre de partitionnement et du choix des\n"
-"paquetages installés. En conséquence, il n'est pas recommandé de s'y\n"
-"aventurer sans de bonnes connaissances au préalable."
+" * Expert: si vous avez une bonne connaissance de GNU/Linux, vous pouvez\n"
+"choisir ce type d'installation. Cette methode vous permettra de\n"
+"personnaliser l'ensemble des composantes de votre systčme. Ces questions\n"
+"peuvent s'averer complexes, particuličrement en matičre de partitionnement\n"
+"et du choix des paquetages installes. En consequence, il n'est pas\n"
+"recommande de s'y aventurer sans de bonnes connaissances au prealable."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3610,22 +3747,22 @@ msgid ""
"Click on the \"More\" button to be presented with the complete list of\n"
"supported keyboards."
msgstr ""
-"Normalement, DrakX sélectionne le clavier approprié en fonction de la\n"
-"langue choisie et vous ne devriez pas voir cette étape. Cela dit, il est\n"
+"Normalement, DrakX selectionne le clavier approprie en fonction de la\n"
+"langue choisie et vous ne devriez pas voir cette etape. Cela dit, il est\n"
"possible que vous ayez un clavier ne correspondant pas exactement ŕ votre\n"
-"langue d'utilisation. Par exemple, si vous habitez le Québec et parlez le\n"
+"langue d'utilisation. Par exemple, si vous habitez le Quebec et parlez le\n"
"français et l'anglais, vous pouvez vouloir avoir votre clavier anglais pour\n"
-"les tâches d'administration systčme et votre clavier français pour écrire\n"
-"de la poésie. Dans ces cas, il vous faudra revenir ŕ cette étape\n"
-"d'installation et sélectionner un autre clavier ŕ partir de la liste.\n"
+"les tâches d'administration systčme et votre clavier français pour ecrire\n"
+"de la poesie. Dans ces cas, il vous faudra revenir ŕ cette etape\n"
+"d'installation et selectionner un autre clavier ŕ partir de la liste.\n"
"\n"
"Vous n'avez qu'a choisir la disposition de clavier qui vous convient.\n"
"\n"
-"Cliquez sur Ť Davantage ť pour voir toutes les options proposées."
+"Cliquez sur Ť Davantage ť pour voir toutes les options proposees."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3639,25 +3776,25 @@ msgid ""
"Note that multiple languages may be installed. Once you have selected any\n"
"additional locales, click the \"OK\" button to continue."
msgstr ""
-"Veuillez choisir votre langue de communication. Celle-ci sera utilisée\n"
+"Veuillez choisir votre langue de communication. Celle-ci sera utilisee\n"
"durant le processus d'installation, ainsi que durant les mises ŕ jour de\n"
"votre systčme.\n"
"\n"
-"En cliquant sur Ť Avancé ť, le programme vous proposera également d'autres\n"
-"langues pouvant ętre installées sur votre station de travail. En\n"
+"En cliquant sur Ť Avance ť, le programme vous proposera egalement d'autres\n"
+"langues pouvant ętre installees sur votre station de travail. En\n"
"choisissant d'autres langues, le programme vous installera toute la\n"
-"documentation et les applications nécessaires ŕ l'utilisation de cette\n"
-"autre langue. Par exemple, si vous prévoyez d'accueillir des utilisateurs\n"
+"documentation et les applications necessaires ŕ l'utilisation de cette\n"
+"autre langue. Par exemple, si vous prevoyez d'accueillir des utilisateurs\n"
"d'Espagne sur votre serveur, choisissez l'anglais comme langue principale,\n"
-"et, dans la section avancée, cliquez sur l'étoile grise correspondant ŕ\n"
+"et, dans la section avancee, cliquez sur l'etoile grise correspondant ŕ\n"
"Spanish|Spain.\n"
"\n"
-"Sachez que plusieurs langues peuvent ętre installées. Une fois votre\n"
-"sélection complčte terminée, cliquez sur Ť OK ť pour continuer."
+"Sachez que plusieurs langues peuvent ętre installees. Une fois votre\n"
+"selection complčte terminee, cliquez sur Ť OK ť pour continuer."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3672,21 +3809,21 @@ msgid ""
"correct. If the mouse is not working well, press the space bar or [Return]\n"
"to \"Cancel\" and choose again."
msgstr ""
-"DrakX détecte généralement le nombre de boutons de votre souris. Sinon, il\n"
+"DrakX detecte generalement le nombre de boutons de votre souris. Sinon, il\n"
"prend pour acquis que vous avez une souris ŕ deux boutons et configurera\n"
-"l'émulation du troisičme bouton. Également, DrakX saura automatiquement si\n"
-"vous avez une souris PS/2, série ou USB.\n"
+"l'emulation du troisičme bouton. Également, DrakX saura automatiquement si\n"
+"vous avez une souris PS/2, serie ou USB.\n"
"\n"
-"Si vous désirez installer une souris différente, veuillez la sélectionner ŕ\n"
-"partir de la liste qui vous est proposée.\n"
+"Si vous desirez installer une souris differente, veuillez la selectionner ŕ\n"
+"partir de la liste qui vous est proposee.\n"
"\n"
-"Si vous sélectionnez une souris différente de celle choisie par défaut,\n"
-"DrakX vous présentera un écran de test. Utilisez les boutons et la roue\n"
+"Si vous selectionnez une souris differente de celle choisie par defaut,\n"
+"DrakX vous presentera un ecran de test. Utilisez les boutons et la roue\n"
"pour vous assurer que tout fonctionne correctement. Si votre souris ne\n"
-"fonctionne pas normalement, appuyer sur la barre d'espacement ou [Entrée]\n"
-"ou encore Ť Annuler ť, puis, sélectionner une autre souris."
+"fonctionne pas normalement, appuyer sur la barre d'espacement ou [Entree]\n"
+"ou encore Ť Annuler ť, puis, selectionner une autre souris."
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3696,23 +3833,23 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3733,40 +3870,40 @@ msgid ""
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
msgstr ""
-"Vous avez ŕ prendre ici une décision cruciale pour la sécurité de votre\n"
+"Vous avez ŕ prendre ici une decision cruciale pour la securite de votre\n"
"systčme. L'utilisateur Ť root ť est l'administrateur du systčme qui a tous\n"
"les droits d'accčs aux fichiers de configuration, etc. Il est donc\n"
-"impératif de choisir un mot de passe difficile ŕ deviner (pensez aux\n"
-"systčmes prévus ŕ cet effet qui anticipent les combinaisons communes des\n"
-"utilisateurs). DrakX vous avertira si le mot de passe entré est trop facile\n"
-"ŕ deviner. Comme vous pouvez le voir, il est également possible de ne pas\n"
-"entrer de mot de passe. Nous déconseillons fortement cette pratique. Comme\n"
+"imperatif de choisir un mot de passe difficile ŕ deviner (pensez aux\n"
+"systčmes prevus ŕ cet effet qui anticipent les combinaisons communes des\n"
+"utilisateurs). DrakX vous avertira si le mot de passe entre est trop facile\n"
+"ŕ deviner. Comme vous pouvez le voir, il est egalement possible de ne pas\n"
+"entrer de mot de passe. Nous deconseillons fortement cette pratique. Comme\n"
"l'erreur est humaine, un utilisateur avec tous les droits peut tout\n"
-"détruire sur votre systčme, c'est pourquoi le mot de passe doit agir comme\n"
-"barričre ŕ l'entrée.\n"
+"detruire sur votre systčme, c'est pourquoi le mot de passe doit agir comme\n"
+"barričre ŕ l'entree.\n"
"\n"
"Le mot de passe choisi devrait contenir au moins 8 caractčres\n"
-"alphanumériques. Ne jamais écrire un mot de passe, forcez-vous ŕ vous en\n"
-"souvenir par coeur. Il faut donc ménager accessibilité et mémoire, donc un\n"
-"mot de passe de 30 caractčres est presque impossible ŕ mémoriser.\n"
+"alphanumeriques. Ne jamais ecrire un mot de passe, forcez-vous ŕ vous en\n"
+"souvenir par coeur. Il faut donc menager accessibilite et memoire, donc un\n"
+"mot de passe de 30 caractčres est presque impossible ŕ memoriser.\n"
"\n"
-"Afin d'éviter les regards indiscrets, le mot de passe n'apparaîtra pas ŕ\n"
-"l'écran. Il vous faudra donc l'inscrire deux fois afin d'éviter les erreurs\n"
+"Afin d'eviter les regards indiscrets, le mot de passe n'apparaîtra pas ŕ\n"
+"l'ecran. Il vous faudra donc l'inscrire deux fois afin d'eviter les erreurs\n"
"de frappe. Évidemment, si vous faites deux fois la męme erreur, celle-ci\n"
-"sera sauvegardée et vous devrez la reproduire afin d'accéder ŕ votre\n"
+"sera sauvegardee et vous devrez la reproduire afin d'acceder ŕ votre\n"
"systčme pour la premičre fois.\n"
"\n"
"En mode expert, on vous demandera si vous comptez vous connecter sur un\n"
-"serveur d'authentification, tel que NIS ou LDAP. Si votre réseau utilise un\n"
-"de ces protocoles, il faut le sélectionner. Si vous n'en avez aucune idée,\n"
-"demandez ŕ votre administrateur de réseau.\n"
+"serveur d'authentification, tel que NIS ou LDAP. Si votre reseau utilise un\n"
+"de ces protocoles, il faut le selectionner. Si vous n'en avez aucune idee,\n"
+"demandez ŕ votre administrateur de reseau.\n"
"\n"
-"Si votre ordinateur n'est pas connecté sur un réseau administré, vous devez\n"
+"Si votre ordinateur n'est pas connecte sur un reseau administre, vous devez\n"
"choisir Ť Fichiers Locaux ť pour l'authentification."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3788,7 +3925,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3796,7 +3933,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3816,52 +3953,53 @@ msgid ""
"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
"installation step."
msgstr ""
-"LILO et grub sont deux programmes d'amorce pour GNU/Linux. Cette étape est normalement\n"
-"complčtement automatique. En fait, DrakX analyse le secteur de démarrage\n"
-"(master boot record) et agit en fonction de ce qu'il peut y lire:\n"
+"LILO et grub sont deux programmes d'amorce pour GNU/Linux. Cette etape est\n"
+"normalement complčtement automatique. En fait, DrakX analyse le secteur de\n"
+"demarrage (master boot record) et agit en fonction de ce qu'il peut y lire\n"
+":\n"
"\n"
-" * Si un secteur de démarrage Windows est détecté, il va ętre remplacer par\n"
-"LILO/GRUB. Donc, vous serez capable de démarrer et tout autre systčme\n"
-"d'exploitation.\n"
+" * Si un secteur de demarrage Windows est detecte, il va ętre remplacer par\n"
+"LILO/GRUB. Donc, vous serez capable de demarrer GNU/Linux et tout autre\n"
+"systčme d'exploitation.\n"
"\n"
-" * si GRUB ou LILO est détecté, il sera remplacé par la nouvelle version;\n"
+" * si GRUB ou LILO est detecte, il sera remplace par la nouvelle version;\n"
"\n"
-"En cas de doute, DrakX affiche différentes options.\n"
+"En cas de doute, DrakX affiche differentes options.\n"
"\n"
-" * Ť Programme d'amorçage ŕ utiliser ť vous propose trois choix:\n"
+" * Ť Programme d'amorçage ŕ utiliser ť vous propose trois choix :\n"
"\n"
-" * Ť GRUB ť: si vous préférer GRUB (menu texte).\n"
+" * Ť GRUB ť : si vous preferer GRUB (menu texte).\n"
"\n"
-" * Ť LILO en mode graphique ť: si vous préférez l'interface graphique.\n"
+" * Ť LILO en mode graphique ť : si vous preferez l'interface graphique.\n"
"\n"
-" * Ť LILO en mode texte ť: si vous préférez la version texte de LILO.\n"
+" * Ť LILO en mode texte ť : si vous preferez la version texte de LILO.\n"
"\n"
-" * Ť Périphériques de démarrage ť: dans la plupart des cas, vous n'aurez pas\n"
-"ŕ changer le disque par défaut (Ť /dev/hda ť, mais si vous le désirez, le\n"
-"programme d'amorce peut ętre installé sur un second disque, Ť /dev/hdb ť,\n"
-"ou męme sur une disquette, Ť /dev/fd0 ť.\n"
+" * Ť Peripheriques de demarrage ť: dans la plupart des cas, vous n'aurez\n"
+"pas ŕ changer le disque par defaut (Ť /dev/hda ť, mais si vous le desirez,\n"
+"le programme d'amorce peut ętre installe sur un second disque,\n"
+"Ť /dev/hdb ť, ou męme sur une disquette, Ť /dev/fd0 ť.\n"
"\n"
-" * Ť Délais avant l'activation du choix par défaut ť: au redémarrage de\n"
-"l'ordinateur, il s'agit du temps accordé ŕ l'utilisateur pour démarrer un\n"
+" * Ť Delais avant l'activation du choix par defaut ť: au redemarrage de\n"
+"l'ordinateur, il s'agit du temps accorde ŕ l'utilisateur pour demarrer un\n"
"autre systčme d'exploitation.\n"
"\n"
-"!! Prenez garde, si vous décidez de ne pas installer de programme d'amorce\n"
-"(en cliquant sur Ť Annuler ť), vous devez vous assurez d'avoir une méthode\n"
-"pour démarrer le systčme. Aussi, assurez vous de bien savoir ce que vous\n"
+"!! Prenez garde, si vous decidez de ne pas installer de programme d'amorce\n"
+"(en cliquant sur Ť Annuler ť), vous devez vous assurez d'avoir une methode\n"
+"pour demarrer le systčme. Aussi, assurez vous de bien savoir ce que vous\n"
"faites si vous modifiez les options. !!\n"
"\n"
-"En cliquant sur Ť Avancée ť, vous aurez accčs ŕ plusieurs autres options de\n"
-"configuration. Sachez que celles-ci sont réservées aux experts en la\n"
+"En cliquant sur Ť Avancee ť, vous aurez accčs ŕ plusieurs autres options de\n"
+"configuration. Sachez que celles-ci sont reservees aux experts en la\n"
"matičre.\n"
"\n"
-"Si vous avez d'autres systčmes d'exploitation installés sur votre\n"
-"ordinateur, ils seront automatiquement détectés et ajout ŕ vos menus de\n"
-"démarrage. Ŕ cette étape, vous pouvez décider de préciser ces options. En\n"
-"double-cliquant sur une entrée existante vous pourrez la paramétrer ŕ votre\n"
-"guise, ou l'enlever. Ť Ajouter ť permet de créer de nouvelles entrées, et\n"
-"Ť terminer ť vous conduit ŕ la prochaine étape d'installation."
+"Si vous avez d'autres systčmes d'exploitation installes sur votre\n"
+"ordinateur, ils seront automatiquement detectes et ajout ŕ vos menus de\n"
+"demarrage. Ŕ cette etape, vous pouvez decider de preciser ces options. En\n"
+"double-cliquant sur une entree existante vous pourrez la parametrer ŕ votre\n"
+"guise, ou l'enlever. Ť Ajouter ť permet de creer de nouvelles entrees, et\n"
+"Ť terminer ť vous conduit ŕ la prochaine etape d'installation."
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3884,7 +4022,7 @@ msgstr ""
"détruisant les entrées correspondantes. Mais vous aurez alors besoin\n"
"d'une disquette de démarrage afin de lancer ces autres systčmes!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3899,29 +4037,28 @@ msgstr ""
"Ŕ moins de savoir exactement ce que vous faites, choisissez\n"
"toujours Ť Premier secteur du disque (MBR) ť."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3960,7 +4097,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3985,39 +4122,39 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
-"DrakX détecte maintenant tous les périphériques IDE présents sur votre\n"
-"systčme. Également, DrakX recherchera les périphériques SCSI. Finalement,\n"
-"selon les composantes détectées, DrakX installera tous les pilotes\n"
-"nécessaires ŕ son fonctionnement.\n"
+"DrakX detecte maintenant tous les peripheriques IDE presents sur votre\n"
+"systčme. Également, DrakX recherchera les peripheriques SCSI. Finalement,\n"
+"selon les composantes detectees, DrakX installera tous les pilotes\n"
+"necessaires ŕ son fonctionnement.\n"
"\n"
-"Compte tenu de la vaste gamme de périphériques disponibles sur le marché,\n"
-"dans certain cas la détection de matériel ne fonctionnera pas. Dans ce cas,\n"
-"DrakX vous demandera de confirmer si des composantes SCSI sont présentes\n"
+"Compte tenu de la vaste gamme de peripheriques disponibles sur le marche,\n"
+"dans certain cas la detection de materiel ne fonctionnera pas. Dans ce cas,\n"
+"DrakX vous demandera de confirmer si des composantes SCSI sont presentes\n"
"sur votre systčme. Cliquez sur Ť Oui ť si vous ętes certain d'avoir un\n"
-"périphérique SCSI sur votre systčme. DrakX vous présentera alors une liste\n"
-"de carte SCSI disponibles. Sélectionnez la vôtre. Évidement, cliquez sur\n"
+"peripherique SCSI sur votre systčme. DrakX vous presentera alors une liste\n"
+"de carte SCSI disponibles. Selectionnez la vôtre. Évidement, cliquez sur\n"
"Ť Non ť, si vous n'en avez pas. Si vous n'ętes pas certain, cliquez sur\n"
-"Ť Voir les informations sur le matériel ť, puis sur Ť OK ť. Vérifiez la\n"
-"liste du matériel, puis cliquez sur Ť OK ť pour retourner ŕ la question\n"
-"concernant les périphériques SCSI.\n"
+"Ť Voir les informations sur le materiel ť, puis sur Ť OK ť. Verifiez la\n"
+"liste du materiel, puis cliquez sur Ť OK ť pour retourner ŕ la question\n"
+"concernant les peripheriques SCSI.\n"
"\n"
-"Si vous devez spécifier votre carte SCSI manuellement, DrakX vous demandera\n"
-"de confirmer les options du périphérique. Vous devriez permettre ŕ DrakX de\n"
-"vérifier automatiquement votre carte pour les options nécessaires ŕ\n"
-"déterminer.\n"
+"Si vous devez specifier votre carte SCSI manuellement, DrakX vous demandera\n"
+"de confirmer les options du peripherique. Vous devriez permettre ŕ DrakX de\n"
+"verifier automatiquement votre carte pour les options necessaires ŕ\n"
+"determiner.\n"
"\n"
-"Il peut arriver que DrakX soit incapable de vérifier les options\n"
-"nécessaires. Dans ce cas, vous devrez les déterminer manuellement.\n"
+"Il peut arriver que DrakX soit incapable de verifier les options\n"
+"necessaires. Dans ce cas, vous devrez les determiner manuellement.\n"
"Consultez le guide d'utilisation (Chapitre 3, section \"Obtenir des\n"
-"informations sur votre matériel\") pour quelques astuces pour retrouver les\n"
-"paramčtres nécessaires dans la documentation de vos périphériques, sur le\n"
+"informations sur votre materiel\") pour quelques astuces pour retrouver les\n"
+"paramčtres necessaires dans la documentation de vos peripheriques, sur le\n"
"site du fabricant (si vous avez un accčs ŕ Internet) ou ŕ partir des menus\n"
-"de Microsoft Windows (si vous utilisiez ce périphérique avec Windows)."
+"de Microsoft Windows (si vous utilisiez ce peripherique avec Windows)."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -4027,9 +4164,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -4041,7 +4177,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" 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"
@@ -4109,7 +4245,7 @@ msgstr ""
"entrée qui sera alors précédée d'un Ť * ť, si vous pressez <Tab> pour voir\n"
"la liste des possibilités."
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -4136,9 +4272,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -4178,10 +4313,10 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -4189,12 +4324,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -4209,36 +4343,34 @@ msgid ""
"displayed here. You can click on the button to change the parameters\n"
"associated with it."
msgstr ""
-"On vous présente ici les différents paramčtres de votre systčme. Selon le\n"
-"matériel installé, certaines entrées seront présentes et d'autres pas.\n"
+"On vous presente ici les differents paramčtres de votre systčme. Selon le\n"
+"materiel installe, certaines entrees seront presentes et d'autres pas.\n"
"\n"
-" * Ť Souris ť: pour vérifier la configuration actuelle de la souris. "
-"Cliquez\n"
-"sur le bouton pour modifier les options.\n"
+" * Ť Souris ť: pour verifier la configuration actuelle de la souris.\n"
+"Cliquez sur le bouton pour modifier les options.\n"
"\n"
-" * Ť Clavier ť: vérifie la configuration choisie pour le clavier. Cliquez\n"
+" * Ť Clavier ť: verifie la configuration choisie pour le clavier. Cliquez\n"
"sur le bouton pour la modifier.\n"
"\n"
-" * Ť Fuseau horaire ť: DrakX, par défaut, essaie de trouver le fuseau\n"
+" * Ť Fuseau horaire ť: DrakX, par defaut, essaie de trouver le fuseau\n"
"horaire dans lequel vous ętes. Encore une fois, il est possible que vous ne\n"
"soyez pas dans le fuseau horaire qui vous convient. Donc, vous aurez\n"
"peut-ętre ŕ cliquer sur le bouton Ť fuseau horaire ť pour identifier\n"
-"précisément l'heure qui doit apparaître dans vos horloges.\n"
+"precisement l'heure qui doit apparaître dans vos horloges.\n"
"\n"
" * Ť Imprimante ť: en cliquant sur Ť Pas d'imprimante ť, l'outil de\n"
-"configuration sera démarré.\n"
+"configuration sera demarre.\n"
"\n"
-" * Ť Carte son ť: si une carte son a été détectée, elle apparaîtra ici.\n"
-"Aucune modification n'est possible ŕ cette étape.\n"
+" * Ť Carte son ť: si une carte son a ete detectee, elle apparaîtra ici.\n"
+"Aucune modification n'est possible ŕ cette etape.\n"
"\n"
-" * Ť Carte TV ť: si une carte d'entrée/sortie vidéo (carte TV) a été\n"
-"détectée, elle apparaîtra ici. Aucune modification possible ŕ cette étape.\n"
+" * Ť Carte TV ť: si une carte d'entree/sortie video (carte TV) a ete\n"
+"detectee, elle apparaîtra ici. Aucune modification possible ŕ cette etape.\n"
"\n"
-" * Ť Carte ISDN ť: si une carte ISDN est détectée, elle apparaîtra ici. "
-"Vous\n"
-"pouvez cliquer sur le bouton pour en modifier les paramčtres."
+" * Ť Carte ISDN ť: si une carte ISDN est detectee, elle apparaîtra ici.\n"
+"Vous pouvez cliquer sur le bouton pour en modifier les paramčtres."
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4248,7 +4380,7 @@ msgstr ""
"nouvelle partition Mandrake Linux. Soyez prudent, toutes les données\n"
"présentes sur ce disque seront perdues et ne seront pas récupérables !"
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4264,7 +4396,7 @@ msgstr ""
"sur Ť OK ť, vous n'aurez aucun moyen de récupérer ces données et\n"
"partitions, y compris celles de Windows."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4276,12 +4408,12 @@ msgstr ""
"désynchronisée par rapport ŕ votre medium d'Installation (veuillez créer une "
"disquette de boot plus récente)"
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr "Vous devez aussi formater %s"
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4306,20 +4438,20 @@ msgstr ""
"\n"
"Confirmez vous l'installation de ces serveurs ?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "On ne peut pas utiliser l'option broadcast sans domaine NIS"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Insérez une disquette formatée en FAT (format DOS/Windows) %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Cette disquette n'est pas au format DOS/Windows"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4327,7 +4459,7 @@ msgstr ""
"Pour utiliser cette sauvegarde de sélection des paquetages, veuillez "
"redémarrer l'installation avec la commande Ť linux defcfg=floppy ť."
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Erreur lors de la lecture du fichier %s"
@@ -4358,7 +4490,7 @@ msgstr "Vous devez créer une partition d'échange (swap)"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -4366,59 +4498,59 @@ msgstr ""
"\n"
"Désirez-vous tout de męme continuer ?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Vous devez disposer d'une partition FAT montée en /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Utiliser l'espace libre"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Pas assez d'espace libre pour créer de nouvelles partitions"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Utiliser une partition existante"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Pas de partition existante ŕ utiliser"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Utiliser la partition Windows pour le loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Quelle partition désirez-vous utiliser pour Linux4Win ?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Choix des tailles"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Taille de la partition racine en Mo : "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Taille de la partition d'échange (swap) en Mo : "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Utiliser l'espace libre sur la partition de Windows"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Quelle partition désirez-vous redimensionner ?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Calcul des limites du systčme de fichiers de Windows en cours"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4427,14 +4559,17 @@ msgstr ""
"Le programme de redimensionnement des partitions FAT ne peut gérer votre\n"
"partition. L'erreur suivante est survenue : %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"Votre partition FAT est trop fragmentée. Redémarrez sous Windows\n"
"et lancez le programme de défragmentation Ť defrag ť,\n"
"puis relancez l'installation de Mandrake Linux."
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -4456,58 +4591,58 @@ msgstr ""
"\n"
"Si vous ętes sűr de vous, cliquez sur OK."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
-msgstr "Quelle taille désirez-vous allouer ŕ Windows ?"
-
#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
+msgstr "Quelle taille désirez-vous allouer ŕ Windows sur la"
+
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "partition %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
-msgstr "Le redimensionnement de la partition FAT a échoué: %s"
+msgstr "Le redimensionnement de la partition FAT a échoué : %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Il n'y a aucune partition FAT ŕ redimensionner ou ŕ utiliser en tant que "
"loopback (ou trop peu d'espace est disponible)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Effacer tout le disque"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
-msgstr "Supprimer Microsoft Windows"
+msgstr "Supprimer Microsoft Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
"Vous possédez plus d'un disque dur.\n"
"Sur lequel désirez vous installer Linux ?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"TOUTES les partitions et les données présentes sur le disque %s seront "
"perdues"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Partitionnement personnalisé"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Utiliser fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4518,11 +4653,11 @@ msgstr ""
"Lorsque vous aurez terminé, n'oubliez pas d'enregistrer vos\n"
"modifications en appuyant sur la touche Ť w ť."
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Utiliser l'espace libre sur la partition de Windows"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Pas de place disponible pour l'installation"
@@ -4532,16 +4667,16 @@ msgstr ""
"L'assistant de partitionnement de DrakX\n"
"a trouvé les solutions suivantes :"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Le partitionnement a échoué : %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Démarrage de l'interface réseau"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Arręt de l'interface réseau"
@@ -4553,12 +4688,12 @@ msgstr ""
"Une erreur est survenue et semble difficile ŕ résoudre correctement.\n"
"Vous pouvez continuer, mais ŕ vos risques et périls."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Point de montage en double : %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4569,15 +4704,15 @@ msgstr ""
"peut que le lecteur de cédérom ou le cédérom lui-męme soit défectueux. Vous\n"
"pouvez vous assurer du bon état de ce dernier en exécutant la commande "
"suivante\n"
-"sur un ordinateur fonctionnant correctement : Ť rmp -qpl Mandrake/RPMS/*."
+"sur un ordinateur fonctionnant correctement : Ť rpm -qpl Mandrake/RPMS/*."
"rpm ť\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Bienvenue sur %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Aucun lecteur de disquette disponible"
@@ -4587,9 +4722,9 @@ msgstr "Aucun lecteur de disquette disponible"
msgid "Entering step `%s'\n"
msgstr "Démarrage de l'étape Ť %s ť\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4599,202 +4734,153 @@ msgstr ""
"essayer de procéder ŕ une installation en mode texte. Pour cela, appuyez\n"
"sur la touche Ť F1 ť aprčs l'amorçage sur cédérom puis entrez Ť text ť."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Classe d'installation"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr "Veuillez choisir une des classes d'installation ci-dessous :"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr ""
-"La taille totale pour les groupes sélectionnés est approximativement de %d "
-"Mo.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Si vous voulez réduire la taille de votre installation,\n"
-"choisissez le pourcentage de paquetages que vous souhaitez installer.\n"
-"\n"
-"Un faible pourcentage ne conservera que les paquetages les plus importants.\n"
-"Un pourcentage de 100%% installera tous les paquetages sélectionnés."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Vous n'avez d'espace sur votre disque que pour %d%% de ces paquetages.\n"
-"\n"
-"Si vous souhaitez réduire encore la taille de l'installation,\n"
-"choisissez un pourcentage encore plus faible.\n"
-"\n"
-"Un faible pourcentage ne conserve que les paquetages les plus importants.\n"
-"Un pourcentage de %d%% installera le maximum possible de packages."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr ""
-"Vous pourrez affiner la sélection des paquetages lors de la prochaine étape."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Pourcentage de paquetages ŕ installer"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Sélection des groupes de paquetages"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Sélection individuelle des paquetages"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Taille totale : %d / %d Mo"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Mauvais paquetage"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Nom : %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Version : %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Taille : %d Ko\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Importance : %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "Il n'y a pas assez de place pour installer ce paquetage"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Les paquetages suivants vont ętre installés"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Les paquetages suivants vont ętre désinstallés"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Vous ne pouvez pas sélectionner/désélectionner ce paquetage"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Ce paquetage est nécessaire, vous ne pouvez pas l'enlever."
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Vous ne pouvez pas désélectionner ce paquetage. Il est déjŕ installé."
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Ce paquetage doit ętre mis ŕ jour.\n"
"Ętes-vous certain de vouloir le désélectionner ?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr ""
"Vous ne pouvez pas désélectionner ce paquetage, il doit ętre mis ŕ jour."
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Montrer les paquetages sélectionnés automatiquement"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Installation"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Charger/Sauver sur disquette"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "Mise-ŕ-jour de la sélection des paquetages"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "Installation minimale"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Choisissez les paquetages que vous voulez installer"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Installation"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Estimation en cours"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Temps restant "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Veuillez patienter, préparation de l'installation..."
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d paquetages"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Installation du paquetage %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Accepter"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Refuser"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4808,21 +4894,22 @@ msgstr ""
"Veuillez insérer le cédérom nommé Ť %s ť,\n"
"puis cliquez sur Ť OK ť.\n"
"\n"
-"Si vous ne le possédez pas, cliquez sur Ť Annuler ť."
+"Si vous ne le possédez pas, cliquez sur Ť Annuler ť afin de ne rien "
+"installer ŕ partir de ce Cd-Rom."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Souhaitez-vous tout de męme continuer ?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Erreur lors du tri des paquetages :"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
-msgstr "Erreur lors de l'installation du paquetage :"
+msgstr "Erreur lors de l'installation des paquetages :"
#: ../../install_steps_interactive.pm_.c:10
msgid ""
@@ -4894,13 +4981,13 @@ msgstr "Une erreur est survenue"
#: ../../install_steps_interactive.pm_.c:85
msgid "Do you really want to leave the installation?"
-msgstr "Désirez-vous vraiment quitter l'installation?"
+msgstr "Désirez-vous vraiment quitter l'installation ?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Licence"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4915,7 +5002,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -5123,109 +5210,113 @@ msgstr ""
"litige. Pour toute question relative au présent document, veuillez \n"
"contacter MandrakeSoft S.A.\n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr "Etes vous sur de refuser cette license ?"
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Clavier"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "Veuillez choisir votre type de clavier."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Voici la liste complčte des claviers disponibles"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Quelle classe d'installation désirez-vous utiliser ?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Installation/Mise-ŕ-jour"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Désirez-vous faire une installation ou une mise-ŕ-jour ?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Recommandée"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Expert"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "Mise-ŕ-jour"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "Mise-ŕ-jour seulement des paquetages"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Veuillez choisir le type de votre souris."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Port souris"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Veuillez choisir le port série sur lequel votre souris est connectée."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Émulation des boutons"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
-msgstr "Émulation du bouton 2"
+msgstr "Émulation du bouton n° 2"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
-msgstr "Émulation du bouton 3"
+msgstr "Émulation du bouton n° 3"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Configuration des cartes PCMCIA..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Configuration IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "Aucune partition disponible"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Examen des partitions afin d'identifier les points de montage"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Choix des points de montage"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -5237,7 +5328,7 @@ msgstr ""
"\n"
"Ętes-vous d'accord pour perdre toutes vos partitions ?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -5245,90 +5336,93 @@ msgstr ""
"DiskDrake ne peut pas lire la table des partitions de façon satisfaisante.\n"
"Vous pouvez continuer, mais ŕ vos risques et périls."
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-"Pas de place libre pour la partition d'amorçage (bootstrap) de 1 Mo."
+"Pas de place libre pour la partition d'amorçage (bootstrap) de 1 Mo."
"L'installation va\n"
"continuer, mais pour que votre systčme puisse démarrer, vous aurez besoin "
"de\n"
"créer la partition d'amorçage avec DiskDrake."
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr ""
"Impossible de trouver une partition racine pour procéder ŕ une mise ŕ jour."
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Partition racine"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Quelle est la partition racine (/) de votre systčme ?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Vous devez redémarrer pour que les modifications apportées ŕ la\n"
"table des partitions soient prises en compte"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Sélectionnez les partitions que vous souhaitez formater"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Vérifier la présence de secteurs endommagés ?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Formatage des partitions"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Création et formatage du fichier %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Le swap est insuffisant pour achever l'installation, veuillez en ajouter."
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr ""
+"Recherche des paquetages disponibles et reconstruction de la base de donnée "
+"rpm..."
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "Recherche des paquetages disponibles..."
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Recherche des paquetages ŕ mettre ŕ jour..."
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+msgid "Looking at packages already installed..."
+msgstr "Recherche des paquetages déja installés..."
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Votre systčme ne dispose pas d'assez d'espace libre pour l'installation ou "
"la mise-ŕ-jour (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Complčte (%d Mo)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimale (%d Mo)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Recommandée (%d Mo)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5340,55 +5434,55 @@ msgstr ""
"Le format est le męme que celui des disquettes générées pour l'installation "
"automatisée."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Charger ŕ partir d'une disquette..."
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Chargement depuis la disquette..."
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Sélection des paquetages"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "Insérez une disquette contenant une sélection de paquetages."
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Sauvegarder sur disquette..."
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "La taille sélectionnée est plus importante que la place disponible"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr "Type d'installation"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-"Vous n'avez sélectionné aucun groupe de paquetages\n"
-"Veuillez choisir l'installation minimale voulue."
+"Vous n'avez sélectionné aucun groupe de paquetages.\n"
+"Veuillez choisir l'installation minimale désirée :"
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "Avec X"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr "Avec la documentation de base (recommandé !)"
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr "Installation vraiment minimale (et en particulier pas d'urpmi)"
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5396,18 +5490,18 @@ msgid ""
msgstr ""
"Si vous possédez tous les cédéroms ci-dessous, cliquez sur Ť OK ť.\n"
"Si vous n'en possédez aucun, cliquez sur Ť Annuler ť.\n"
-"Sinon désélectionnez ceux que vous n'avez pas, puis cliquez sur Ť OK ť."
+"Sinon, désélectionnez ceux que vous n'avez pas, puis cliquez sur Ť OK ť."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
-msgstr "cédérom Ť %s ť"
+msgstr "Cédérom Ť %s ť"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Préparation de l'installation"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -5416,23 +5510,23 @@ msgstr ""
"Installation du paquetage %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Configuration post-installation"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Insérez la disquette d'amorçage utilisée dans le lecteur %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Insérez la disquette de mise-ŕ-jour de modules dans le lecteur %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5507,167 +5601,198 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+# I added an example (install on a networked machine, and the server is connected to the Internet).
+# / J'ai rajouté un exemple (voir texte) car cela me semble plus clair comme çŕ.
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-"Vous avez maintenant la possibilité de télécharger les mises ŕ jour\n"
-"créées depuis la sortie de cette version de Mandrake Linux.\n"
+"Vous avez maintenant la possibilité de télécharger les mises-ŕ-jour\n"
+"créées depuis la sortie de cette distribution. Il peut y avoir des "
+"correctifs de\n"
+" sécurité ou des résolutions de bogues.\n"
"\n"
-"Il s'agit de correctifs de sécurité, ou de correction de bogues,\n"
-"et vous aurez besoin d'une connexion internet pour les obtenir.\n"
+"Vous devez avoir une connexion internet active pour les télécharger,\n"
+"par exemple si vous ętes en réseau et que votre serveur est connecté.\n"
"\n"
"Voulez-vous installer les mises-ŕ-jour ?"
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Connexion au site web de Mandrake Linux pour obtenir la liste des serveurs "
"miroirs disponibles..."
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Choisissez un serveur miroir d'oů télécharger les paquetages"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Téléchargement de la liste des paquetages disponibles..."
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Quelle est votre fuseau horaire ?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Horloge systčme réglée sur le Temps Universel (GMT)"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Synchronisation automatique de l'horloge (via NTP)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "Serveur NTP"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Serveur CUPS distant"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Pas d'imprimante"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
msgstr "Possédez-vous une carte son ISA ?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr "Lancez Ť sndconfig ť aprčs l'installation pour configurer la carte son"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Aucune carte son detectée. Essayez avec Ť harddrake ť aprčs l'installation"
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Résumé"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Souris"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Fuseau horaire"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Imprimante"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "Carte RNIS/ISDN"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Carte son"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "Carte TV"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+msgid "Windows PDC"
+msgstr "Windows PDC"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Fichiers locaux"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Mot de passe root"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Pas de mot de passe"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr "Ce mot de passe est trop court (minimum %d caractčres)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Authentification"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "Authentification LDAP"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "Racine (dn) LDAP"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "Serveur LDAP"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "Authentification NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "Domaine NIS"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "Serveur NIS"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+msgid "Authentication Windows PDC"
+msgstr "Authentification Windows PDC"
+
+#: ../../install_steps_interactive.pm_.c:1139
+msgid "Windows Domain"
+msgstr "Domaine Windows"
+
+#: ../../install_steps_interactive.pm_.c:1140
+msgid "PDC Server Name"
+msgstr "Serveur de nom PDC"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -5700,19 +5825,19 @@ msgstr ""
"Si vous voulez créer une disquette d'amorçage pour votre systčme, insérez \n"
"une disquette dans le premier lecteur et appuyer sur \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Premier lecteur de disquette"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Second lecteur de disquette"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Abandonner"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5743,7 +5868,7 @@ msgstr ""
"Désirez-vous créer une disquette d'amorçage pour votre systčme ?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5754,33 +5879,33 @@ msgstr ""
"\n"
"\n"
"(ATTENTION ! Vous utilisez XFS pour votre partition racine,\n"
-"créer une disquette de boot 1.44 Mb va probablement échouer,\n"
+"créer une disquette de boot 1.44 Mb va probablement échouer,\n"
"parce que XFS a besoin d'un pilote trčs gros)."
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Désolé, aucun lecteur de disquette ne semble disponible"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Choisissez le lecteur de disquette ŕ utiliser pour\n"
"créer votre disquette d'amorçage."
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
msgstr "Insérez une disquette dans le %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Création de la disquette d'amorçage..."
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Préparation du programme d'amorçage..."
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5794,11 +5919,11 @@ msgstr ""
"démarrer\n"
"votre machine."
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Désirez-vous utiliser Ť aboot ť ?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5807,16 +5932,16 @@ msgstr ""
"Désirez-vous forcer l'installation au risque de détruire la\n"
"premičre partition du disque ?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Installation du programme d'amorçage..."
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"L'installation du programme d'amorçage a échoué pour la raison suivante :"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5836,18 +5961,17 @@ msgstr ""
"Au prochain démarrage vous devriez voir apparaître l'invite du\n"
"programme d'amorçage."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Insérez une disquette vierge dans le lecteur %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Création de la disquette d'auto-installation..."
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5857,7 +5981,8 @@ msgstr ""
"\n"
"Voulez-vous vraiment quitter maintenant ?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5868,7 +5993,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5882,17 +6007,21 @@ msgstr ""
"de Mandrake Linux, consultez les Errata disponibles depuis :\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Des informations sur la configuration de votre systčme sont \n"
"disponibles dans le Guide de l'Utilisateur de Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakelinux.com/en/90errata.php3"
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Créer une disquette d'auto-installation"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5906,15 +6035,15 @@ msgstr ""
"\n"
"Vous pouvez préférer rejouer l'installation.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automatisée"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Rejouer"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Sauvegarder la sélection des paquetages..."
@@ -5942,77 +6071,61 @@ msgstr "le programme Ť consolehelper ť est introuvable"
msgid "Choose a file"
msgstr "Choisissez un fichier"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Avancé"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr "Basique"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Veuillez patienter"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Information"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Développer l'arborescence"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Réduire l'arborescence"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Basculer entre tri alphabétique et tri par groupes"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
-msgstr "Choix erroné. Veuillez recommencer\n"
+msgstr "Choix erroné, veuillez recommencer\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Que choisissez-vous ? (%s par défaut) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-"Champs que vous devrez remplir :\n"
+"Les champs que vous devrez remplir sont :\n"
"%s"
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Votre choix ? (0/1, défaut Ť %s ť)"
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "Bouton Ť %s ť : %s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+msgid "Do you want to click on this button?"
msgstr "Désirez-vous cliquer sur ce bouton ?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr "Saisissez `void' pour une entrée vide"
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
-msgstr "Que choisissez-vous ? (Ť %s ť%s par défaut) "
+msgstr "Que choisissez-vous ? (Ť %s ť par défaut%s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Il y a beaucoup de choses ŕ choisir (%s).\n"
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -6022,7 +6135,7 @@ msgstr ""
"souhaitez modifier, ou appuyez juste sur <Entrée> pour continuer.\n"
"Votre choix ? "
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -6031,327 +6144,327 @@ msgstr ""
"=> Notez qu'un message a changé :\n"
"%s"
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr "Revalider"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "tchčque (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "allemand"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak standard"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "espagnol"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "finlandais"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "français"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "norvégien"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "polonais"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "russe"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "suédois"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "anglais"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "américain (États-Unis)"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "albanais"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "arménien (ancien)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "arménien (machine ŕ écrire)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "arménien (phonétique)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "azerbaďdjanais (latin)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "belge"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr "bulgare (phonétique)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "bulgare (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "brésilien"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "blélorusse"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "suisse (allemand)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "suisse (français)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "tchčque (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "allemand (sans touches mortes)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "danois"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak américain"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak norvégien"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak suédois"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "estonien"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "géorgien (disposition russe)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "géorgien (disposition latine)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "grec"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "hongrois"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "croate"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "israélien"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "israélien (phonétique)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "iranien"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "islandais"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "italien"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "japonais 106 touches"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "coréen"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "latino-américain"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "lituanien (AZERTY, ancien modčle)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "lituanien (AZERTY, nouveau modčle)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "lituanien Ť ligne de nombres ť QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "lituanien Ť phonétique ť QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "letton"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "macédonien"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "hollandais"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "polonais (QWERTY)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "polonais (QWERTZ)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "portugais"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "canadien (Québec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "roumain (QWERTZ)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "roumain (QWERTY)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "russe (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "slovénien"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "slovaque (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "slovaque (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "serbe (cyrillique)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr "tamoul"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "thaďlandais"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "tadjik"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "turc (modčle traditionnel Ť F ť)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "turc (modčle moderne Ť Q ť)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "ukrainien"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "américain (international)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "vietnamien Ť colonne numérique ť QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "yougoslave (latin)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr "Touche Alt droite"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr "Deux touches Shift simultanément"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr "Touches Control et Shift simultanément"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr "Touche CapsLock (verrouillage majuscule)"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr "Touches Ctrl et Alt simultanément"
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr "Touches Alt et Shift simultanément"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr "Touche Ť Menu ť"
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr "Touche Ť Windows ť gauche"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr "Touche Ť Windows ť droite"
@@ -6364,7 +6477,29 @@ msgstr "Points de montage circulaires %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Enlevez d'abord les volumes logiques\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+msgid "a number"
+msgstr "un nombre"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr "%d nombres séparés par des virgules"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr "%d chaînes séparées par des virgules"
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr "nombres séparés par des virgules"
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated strings"
+msgstr "chaînes séparées par des virgules"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -6407,10 +6542,6 @@ msgstr "1 bouton"
msgid "Generic 2 Button Mouse"
msgstr "Souris standard ŕ 2 boutons"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Générique"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Roulette"
@@ -6475,41 +6606,57 @@ msgstr "aucun"
msgid "No mouse"
msgstr "Pas de souris"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Veuillez tester votre souris"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Pour activer la souris,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
-msgstr "veuillez faire tourner la molette"
+msgstr "VEUILLEZ FAIRE TOURNER LA MOLETTE !"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Terminer"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Suivant ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Précédent"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Est-ce correct ?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Information"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Développer l'arborescence"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Réduire l'arborescence"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Basculer entre tri alphabétique et tri par groupes"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
-msgstr "Connexion ŕ l'internet"
+msgstr "Connexion ŕ Internet"
#: ../../network/adsl.pm_.c:20
msgid ""
@@ -6517,7 +6664,7 @@ msgid ""
"Some connections use pptp, a few ones use dhcp.\n"
"If you don't know, choose 'use pppoe'"
msgstr ""
-"La façon la plus courante de se connecter ŕ l'internet en utilisant\n"
+"La façon la plus courante de se connecter ŕ Internet en utilisant\n"
"une ligne ADSL est d'utiliser Ť pppoe ť.\n"
"\n"
"Certaines connexions utilisent Ť pptp ť, quelques unes se servent de Ť DHCP "
@@ -6558,20 +6705,20 @@ msgstr ""
"Aucune carte réseau n'a été détectée sur votre systčme.\n"
"La connexion ne peut donc pas ętre configurée."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Choisissez la carte réseau"
#: ../../network/ethernet.pm_.c:93
msgid ""
"Please choose which network adapter you want to use to connect to Internet"
-msgstr "Veuillez choisir la carte réseau qui sera connectée ŕ l'internet"
+msgstr "Veuillez choisir la carte réseau qui sera connectée ŕ Internet"
#: ../../network/ethernet.pm_.c:178
msgid "no network card found"
msgstr "Aucune carte réseau n'a été identifiée"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Configuration du réseau"
@@ -6587,15 +6734,15 @@ msgstr ""
"Celui-ci doit ętre pleinenement qualifié, comme par exemple :\n"
"mamachine.monlabo.masociete.com"
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Nom d'hôte :"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Assistant de configuration réseau"
@@ -6635,11 +6782,11 @@ msgstr ""
#: ../../network/isdn.pm_.c:54
msgid "New configuration (isdn-light)"
-msgstr "nouvelle configuration (isdn-light)"
+msgstr "Nouvelle configuration (isdn-light)"
#: ../../network/isdn.pm_.c:54
msgid "Old configuration (isdn4net)"
-msgstr "ancienne configuration (isdn4net)"
+msgstr "Ancienne configuration (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
@@ -6650,7 +6797,7 @@ msgstr "Configuration RNIS/ISDN"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Veuillez choisir votre fournisseur d'accčs.\n"
"S'il ne figure pas dans la liste, choisissez Ť Non listé ť."
@@ -6669,14 +6816,14 @@ msgstr "Protocole pour le reste du monde"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Protocole pour le reste du monde \n"
" Pas de D-Channel (lignes louées)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Quel protocole désirez-vous utiliser ?"
#: ../../network/isdn.pm_.c:199
@@ -6700,7 +6847,8 @@ 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"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Si vous possédez une carte ISA, les données du prochain écran devraient\n"
@@ -6718,13 +6866,13 @@ msgid "Continue"
msgstr "Continuer"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Quel est le modčle de votre carte RNIS/ISDN ?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Une carte RNIS/ISDN a été détectée mais son type est inconnu. Veuillez "
"sélectionner une carte PCI dans le prochain écran."
@@ -6743,47 +6891,47 @@ msgstr "Veuillez choisir le port série sur lequel votre modem est connecté."
msgid "Dialup options"
msgstr "Options d'appel"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Nom de la connexion"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Numéro de téléphone"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Identifiant de connexion"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Basée sur un script"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Manuelle par terminal"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Nom de domaine"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "serveur DNS principal (optionnel)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "serveur DNS secondaire (optionnel)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6791,7 +6939,7 @@ msgstr ""
"\n"
"Vous pouvez vous déconnecter ou reconfigurer votre connexion."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6799,44 +6947,44 @@ msgstr ""
"\n"
"Vous pouvez reconfigurer votre connexion."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
-msgstr "Vous ętes actuellement connecté ŕ l'internet."
+msgstr "Vous ętes actuellement connecté ŕ Internet."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
msgstr ""
"\n"
-"Vous pouvez vous connecter ŕ l'internet ou reconfigurer votre connexion."
+"Vous pouvez vous connecter ŕ Internet ou reconfigurer votre connexion."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
-msgstr "Vous n'ętes actuellement pas connecté ŕ l'internet."
+msgstr "Vous n'ętes actuellement pas connecté ŕ Internet."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Connecter"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Se déconnecter"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr "Configurez la connection"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Connexion internet et configuration"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Nous allons configurer la connexion %s."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6855,12 +7003,12 @@ msgstr ""
"\n"
"Cliquez sur OK pour continuer."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Configuration du réseau"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6872,9 +7020,9 @@ msgstr ""
"Cliquez sur <Ok> pour conserver votre configuration,\n"
"ou sur <Annuler> pour reconfigurer votre connexion internet et réseau.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"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"
@@ -6885,92 +7033,98 @@ msgstr ""
"Si vous ne souhaitez pas utiliser la détection automatique, désélectionnez "
"la case correspondante.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Choisissez le profil ŕ configurer"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Utiliser la détection automatique"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Mode Expert"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Détection des périphériques..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Connexion par modem"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "détecté sur le port %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "Connexion par RNIS/ISDN"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "détecté %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "Connexion par ADSL"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "détecté sur l'interface %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
-msgstr "Connexion par Cable"
+msgstr "Connexion par cable"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
-msgstr "Connexion par Cable détectée"
+msgstr "connexion par Cable détectée"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
-msgstr "Connection ŕ travers un réseau local (LAN)"
+msgstr "Connexion ŕ travers un réseau local (LAN)"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "carte(s) ethernet détectée(s)"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Choisissez la connexion que vous voulez configurer"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-"Vous avez configuré plusieurs moyens d'accčs ŕ l'internet.\n"
+"Vous avez configuré plusieurs moyens d'accčs ŕ Internet.\n"
"Choisissez celui que vous voulez utiliser.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Connexion internet"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Désirez-vous activer la connexion lors du démarrage ?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Configuration du réseau"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr "Le réseau doit ętre redémarré"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6981,7 +7135,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6992,7 +7146,7 @@ msgstr ""
"La configuration va maintenant ętre appliquée ŕ votre systčme.\n"
"\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7000,32 +7154,32 @@ msgstr ""
"Une fois terminé, il est recommandé de redémarrer votre interface graphique, "
"afin d'éviter les problčmes liés au changement de nom d'hôte de la machine."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
"Des problčmes sont apparus pendant la configuration.\n"
"Testez votre connexion avec le Ť Centre de Contrôle Mandrake ť (dans la "
"section Ť réseau ť) ou la commande Ť net_monitor ť. Si votre connexion ne "
"fonctionne pas, vous pouvez essayer de relancer la configuration."
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"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 ""
-"ATTENTION : Ce périphérique a déjŕ été configuré pour la connexion "
+"ATTENTION : ce périphérique a déjŕ été configuré pour la connexion "
"internet.\n"
"\n"
"Cliquez simplement sur Ť OK ť pour conserver sa configuration.\n"
"Sinon la configuration actuelle sera écrasée par les modifications que vous "
"ferez."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7035,38 +7189,42 @@ msgstr ""
"Chaque champ doit ętre complété avec une adresse IP en notation\n"
"décimale pointée (par exemple, 12.34.56.78)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Configuration du périphérique réseau %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (pilote %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "Adresse IP"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Masque de sous-réseau"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(BOOTP/DHCP)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Attribution automatique de l'adresse IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+msgid "Start at boot"
+msgstr "Exécuter au démarrage"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "L'adresse IP doit ressembler ŕ quelque chose comme Ť 192.168.1.20 ť"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7079,176 +7237,181 @@ msgstr ""
"Vous pouvez également indiquer l'adresse IP de la passerelle\n"
"si votre réseau local en possčde une."
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "Serveur DNS"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Passerelle (p.ex. %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Périphérique passerelle"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Configuration des serveurs mandataires (proxy)"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "Serveur mandataire HTTP"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "Serveur mandataire FTP"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Identifiant de la carte réseau (utile pour les portables)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "La syntaxe doit ętre http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "La syntaxe doit ętre ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
-msgstr "Configuration de l'accčs internet"
+msgstr "Configuration de l'accčs Internet"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
-msgstr "Voulez-vous vous connecter ŕ l'internet maintenant ?"
+msgstr "Voulez-vous vous connecter ŕ Internet maintenant ?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Test de votre connexion..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
-msgstr "Le systčme est ŕ présent connecté ŕ l'internet."
+msgstr "Le systčme est ŕ présent connecté ŕ Internet."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Pour des raisons de sécurité, il va ętre déconnecté maintenant."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
msgstr ""
-"Le systčme ne semble pas connecté ŕ l'internet.\n"
-"Essayez de reconfigurer votre connection."
+"Le systčme ne semble pas connecté ŕ Internet.\n"
+"Essayez de reconfigurer votre connexion."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Configuration de la connexion"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Veuillez compléter ou vérifier les champs ci-dessous"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "n° IRQ de la carte"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Plage mémoire (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "E/S de la carte"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "E/S_O de la carte"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "E/S_1 de la carte"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Votre numéro de téléphone personnel"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
-msgstr "Fournisseur d'accčs (ex.: provider.fr)"
+msgstr "Fournisseur d'accčs (ex. : fournisseur.fr)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Numéro de téléphone pour l'accčs"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "1er DNS du fournisseur (optionnel)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "2čme DNS du fournisseur (optionnel)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Choisissez votre pays"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Numérotation"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Vitesse de connexion"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "Temps maxi pour établir la connexion (en sec.)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
-msgstr "nom d'utilisateur du compte"
+msgstr "Nom d'utilisateur du compte"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Mot de passe du compte"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr "Royaume-Uni"
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "Le montage a échoué : "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Les partitions étendues ne sont pas supportée par cette plateforme"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Il y a un espace vide dans la table des partitions mais il est\n"
"inutilisable. La seule solution est de déplacer vos partitions primaires\n"
"de telle façon que cet espace soit placé contre les partitions étendues."
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Restauration impossible depuis le fichier %s : %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Mauvais fichier de sauvegarde"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Erreur d'écriture dans le fichier %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7259,186 +7422,186 @@ msgstr ""
"échoué.\n"
"Cela signifie que serez victime de pertes aléatoires de données."
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
-msgstr "doit avoir"
+msgstr "obligatoire"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "important"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "trčs utile"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "utile"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "éventuellement"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Common Unix Printing System"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR Nouvelle Génération"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Line Printer Daemon"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Imprimante locale"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Imprimante distante"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Imprimante sur serveur CUPS distant"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Imprimante sur serveur LPD distant"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Imprimante réseau autonome (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Imprimante sur serveur SMB (Windows 95/98/NT)"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Imprimante sur serveur NetWare"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Indiquer l'adresse du périphérique d'impression"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "Impression vers une commande shell"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Modčle inconnu"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "Imprimantes locales"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "Imprimantes distantes"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr " sur port parallčle \\/*%s"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", imprimante USB \\/*%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", périphérique multi-fonctions sur le port parallčle \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ", périphérique USB multi-fonctions"
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ", périphérique HP JetDirect multi-fonctions"
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ", périphérique multi-fonctions"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, c-format
msgid ", printing to %s"
msgstr ", impression sur %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr "sur serveur d'impression LPD Ť %s ť, imprimante Ť %s ť"
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", hôte TCP/IP Ť %s ť, port Ť %s ť"
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr "sur serveur Windows Ť %s ť, partage Ť %s ť"
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr "sur serveur Novell Ť %s ť, imprimante Ť %s ť"
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ", en utilisant la commande %s"
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr "Imprimante ŕ accčs direct (pas de pilote)"
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(sur %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(sur cette machine)"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Sur serveur CUPS Ť %s ť"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Défaut)"
@@ -7460,11 +7623,11 @@ msgstr ""
"Si vous utilisez un serveur CUPS distant, vous n'avez pas besoin de "
"configurer d'imprimante ici. Elles seront automatiquement détectées."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
msgid "CUPS configuration"
msgstr "Configuration de CUPS"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
msgid "Specify CUPS server"
msgstr "Specifiez le serveur CUPS"
@@ -7512,7 +7675,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "L'adresse IP doit ressembler ŕ quelque chose comme Ť 192.168.1.20 ť"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "Le numéro de port doit ętre un nombre entier !"
@@ -7520,7 +7683,7 @@ msgstr "Le numéro de port doit ętre un nombre entier !"
msgid "CUPS server IP"
msgstr "Adresse IP du serveur CUPS"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Port"
@@ -7528,20 +7691,12 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Configuration automatique du serveur CUPS"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Détection des périphériques..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Test des ports"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr "Ajouter une nouvelle imprimante"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7565,13 +7720,13 @@ msgstr ""
"disponibles ainsi qu'ŕ toutes leurs options et ŕ tous les types de "
"connection."
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Imprimante locale"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7604,11 +7759,11 @@ msgstr ""
"printerdrake si vous voulez installer une imprimante réseau\n"
"qui n'est pas listée automatiquement."
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr "Détection automatique des imprimantes"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7632,11 +7787,11 @@ msgstr ""
"etc.), rendez-vous dans la partie Ť imprimante ťde la section Ť matériel ť "
"du Centre de Contrôle Mandrake."
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr "Détection automatique des imprimantes"
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7653,33 +7808,37 @@ msgstr ""
"\n"
"Voulez-vous vraiment auto-détecter vos imprimantes ?"
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "Lancer la détection automatique"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr "Configurer l'imprimante manuellement"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Test des ports"
+
+#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
msgstr "Détecté %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Imprimante sur le port parallčle \\/*%s"
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr "Imprimante USB \\/*%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
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, ..., "
@@ -7692,11 +7851,11 @@ msgstr ""
"équivalents ŕ LPT1:, LPT2:, ..., premičre imprimante USB : /dev/usb/lp0, "
"deuxičme imprimante USB : /dev/usb/lp1, ...) "
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
msgstr "Vous devez enter un nom de fichier ou de périphérique!"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
@@ -7704,7 +7863,7 @@ msgstr ""
"Aucune imprimante locale n'a pu ętre trouvée!\n"
"\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
@@ -7713,7 +7872,7 @@ msgstr ""
"Choississez Ť Matériel ť puis Ť Imprimantes ť dans le Centre de Contrôle de "
"Mandrake."
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
@@ -7722,7 +7881,7 @@ msgstr ""
"en Ť Mode Expert ť et cliquez ŕ nouveau sur Ť Ajouter une nouvelle "
"imprimante ť."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7731,7 +7890,7 @@ msgstr ""
"voulez configurer, tapez un nom de fichier ou de périphérique dans le champs "
"d'entrée"
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7740,7 +7899,7 @@ msgstr ""
"l'imprimante que vous voulez configurer ou tapez un nom de périphérique ou "
"de fichier dans le champs d'entrée"
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7752,7 +7911,7 @@ msgstr ""
"correctement détectée ou si vous préférer effectuer une configuration "
"personalisée, activez Ť Configuration Manuelle  ť ."
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7765,7 +7924,7 @@ msgstr ""
"correctement détectée ou si vous préférer effectuer une configuration "
"personalisée, activez Ť Configuration Manuelle  ť .\""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7773,11 +7932,11 @@ msgstr ""
"Veuillez choisir le port sur laquelle votre imprimante est connectée ou "
"tapez le nom du périphérique ou de fichier dans le champs d'entrée"
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
msgstr "Veuillez choisir le port sur lequel votre imprimante est connectée."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7786,52 +7945,63 @@ msgstr ""
"LPT2:, ..., premičre imprimante USB : /dev/usb/lp0, deuxičme imprimante "
"USB : /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
msgstr "Vous devez choisir ou entrer une imprimante ou un périphérique !"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
msgstr "Configuration manuelle"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
"Votre imprimante est-elle un appareil multifonction de HP (OfficeJet, PSC, "
-"PhotoSmart LaserJet 1100/1200/1220/3200/3300 with scanner) ?"
+"LaserJet 1100/1200/1220/3200/3300 avec scanner), une HP PhotoSmart ou une HP "
+"LaserJet 2200?"
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
msgstr "Installation du paquetage HPOJ..."
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr "Vérification du périphérique et configuration de HPOJ ..."
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
-msgstr "Installation du paquetage SANE ..."
+#: ../../printerdrake.pm_.c:504
+msgid "Installing SANE packages..."
+msgstr "Installation des paquetages SANE ..."
+
+#: ../../printerdrake.pm_.c:524
+msgid "Installing mtools packages..."
+msgstr "Installation des paquetages mtools..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr "Acquisition ŕ partir de votre périphérique multi-fonction HP"
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+#, fuzzy
+msgid "Photo memory card access on your HP multi-function device"
+msgstr "Acquisition ŕ partir de votre périphérique multi-fonction HP"
+
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr "Mise ŕ disposition du port imprimante pour CUPS ..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr "Lecture de la base de données des imprimantes..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Configuration d'une imprimante Unix (lpd) distante"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7839,27 +8009,27 @@ msgstr ""
"Pour utiliser une imprimante Unix distante, vous devez indiquer le nom "
"d'hôte du serveur LPD et le nom attribué ŕ l'imprimante par ce serveur."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Nom d'hôte du serveur"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Nom de l'imprimante"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "Nom du serveur distant manquant !"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "Le nom de l'imprimante est manquant !"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Configuration d'une imprimante SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7873,35 +8043,35 @@ msgstr ""
"d'utilisateur, mot de passe et groupe de travail nécessaires pour accéder ŕ "
"l'imprimante."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "Nom du serveur"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "Adresse IP du serveur"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Nom de partage de l'imprimante"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Groupe de travail"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "Il faut au moins préciser le nom du serveur ou son adresse IP."
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "Il faut préciser le nom de partage de l'imprimante."
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr "ALERTE DE SÉCURITÉ !"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7924,8 +8094,29 @@ msgid ""
"type in Printerdrake.\n"
"\n"
msgstr ""
+"Vous ętes sur le point de paramétrer l'impression vers un compte Windows "
+"avec mot de passe. A cause d'une erreur dans la conception du logiciel "
+"client Samba, le mot de passe est inscrit en clair dans la ligne de commande "
+"qu'il envoie pour transmettre le travail d'impression au serveur Windows. Il "
+"est donc possible pour n'importe quel utilisateur de cette machine "
+"d'afficher ŕ l'écran ce mot de passe, simplement ent tapant une commande "
+"comme Ť ps auxwww ť.\n"
+"\n"
+"Nous vous conseillons d'utiliser les solutions alternatives suivantes (dans "
+"tous les cas, vous devez vous assurer que seules les machines de votre "
+"réseau local peuvent accéder ŕ votre serveur Windows, ŕ l'aide d'un pare-feu "
+"logiciel (firewall) par exemple):\n"
+"\n"
+"Utilisez un compte sans mot de passe sur votre serveur Windows, tel que le "
+"compte Ť Invité ť ou alors un compte dédié spécialement ŕ l'impression. "
+"N'enlevez pas la protection d'un compte Utilisateur ou Administrateur.\n"
+"\n"
+"Paramétrez votre serveur Windows afin que les imprimantes soient disponibles "
+"sous le protocole LPD. Réglez ensuite l'impression de cette machine-ci avec "
+"le type de connexion Ť %s ť dans Printerdrake.\n"
+"\n"
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7933,20 +8124,29 @@ msgid ""
"type in Printerdrake.\n"
"\n"
msgstr ""
+"Paramétrez votre serveur Windows afin que l'imprimante soit disponible sous "
+"le protocole IPP et réglez l'impression ŕ partir de cette machine-ci avec le "
+"type de connexion Ť %s ť dans Printerdrake.\n"
+"\n"
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
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 ""
+"Branchez votre imprimante sur un serveur Linux et laissez votre(vos) machine"
+"(s) Windows se connecter en tant que client.\n"
+"\n"
+"Voulez-vous vraiment poursuivre le parmétrage de cette imprimante de cette "
+"façon?"
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Options de l'imprimante NetWare"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
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 "
@@ -7958,27 +8158,27 @@ msgstr ""
"du nom d'hôte TCP/IP) et le nom de la file d'impression ŕ laquelle vous "
"voulez accéder ainsi qu'un nom de login et un mot de passe si nécessaire."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Nom du serveur d'impression"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Nom de la file d'impression"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "Nom du serveur NCP manquant!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "Nom de la file d'attente NCP manquant!"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
msgstr "Options de l'imprimante réseau (TCP/socket)"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -7991,19 +8191,19 @@ msgstr ""
"port est habituellement 9100, mais cela peut ętre différent pour\n"
"d'autres serveurs. Veuillez consulter le manuel de votre imprimante."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Nom d'hôte de l'imprimante"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "Nom d'hôte de l'imprimante manquant !"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Adresse réseau du périphérique d'impression"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
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 "
@@ -8015,11 +8215,11 @@ msgstr ""
"que tous les types d'URL ne sont pas supportés par tous les gestionnaires "
"d'impression."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "Une adresse valide doit ętre entrée !"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -8029,27 +8229,23 @@ msgstr ""
"Les champs Ť Description ť et Ť Emplacement ť n'ont pas besoin d'ętre "
"remplis. Ce sont de simples commentaires pour les utilisateurs."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Nom de l'imprimante"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Description"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Emplacement"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr "Préparation de la base de données des imprimantes..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
msgid "Your printer model"
msgstr "Le modčle de votre imprimante"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -8073,24 +8269,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
msgid "The model is correct"
msgstr "Le modčle est correct"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
msgid "Select model manually"
msgstr "Sélectionner manuellement le modčle"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Sélection du modčle de l'imprimante"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Quel modčle d'imprimante possédez-vous ?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -8104,7 +8300,7 @@ msgstr ""
"modčle correct dans la liste si le curseur se situe sur un modčle erroné ou "
"sur Ť Imprimante ŕ accčs direct ť."
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -8112,11 +8308,11 @@ msgstr ""
"Si votre imprimante n'est pas listée, choisissez-en une compatible (voir le "
"manuel de l'imprimante) ou similaire."
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "Configuration de l'imprimante OKI winprinter"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -8133,11 +8329,11 @@ msgstr ""
"l'impression de la page de test. Sans cela, l'imprimante ne fonctionnera pas "
"Vos paramčtres de type de connexion seront ignorés par le pilote."
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "Configuration de l'imprimante Lexmark inkjet"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -8149,7 +8345,7 @@ msgstr ""
"des serveurs d'impression. Veuillez connecter votre imprimante sur un port "
"local ou configurez-la sur la machine ŕ laquelle elle est connectée."
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -8173,7 +8369,7 @@ msgstr ""
"d'impression avec Ť lexmarkmaintain ť et ajustez les paramčtres de ces tętes "
"avec ce programme."
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -8188,22 +8384,22 @@ msgstr ""
"sont correctement indiqués. Notez que la vitesse d'impression peut diminuer "
"si vous augmentez la qualité d'impression."
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "L'option %s doit ętre un nombre entier !"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "L'option %s ętre un nombre !"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "L'option %s est en dehors des limites !"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8212,11 +8408,11 @@ msgstr ""
"Désirez-vous que l'imprimante Ť %s ť soit l'imprimante\n"
"par défaut ?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "Pages de test"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8229,39 +8425,39 @@ msgstr ""
"męme ne pas sortir.\n"
"Dans la plupart des cas, l'impression de la page de test standard suffit."
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "Pas de page de test"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Imprimer"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "Page de test standard"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr "Page de test alternative (Letter)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "Page de test alternative (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "Page de test photo"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
msgstr "Ne pas imprimer de page de test"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Impression des pages de test..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8276,7 +8472,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8284,15 +8480,15 @@ msgstr ""
"Les pages de test ont été envoyées ŕ l'imprimante.\n"
"Il peut se passer un certain temps avant le début effectif de l'impression.\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr "Ętes-vous satisfait du résultat ?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr "Imprimante ŕ accčs direct"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8306,7 +8502,7 @@ msgstr ""
"<fichier> ť. Les utilitaires graphiques vous permettent de choisir "
"l'imprimante et de modifier les paramčtres d'impression facilement.\n"
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
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 "
@@ -8317,8 +8513,8 @@ msgstr ""
"applications. Dans ce cas n'indiquez pas le nom du fichier puisqu'il sera "
"fourni par l'application elle-męme.\n"
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -8331,18 +8527,18 @@ msgstr ""
"pour une impression particuličre. Il suffit pour cela d'ajouter les "
"paramčtres voulus sur la ligne de commande. Par exemple, Ť %s <fichier> ť. "
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, 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\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
"Pour obtenir la liste des paramčtres disponibles pour l'imprimante courante, "
-"lisez la liste ci-dessous ou cliquez sur le bouton Ť liste des options "
-"d'impression ť.%s\n"
+"lisez la liste ci-dessous ou cliquez sur le bouton Ť imprimer la liste des "
+"options ť.%s%s\n"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8351,7 +8547,7 @@ msgstr ""
"courante:\n"
"\n"
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8360,8 +8556,8 @@ msgstr ""
"Pour imprimer un fichier depuis la ligne de commande (une fenętre de "
"terminal), utilisez la commande Ť %s <fichier>ť.\n"
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8372,7 +8568,7 @@ msgstr ""
"applications. Dans ce cas, n'indiquez pas le nom du fichier ŕ imprimer "
"puisque celui-ci sera fourni par l'application elle-męme.\n"
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8380,7 +8576,7 @@ msgstr ""
"Pour obtenir la liste des paramčtres disponibles pour l'imprimante courante, "
"cliquez sur le bouton Ť liste des options d'impression ť."
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8389,7 +8585,7 @@ msgstr ""
"Pour imprimer un fichier depuis la ligne de commande (une fenętre de "
"terminal), utilisez la commande Ť %s <fichier> ť ou Ť %s <fichier> ť.\n"
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8406,7 +8602,7 @@ msgstr ""
"les travaux d'impression. Ceci peut ętre utile en cas de bourrage papier, "
"par exemple.\n"
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -8420,38 +8616,49 @@ msgstr ""
"cela d'ajouter les paramčtres voulus sur la ligne de commande, par exemple "
"Ť %s <fichier> ť.\n"
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Fermer"
+#: ../../printerdrake.pm_.c:1773
+#, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Impression/Acquisition/Cartes photo sur Ť %s ť"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Impression/Acquisition sur l'imprimante Ť %s ť"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Impression/Accčs aux cartes photos sur Ť %s ť"
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Impression sur l'imprimante Ť %s ť"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Fermer"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "Liste des options d'impression"
-#: ../../printerdrake.pm_.c:1766
-#, c-format
+#: ../../printerdrake.pm_.c:1802
+#, fuzzy, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
@@ -8466,39 +8673,30 @@ msgstr ""
"\n"
"N'utilisez pas Ť scannerdrake ť pour cet appareil ! "
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-"Votre appareil multifonction HP a été configuré automatiquement pour ętre "
-"capable de scanner. Maintenant vous pouvez scanner avec Ť tal-hp %s scan ... "
-"ť dans une fenętre de commandes. L'acquisition par interface graphique ou "
-"grace ŕ Ť Gimp ť n'est pas encore suportée avec cet appareil. Vous trouverez "
-"plus d'informations dans le fichier /usr/share/doc/hpoj-0.8/ptal-hp-scan."
-"html sur votre systčme. Si vous avez une HP LaserJet 1100 ou 1200, vous "
-"pouvez seulement scanner si vous avez l'option Ť scanner ť installée.\n"
-"\n"
-"N'utilisez pas Ť scannerdrake ť pour cet appareil ! "
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr "Lecture des données de l'imprimante..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "Transfert de la configuration de l'imprimante"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8515,7 +8713,7 @@ msgstr ""
"Toutes les files d'attente n'ont pas pu ętre transférées ŕ cause des raisons "
"suivantes :\n"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8523,7 +8721,7 @@ msgstr ""
"CUPS ne supporte pas les imprimantes sur les serveurs Novell ni les "
"impressions vers des commandes shell.\n"
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -8531,11 +8729,11 @@ msgstr ""
"PDQ ne supporte que les imprimantes locales, les imprimantes LPD distantes, "
"et les imprimantes réseau autonomes.\n"
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD et LPRng ne supportent pas les imprimantes IPP.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8543,7 +8741,7 @@ msgstr ""
"De plus, les files d'attente qui n'ont pas été créées avec ce programme ou "
"avec Ťfoomatic-configureť ne peuvent pas ętre transférées."
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8553,7 +8751,7 @@ msgstr ""
"Aussi, les imprimantes configurées avec les fichiers PPD fournis par leur "
"fabriquant ou avec des pilotes CUPS natifs ne peuvent pas ętre transférées."
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8563,15 +8761,15 @@ msgstr ""
"Cochez les imprimantes que vous voulez transférer, et\n"
"cliquez sur Ť Transfert ť."
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr "Ne pas transférer les imprimantes"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr "Transfert"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8583,13 +8781,13 @@ msgstr ""
"Vous pouvez également taper un nouveau nom ou\n"
"simplement ignorer cette imprimante."
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"Le nom de l'imprimante ne devrait contenir que des lettres, des nombres et "
"des tirets bas (_)"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8598,16 +8796,16 @@ msgstr ""
"L'imprimante Ť %s ť existe déjŕ,\n"
"voulez-vous vraiment écraser sa configuration ?"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Nouveau nom de l'imprimante"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr "Transfert de %s..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8617,29 +8815,29 @@ msgstr ""
"elle ętre également l'imprimante par défaut de votre nouveau systčme "
"d'impression %s ?"
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr "Mise ŕ jour des données de l'imprimante..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr "Configuration d'une imprimante distante"
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "Démarrage du réseau..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr "Configurez le réseau maintenant"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "Les fonctionnalités du réseau ne sont pas configurées"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8651,11 +8849,11 @@ msgstr ""
"voulez continuer sans configurer le réseau, vous ne pourez pas utiliser "
"l'imprimante que vous ętes en train de configurer. Que voulez-vous faire ?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr "Continuer sans configurer le réseau"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8671,7 +8869,7 @@ msgstr ""
"essayez ŕ nouveau de configurer l'imprimante dans la section Ť Matériel / "
"Imprimante ť."
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
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 "
@@ -8681,24 +8879,24 @@ msgstr ""
"de votre matériel et de votre accčs réseau grâce au Ť Centre de Contrôle "
"Mandrake ť puis essayez ŕ nouveau de configurer l'imprimante distante."
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr "Redémarrage du systčme d'impression..."
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "élevé"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr "paranoďaque"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Installation du systčme d'impression sous le niveau de sécurité Ť %s ť"
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8724,11 +8922,11 @@ msgstr ""
"\n"
"Voulez-vous réellement installer un systčme d'impression ?"
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr "Activation du systčme d'impression au démarrage"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8750,63 +8948,63 @@ msgstr ""
"\n"
"Voulez-vous rétablir l'activation automatique du systčme d'impression ?"
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr "Vérification du logiciel installé..."
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr "Suppression de LPRng..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr "Suppression de LPD..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "Choisissez le gestionnaire d'impression"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "Quel systčme d'impression désirez-vous utiliser ?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Configuration de l'imprimante Ť %s ť..."
+msgid "Configuring printer \"%s\"..."
+msgstr "Configuration en cours de l'imprimante Ť %s ť..."
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
msgstr "Installation de Foomatic ..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Options de l'imprimante"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr "Préparation de PrinterDrake..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
msgid "Configuring applications..."
msgstr "Configuration des applications...."
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "Désirez-vous configurer l'impression ?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr "Systčme d'impression : "
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -8818,7 +9016,7 @@ msgstr ""
"consulter les informations ŕ son propos ou pour rendre une imprimante d'un "
"serveur CUPS distant utilisable par Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -8828,30 +9026,34 @@ msgstr ""
"pour modifier ses paramčtres, en faire l'imprimante par défaut ou consulter "
"les informations ŕ son propos."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Rafraîchir la liste des imprimantes (pour afficher toutes les imprimantes "
"CUPS distantes)"
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
msgid "Change the printing system"
msgstr "Changer le systčme d'impression"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Mode normal"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Quitter"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr "Désirez-vous configurer une autre imprimante ?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "Modifier la configuration de l'imprimante"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, c-format
msgid ""
"Printer %s\n"
@@ -8860,102 +9062,102 @@ msgstr ""
"Imprimante %s\n"
"Que souhaitez-vous modifier sur cette imprimante ?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr "Faire"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "Type de connexion"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "Nom, description, emplacement"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr "Marque, modčle, pilote"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr "Marque, modčle"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr "Choisir comme imprimante par défaut"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr "Ajouter cette imprimante ŕ StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr "Retirer cette imprimante de StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr "Imprimer des pages de test"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
msgstr "Savoir comment utiliser cette imprimante"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "Désinstaller l'imprimante"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, c-format
-msgid "Removing old printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
msgstr "Désinstallation de l'ancienne imprimante Ť %s ť..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Imprimante par défaut"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "L'imprimante Ť %s ť est maintenant celle par défaut."
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr "Ajout de l'imprimante ŕ StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr "L'imprimante Ť %s ť a été ajoutée avec succčs ŕ StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr "Impossible d'ajouter l'imprimante Ť %s ť ŕ StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr "Retrait de l'imprimante de StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr "L'imprimante Ť %s ť a été retirée avec succčs de StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr "Impossible de retirer l'imprimante Ť %s ť de StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Désirez-vous vraiment désinstaller l'imprimante Ť %s ť?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr "Suppression de l'imprimante Ť %s ť..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -9043,24 +9245,62 @@ msgstr ""
"Impossible d'ajouter une partition au RAID md%d car\n"
"celui-ci est déjŕ formaté"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Impossible d'écrire le fichier %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "Ť mkraid ť a échoué"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "Ť mkraid ť a échoué (les Ť raidtools ť sont-ils installés ?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Trop peu de partitions pour du RAID de niveau %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Ce niveau de sécurité doit ętre utilisé avec précaution. Il rend votre\n"
+"systčme plus facile ŕ utiliser, aux dépens de la sécurité. Il ne devrait\n"
+"donc pas ętre utilisé sur une machine connectée ŕ un réseau ou ŕ Internet.\n"
+"Aucun mot de passe n'est requis."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+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 ""
+"Avec ce niveau de sécurité, l'utilisation de cette machine en tant que\n"
+"serveur devient envisageable. La sécurisation est suffisamment forte pour\n"
+"accepter les connexions de nombreux clients. Note : si votre machine est\n"
+"seulement connectée en tant que client sur Internet, vous devriez plutôt\n"
+"choisir un niveau inférieur."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "Options avancées"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Options"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -9130,7 +9370,7 @@ msgstr ""
"HardDrake effectue une détection matérielle, et configure éventuellement le "
"nouveau matériel."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -9177,7 +9417,7 @@ msgid ""
"/usr/include/linux/{autoconf,version}.h"
msgstr ""
"Régénération automatique des fichiers d'en-tętes pour le noyau\n"
-"dans le dossier /boot pour /usr/include/linux/{autoconf,version}.h"
+"dans le répertoire /boot pour /usr/include/linux/{autoconf,version}.h"
#: ../../services.pm_.c:40
msgid "Automatic detection and configuration of hardware at boot."
@@ -9209,7 +9449,7 @@ msgstr ""
"utilisé pour créer un serveur virtuel haute-performance et haute "
"disponibilité, composé d'un ensemble de serveur linux reliés entre eux."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -9247,9 +9487,10 @@ msgid ""
"/etc/exports file."
msgstr ""
"Démarrage ou arręt du serveur NFS. Un serveur NFS permet d'effectuer un "
-"partage de fichiers en ouvrant l'accčs ŕ certains dossiers depuis un réseau. "
-"Les dossiers partagés sont listés dans le fichier /etc/exports, mais vous "
-"pouvez l'éditer grâce ŕ Ť linuxconf ť dans la section Ť réseau / serveur ť."
+"partage de fichiers en ouvrant l'accčs ŕ certains répertoires depuis un "
+"réseau. Les répertoires partagés sont listés dans le fichier /etc/exports, "
+"mais vous pouvez l'éditer grâce ŕ Ť linuxconf ť dans la section Ť réseau / "
+"serveur ť."
#: ../../services.pm_.c:55
msgid ""
@@ -9297,7 +9538,7 @@ msgstr ""
"comme NFS et NIS. Le serveur portmap doit ętre activé sur des machines "
"jouant le rôle de serveur pour des protocoles utilisant le mécanisme RPC."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -9402,7 +9643,7 @@ msgstr "internet"
msgid "File sharing"
msgstr "Partage de fichiers"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "Systčme"
@@ -9533,6 +9774,7 @@ msgstr ""
"environnements Open Source."
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
msgstr "Mandrake Control Center"
@@ -9656,6 +9898,17 @@ msgstr "http://www.mandrakesoft.com/sales/contact"
msgid "Installing packages..."
msgstr "Installation des paquetages..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr ""
+"Veuillez vous déconnecter puis presser simultanément les touches Ctrl-Alt-"
+"BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Veuillez relancer %s pour activer les changements"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -9664,6 +9917,145 @@ msgstr ""
"La table des partitions ne peut ętre lue car elle semble endommagée.\n"
"Une réinitialisation des partitions endommagées va ętre tentée."
+#: ../../standalone/drakTermServ_.c:189
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Configuration du Serveur de Terminaux Mandrake"
+
+#: ../../standalone/drakTermServ_.c:204
+msgid "Enable Server"
+msgstr "Activer le serveur"
+
+#: ../../standalone/drakTermServ_.c:211
+msgid "Disable Server"
+msgstr "Désactiver le serveur"
+
+#: ../../standalone/drakTermServ_.c:219
+msgid "Start Server"
+msgstr "Lancer le serveur"
+
+#: ../../standalone/drakTermServ_.c:226
+msgid "Stop Server"
+msgstr "Arręter le serveur"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+msgid "Add/Del Users"
+msgstr "Ajouter/Effacer un utilisateur"
+
+#: ../../standalone/drakTermServ_.c:242
+msgid "Add/Del Clients"
+msgstr "Ajouter/Effacer un client"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Aide"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr "Disquette de démarrage"
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr "Image ISO de démarrage"
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr "Construire le Kernel entier -->"
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr "Celŕ va prendre quelques minutes."
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr "Aucun noyau sélectionné!"
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+msgid "No nic selected!"
+msgstr "Aucune interface réseau sélectionnée!"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr "Construire tous les noayx -->"
+
+#: ../../standalone/drakTermServ_.c:550
+msgid "<-- Delete"
+msgstr "<-- Effacer"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Sélectionne tout"
+
+#: ../../standalone/drakTermServ_.c:619
+msgid "Add User -->"
+msgstr "Ajouter un utilisateur -->"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr "<-- Effacer un utilisateur"
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr "Ajouter un client -->"
+
+#: ../../standalone/drakTermServ_.c:733
+msgid "<-- Del Client"
+msgstr "<-- Effacer un client"
+
+#: ../../standalone/drakTermServ_.c:739
+msgid "dhcpd Config..."
+msgstr "Configuration de dhcpd..."
+
+#: ../../standalone/drakTermServ_.c:886
+msgid "Write Config"
+msgstr "Écrire la configuration"
+
+#: ../../standalone/drakTermServ_.c:944
+msgid "Please insert floppy disk:"
+msgstr "SVP, veuillez insérez une disquette d'amorçage dans le lecteur"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr "Impossible d'accéder ŕ la disquette!"
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr "La disquette peut maintenant etre retirée du lecteur"
+
+#: ../../standalone/drakTermServ_.c:953
+msgid "No floppy drive available!"
+msgstr "Aucun lecteur de disquette disponible!"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr "Quelque chose s'est mal passé! mkisofs est-il bien installé?"
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "Erreur !"
@@ -9717,6 +10109,10 @@ msgstr ""
"Veuillez choisir, pour chaque étape, si celle-ci doit ętre rejouée comme "
"pendant votre installation, ou si elle doit s'effectuer manuellement."
+#: ../../standalone/drakautoinst_.c:83
+msgid "Creating auto install floppy"
+msgstr "Création de la disquette d'auto-installation"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -9730,12 +10126,12 @@ msgstr ""
"Les paramčtres de l'installation automatique sont disponibles dans les "
"sections sur la gauche."
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Félicitations !"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9743,28 +10139,19 @@ msgstr ""
"La disquette a été générée avec succčs.\n"
"Vous pouvez maintenant rejouer votre installation."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr "Installation automatique"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr "Ajouter un élément"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr "Supprimer le dernier élément"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
@@ -9774,7 +10161,7 @@ msgstr ""
" Rapport de sauvegarde (DrakBackup) \n"
"\n"
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9786,19 +10173,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9810,63 +10185,85 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr "TOTAL :"
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr "Sauvegarde des fichiers systčmes..."
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
msgstr "Sauvegarde sur disque dur..."
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
msgstr "Sauvegarde des comptes utilisateurs..."
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr "Sauvegarde sur disque dur..."
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
msgstr "Sauvegarde des autres fichiers..."
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
-"liste envoyée par FTP : %s\n"
+"liste des fichiers envoyée par FTP : %s\n"
" "
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
"\n"
-"(!) Problčme de connection FTP: impossible d'envoyer les sauvegardes par "
-"FTP.\n"
+"Problčme de connection FTP: impossible d'envoyer vos fichiers de sauvegarde "
+"par FTP.\n"
+
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr "(!) Erreur lors de l'envoi du mail?\n"
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+msgid " Error during mail sending. \n"
+msgstr "Erreur lors de l'envoi du courrier.\n"
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
-msgstr "Sélection de fichiers ou dossiers"
+msgstr "Sélection de fichiers ou répertoires"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
-msgstr "Sélectionnez les fichiers ou dossiers puis cliquez sur Ť Ajouter ť"
+msgstr "Sélectionnez les fichiers ou répertoires puis cliquez sur Ť Ajouter ť"
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -9874,107 +10271,100 @@ msgstr ""
"\n"
"Veuillez cocher toutes les options dont vous avez besoin.\n"
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Ces options peuvent sauvegarder et restaurer\n"
-"tous les fichiers du dossier de configuration systčme Ť /etc ť\n"
+"tous les fichiers du répertoire de configuration systčme Ť /etc ť\n"
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
-msgstr "Sauvegarder le dossier de configuration systčme (dossier /etc)"
+msgstr "Sauvegarder le répertoire de configuration systčme (répertoire /etc)"
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr "Sauvegardes incrémentales (économie d'espace)"
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Ne pas inclure les fichiers critiques (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
"Note : la sauvegarde incrémentale n'écrase pas les anciennes sauvegardes."
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
msgstr "Veuillez cocher tous les comptes utilisateurs ŕ sauvegarder"
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr "Ne pas inclure le cache du navigateur internet (fichiers tampon)"
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Sauvegardes incrémentales (économie d'espace)"
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
msgstr "Supprimer sélection"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr "Utilisateurs..."
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr "Sauvegarder par FTP"
+#: ../../standalone/drakbackup_.c:1257
+msgid "Use network connection to backup"
+msgstr "Sauvegarder via le réseau"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
msgstr "Nom d'hôte ou adresse IP de la machine de sauvegarde"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr "Dossier oů poser la sauvegarde sur cette machine"
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
msgstr "Nom de connexion sur cette machine"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
msgstr "Veuillez entrer votre mot de passe"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
msgstr "Se souvenir du mot de passe"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "par connexion FTP..."
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "par connexion sécurisée..."
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr "Sauvegarder sur CDR (ou DVDR)"
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
msgstr "Veuillez choisir la taille de votre CD"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
msgstr "CD Réinscriptible"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr "Effacer le CDRW avant sauvegarde"
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
@@ -9982,7 +10372,7 @@ msgstr ""
"Veuillez vérifier que vous voulez inclure\n"
"le lanceur de l'installation sur votre CD"
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -9990,144 +10380,151 @@ msgstr ""
"Veuillez entrer l'emplacement de votre graveur (bus,id,lun)\n"
"(détecter avec Ť cdrecord -scanbus ť. Par exemple : 0,1,0 )"
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
msgstr "Sauvegarde sur cartouche"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr "Nom de périphérique du matériel de sauvegarde (/dev/...?)"
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+msgid "Please check if you want to erase your tape before the backup."
+msgstr ""
+"Etes vous sur de vouloir effacer votre bande magnétique avant de faire la "
+"sauvegarde."
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr "Taille maximale de sauvegarde :"
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
-msgstr "Dossier oů poser la sauvegarde :"
+#: ../../standalone/drakbackup_.c:1497
+msgid "Please enter the directory to save to:"
+msgstr "Veuillez indiquer le dossier oů sauvegarder:"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
msgstr "Limiter la taille de la sauvegarde"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
msgstr "par transfert réseau..."
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
-msgstr "Dans un dossier (local ou partagé)..."
+msgstr "Dans un répertoire (local ou partagé)..."
+
+#: ../../standalone/drakbackup_.c:1595
+msgid "Tape"
+msgstr "Bande"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr "toutes les heures"
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr "tous les jours"
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr "toutes les semaines"
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr "tous les mois"
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
msgstr "Sauvegarde périodique"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Veuillez choisir l'intervalle de temps entre les sauvegardes"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Quelle sauvegarde sera périodique ?"
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "celle sur Disque dur / NFS"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "celle par FTP"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-"ATTENTION : Le Ť cron ť doit ętre actif dans vos services. (voir le Ť Centre "
-"de Contrôle Mandrake ť section Ť systčme / services ť)"
+"Veuillez vérifier que le démon Ť cron ť fait partie de vos services.\n"
+"\n"
+"Tenez compte du fait qu'actuellement tous les médias réseaux utilisent "
+"également le disque dur."
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr "Envoyer un rapport par mail aprčs chaque sauvegarde ŕ :"
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "Quoi..."
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "Oů..."
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "Quand..."
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
msgstr "Plus d'options..."
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
msgstr "Configuration de sauvegarde Drakbackup"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
msgstr "Veuillez choisir oů stocker la sauvegarde"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr "sur disque dur"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr "par réseau"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
msgstr "Veuillez choisir ce que vous voulez sauvegarder"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
msgstr "Sauvegarder le systčme"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr "Sauvegarder les comptes utilisateurs"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr "Sélectionner individuellement les utilisateurs"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
@@ -10135,7 +10532,7 @@ msgstr ""
"\n"
"Sources de sauvegarde : \n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
@@ -10143,7 +10540,7 @@ msgstr ""
"\n"
"- Fichiers systčme:\n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
@@ -10151,42 +10548,73 @@ msgstr ""
"\n"
"- Données des utilisateurs :\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
"\n"
-"- Autres fichiers ou dossiers :\n"
+"- Autres fichiers ou répertoires :\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
"\n"
-"- Sauvegarde sur le disque dur dans le dossier : %s\n"
+"- Sauvegarde sur le disque dur dans le répertoire : %s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+"\n"
+"- Graver le CD"
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr "RW"
+
+#: ../../standalone/drakbackup_.c:1978
+#, c-format
+msgid " on device : %s"
+msgstr "sur le périphérique : %s"
+
+#: ../../standalone/drakbackup_.c:1979
+#, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"- Sauvegarde sur bande via le péphérique : %s"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
"\n"
-"- Sauvegarde par FTP sur la machine : %s\n"
+"- Sauvegarde via %s sur la machine : %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
"\t\t nom de connexion : %s\n"
-"\t\t dans le dossier : %s \n"
+"\t\t dans le répertoire : %s \n"
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
@@ -10194,19 +10622,19 @@ msgstr ""
"\n"
"- Options:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr "\tFichiers systčmes non inclus\n"
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr "\tLe sauvegarde utilise Ť tar ť et Ť bzip2 ť\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr "\tLa sauvegarde utilise Ť tar ť et Ť gzip ť\n"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
@@ -10215,30 +10643,44 @@ msgstr ""
"\n"
"- Le Démon (%s) comprend :\n"
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr "\t-celle sur Disque dur.\n"
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr "\t-celle sur CDR.\n"
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr "\t-Bande\n"
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr "\t-celle par transfert FTP.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr "\t-celle par transfert SSH.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t-celle par transfert FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t-celle par transfert FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
"La configuration de sauvegarde n'est pas encore définie. \n"
"Veuillez cliquer sur Ť Configuration par assistant ť, ou Ť Configuration "
"manuelle ť\n"
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
@@ -10246,7 +10688,7 @@ msgstr ""
"Liste de données ŕ restaurer :\n"
"\n"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10254,139 +10696,142 @@ msgstr ""
"Liste des données corrompues :\n"
"\n"
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
msgid "Please uncheck or remove it on next time."
msgstr "Veuillez le décocher ou le retirer la prochaine fois"
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr "Les fichiers de sauvegarde sont corrompus"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr " Toutes vos données sélectionnées ont été "
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-" correctement restaurées en prenant Ť %s ť comme dossier racine "
+" correctement restaurées en prenant Ť %s ť comme répertoire racine "
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
msgid " Restore Configuration "
msgstr " Restauration de la configuration "
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr "OK pour restaurer les autres fichiers."
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr "Fichiers de sauvegarde ŕ restaurer (seul le plus récent compte)"
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
msgstr "Sauvegarder les fichiers systčme avant :"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
msgid "please choose the date to restore"
msgstr "Veuillez choisir la date ŕ restaurer"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
msgstr "Sauvegarde sur disque dur"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+msgid "Please enter the directory to save:"
+msgstr "Dossier oů poser la sauvegarde :"
+
+#: ../../standalone/drakbackup_.c:2416
+msgid "FTP Connection"
+msgstr "par connexion FTP..."
+
+#: ../../standalone/drakbackup_.c:2424
+msgid "Secure Connection"
+msgstr "par connexion sécurisée..."
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
-msgstr "Restaurer ŕ partir d'un dossier"
+msgstr "Restaurer ŕ partir d'un répertoire"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
-msgstr "Veuillez entrer le dossier oů résident les sauvegardes"
+msgstr "Veuillez entrer le répertoire oů résident les sauvegardes"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
msgstr "Choisir un autre support de sauvegarde"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
msgid "Other Media"
msgstr "Autre support"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
msgid "Restore system"
msgstr "Restaurer le systčme"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
msgstr "Restaurer les comptes utilisateurs"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
-msgstr "Restaurer les autres fichiers ou dossiers"
+msgstr "Restaurer les autres fichiers ou répertoires"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
-msgstr "Choisir un autre dossier racine de restauration ( au lieu de / )"
+msgstr "Choisir un autre répertoire racine de restauration ( au lieu de / )"
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Nouvelle sauvegarde avant restauration (seulement pour l'incrémental)"
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
-msgstr "Retirer les dossiers personnels ds utilisateurs avant restauration"
+msgstr "Retirer les répertoires personnels ds utilisateurs avant restauration"
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr "Restaurer toutes les sauvegardes..."
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
msgid "Custom Restore"
msgstr "Restauration personnalisée..."
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Aide"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "<- Précédent"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "Valider"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
msgstr "Sauvegarder !"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
msgstr "Restaurer !"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "Suivant ->"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
"Merci de vouloir faire une sauvegarde avant de vouloir restaurer... (ou bien "
-"vérifiez que votre dossier de sauvegarde est correct)"
+"vérifiez que votre répertoire de sauvegarde est correct)"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
@@ -10396,31 +10841,34 @@ msgstr ""
" Votre rapport n'a pas été envoyé\n"
" Veuillez configurer Ť sendmail ť"
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Liste des paquetages ŕ installer"
+#: ../../standalone/drakbackup_.c:2933
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Les paquetages suivants vont ętre installés"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-"Erreur pendant l'envoi par FTP.\n"
-" Veuillez corriger votre configuration FTP"
+"Erreur pendant l'envoi du fichier par FTP.\n"
+" Veuillez corriger votre configuration FTP"
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
msgstr "Veuillez choisir les données ŕ restaurer..."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
msgstr "Veuillez choisir le support de sauvegarde..."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
msgstr "Veuillez choisir les données ŕ sauvegarder..."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10429,77 +10877,77 @@ msgstr ""
"Veuillez cliquer sur Ť Configuration par assistant ť, ou Ť Configuration "
"manuelle ť"
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr "En développement ... veuillez patienter."
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
msgid "Backup system files"
msgstr "Sauvegarde des fichiers systčmes..."
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
msgid "Backup user files"
msgstr "Sauvegarde des comptes utilisateurs..."
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
msgid "Backup other files"
-msgstr "Sauvegarde des autres fichiers ou dossiers..."
+msgstr "Sauvegarde des autres fichiers ou répertoires..."
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr "TOTAL :"
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr "Envoi par FTP"
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
msgid "Sending files..."
msgstr "Envoi des fichiers..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr "Liste ŕ include sur le CDR"
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
msgid "Please enter the cd writer speed"
msgstr "Veuillez taper la vitesse de gravure :"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
"Veuillez entrer l'emplacement de votre graveur (bus,id,lun)\n"
"(détecter avec Ť cdrecord -scanbus ť. Par exemple : 0,1,0 )"
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
msgstr "Veuillez vérifier si vous voulez Inclure l'install boot sur le CD"
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
msgid "Backup Now from configuration file"
msgstr "Sauvegarder ŕ partir de la configuration définie"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
msgid "View Backup Configuration."
msgstr "Voir la configuration de sauvegarde"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
msgid "Wizard Configuration"
msgstr "Configuration par assistant"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
msgid "Advanced Configuration"
msgstr "Configuration manuelle"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
msgstr "Sauvegarder !"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -10550,7 +10998,7 @@ msgstr ""
" - le mode .backupignore :\n"
"\n"
" Comme avec CVS, Drakbackup va ignorer les références\n"
-" incluses dans les fichiers .backupignore de chaque dossier.\n"
+" incluses dans les fichiers .backupignore de chaque répertoire.\n"
" ex: \n"
" /*> cat .backupignore*/\n"
" *.o\n"
@@ -10559,7 +11007,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10573,7 +11021,7 @@ msgstr ""
" configurer le nom de machine ou de domaine dans /etc/postfix/main.cf.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -10617,7 +11065,7 @@ msgstr ""
"\n"
" - Sauvegarde des fichiers systčmes :\n"
" \n"
-"\tCette option vous permet de sauvegarder votre dossier /etc,\n"
+"\tCette option vous permet de sauvegarder votre répertoire /etc,\n"
"\tqui contient tous les fichiers de configuration. Faites attention\n"
"\tpendant la restauration de ne pas écraser :\n"
"\t\t/etc/passwd \n"
@@ -10629,7 +11077,7 @@ msgstr ""
"\tCette option vous permet de choisir les utilisateurs \n"
"\tŕ sauvegarder.\n"
"\tPour préserver l'espace disque, il est recommandé\n"
-"\tde ne pas inclure les dossier Ť cache ť des navigateurs.\n"
+"\tde ne pas inclure les répertoire Ť cache ť des navigateurs.\n"
"\n"
" - Sauvegarde des autres fichiers : \n"
"\n"
@@ -10651,7 +11099,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -10689,13 +11137,18 @@ msgstr ""
"\n"
"Sinon, vous ne pouvez en choisir qu'une\n"
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft par DUPONT Sébastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10726,7 +11179,7 @@ msgstr ""
"en męme temps que ce programme; sinon, écrivez ŕ la Ť Free Software\n"
"Foundation ť, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -10783,10 +11236,10 @@ msgstr ""
"\t- Webdav.\n"
"\t- Cartouche.\n"
"\n"
-" Drakbackup peut restaurer votre systčme vers un dossier choisi\n"
+" Drakbackup peut restaurer votre systčme vers un répertoire choisi\n"
"\n"
" Par défaut toute sauvegarde sera stockée dans le\n"
-" dossier /var/lib/drakbackup\n"
+" répertoire /var/lib/drakbackup\n"
"\n"
" Fichier de configuration :\n"
"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
@@ -10795,13 +11248,13 @@ msgstr ""
"Étape de restauration :\n"
" \n"
" Pendant l'étape de restauration, DrakBackup va retirer \n"
-" votre dossier d'origine et vérifier que tous les \n"
+" votre répertoire d'origine et vérifier que tous les \n"
" fichiers de sauvegarde ne sont pas corrompus. Il est recommandé \n"
" de faire une derničre sauvegarde avant restauration.\n"
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -10819,7 +11272,7 @@ msgstr ""
"avant de l'envoyer vers le serveur.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10835,12 +11288,12 @@ msgstr ""
"Problčmes de restauration :\n"
"\n"
"Avant l'étape de restauration, Drakbackup va vérifier tous vos\n"
-"fichiers de sauvegarde. Les dossiers originaux seront effacés\n"
+"fichiers de sauvegarde. Les répertoires originaux seront effacés\n"
"et vous allez perdre toutes vos données. Il est important de \n"
"faire les choses avec précaution et de ne pas modifier ŕ la main\n"
"les fichiers de sauvegarde.\n"
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -10896,10 +11349,10 @@ msgstr ""
"\t- Webdav.\n"
"\t- Cartouche.\n"
"\n"
-" Drakbackup peut restaurer votre systčme vers un dossier choisi\n"
+" Drakbackup peut restaurer votre systčme vers un répertoire choisi\n"
"\n"
" Par défaut toute sauvegarde sera stockée dans le\n"
-" dossier /var/lib/drakbackup\n"
+" répertoire /var/lib/drakbackup\n"
"\n"
" Fichier de configuration :\n"
"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
@@ -10908,7 +11361,7 @@ msgstr ""
"Étape de restauration :\n"
" \n"
" Pendant l'étape de restauration, DrakBackup va retirer \n"
-" votre dossier d'origine et vérifier que tous les \n"
+" votre répertoire d'origine et vérifier que tous les \n"
" fichiers de sauvegarde ne sont pas corrompus. Il est recommandé \n"
" de faire une derničre sauvegarde avant restauration.\n"
"\n"
@@ -10919,99 +11372,518 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "L'installation de %s a échoué pour la raison suivante :"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr "Outil de signalement de bug Mandrake"
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr "Assistant de premičre connection"
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr "Outil de synchronisation"
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Utilitaires console"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr "HardDrake"
+
+#: ../../standalone/drakbug_.c:54
+msgid "Mandrake Online"
+msgstr "Mandrake Online"
+
+#: ../../standalone/drakbug_.c:55
+msgid "Menudrake"
+msgstr "Menudrake"
+
+#: ../../standalone/drakbug_.c:56
+msgid "Msec"
+msgstr "Msec"
+
+#: ../../standalone/drakbug_.c:57
+msgid "Remote Control"
+msgstr "Contrôle ŕ distance"
+
+#: ../../standalone/drakbug_.c:58
+msgid "Software Manager"
+msgstr "Gestionnaire de programmes"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr "Urpmi"
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr "Outil de migration windows"
+
+#: ../../standalone/drakbug_.c:61
+msgid "Userdrake"
+msgstr "Userdrake"
+
+#: ../../standalone/drakbug_.c:62
+msgid "Configuration Wizards"
+msgstr "Assistants de configuration"
+
+#: ../../standalone/drakbug_.c:71
+msgid "Application:"
+msgstr "Application:"
+
+#: ../../standalone/drakbug_.c:75
+msgid "Package: "
+msgstr "Paquetage:"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr "Noyau:"
+
+#: ../../standalone/drakbug_.c:83
+msgid "Release: "
+msgstr "Version: "
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+msgid "Not installed"
+msgstr "Non installé"
+
+#: ../../standalone/drakbug_.c:110
+msgid "Report"
+msgstr "Signaler"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr "Connection ŕ l'assistant Bugzilla ..."
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Pas de navigateur disponible! Veuillez en installer un"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Configuration du réseau (%d cartes réseaux)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profil : "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Effacer le profil..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Profil ŕ effacer :"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Nouveau profil..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Nom du profil ŕ créer (le nouveau profil est créé comme une copie du profil "
+"courant :"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Nom de machine : "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Accčs internet"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Type :"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Passerelle :"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Interface :"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "État :"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "Veuillez patienter"
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Configurer l'accčs ŕ Internet..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "Configuration LAN (réseau local)"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Pilote"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Interface"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protocole"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "État"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Configurer le réseau local..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "Cliquez ici pour lancer l'assistant ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Assistant..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Appliquer"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Veuillez patienter... mise en place de la configuration"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Connecté"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Non connecté"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Se connecter..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Se déconnecter..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+"Attention, une autre connexion internet a été détectée, peut-ętre utilisant "
+"votre réseau"
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Vous n'avez aucune interface réseau configurée.\n"
+"Vous pouvez en configurer une en cliquant sur Ť Configurer ť"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "Configuration du LAN (réseau local)"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Carte réseau %s : %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Protocole d'amorçage"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Lancer au démarrage"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "Client DHCP"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "activer maintenant"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "désactiver maintenant"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Cette interface n'a pas encore été configurée.\n"
+"Lancez l'assistant de configuration dans la fenętre principale"
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Vous n'avez aucune connection internet.\n"
+"Vous pouvez en créer une en cliquant sur Ť Configurer ť"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Configuration de la connexion internet"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Configuration de la connexion internet"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Type de connexion : "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Paramčtres"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Passerelle"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Carte ethernet"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "Client DHCP"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "mode d'emploi : drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Nom du module"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Taille"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "création d'une disquette d'amorçage"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "par défaut"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Erreur DrakFloppy : %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "version du noyau"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Général"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Mode Expert"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "arguments optionnels pour mkinitrd"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Ajouter un module"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "forcer"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "si besoin est"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "ne pas tenir compte des modules SCSI"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "ne pas tenir compte des modules RAID"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Retirer un module"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Sortie"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Créer la disquette"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Assurez-vous qu'un médium est présent dans le périphérique %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"Il n'y a aucune disquette dans le lecteur %s ou alors elle est \n"
+"protégée contre l'écriture. Veuillez vérifier ou en insérer une."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Ne peut dédoubler (fork) : %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Ne peut terminer correctement mkbootdisk : \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr "Chercher les polices installées"
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr "Désélectionner les polices installées"
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr "Parcourir toutes les polices"
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
msgid "no fonts found"
msgstr "aucune fonte trouvée"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "terminé"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr "impossible de trouver des polices dans vos disques"
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr "Résélectionnez des polices correctes"
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr "impossible de trouver des polices.\n"
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr "Chercher des polices dans la liste des installées"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr "Copie des fontes"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
msgid "True Type fonts installation"
msgstr "Installation de polices Ť True Type ť"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr "Veuillez patienter pendant Ť ttmkfdir ť"
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr "Installation Ť True Type ť terminée"
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr "Conversion de polices"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr "création de type1inst"
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr "Inscription dans ghoscript"
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr "Conversion de polices Ť True Type ť"
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr "Conversion de polices Ť pfm ť"
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr "Supprimer les fichiers temporaires"
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr "Relancer le serveur de polices"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr "Supprimer les fichiers de polices"
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
msgid "xfs restart"
msgstr "redémarrage du serveur de fonte"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -11026,167 +11898,167 @@ msgstr ""
"cas,\n"
"des polices boguées peuvent bloquer votre serveur d'affichage XFree."
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
msgid "Fonts Importation"
msgstr "Importation de polices"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr "Récupérer les polices de Windows"
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr "Désinstaller des polices"
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Options avancées"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
msgstr "Liste des polices"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
msgid "Choose the applications that will support the fonts :"
msgstr "Choisissez les applications qui supporteront ces polices"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
msgstr "Imprimante générique"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
-msgstr "Sélectionnez les polices ou dossiers et cliquez sur Ť Ajouter ť"
+msgstr "Sélectionnez les polices ou répertoires et cliquez sur Ť Ajouter ť"
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
msgstr "Installe la liste"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr "Cliquez ici si vous ętes sűr"
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr "Ici sinon"
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr "Désélectionne tout"
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
msgid "Selected All"
msgstr "Sélectionne tout"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
msgstr "Désinstalle la liste"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr "Tests initiaux"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
msgstr "Copier les polices sur votre systčme"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr "Installe et convertit des polices"
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
msgid "Post Install"
msgstr "Post-installation"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
msgstr "Retirer des polices de votre systčme"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
msgid "Post Uninstall"
msgstr "Post-désinstallation"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Partage de la connexion internet"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr "Désolé, nous ne prenons en charge que les noyaux (kernel) 2.4 ."
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Le partage de la connexion internet est activé"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
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 ""
-"La configuration du partage de la connexion ŕ l'internet a déjŕ été\n"
+"La configuration du partage de la connexion ŕ Internet a déjŕ été\n"
"effectuée. Elle est actuellement activée.\n"
"\n"
"Que voulez-vous faire ?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "désactiver"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "ne rien faire"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "reconfigurer"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Désactivation des serveurs..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
-msgstr "Le partage de la connexion ŕ l'internet est maintenant désactivé."
+msgstr "Le partage de la connexion ŕ Internet est maintenant désactivé."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
-msgstr "Le partage de la connexion ŕ l'internet est désactivé"
+msgstr "Le partage de la connexion ŕ Internet est désactivé"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
"\n"
"What would you like to do?"
msgstr ""
-"La configuration du partage de la connexion ŕ l'internet a déjŕ été\n"
+"La configuration du partage de la connexion ŕ Internet a déjŕ été\n"
"effectuée. Elle est actuellement désactivée.\n"
"\n"
"Que voulez-vous faire ?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "activer"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Activation des serveurs..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Le partage de la connexion internet est maintenant activé."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -11203,21 +12075,21 @@ msgstr ""
"Veuillez noter que vous avez besoin d'une carte réseau dédiée ŕ votre réseau "
"local."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interface %s (utilisant le module %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Interface %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Aucune carte réseau n'est présente dans votre systčme"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -11225,11 +12097,11 @@ msgstr ""
"Aucune carte réseau n'a été détectée sur votre systčme. Veuillez utiliser "
"l'outil de configuration du matériel."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Carte réseau"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11244,18 +12116,18 @@ msgstr ""
"\n"
"Je vais configurer votre réseau local avec cette carte réseau."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Veuillez choisir quelle carte réseau sera connectée ŕ votre réseau local"
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr "Interface réseau déjŕ configurée"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11270,15 +12142,15 @@ msgstr ""
"\n"
"Vous pouvez le faire manuellement, mais vous devez savoir ce que vous faites."
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr "Reconfiguration automatique"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr "Montrer la configuration actuelle"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11295,7 +12167,7 @@ msgstr ""
"Attribution de l'adresse : %s\n"
"Pilote : %s"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
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 C-Class Network that "
@@ -11320,34 +12192,34 @@ msgstr ""
"DHCP.\n"
"\n"
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr "Réseau Local de class C"
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr "Adresse IP du serveur DHCP"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr "Re-configurer l'interface et le serveur DHCP"
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Le réseau local ne finissait pas par `.0', j'abandonne."
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Conflit potentiel d'adresses du réseau local trouvé dans la configuration de "
"%s !\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Configuration du Firewall détectée"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -11355,22 +12227,22 @@ msgstr ""
"Attention ! Une configuration existante du Firewall a été détectée. Vous "
"devrez peut-ętre modifier la configuration manuellement aprčs l'installation."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Configuration en cours..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Configuration des scripts, installation des logiciels, démarrage des "
"serveurs..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Des problčmes sont apparus en installant le paquetage %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11381,25 +12253,25 @@ msgstr ""
"ordinateurs sur votre réseau local, en utilisant la configuration réseau "
"automatique (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
"La configuration a déjŕ été effectuée, mais elle est actuellement désactivée."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
"La configuration a déjŕ été effectuée, et elle est actuellement activée."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Le partage de la connexion internet n'a encore jamais été configuré."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Configuration du partage de la connexion internet"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11414,216 +12286,6 @@ msgstr ""
"\n"
"Cliquez sur Configurer pour lancer l'assistant de configuration."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Configuration du réseau (%d cartes réseaux)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil : "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Effacer le profil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Profil ŕ effacer :"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Nouveau profil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Nom du profil ŕ créer (le nouveau profil est créé comme une copie du profil "
-"courant :"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Nom de machine : "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Accčs internet"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Type :"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Passerelle :"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Interface :"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "État :"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Veuillez patienter"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Configurer l'accčs ŕ l'internet..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Configuration LAN (réseau local)"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Pilote"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interface"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protocole"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "État"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Configurer le réseau local..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Cliquez ici pour lancer l'assistant ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Assistant..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Appliquer"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Veuillez patienter... mise en place de la configuration"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Connecté"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Non connecté"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Se connecter..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Se déconnecter..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Attention, une autre connexion internet a été détectée, peut-ętre utilisant "
-"votre réseau"
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Vous n'avez aucune interface réseau configurée.\n"
-"Vous pouvez en configurer une en cliquant sur Ť Configurer ť"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Configuration du LAN (réseau local)"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Carte réseau %s : %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Protocole d'amorçage"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Lancer au démarrage"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "Client DHCP"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "activer maintenant"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "désactiver maintenant"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Cette interface n'a pas encore été configurée.\n"
-"Lancez l'assistant de configuration dans la fenętre principale"
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Vous n'avez aucune connection internet.\n"
-"Vous pouvez en créer une en cliquant sur Ť Configurer ť"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Configuration de la connexion internet"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Configuration de la connexion internet"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Type de connexion : "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Paramčtres"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Passerelle"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Carte ethernet"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "Client DHCP"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Mise en place du niveau de sécurité"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Centre de contrôle"
@@ -11632,63 +12294,92 @@ msgstr "Centre de contrôle"
msgid "Choose the tool you want to use"
msgstr "Choisissez l'outil que vous voulez utiliser"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\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 ""
+"XawTV n'est pas installé!\n"
+"\n"
+"\n"
+"Si vous avez une carte TV mais que DrakX n'e l'a pas détectée (pas de\n"
+"module bttv dans Ť /etc/modules ť) ou que DrakX n'a pas installé xawtv,\n"
+"envoyez, s'il vous plaît, le résultat de la commande Ť lspcidrake -v -f ť\n"
+"ŕ Ť install\\@mandrakesoft.com ť avec comme sujet Ť undetected TV card ť.\n"
+"\n"
+"\n"
+"Vous pouvez quand męme l'installer en tapant Ť urpmi xawtv ť dans un "
+"terminal en tant que root."
+
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
msgstr "Canada (cable)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr "USA (hertzien)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr "USA (cable)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr "USA (cable ou HRC)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr "Chine (hertzien)"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr "Japon (hertzien)"
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr "Japon (cable)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
msgstr "Europe de l'est"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+msgid "France [SECAM]"
+msgstr "France [SECAM]"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
msgstr "Irlande"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
msgstr "Europe de l'ouest"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
msgstr "Australie"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr "Nouvelle Zélande"
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr "Afrique du Sud"
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr "Argentine"
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
@@ -11696,27 +12387,43 @@ msgstr ""
"SVP,\n"
"Veuillez choisir votre région et votre norme de TV"
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr "Norme TV :"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr "Zone :"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr "Recherche des canaux de télévision en cours ..."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr "Recherche des canaux de télévision"
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+msgid "There was an error while scanning for TV channels"
+msgstr "Une erreur est survenue pendant la recherche des chaînes TV."
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr "XawTV n'est pas installé!"
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr "Passez une bonne journée!"
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr "Maintenant vous pouvez lancer xawtv (sous X-Window) !\n"
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr "Aucune carte TV détectée !"
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -11727,7 +12434,8 @@ msgid ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-"Aucune carte TV n'a été détectée sur votre ordinateur. Veuillez vérifier qu'une carte TV/Vidéo supportée par Linux est correctement branchée.\n"
+"Aucune carte TV n'a été détectée sur votre ordinateur. Veuillez vérifier "
+"qu'une carte TV/Vidéo supportée par Linux est correctement branchée.\n"
"\n"
"\n"
"Vous pouvez visiter notre base de données de support matériel ŕ :\n"
@@ -11774,7 +12482,7 @@ msgstr ""
"Les changements ont été effectués mais ne seront effectifs qu'aprčs votre "
"déconnection"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -11800,7 +12508,7 @@ msgstr "<control>O"
#: ../../standalone/logdrake_.c:104
msgid "/File/_Save"
-msgstr "/Fichier/_Enregistrer"
+msgstr "/Fichier/Enregi_strer"
#: ../../standalone/logdrake_.c:104
msgid "<control>S"
@@ -11808,7 +12516,7 @@ msgstr "<control>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
-msgstr "/Fichier/Enregistrer _Sous"
+msgstr "/Fichier/_Enregistrer sous"
#: ../../standalone/logdrake_.c:106
msgid "/File/-"
@@ -11822,10 +12530,6 @@ msgstr "/_Options"
msgid "/Options/Test"
msgstr "/Options/Test"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Aide"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr "/Aide/_A propos..."
@@ -11886,7 +12590,7 @@ msgstr "Calendrier"
msgid "Content of the file"
msgstr "Contenu du fichier"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr "Alerte mail/SMS"
@@ -11895,11 +12599,11 @@ msgstr "Alerte mail/SMS"
msgid "please wait, parsing file: %s"
msgstr "s'il vous plaît attendez, examen du fichier : %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
msgstr "Configuration des alertes mail/SMS"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
@@ -11909,64 +12613,89 @@ msgstr ""
"\n"
"Vous allez pouvoir configurer ici vos les alertes systčmes.\n"
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
+msgid "Apache World Wide Web Server"
+msgstr "Apache (serveur www)"
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Nom de domaine"
#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
+msgid "Ftp Server"
+msgstr "Serveur Ftp"
+
+#: ../../standalone/logdrake_.c:420
+msgid "Postfix Mail Server"
+msgstr "Serveur de courrier Postfix"
+
+#: ../../standalone/logdrake_.c:421
+msgid "Samba Server"
+msgstr "Serveur Sambe"
#: ../../standalone/logdrake_.c:422
+msgid "SSH Server"
+msgstr "Serveur SSH"
+
+#: ../../standalone/logdrake_.c:423
+msgid "Webmin Service"
+msgstr "Service Webmin"
+
+#: ../../standalone/logdrake_.c:424
+msgid "Xinetd Service"
+msgstr "Service Xinetd"
+
+#: ../../standalone/logdrake_.c:431
msgid "service setting"
msgstr "configuration des services"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
"Vous recevrez une alerte si l'un des services sélectionnés ne tourne plus"
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
msgstr "chargement des paramčtres"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr "Vous recevrez une alerte si la charge machine dépasse cette valeur"
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
msgstr "configuration des alertes"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr "Configurer les moyens de vous alerter"
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Enregistrer sous..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Veuillez choisir le type de votre souris."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "aucun périphérique USB série trouvé\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Émuler le troisičme bouton ?"
+#: ../../standalone/printerdrake_.c:49
+msgid "Reading printer data ..."
+msgstr "Lecture des données de l'imprimante..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "Détection des périphériques..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -12013,7 +12742,22 @@ msgid ""
"applications menu."
msgstr ""
"Votre scanner %s a été configuré.\n"
-"Vous pouvez maintenant scanner des documents en utilisant Ť XSane ť ŕ partir de Multimédia/Graphisme dans le menu des applications."
+"Vous pouvez maintenant scanner des documents en utilisant Ť XSane ť ŕ partir "
+"de Multimédia/Graphisme dans le menu des applications."
+
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr "Certains matériels listés dans la classe Ť %s ť ont été enlevés:\n"
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+"\n"
+"Certains matériels listés dans la classe Ť %s ť ont été ajoutés :\n"
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
@@ -12144,7 +12888,7 @@ msgid ""
"re-running this application!"
msgstr ""
"Nous allons maintenant vous poser des questions sur quels services vous\n"
-"souhaitez pouvoir connecter ŕ l'internet. Veuillez réfléchir avec soin sur\n"
+"souhaitez pouvoir connecter ŕ Internet. Veuillez réfléchir avec soin sur\n"
"chacune de ces questions, car la sécurité de votre ordinateur est\n"
"importante.\n"
"\n"
@@ -12160,7 +12904,7 @@ msgid ""
"\n"
msgstr ""
"Utilisez-vous un serveur web sur cette machine, que vous avez besoin de\n"
-"rendre visible depuis tout l'internet ? Si vous utilisez un serveur web\n"
+"rendre visible depuis tout Internet ? Si vous utilisez un serveur web\n"
"pour seulement cette machine, vous pouvez répondre NON ici.\n"
"\n"
@@ -12173,7 +12917,7 @@ msgid ""
msgstr ""
"Utilisez-vous un serveur de nom sur cette machine ? Si vous n'avez pas\n"
"configuré un tel serveur pour donner des informations d'IP et de zone\n"
-"pour tout l'internet, veuillez répondre NON.\n"
+"pour tout Internet, veuillez répondre NON.\n"
"\n"
#: ../../tinyfirewall.pm_.c:31
@@ -12210,7 +12954,7 @@ msgid ""
"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
"attackers, since FTP also uses no encryption for transferring passwords.\n"
msgstr ""
-"Utilisez-vous un serveur FTP, que vous voulez visible depuis l'internet ?\n"
+"Utilisez-vous un serveur FTP, que vous voulez visible depuis Internet ?\n"
"Si c'est le cas, nous recommandons fortement de ne l'utiliser que\n"
"pour les transferts en mode anonyme. Tous les mots de passe envoyés\n"
"par FTP peuvent ętre volés par des pirates, car FTP n'utilise pas\n"
@@ -12427,10 +13171,6 @@ msgid "Multimedia - Sound"
msgstr "Multimédia - Son"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Utilitaires"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Documentation"
@@ -12537,10 +13277,6 @@ msgstr ""
"mutt), des news (tin), et pour naviguer sur le Web"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Archivage, émulateurs, surveillance"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Gestion Financičre"
@@ -12587,3 +13323,217 @@ msgstr "Multimédia - Gravage de CD"
#: ../../share/compssUsers:999
msgid "Scientific Workstation"
msgstr "Applications scientifiques"
+
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "fsck a échoué avec le code de sortie %d ou le signal %d"
+
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Indentification de la carte graphique : %s\n"
+
+#~ msgid "Choose options for server"
+#~ msgstr "Choisissez les options du serveur d'affichage"
+
+#~ msgid "Monitor not configured"
+#~ msgstr "Le moniteur n'est pas configuré"
+
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "La carte graphique n'est pas encore configurée"
+
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "La résolution n'a pas encore été choisie"
+
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "essayez de modifier quelques paramčtres"
+
+#~ msgid "An error occurred:"
+#~ msgstr "Une erreur est survenue :"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Fin du test dans %d secondes"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Ętes-vous satisfait(e) ?"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr ""
+#~ "Une erreur est survenue, essayez de modifier\n"
+#~ "quelques paramčtres"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "Serveur XFree86 : %s"
+
+#~ msgid "Show all"
+#~ msgstr "Tout montrer"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Préparation de la configuration de X Window"
+
+#~ msgid "What do you want to do?"
+#~ msgstr "Que désirez-vous faire ?"
+
+#~ msgid "Change Monitor"
+#~ msgstr "Choisir un type de moniteur"
+
+#~ msgid "Change Graphics card"
+#~ msgstr "Choisir un type de carte graphique"
+
+#~ msgid "Change Server options"
+#~ msgstr "Changer les options du serveur d'affichage"
+
+#~ msgid "Change Resolution"
+#~ msgstr "Changer la résolution"
+
+#~ msgid "Show information"
+#~ msgstr "Afficher la configuration actuelle"
+
+#~ msgid "Test again"
+#~ msgstr "Tester ŕ nouveau"
+
+#~ msgid ""
+#~ "Your HP multi-function device was configured automatically to be able to "
+#~ "scan. Now you can scan from the command line with \"ptal-hp %s scan ..."
+#~ "\". Scanning via a graphical interface or from the GIMP is not supported "
+#~ "yet for your device. More information you will find in the \"/usr/share/"
+#~ "doc/hpoj-0.8/ptal-hp-scan.html\" file on your system. If you have an HP "
+#~ "LaserJet 1100 or 1200 you can only scan when you have the scanner option "
+#~ "installed.\n"
+#~ "\n"
+#~ "Do not use \"scannerdrake\" for this device!"
+#~ msgstr ""
+#~ "Votre appareil multifonction HP a été configuré automatiquement pour ętre "
+#~ "capable de scanner. Maintenant vous pouvez scanner avec Ť tal-hp %s "
+#~ "scan ... ť dans une fenętre de commandes. L'acquisition par interface "
+#~ "graphique ou grace ŕ Ť Gimp ť n'est pas encore suportée avec cet "
+#~ "appareil. Vous trouverez plus d'informations dans le fichier /usr/share/"
+#~ "doc/hpoj-0.8/ptal-hp-scan.html sur votre systčme. Si vous avez une HP "
+#~ "LaserJet 1100 ou 1200, vous pouvez seulement scanner si vous avez "
+#~ "l'option Ť scanner ť installée.\n"
+#~ "\n"
+#~ "N'utilisez pas Ť scannerdrake ť pour cet appareil ! "
+
+#~ msgid "Use Hard Drive with daemon"
+#~ msgstr "celle sur Disque dur / NFS"
+
+#~ msgid "Use FTP with daemon"
+#~ msgstr "celle par FTP"
+
+#~ msgid "Package List to Install"
+#~ msgstr "Liste des paquetages ŕ installer"
+
+#~ msgid "proftpd"
+#~ msgstr "proftpd"
+
+#~ msgid "sshd"
+#~ msgstr "sshd"
+
+#~ msgid "webmin"
+#~ msgstr "webmin"
+
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
+
+#~ msgid "Setting security level"
+#~ msgstr "Mise en place du niveau de sécurité"
+
+#~ msgid "Graphics card"
+#~ msgstr "Carte graphique"
+
+#~ msgid "Select a graphics card"
+#~ msgstr "Choisissez une carte graphique"
+
+#~ msgid "Choose a X driver"
+#~ msgstr "Choisissez un pilote d'affichage X11"
+
+#~ msgid "X driver"
+#~ msgstr "serveur X11"
+
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "Attention : tester cette carte vidéo peut bloquer votre ordinateur"
+
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "VGA standard, 640x480 ŕ 60 Hz"
+
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 ŕ 56 Hz"
+
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "Compatible 8514, 1024x768 ŕ 87 Hz entrelacé (sans 800x600)"
+
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 ŕ 87 Hz entrelacé, 800x600 ŕ 56 Hz"
+
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Super VGA étendu, 800x600 ŕ 60 Hz, 640x480 ŕ 72 Hz"
+
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "SVGA non entrelacé, 1024x768 ŕ 60 Hz, 800x600 ŕ 72 Hz"
+
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "SVGA haute fréquence, 1024x768 ŕ 70 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Multi-fréquences supportant le 1280x1024 ŕ 60 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Multi-fréquences supportant le 1280x1024 ŕ 74 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Multi-fréquences supportant le 1280x1024 ŕ 76 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Moniteur supportant le 1600x1200 ŕ 70 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Moniteur supportant le 1600x1200 ŕ 76 Hz"
+
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr ""
+#~ "La taille totale pour les groupes sélectionnés est approximativement de %"
+#~ "d Mo.\n"
+
+#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
+#~ msgstr ""
+#~ "Si vous voulez réduire la taille de votre installation,\n"
+#~ "choisissez le pourcentage de paquetages que vous souhaitez installer.\n"
+#~ "\n"
+#~ "Un faible pourcentage ne conservera que les paquetages les plus "
+#~ "importants.\n"
+#~ "Un pourcentage de 100%% installera tous les paquetages sélectionnés."
+
+#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
+#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
+#~ msgstr ""
+#~ "Vous n'avez d'espace sur votre disque que pour %d%% de ces paquetages.\n"
+#~ "\n"
+#~ "Si vous souhaitez réduire encore la taille de l'installation,\n"
+#~ "choisissez un pourcentage encore plus faible.\n"
+#~ "\n"
+#~ "Un faible pourcentage ne conserve que les paquetages les plus "
+#~ "importants.\n"
+#~ "Un pourcentage de %d%% installera le maximum possible de packages."
+
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr ""
+#~ "Vous pourrez affiner la sélection des paquetages lors de la prochaine "
+#~ "étape."
+
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Pourcentage de paquetages ŕ installer"
+
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Choisissez le niveau de sécurité"
diff --git a/perl-install/share/po/ga.po b/perl-install/share/po/ga.po
index 30649a12a..e43baf63e 100644
--- a/perl-install/share/po/ga.po
+++ b/perl-install/share/po/ga.po
@@ -1,117 +1,123 @@
-# Irish translations for DrakX, the Mandrake Installer.
-# Copyright (C) 1999 Free Software Foundation, Inc.
-# Irish Linux Users Group <ilug@linux.ie>, 1999
-#
-# Credits where due:
-# Proinnsias Breathnach <breatpro@dublin.ml.com-nospam>
-# Donncha Ó'Caoimh <donncha.ocaoimh@tradesignals.com-nospam>
-# Barra Ó'Caoimh <Care of donncha.ocaoimh@tradesignals.com-nospam>
-# John McDonnell <johnmc@student.nuigalway.ie-nospam>
-# <Alastair McKinstry <mckinstry@computer.org>
-# Who've all contributed so far.
-# Proinnsias 16-Dec-1999
-#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 1999-12-16 10:33+0100\n"
-"Last-Translator: Proinnsias Breathnach <breatpro@dublin.ml.com>\n"
-"Language-Team: Gaeilge <ga@li.org>\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2000-08-24 12:00-0000\n"
+"Last-Translator: Alastair McKinstry <mckinstry@computer.org>\n"
+"Language-Team: Irish <ga@li.org>\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=iso-8859-1\n"
+"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Cumraigh gach cinn ar leith"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Cumraigh carta \"%s\" (%s) amhain"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB nó níos mó"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Roghnaigh freastalaí X"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X freastalaí"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Cumraíochti gach cinn iolrach"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Carta Grafach"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Roghnaigh an méid cuimhne atá id' charta grafachach"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Roghnaigh carta grafachach"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "Cumraíocht XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Roghnaigh freastalaí X"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X freastalaí"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Cumraigh gach cinn ar leith"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Roghnaigh freastalaí X"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X freastalaí"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Cumraigh carta \"%s\" (%s) amhain"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "Freastalaí XFree86: %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s le luadghearú crua-earraí 3D"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s le luadghearú crua-earraí 3D"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "Freastalaí XFree %s le luasghearú crua-earraí 3D TRIALACH"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -119,31 +125,52 @@ msgid ""
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Cumraíocht XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Roghnaigh an méid cuimhne atá id' charta grafachach"
+#: ../../Xconfig/card.pm_.c:445
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Roghnaigh cumraíocht an freastalaí"
+#: ../../Xconfig/main.pm_.c:60
+#, fuzzy, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr "Coimead an cumraíocht IP atá ann"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Roghnaigh scáileán"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Scáileán"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Socraithe"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Gnáth"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Leasú"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -157,506 +184,325 @@ msgid ""
" If in doubt, choose a conservative setting."
msgstr ""
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Ráta athnuachana cothrománach"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Ráta athnuachana ingearach"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Níl aon scáileán cumraithe"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Níl aon carta grafachach cumraithe"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Níl aoin réiteach cumraithe"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Trialaigh an cumraíocht"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 dath (8 giotáin)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"bain trial as roinnt paraiméadair a athrú"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 míle dath (15 giotáin)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Tharla Earráid:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 míle dath (16 giotáin)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Ag éalú i %d siocand"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 milliún dath (24 giotáin)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "An bhfuil seo ceart?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 billiún dath (32 giotáin)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Tharla earráid, bain trial as roinnt paraiméadair a athrú"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Réiteachaí"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Réiteach"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Roghnaigh Réiteach agus an méid dath"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Carta Grafach: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Freastalaí XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Mór"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Cealaigh"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Ceart go Leor"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Mód Saineolaí"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Taispéan gach ceann"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Réiteachaí"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Trialaigh an cumraíocht"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Leagan amach eocharchlára: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Cineál luchóg: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Gaireas luchóige: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Scáileán: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Scáileán HorizSync: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Scáileán VertRefresh: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Carta Grafach: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Carta Grafach: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Cuimhne grafach: %s kb\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, fuzzy, c-format
msgid "Color depth: %s\n"
msgstr "Scáileán VertRefresh: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Réiteachaí: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Freastalaí XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Tiománaí XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Ag ullmhú cumraíocht X-Windows"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Céard a theastaíonn uait a dhéanamh?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Athraigh Scáileán"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Athraigh carta grafach"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Athraigh cumraíocht an freastalaí"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Athraigh Réiteach"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Taispeán Eolas"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Bain trial as arís"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Éalaigh"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, fuzzy, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr "Coimead an cumraíocht IP atá ann"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X ag tús"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Is féidir linn do ríomhaire a shocrú le X a thosnú i ndhiadh bootáil.\n"
"An dteastaíonn uait go dtosnófar X nuair a aththosnítear an ríomhaire?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Éirigh as le do thoil agus Crtl-Alt-BackSpace a úsáid"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 dath (8 giotáin)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 míle dath (15 giotáin)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 míle dath (16 giotáin)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milliún dath (24 giotáin)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 billiún dath (32 giotáin)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB nó níos mó"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Gnáth VGA, 640x480 ag 60Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 ag 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Cinéal 8514, 1024x768 ag 87 Hz Idirdhuillith (gan 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 ag 87 Hz Idirdhuillithe, 800x600 ag 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "SVGA Leathnaithe, 800x600 ag 60 Hz, 640x480 ag 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "SVGA Neamh-idirdhuillithe, 1024x768 ag 60 Hz, 800x600 ag 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "SVGA d'árd minicíocht, 1024x768 ag 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Scáileán ilmhinicíocht a bhfuil in ann do 1280x1024 ag 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Scáileán ilmhinicíocht a bhfuil in ann do 1280x1024 ag 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Scáileán ilmhinicíocht a bhfuil in ann do 1280x1024 ag 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Scáileán a bhfuil in ann do 1600x1200 ag 70Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Scáileán a bhfuil in ann do 1600x1200 ag 76Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr ""
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr ""
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "Roghnaigh rang feistiú"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr ""
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "Feistiú LILO/grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO le chlár teacs"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO le Chlár Graphaice"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Bootáil as DOS/Windows (loadin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Príomhroghanna bootáil"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Ríomhchlar Tosnaithe a úsáid "
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Feistiú cód tosnaithe"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Gaireas bootáil"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr ""
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Compact"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "compact"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Mód fís"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr ""
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Pasfhocal"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Pasfhocal (arís)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Teorannaigh roghanna líne ordú"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "teorannaigh"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Glan /tmp nuair a thosnaigh an coráis"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr ""
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr ""
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Tabhair na Méid Cuimhne as MB"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Aththrialaigh"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Ní mar a chéile na pasfhocail"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Scéal Tosnú"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr ""
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr ""
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr ""
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr ""
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "OS Loiceadh?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -665,81 +511,81 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Suim"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Críochnithe"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Athraigh"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Cén sort iontráil a suimigh do"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "CO Eile (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "CO Eile (MunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "CO Eile (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Iomha"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Append"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Léamh-Scríobh"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Table"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Baolach"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Lipéad"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Gnáth"
@@ -772,53 +618,72 @@ msgstr "Níl aon ranna agat!"
msgid "This label is already used"
msgstr "Is ann cheana don ainm úsáideora seo"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Fuair %s %s comhéadan"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "An bhfuil ceann eile agat?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "An bhfuil comhéadan %s agat?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Níl"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Tá"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Leámh an t-eolais crua-earra"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Ag feistáil tiomanaí do %s, carta %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(modíl %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Roghachais modúil:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr ""
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -830,115 +695,101 @@ msgid ""
"not cause any damage."
msgstr ""
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr ""
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Cumraigh roghanna"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Roghachais modúil:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
"Do you want to try again with other parameters?"
msgstr ""
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr ""
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Tá an pasfhocal seo ro-shimplí"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr ""
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Is ann cheana don ainm úsáideora seo"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Is ann cheana don ainm úsáideora seo"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Suimigh úsáideoir"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
"%s"
msgstr ""
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr ""
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Fíor ainm"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Ainm úsáideora"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Blaosc"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Dealbh"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Uath-Logann"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -947,181 +798,162 @@ msgstr ""
"Is féidir linn do ríomhaire a shocrú le X a thosnú i ndhiadh bootáil.\n"
"An dteastaíonn uait go dtosnófar X nuair a aththosnítear an ríomhaire?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Roghnagih an úsáidoer gneás:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Roghnaigh an Bainistéoir Fhuinneoga a úsásd:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr ""
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Gach Rud"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr "Suimigh úsáideoir"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Socraithe"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr "Ag Tosnaigh CUPS"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Cealaigh"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr ""
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Bocht"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr ""
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Árd"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Árd"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranóid"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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 ""
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
msgstr ""
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Roghnaigh liebhéal slándáil"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
#, fuzzy
msgid "Security level"
msgstr "Roghnaigh liebhéal slándáil"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Roghnaigh cumraíocht an freastalaí"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1142,52 +974,52 @@ msgstr ""
# FIXME
#. -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_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Fáile go GRUB, an roghnóir Choráis "
#. -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_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
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_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
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_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
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_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr ""
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr ""
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Deasc"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Clár Tosnú"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr ""
@@ -1200,15 +1032,19 @@ msgstr ""
msgid "Boot Style Configuration"
msgstr "Cumraíocht Stíl Tosnú"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
-msgstr "/C_omhad"
+msgstr "/_Comhad"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Comhad/_Ealu"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>E"
@@ -1243,12 +1079,12 @@ msgstr "Mód Yaboot"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Cumraigh"
@@ -1258,7 +1094,7 @@ msgid "System mode"
msgstr "Mód Coras"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr ""
#: ../../bootlook.pm_.c:148
@@ -1269,14 +1105,16 @@ msgstr ""
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "Ceart go Leor"
@@ -1325,7 +1163,7 @@ msgstr "Ní féidir liom rann eile a cur isteach"
msgid "Screenshots will be available after install in %s"
msgstr ""
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Fraince"
@@ -1333,7 +1171,7 @@ msgstr "Fraince"
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Belgáiris"
@@ -1362,11 +1200,12 @@ msgstr "Ioruais"
msgid "Sweden"
msgstr "Amharc"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr "Iodálais"
@@ -1376,7 +1215,7 @@ msgstr "Iodálais"
msgid "Austria"
msgstr "srathach"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1384,8 +1223,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Léigh go curamach"
@@ -1396,11 +1235,12 @@ msgid ""
"at the beginning of the disk"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Earráid"
@@ -1408,11 +1248,11 @@ msgstr "Earráid"
msgid "Wizard"
msgstr "Draíodoir"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Roghnaigh gníomh"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1423,148 +1263,153 @@ msgstr ""
"Molaim dhuit an rann sin a athmhéadú ar dtús\n"
"(roghnaigh an rann agus brú ar \"Athméidigh\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Roghnaigh rann le do thoil"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Sonraí"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Malairte"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Folamh"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Eile"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Cineál córais-comhadlanna"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Cruthaigh"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Cineál"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Scríos"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose a partition"
msgstr "Roghnaigh gníomh"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose another partition"
msgstr "Cruthaigh rann nua"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Leasú"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Lean ar aghaidh ar aon nós?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Éalaigh gan sabháil"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Éalaigh gan an clár-ranna a scríobh?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Glan gach ceann"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Mór"
+
+#: ../../diskdrake/interactive.pm_.c:263
#, fuzzy
msgid "Hard drive information"
msgstr "Eolas R-Phost"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Tá na ranna príofa uilig úsáidthe"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Ní féidir liom rann eile a cur isteach"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1572,34 +1417,34 @@ msgstr ""
"Le breis ranna a bheith agat, dealaigh ceann amháin le bheith in ann "
"rannsínithe a cruthú"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr "Scriobh clár-ranna"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr "Scriobh clár-ranna"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr "Scriobh clár-ranna"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Roghnaigh Comhad"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1607,11 +1452,11 @@ msgstr ""
"Níl an méid céanna ar an rann cúltaca\n"
"Lean ar aghaidh ar aon nós?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Rabhadh"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1619,254 +1464,266 @@ msgstr ""
"Cur diosca flapach sa dioscthiomant\n"
"Caillfear gach sonra ar an dhiosca seo"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Ag iarraidh an clár-ranna a tarrtháil"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
#, fuzzy
msgid "Detailed information"
msgstr "Eolas R-Phost"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Roghnachais"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Athméidigh"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Bog"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formáidigh"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Cur le RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Cur le LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Bain ó RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Bain ó RAID"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Athraigh RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Cruthaigh rann nua"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Teascán tosasch: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Méid i MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Cineál córas-comhadlanna:"
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Tosaíocht: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+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/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Ag formáidiú comhad 'loopback' %s"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Athraigh cineál ranna"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
#, fuzzy
msgid "Which filesystem do you want?"
msgstr "Cén rann atá uait?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Ag ríomhadh teorainn na córais-comhadlanna FAT"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Ag athméadú"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
#, fuzzy
msgid "All data on this partition should be backed-up"
msgstr "caillfear gach sonra ar an rann seo"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Roghnaigh an méid nua"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
#, fuzzy
msgid "New size in MB: "
msgstr "Méid i MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Cén diosca ag a dteastaíonn uait é a bhogadh?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Teascán"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Cén tescán ag a dteastaíonn uait é a bhogadh?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Ag bogadh"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Ag bogadh rann..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Roghnaigh RAID atá ann le méadú"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "nua"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
#, fuzzy
msgid "Choose an existing LVM to add to"
msgstr "Roghnaigh RAID atá ann le méadú"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "ainm LVM?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr "Fíor ainm"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
#, fuzzy
msgid "Mount options"
msgstr "Roghachais modúil:"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
-msgstr "gaireas"
+msgstr "feist"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "leibhéal"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "méid smután"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Cén sort rannú atá ort?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Roghnaigh pacáistí ..."
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1878,7 +1735,7 @@ msgstr ""
"Má tá tú ag úsáid LILO ní oibróidh sé, nó níl /boot uait muna n-úsáideann tú "
"LILO"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1889,144 +1746,144 @@ msgstr ""
"sorcóir ar an dhiosca, agus níl aon rann /boot agat.\n"
"Má tá tú chun LILO a úsáid, beidh ort rann /boot a cruthú ar ball."
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"So be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Scríobhfar clár diosca %s go dhiosca!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Beidh ort an ríomhaire a aththosnú sula ndéanfar an athrú"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Ag formáidiú"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Ag formáidiú comhad 'loopback' %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Ag formáidiú rann %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Hide files"
msgstr "teip ar 'mkraid'"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr "Cruthaigh rann nua"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Cruthaigh rann nua"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Réiteachaí: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Gaireas: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Litir Dioscthiománt DOS: %s (buile faoi thuraim)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Cineál: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Ainm: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Tús: teascán %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Méid: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s teascáin"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Sorcóir %d go sorcóir %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Formáidithe\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Neamhformáidithe\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2034,27 +1891,27 @@ msgstr ""
"Rann tosaithe de ghnáth\n"
" (do thosnú MS-DOS, ní lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Leibhéal %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Méid smután %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "Dioscaí RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2062,7 +1919,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2070,65 +1927,65 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Méid: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Céimseasamh: %s sorcóir, %s ceann, %s teascán\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
#, fuzzy
msgid "Info: "
msgstr "Eolas"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "Dioscaí LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Cinéal tabla rann: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "ar bhús %d, id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Roghnachais: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Cineál córas-comhadlanna:"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Ní mar a chéile na pasfhocail"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2139,36 +1996,66 @@ msgstr "Athraigh cineál ranna"
#: ../../diskdrake/removable_gtk.pm_.c:28
#, fuzzy
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Roghnaigh rann le do thoil"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Deimniú"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Idirlíon"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Ainm úsáideora"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Ainm úsáideora"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "Fearannas NIS"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "freastalaí DNS"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "Formáidiú %s de %s teipithe"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "níl a fhios agam conas %s a formáidiú go %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr ""
@@ -2185,67 +2072,319 @@ msgstr ""
msgid "server"
msgstr "Freastalaí"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr ""
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr ""
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr ""
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr ""
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Earráid ag oscailt %s do scríobh: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Tharla earráid - ní fhuaireadh aon gaireas ar a bhféadfaí córais-comhadlanna "
"nua a cruthu. Ba chóir duit do chuid crua-earraí a seiceáil le cúis an fadhb "
"a aimsiú"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Níl aon ranna agat!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Scríos Printéir"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Gnáth"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Cuimhne Charta (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Ag formáidiú"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Athraigh cineál ranna"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Éalaigh"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/C_úidiú"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/C_úidiú"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Cúidiú/_Faoi..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Luchóg"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Cuimhne Charta (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Cealaigh"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Luchóg"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Cuntas"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Deimniú"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Roghnaigh Comhad"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Gaireas na hInneal Geata"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 cnaipí"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "leagan `kernel'"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Leámh an t-eolais crua-earra"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Taispeán Eolas"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Cumraigh luchóg"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "Pointe taca dublach %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Fan tamall"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d siocand"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Scríos Printéir"
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+msgid "Author:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2259,7 +2398,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2330,9 +2469,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2514,7 +2652,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2526,9 +2664,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2574,21 +2711,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2604,9 +2740,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
#: ../../help.pm_.c:347
@@ -2627,9 +2763,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -2739,38 +2874,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -2844,11 +2973,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -2872,7 +3001,7 @@ msgid ""
"choose this unless you know what you are doing."
msgstr ""
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -2887,7 +3016,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -2902,7 +3031,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -2918,29 +3047,29 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -2962,7 +3091,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -2984,7 +3113,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -2992,7 +3121,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3013,7 +3142,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3026,7 +3155,7 @@ msgid ""
"you will need a boot disk in order to boot those other operating systems!"
msgstr ""
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3035,29 +3164,28 @@ msgid ""
"(MBR)\"."
msgstr ""
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3066,7 +3194,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3091,11 +3219,11 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3105,9 +3233,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3119,7 +3246,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" 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"
@@ -3145,7 +3272,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3172,18 +3299,17 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3191,12 +3317,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3212,14 +3337,14 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3230,7 +3355,7 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3238,12 +3363,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3258,26 +3383,26 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr ""
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Cur isteach diosca sa dioscthiomant %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Earráid ag léamh comhad %s"
@@ -3302,7 +3427,7 @@ msgstr ""
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -3310,73 +3435,76 @@ msgstr ""
"\n"
"x1Lean ar aghaidh ar aon nós?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr ""
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Úsáid spás saor"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr ""
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr ""
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
#, fuzzy
msgid "There is no existing partition to use"
msgstr "Ag iarraidh an clár-ranna a tarrtháil"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr ""
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
#, fuzzy
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Cén rann a bhfuil tú ag iarraidh úsáid mar rann fréamhach"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Roghnaigh an méid nua"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Méid i MB do Rhann Fréamhach:"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Méid i MB do rhann malairte:"
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr ""
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr ""
-#: ../../install_interactive.pm_.c:130
+#: ../../install_interactive.pm_.c:131
#, fuzzy
-msgid "Computing Windows filesystem bounds"
+msgid "Resizing Windows partition"
msgstr "Ag ríomhadh teorainn na córais-comhadlanna FAT"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
"the following error occured: %s"
msgstr ""
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -3388,64 +3516,64 @@ msgid ""
"When sure, press Ok."
msgstr ""
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr ""
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "rann %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Theip ar uathathmhéadú FAT: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Glan diosca ina iomlán"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Dealaigh Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr ""
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Úsáid fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, don't forget to save using `w'"
msgstr ""
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
#, fuzzy
msgid "You don't have enough free space on your Windows partition"
msgstr "Níl aon ranna agat!"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
#, fuzzy
msgid "I can't find any room for installing"
msgstr "Ní féidir liom rann eile a cur isteach"
@@ -3454,16 +3582,16 @@ msgstr "Ní féidir liom rann eile a cur isteach"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Theip ar rannú: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Ag tosnú suas an ghréasán"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Ag dúnadh síos an ghreasán"
@@ -3475,12 +3603,12 @@ msgstr ""
"Ta earraid ann, níl a fhios agam conas é a cheartú.\n"
"Lean ort, ar do phriacal féin."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Pointe taca dublach %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3488,12 +3616,12 @@ msgid ""
"\"\n"
msgstr ""
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Fáilte go %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Níl dioscthiománt flapach ar fáil"
@@ -3503,195 +3631,161 @@ msgstr "Níl dioscthiománt flapach ar fáil"
msgid "Entering step `%s'\n"
msgstr "Ag tosnú ar céim `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Rann Feistiú"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Roghnú Grúpa Pacáistí"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Méid iomlán: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Pacáiste mícheart"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Ainm: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Leagan: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Méid: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Tábhacht: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Feistiú"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Sabháil ar dhiosca flapach"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
#, fuzzy
msgid "Updating package selection"
msgstr "Roghnú Grúpa Pacáistí"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
#, fuzzy
msgid "Minimal install"
msgstr "Eirigh as Feistiú"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Ag Feistiú"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Ag meastú"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Am fagtha "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Fan tamall, ag ullmhaigh feistiú"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d pacáistí"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Ag feistiál pacáiste %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Aontaigh"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Tarrtháil"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -3701,17 +3795,17 @@ msgid ""
"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Lean ar aghaidh ar aon nós?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr ""
@@ -3756,11 +3850,11 @@ msgstr "Tharla earráid"
msgid "Do you really want to leave the installation?"
msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Ceadúnas"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -3775,7 +3869,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -3881,113 +3975,117 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Eocharclár"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Cén leagan amach atá ar d'eocharchlársa"
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Cén rann feistiú atá uait?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Feistiúi/Uadgrádaigh"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Feistigh nó uasgrádaigh ?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Molta"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Saineolaí"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade"
msgstr "Uasgrádaigh"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr "Roghnú Grúpa Pacáistí"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Cén cinéal luchóg atá agat?"
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Gaireas luchóige"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Cumraigh Cártaí PCMCIA"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Ag cumraigh IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "níl aon ranna saora ann"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, fuzzy, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -3995,7 +4093,7 @@ msgstr ""
"Ni féidir liom an tábla rainn a léamh, tá máchaillí ann :(\n"
"Leanfaidh mé orm ag cealú droch rainn"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4003,152 +4101,155 @@ msgstr ""
"Theip ar DiskDrake an tabla rainn a léamh i gceart.\n"
"Lean ort, ar do phriacal féin!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Roghnaigh na ranna atá le formáidiú"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Rann Fréamhach"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Céard é an rann fréamhach (/) ded' chóras?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
#, fuzzy
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Beidh ort an ríomhaire a aththosnú sula ndéanfar an athrú"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Roghnaigh na ranna atá le formáidiú"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Ag formáidiú ranna"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Nil dothain spas malartu chun insealbhu, chuir leis an spas"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Ag curdach do na pacáistí atá ar fáil"
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "Ag curdach do na pacáistí atá ar fáil"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Ag cúrdach pacáistí le húasgrádú"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Roghnaigh pacáistí ..."
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Críochnaithe (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Íosta (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Molta (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Aisig ó dhiosca flapach"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Aisig ó dhiosca flapach"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Roghnú Grúpa Pacáistí"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Cur isteach diosca sa dioscthiomant %s"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Sabháil ar dhiosca flapach"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
#, fuzzy
msgid "Type of install"
msgstr "Roghnaigh pacáistí a feistiú ..."
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
#, fuzzy
msgid "With X"
msgstr "Fan tamall"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
"If only some CDs are missing, unselect them, then click Ok."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr ""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Ag Ullmhaigh feistiú"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4157,23 +4258,23 @@ msgstr ""
"Ag feisteáil pacáiste %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Cumraíocht Iar-feistú"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Cur isteach diosca sa dioscthiomant %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Cur isteach diosca folamh sa dioscthiomant %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -4210,159 +4311,190 @@ msgid ""
"USA"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Cén ceann do chrois ama"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "An bhfuil an clog cruaearrach ar GMT?"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "Freastalaí NTP"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Scrios Freastalaí CUPS"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Gan Printéir"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "An bhfuil ceann eile agat?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Coimriú"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Luchóg"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Am Críos"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Printéir"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "Carta ISDN"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Carta Fuaim"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "Carta Telefís"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Dealaigh Windows(TM)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Chomaid Áitiúl"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Socraigh pasfhocal root"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Gan pasfhocal"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Deimniú"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "Deimniú LDAP"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "Freastalaí LDAP"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "Deimniú NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "Fearannas NIS"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "Freastalaí NIS"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Deimniú LDAP"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Fearannas NIS"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "Freastalaí NTP"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -4380,19 +4512,19 @@ msgid ""
"drive and press \"Ok\"."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Cead dioscthiománt flapach"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Dara dioscthiomáint flapach"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Scipeáil"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4408,7 +4540,7 @@ msgid ""
"%s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -4417,29 +4549,29 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Brón orm, níl aon dioscthiománt flapach ar fáil"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
#, fuzzy
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Roghnaigh na ranna atá le formáidiú"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Cur isteach diosca sa dioscthiomant %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Ag Cruthaigh diosca thosnaithe"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Ag Ullmhaigh ríomhchlar thosnaithe"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4447,27 +4579,27 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
#, fuzzy
msgid "Do you want to use aboot?"
msgstr "Céard a theastaíonn uait a dhéanamh?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
#, fuzzy
msgid "Installing bootloader"
msgstr "Feistigh cód tosnaithe"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4478,25 +4610,25 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Cur isteach diosca folamh sa dioscthiomant %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -4507,19 +4639,23 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
#, fuzzy
msgid "Generate auto install floppy"
msgstr "Cruthaigh flapach bootáil"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4528,15 +4664,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Athlódaigh"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
#, fuzzy
msgid "Save packages selection"
msgstr "Roghnú Grúpa Pacáistí"
@@ -4564,418 +4700,402 @@ msgstr ""
msgid "Choose a file"
msgstr "Roghnaigh gníomh"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Réamhioaíocht"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Fan tamall"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Eolas"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr ""
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr ""
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Droch rogha, aththrialaigh\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Do rogha? (gnás %s)"
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Do rogha? (gnás %s)"
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Roghnachais: %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr "Céard a theastaíonn uait a dhéanamh?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Do rogha? (gnás %s)"
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Ceichís (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Gearmáinis"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Spáinis"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Fionlainnais"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Francaigh"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Ioruais"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Polainnais"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Ruislís"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr ""
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Méarchlár UK"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Meárchlár US"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr ""
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr ""
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr ""
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr ""
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr ""
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgáiris"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Bulgáiris"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Bulgáiris"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr ""
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Belarúisis"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Eilvéis (Stíl Ghearmánais)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Eilvéis (Stíl Francaigh)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Ceichís (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Gearmáinis (gach meachlár marbh)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Danmharghais"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (Meiriceá)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Ioruais)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Meiriceá)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Eastóinis"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr ""
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr ""
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Greicís"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Ungárais"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Cróitis"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr ""
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr ""
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Iodálais"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Seápainis (106 eochair)"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Méarchlár Chóiris"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Mheirceá Theas"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr ""
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr ""
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr ""
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr ""
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
#, fuzzy
msgid "Latvian"
msgstr "Áit"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr ""
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr ""
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr ""
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr ""
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr ""
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr ""
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Rúisis (Yawerty)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Rúisis (Yawerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Rúisis (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr ""
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slóbaicis (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slóbaicis (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr ""
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Table"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr ""
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Meárchlár US"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr ""
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr ""
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr ""
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Mearchlár US (idirnaisiúnta)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr ""
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -4988,7 +5108,31 @@ msgstr ""
msgid "Remove the logical volumes first\n"
msgstr ""
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Uimhir fón"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Formáidigh ranna"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5031,10 +5175,6 @@ msgstr "1 Cnaipe"
msgid "Generic 2 Button Mouse"
msgstr "Luchóg 2-cnaipe Loiceadh"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Gnáth"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Rothar"
@@ -5099,38 +5239,54 @@ msgstr "Ar bith"
msgid "No mouse"
msgstr "Luchóg ar bith"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Teastáil an luchóg, le do thoil"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr ""
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "BOG DO ROTHAR!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Fionnlainnis"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr ""
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr ""
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "An bhfuil seo ceart?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Eolas"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr ""
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr ""
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr ""
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr ""
@@ -5170,7 +5326,7 @@ msgid ""
"I cannot set up this connection type."
msgstr ""
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Roghnaigh an cláréadan ghréasán"
@@ -5184,7 +5340,7 @@ msgstr "Cén cinéal luchóg atá agat?"
msgid "no network card found"
msgstr "ní fuaireathas cárta gréasánú"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Cumraigh gréasánú"
@@ -5196,15 +5352,15 @@ msgid ""
"such as ``mybox.mylab.myco.com''."
msgstr ""
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "ÓstAinm"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Draíodóir Cumraíocht Gréasánú"
@@ -5252,7 +5408,7 @@ msgstr "Cumraigh ISDN"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
#: ../../network/isdn.pm_.c:183
@@ -5271,12 +5427,12 @@ msgstr "Trialaigh an cumraíocht"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr ""
#: ../../network/isdn.pm_.c:199
@@ -5300,7 +5456,8 @@ 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"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
#: ../../network/isdn.pm_.c:210
@@ -5312,13 +5469,13 @@ msgid "Continue"
msgstr "Lean"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Cén sort carta ISDN atá uait?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
#: ../../network/isdn.pm_.c:244
@@ -5334,102 +5491,102 @@ msgstr "Cén cinéal luchóg atá agat?"
msgid "Dialup options"
msgstr "Roghanna 'Dialup'"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Ainm Nasc"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Uimhir fón"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Ainm Login:"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Script-bhunaithe"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Teirminéal-bhunaithe"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Ainm Fearannas"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
#, fuzzy
msgid "First DNS Server (optional)"
msgstr "Cead Freastalaí DNS"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
#, fuzzy
msgid "Second DNS Server (optional)"
msgstr "Dara Freastalaí DNS"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
#, fuzzy
msgid ""
"\n"
"You can reconfigure your connection."
msgstr "Cumraigh nasc ghréasán"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
#, fuzzy
msgid "You are currently connected to internet."
msgstr "Bainteach le hIdirlíon"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid "You are not currently connected to Internet."
msgstr "Cén diosca ag a dteastaíonn uait é a bhogadh?"
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Connect"
msgstr "Lean"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
#, fuzzy
msgid "Disconnect"
msgstr "Cumraigh nasc ghréasán"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "Cumraigh gréasánú"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Nasc na hIdirlíon agus cumraíocht"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr "Cumraigh nasc ghréasán"
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -5441,12 +5598,12 @@ msgid ""
"Press OK to continue."
msgstr ""
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Cumraíocht Gréasánú"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -5454,105 +5611,111 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"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 ""
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
#, fuzzy
msgid "Choose the profile to configure"
msgstr "Roghnagih an úsáidoer gneás:"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Mód Saineolaí"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr ""
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, fuzzy
msgid "Normal modem connection"
msgstr "Cumraigh nasc ghréasán"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, fuzzy, c-format
msgid "detected on port %s"
msgstr "Pointe taca dublach %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, fuzzy
msgid "ISDN connection"
msgstr "Cumraigh ISDN"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy
msgid "ADSL connection"
msgstr "Nasc LAN"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy, c-format
msgid "detected on interface %s"
msgstr "Cláréadan Gréasán"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "cable connection detected"
msgstr "Cumraigh nasc ghréasán"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "Nasc LAN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Roghnaigh na ranna atá le formáidiú"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
#, fuzzy
msgid "Internet connection"
msgstr "Nasc Printéir"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
#, fuzzy
msgid "Do you want to start the connection at boot?"
msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Cumraíocht Gréasánú"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -5560,73 +5723,78 @@ msgid ""
"%s"
msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"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 ""
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
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 ""
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Ag cumrú gléas gréasánú %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, fuzzy, c-format
msgid " (driver %s)"
msgstr " (tiomáint $module)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "Seoladh IP"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr ""
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Uath-IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Cruthaigh an diosca "
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr ""
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -5634,374 +5802,379 @@ msgid ""
"You may also enter the IP address of the gateway if you have one"
msgstr ""
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "freastalaí DNS"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Gaireas na hInneal Geata"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Cumraigh seach-freastalaí"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "Seach-HTTP"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "Seach-FTP"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr ""
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr ""
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Cumraigh Idirlíon"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
#, fuzzy
msgid "Do you want to try to connect to the Internet now?"
msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
#, fuzzy
msgid "Testing your connection..."
msgstr "Cumraigh nasc ghréasán"
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
#, fuzzy
msgid "The system is now connected to Internet."
msgstr "Cén diosca ag a dteastaíonn uait é a bhogadh?"
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr ""
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
msgstr ""
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Cumraíocht Idirlíon."
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr ""
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ na Carta"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Cuimhne Charta (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "I/A Carta"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "I/A_0 Carta"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "I/A_1 Carta"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
#, fuzzy
msgid "Your personal phone number"
msgstr "Uimhir fón"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr ""
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Uimhir fón"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
#, fuzzy
msgid "Provider dns 1 (optional)"
msgstr "Roghanna Printéir"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
#, fuzzy
msgid "Provider dns 2 (optional)"
msgstr "Roghanna Printéir"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
#, fuzzy
msgid "Choose your country"
msgstr "Roghnaigh mhéarchlár"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr ""
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection speed"
msgstr "Athraigh cineál ranna"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Ainm Nasc"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr ""
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Pasfhocal"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr ""
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr ""
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr ""
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Droch comhad chúltaca"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Earráidh ag scríobh comhad %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
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 trash"
msgstr ""
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "riachtanas"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "tábhachtach"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "an-dheas"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "deas"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "b'fhéidir"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr ""
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr ""
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Printéir áitiúl"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Scríos Printéir"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "Scrios Freastalaí CUPS"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Scrios freastalaí lpd"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
#, fuzzy
msgid "Network printer (TCP/Socket)"
msgstr "Printéir Gréasán (lpd)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Freastalaí Printéir"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Gaireas Printéir (URI)"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr "Printéir áitiúl"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr "Scríos Printéir"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Earráidh ag scríobh comhad %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(modíl %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP freastalaí SMP"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
#, fuzzy
msgid " (Default)"
msgstr "Gnáth"
@@ -6021,12 +6194,12 @@ msgid ""
"printers will be automatically detected."
msgstr ""
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "cumraíocht"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "Scrios Freastalaí CUPS"
@@ -6056,7 +6229,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr ""
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr ""
@@ -6065,7 +6238,7 @@ msgstr ""
msgid "CUPS server IP"
msgstr "IP freastalaí SMP"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Poirt"
@@ -6074,21 +6247,13 @@ msgstr "Poirt"
msgid "Automatic CUPS configuration"
msgstr "Cumraigh ADSL"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "Gan Printéir"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6101,14 +6266,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr "Printéir áitiúl"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6126,12 +6291,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "Scríos Printéir"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6145,11 +6310,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6159,35 +6324,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "Scríos Printéir"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "Scríos Printéir"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "Pointe taca dublach %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
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, ..., "
@@ -6195,43 +6364,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Gaireas Printéir (URI)"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr "Printéir áitiúl"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6239,7 +6408,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6247,100 +6416,110 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Cén cinéal luchóg atá agat?"
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Gaireas Printéir (URI)"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "Cumraigh Idirlíon"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "Ag feistiál pacáiste %s"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
+msgstr "Ag feistiál pacáiste %s"
+
+#: ../../printerdrake.pm_.c:524
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing mtools packages..."
msgstr "Ag feistiál pacáiste %s"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr ""
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
msgstr ""
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
#, fuzzy
msgid "Remote host name"
msgstr "ÓstAinm"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
#, fuzzy
msgid "Remote printer name"
msgstr "Scríos Printéir"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Scríos Printéir"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Roghanna Printéir SMB (Fuinneoga 9x/NT)"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -6348,35 +6527,35 @@ msgid ""
"access and any applicable user name, password, and workgroup information."
msgstr ""
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "freastalaí óstann SMB"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP freastalaí SMP"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Comh. ainm"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Grupa na hOibre"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -6400,7 +6579,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -6409,7 +6588,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -6417,11 +6596,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Roghanna Printéir NetWare"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
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 "
@@ -6429,28 +6608,28 @@ msgid ""
"name and password."
msgstr ""
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Freastalaí Printéir"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr ""
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Roghanna Printéir NetWare"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -6458,59 +6637,55 @@ msgid ""
"hardware."
msgstr ""
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
#, fuzzy
msgid "Printer host name"
msgstr "Óstainm Printéir"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
#, fuzzy
msgid "Printer host name missing!"
msgstr "Óstainm Printéir"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Gaireas Printéir (URI)"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
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 ""
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Ainm Printéir"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Cuntas"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Áit"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr ""
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "Scríos Printéir"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -6525,28 +6700,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "An bhfuil seo ceart?"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "Scríos Printéir"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
#, fuzzy
msgid "Printer model selection"
msgstr "Nasc Printéir"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Cén sort printéir atá ort?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -6555,18 +6730,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Cumraigh Idirlíon"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -6576,12 +6751,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Cumraigh Idirlíon"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -6589,7 +6764,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -6602,7 +6777,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -6612,34 +6787,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr ""
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
#, fuzzy
msgid "Test pages"
msgstr "Bain trial as arís"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -6647,42 +6822,42 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
#, fuzzy
msgid "Print"
msgstr "Printéir"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
#, fuzzy
msgid "Standard test page"
msgstr "Uirlisí gnáth"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr ""
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr ""
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "Óstainm Printéir"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr ""
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -6692,22 +6867,22 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "Gan Printéir"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -6716,15 +6891,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
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 ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -6733,49 +6908,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, 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\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -6785,7 +6960,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -6794,30 +6969,41 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Dún"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Ag dúnadh síos an ghreasán"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Ag dúnadh síos an ghreasán"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Ag dúnadh síos an ghreasán"
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Ag dúnadh síos an ghreasán"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Dún"
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "Roghanna Printéir"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -6825,37 +7011,37 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Cumraigh Idirlíon"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -6865,51 +7051,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -6917,61 +7103,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid "New printer name"
msgstr "Gan Printéir"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, 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 ""
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Cumraigh Printéir"
-#: ../../printerdrake.pm_.c:1896
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
-msgid "Starting network ..."
+msgid "Starting network..."
msgstr "Nasc Printéir"
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr "Cumraigh gréasánú"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "Níl aon scáileán cumraithe"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -6979,12 +7165,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Cumraigh gréasánú"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -6994,34 +7180,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
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 ""
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
-msgid "Restarting printing system ..."
+msgid "Restarting printing system..."
msgstr "Scríos Printéir"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "Árd"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "Paranóid"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7036,11 +7222,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr ""
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7054,69 +7240,69 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Nasc Printéir"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Cén rann atá uait?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Cumraigh printéir"
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr "Ag feistiál pacáiste %s"
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Roghanna Printéir"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr ""
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Cumraigh printéir"
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "An dteastaěonn uait printéir a chumrú?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "Printerdrake"
msgstr "Clódóir"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -7124,146 +7310,150 @@ msgid ""
"OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
"it."
msgstr ""
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Cumraigh gréasánú"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
#, fuzzy
msgid "Normal Mode"
msgstr "Luchóg ar bith"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Éalaigh"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
#, fuzzy
msgid "Modify printer configuration"
msgstr "Cumraigh Idirlíon"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
#, fuzzy
msgid "Printer connection type"
msgstr "Nasc Printéir"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr ""
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
#, fuzzy
msgid "Print test pages"
msgstr "Óstainm Printéir"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
#, fuzzy
msgid "Remove printer"
msgstr "Scríos Printéir"
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr ""
+#: ../../printerdrake.pm_.c:2857
+#, fuzzy, c-format
+msgid "Removing old printer \"%s\"..."
+msgstr "Scríos Printéir"
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
#, fuzzy
msgid "Default printer"
msgstr "Printéir áitiúl"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr "Scríos Printéir"
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -7342,24 +7532,52 @@ msgstr "Ní mar a chéile na pasfhocail"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr ""
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, fuzzy, c-format
msgid "Can't write file %s"
msgstr "Earráidh ag scríobh comhad %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "teip ar 'mkraid'"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr ""
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr ""
+#: ../../security/msec.pm_.c:144
+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 ""
+
+#: ../../security/msec.pm_.c:150
+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 ""
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Éirigh as cumraíocht"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Roghnachais"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -7402,7 +7620,7 @@ msgid ""
"new/changed hardware."
msgstr ""
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -7458,7 +7676,7 @@ msgid ""
"available server."
msgstr ""
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -7515,7 +7733,7 @@ msgid ""
"which act as servers for protocols which make use of the RPC mechanism."
msgstr ""
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -7593,7 +7811,7 @@ msgstr "Idirlíon"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "Mód Coras"
@@ -7713,6 +7931,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Bainteach le hIdirlíon"
@@ -7817,6 +8036,15 @@ msgstr ""
msgid "Installing packages..."
msgstr "Ag feistiál pacáiste %s"
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Éirigh as le do thoil agus Crtl-Alt-BackSpace a úsáid"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr ""
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -7825,6 +8053,158 @@ msgstr ""
"Ni féidir liom an tábla rainn a léamh, tá máchaillí ann :(\n"
"Leanfaidh mé orm ag cealú droch rainn"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Cumraigh Idirlíon"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Freastalaí Printéir"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Freastalaí Printéir"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "Freastalaí NIS"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "Freastalaí NIS"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Suimigh úsáideoir"
+
+#: ../../standalone/drakTermServ_.c:242
+msgid "Add/Del Clients"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#, fuzzy
+msgid "Help"
+msgstr "/C_úidiú"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Cumraigh ADSL"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Scríos"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Roghnaigh Comhad"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Suimigh úsáideoir"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+msgid "<-- Del Client"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Ag cumraigh IDE"
+
+#: ../../standalone/drakTermServ_.c:886
+msgid "Write Config"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Cur isteach diosca sa dioscthiomant %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Níl dioscthiománt flapach ar fáil"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
#, fuzzy
msgid "Error!"
@@ -7866,6 +8246,11 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Cruthaigh flapach bootáil"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -7874,47 +8259,40 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Comhghairdeas!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "Feistiú"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "Suimigh úsáideoir"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "Ag formáidiú comhad 'loopback' %s"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -7922,15 +8300,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -7938,707 +8308,769 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#, c-format
+msgid ""
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "Earráid ag léamh comhad $f"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "Roghnú Grúpa Pacáistí"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "Scrios ciú"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Dealaigh Windows(TM)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr "Ainm úsáideora"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Teastáil an luchóg, le do thoil"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "Aththrialaigh"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "Aththrialaigh"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "Gan pasfhocal"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Nasc LAN"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Nasc Printéir"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Cén leagan amach atá ar d'eocharchlársa"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Roghnaigh rann le do thoil"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Roghnaight do theangam le do thoil."
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "Teastáil an luchóg, le do thoil"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "Cláréadan Gréasán"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Cineál"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "Ainm úsáideora"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Athraigh cumraíocht an freastalaí"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Athraigh cumraíocht an freastalaí"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
#, fuzzy
msgid "What"
msgstr "Fan tamall"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr "Rothar"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr "Rothar"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "Roghachais modúil:"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Cumraíocht Gréasánú"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Cén cinéal luchóg atá agat?"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "Socraigh córas chomhad"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Gaireas luchóige: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Roghnachais"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Cén cinéal luchóg atá agat?"
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "Cumraíocht Gréasánú"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "Cén cinéal luchóg atá agat?"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Teastáil an luchóg, le do thoil"
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "Nasc LAN"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Nasc Printéir"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Aisig ó dhiosca flapach"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "Cén cinéal luchóg atá agat?"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "Eile"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "Feistigh córas"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "Aisig ó comhad"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "Aisig ó comhad"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "Socraithe"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/C_úidiú"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr ""
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr "Clár Tosnú"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr "Aisig ó comhad"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr "Teacs"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
-#, fuzzy
-msgid "Package List to Install"
-msgstr "Roghnaigh pacáistí ..."
+#: ../../standalone/drakbackup_.c:2933
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr ""
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "Sabháil i gcomhad"
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "Teastáil an luchóg, le do thoil"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Cumraíocht Gréasánú"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "Cumraíocht Gréasánú"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "cumraíocht"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "Éirigh as cumraíocht"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "Socraigh córas chomhad"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -8670,7 +9102,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -8679,7 +9111,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -8720,7 +9152,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -8748,12 +9180,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -8770,7 +9207,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -8810,7 +9247,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -8821,7 +9258,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -8834,7 +9271,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -8878,104 +9315,537 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr ""
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+msgid "Standalone Tools"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "Bainteach le hIdirlíon"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "sainordaitheach"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Luchóg"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Scríos Printéir"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Comh. ainm"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Clódóir"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Draíodóir Cumraíocht Gréasánú"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Deimniú"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Roghnú Grúpa Pacáistí"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Fan tamall"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Eirigh as Feistiú"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "Poirt"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+msgid "No browser available! Please install one"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:80
+#, fuzzy, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Cumraíocht Gréasánú"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+#, fuzzy
+msgid "Hostname: "
+msgstr "Ainm úsáideora"
+
+#: ../../standalone/drakconnect_.c:168
+#, fuzzy
+msgid "Internet access"
+msgstr "suimiúil"
+
+#: ../../standalone/drakconnect_.c:181
+#, fuzzy
+msgid "Type:"
+msgstr "Cineál: "
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Inneal Geata:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#, fuzzy
+msgid "Interface:"
+msgstr "suimiúil"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+#, fuzzy
+msgid "Configure Internet Access..."
+msgstr "Cumraigh gréasánú"
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#, fuzzy
+msgid "LAN configuration"
+msgstr "Cumraigh ADSL"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Tiománaí"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "Interface"
+msgstr "Cláréadan Gréasán"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "State"
+msgstr "Clár Tosnú"
+
+#: ../../standalone/drakconnect_.c:244
+#, fuzzy
+msgid "Configure Local Area Network..."
+msgstr "Cumraigh gréasánú"
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Draíodoir..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:302
+#, fuzzy
+msgid "Please Wait... Applying the configuration"
+msgstr "Trialaigh an cumraíocht"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#, fuzzy
+msgid "Connected"
+msgstr "Ainm Nasc"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#, fuzzy
+msgid "Not connected"
+msgstr "Cumraigh ADSL"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:453
+#, fuzzy
+msgid "LAN Configuration"
+msgstr "cumraíocht"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:584
+#, fuzzy
+msgid "Internet connection configuration"
+msgstr "Nasc na hIdirlíon agus cumraíocht"
+
+#: ../../standalone/drakconnect_.c:588
+#, fuzzy
+msgid "Internet Connection Configuration"
+msgstr "Nasc na hIdirlíon agus cumraíocht"
+
+#: ../../standalone/drakconnect_.c:597
+#, fuzzy
+msgid "Connection type: "
+msgstr "Athraigh cineál ranna"
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Inneal Geata:"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "Úsáid: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Ainm Modúl"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Méid"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+#, fuzzy
+msgid "boot disk creation"
+msgstr "Trialaigh an cumraíocht"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "gnáth"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Earraidh DrakFloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "leagan `kernel'"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Gnáth"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Roghnachais Saineoiaí"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Suimigh Modúil"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "forsáil"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:163
+#, fuzzy
+msgid "omit scsi modules"
+msgstr "Luchóg ar bith"
+
+#: ../../standalone/drakfloppy_.c:164
+#, fuzzy
+msgid "omit raid modules"
+msgstr "Scríos modúil"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Scríos modúil"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Aschur"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:427
+#, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Teip ar glaoch `fork': %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "Teip ag cuardach %s"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr "Críochnithe"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
#, fuzzy
msgid "Fonts copy"
msgstr "Formadaigh flapach"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "Ag Ullmhaigh feistiú"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr ""
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "teorannaigh"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -8984,121 +9854,120 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "Formáidigh ranna"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Éirigh as cumraíocht"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
msgstr ""
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Roghnaigh na ranna atá le formáidiú"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "Oifig"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr "Tobscoir"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr "Printéir"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "Feistigh córas"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "Roghnaigh Comhad"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "Scríos Printéir"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
#, fuzzy
msgid "Initials tests"
msgstr "Scéal Tosnú"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr "Níl aon gaireas ghreasán san do chorás!"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "Feistiú"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr "Níl aon gaireas ghreasán san do chorás!"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "Eirigh as Feistiú"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr ""
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr ""
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -9106,32 +9975,32 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr ""
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr ""
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr ""
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
#, fuzzy
msgid "Internet connection sharing is now disabled."
msgstr "Nasc na hIdirlíon agus cumraíocht"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr ""
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -9139,20 +10008,20 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr ""
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
#, fuzzy
msgid "Internet connection sharing is now enabled."
msgstr "Nasc na hIdirlíon agus cumraíocht"
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -9162,31 +10031,31 @@ msgid ""
"(LAN)."
msgstr ""
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr ""
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, fuzzy, c-format
msgid "Interface %s"
msgstr "suimiúil"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Níl aon gaireas ghreasán san do chorás!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Cláréadan Gréasán"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -9196,18 +10065,18 @@ msgid ""
"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "Níl aon scáileán cumraithe"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -9217,17 +10086,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Cumraigh ADSL"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "Cumraigh Idirlíon"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -9238,7 +10107,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
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 C-Class Network that "
@@ -9250,78 +10119,78 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP freastalaí SMP"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr ""
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
msgstr ""
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
#, fuzzy
msgid "Configuring..."
msgstr "Ag cumraigh IDE"
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, fuzzy, c-format
msgid "Problems installing package %s"
msgstr "Ag feistiál pacáiste %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
#, fuzzy
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Nasc na hIdirlíon agus cumraíocht"
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
#, fuzzy
msgid "Internet connection sharing configuration"
msgstr "Nasc na hIdirlíon agus cumraíocht"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -9331,222 +10200,6 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr ""
-#: ../../standalone/draknet_.c:80
-#, fuzzy, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Cumraíocht Gréasánú"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr ""
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-#, fuzzy
-msgid "Hostname: "
-msgstr "Ainm úsáideora"
-
-#: ../../standalone/draknet_.c:168
-#, fuzzy
-msgid "Internet access"
-msgstr "suimiúil"
-
-#: ../../standalone/draknet_.c:181
-#, fuzzy
-msgid "Type:"
-msgstr "Cineál: "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Inneal Geata:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-#, fuzzy
-msgid "Interface:"
-msgstr "suimiúil"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-#, fuzzy
-msgid "Configure Internet Access..."
-msgstr "Cumraigh gréasánú"
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-#, fuzzy
-msgid "LAN configuration"
-msgstr "Cumraigh ADSL"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Tiománaí"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "Interface"
-msgstr "Cláréadan Gréasán"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Clár Tosnú"
-
-#: ../../standalone/draknet_.c:244
-#, fuzzy
-msgid "Configure Local Area Network..."
-msgstr "Cumraigh gréasánú"
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Draíodoir..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr ""
-
-#: ../../standalone/draknet_.c:302
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr "Trialaigh an cumraíocht"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Connected"
-msgstr "Ainm Nasc"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Not connected"
-msgstr "Cumraigh ADSL"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-#, fuzzy
-msgid "LAN Configuration"
-msgstr "cumraíocht"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr ""
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr ""
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr ""
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr ""
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr ""
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-#, fuzzy
-msgid "Internet connection configuration"
-msgstr "Nasc na hIdirlíon agus cumraíocht"
-
-#: ../../standalone/draknet_.c:588
-#, fuzzy
-msgid "Internet Connection Configuration"
-msgstr "Nasc na hIdirlíon agus cumraíocht"
-
-#: ../../standalone/draknet_.c:597
-#, fuzzy
-msgid "Connection type: "
-msgstr "Athraigh cineál ranna"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr ""
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Inneal Geata:"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr ""
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr ""
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr ""
-
#: ../../standalone/drakxconf_.c:47
#, fuzzy
msgid "Control Center"
@@ -9556,93 +10209,128 @@ msgstr "Bainteach le hIdirlíon"
msgid "Choose the tool you want to use"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\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 ""
+
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "East Europe"
msgstr "Eorap"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Fraince"
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr "Athlódaigh"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "West Europe"
msgstr "Eorap"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr "srathach"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+msgid "There was an error while scanning for TV channels"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -9684,7 +10372,7 @@ msgstr ""
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -9732,10 +10420,6 @@ msgstr "/_Roghanna"
msgid "/Options/Test"
msgstr "/Roghnachais/Teastáil"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/C_úidiú"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr "/Cúidiú/_Faoi..."
@@ -9798,7 +10482,7 @@ msgstr "Feilire"
msgid "Content of the file"
msgstr ""
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -9807,81 +10491,110 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr "Ag Parsáil an comhad %s, fan tamall"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "Cumraigh Lilo/Grub"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache, Pro-ftpd"
-
#: ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid "sshd"
-msgstr "scáil"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Ainm Fearannas"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "Ext2"
+msgid "Ftp Server"
+msgstr "Freastalaí NIS"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Freastalaí Printéir"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "Freastalaí NIS"
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "Freastalaí NIS"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Seirbishí"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Freastalaí Printéir"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "suimiúil"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "Ag formáidiú"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "Cumraigh Idirlíon"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Sábháil mar..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Cén cinéal luchóg atá agat?"
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr ""
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr ""
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Scríos Printéir"
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr ""
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -9925,6 +10638,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
#, fuzzy
msgid "Firewalling Configuration"
@@ -10272,10 +10997,6 @@ msgid "Multimedia - Sound"
msgstr "Ilmheánach"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr ""
-
-#: ../../share/compssUsers:999
#, fuzzy
msgid "Documentation"
msgstr "Áit"
@@ -10380,10 +11101,6 @@ msgid ""
msgstr ""
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr ""
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr ""
@@ -10431,593 +11148,108 @@ msgstr "Ilmheánach"
msgid "Scientific Workstation"
msgstr "Stáisiún Oibre"
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Tobscoir"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#~ msgid "None"
-#~ msgstr "Ar bith"
+#~ msgid "Choose options for server"
+#~ msgstr "Roghnaigh cumraíocht an freastalaí"
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Roghnagih an úsáidoer gneás:"
-
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Scríos Printéir"
-
-#~ msgid "Low"
-#~ msgstr "Bun"
+#~ msgid "Monitor not configured"
+#~ msgstr "Níl aon scáileán cumraithe"
-#~ msgid "Medium"
-#~ msgstr "Gnáth"
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Níl aon carta grafachach cumraithe"
-#, fuzzy
-#~ msgid "mount failed"
-#~ msgstr "teip ar 'mkraid'"
-
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr "Ilmheánach"
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Níl aoin réiteach cumraithe"
-#~ msgid "Boot mode"
-#~ msgstr "Mód Bootáil"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Saineolaí"
-
-#, fuzzy
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Bainteach le hIdirlíon"
-
-#, fuzzy
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Cumraigh nasc ghréasán"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Cén diosca ag a dteastaíonn uait é a bhogadh?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Cén cinéal luchóg atá agat?"
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Eolas"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Stáisiún Gnome"
-
-#~ msgid "authentification"
-#~ msgstr "údarú"
-
-#~ msgid "user"
-#~ msgstr "úsáideoir"
-
-#, fuzzy
#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
#~ "\n"
-#~ msgstr "Cén cinéal luchóg atá agat?"
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "Éalaigh"
-
-#~ msgid "Active"
-#~ msgstr "Gníomhach"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "Níl"
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Gaireas na Printéir Áitiúl"
-
-#~ msgid "Printer Device"
-#~ msgstr "Gaireas Printéir"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Scrios Freastalaí CUPS"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Mód Coras"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "Eile"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Cén leagan amach atá ar d'eocharchlársa"
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Roghnaigh rann le do thoil"
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Cineál: "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Droch comhad chúltaca"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "Cumraigh X"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Gaireas Printéir"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Cealaigh"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "Ceart go Leor"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Dún"
-
-#, fuzzy
-#~ msgid "toto"
-#~ msgstr "toot"
-
-#~ msgid "Starting your connection..."
-#~ msgstr "Nasc Printéir"
-
-#, fuzzy
-#~ msgid "Closing your connection..."
-#~ msgstr "Cumraigh nasc ghréasán"
-
-#, fuzzy
-#~ msgid "The system is now disconnected."
-#~ msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-
-#~ msgid "Total size: "
-#~ msgstr "Méid iomlán: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Fan tamall, "
-
-#~ msgid "Total time "
-#~ msgstr "Am iomlán "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "Bain úsáid as an cumraíocht X11 atá ann?"
-
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#~ msgid "New"
-#~ msgstr "Nua"
-
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "Scríos"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
+#~ "try to change some parameters"
+#~ msgstr ""
#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Roghnaigh rann le do thoil"
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Débhríoch (%s), bí níos cruinn\n"
+#~ "bain trial as roinnt paraiméadair a athrú"
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (gnás %s)"
+#~ msgid "An error occurred:"
+#~ msgstr "Tharla Earráid:"
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "Do rogha? (gnás %s úsáid `none' do ceann ar bith) "
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Ag éalú i %d siocand"
-#, fuzzy
-#~ msgid "Do you want to restart the network"
-#~ msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-
-#, fuzzy
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-
-#, fuzzy
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-
-#~ msgid "Default Runlevel"
-#~ msgstr "Rithléibheal Loiceadh"
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "Scríobh /etc/fstab"
-
-#~ msgid "Format all"
-#~ msgstr "Formáidigh gach ceann"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "I ndhiadh na rann ar fad formáidiú,"
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "caillfear gach sonra ar na ranna"
-
-#~ msgid "Error reading file $f"
-#~ msgstr "Earráid ag léamh comhad $f"
-
-#~ msgid "Czech (Programmers)"
-#~ msgstr "Ceichis (FIXME)"
-
-#, fuzzy
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "Cumraigh nasc ghréasán"
+#~ msgid "Is this the correct setting?"
+#~ msgstr "An bhfuil seo ceart?"
-#~ msgid "Choose"
-#~ msgstr "Rogha"
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Tharla earráid, bain trial as roinnt paraiméadair a athrú"
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
+#~ msgid "XFree86 server: %s"
+#~ msgstr "Freastalaí XFree86: %s"
-#~ msgid "Remote queue"
-#~ msgstr "Scrios ciú"
+#~ msgid "Show all"
+#~ msgstr "Taispéan gach ceann"
-#~ msgid "Paper Size"
-#~ msgstr "Méid Páipéir"
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Ag ullmhú cumraíocht X-Windows"
-#~ msgid "Uniprint driver options"
-#~ msgstr "Roghanna tiománaí Uniprint"
-
-#~ msgid "Name of queue"
-#~ msgstr "Ainm ciú"
-
-#, fuzzy
-#~ msgid "Disable"
-#~ msgstr "Table"
-
-#, fuzzy
-#~ msgid "Enable"
-#~ msgstr "Table"
-
-#, fuzzy
-#~ msgid "Network Monitoring"
-#~ msgstr "Cumraíocht Gréasánú"
-
-#, fuzzy
-#~ msgid "Connecting to Internet "
-#~ msgstr "Bainteach le hIdirlíon"
-
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "Bainteach le hIdirlíon"
-
-#, fuzzy
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "Bainteach le hIdirlíon"
-
-#, fuzzy
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "Bainteach le hIdirlíon"
-
-#~ msgid "yellow pages"
-#~ msgstr "leathanaigh buí"
-
-#, fuzzy
-#~ msgid "Light configuration"
-#~ msgstr "Cumraigh ADSL"
-
-#, fuzzy
-#~ msgid "Selected size %d%s"
-#~ msgstr "Roghnaigh Comhad"
-
-#, fuzzy
-#~ msgid "Opening your connection..."
-#~ msgstr "Cumraigh nasc ghréasán"
-
-#~ msgid "Configure..."
-#~ msgstr "Cumraigh..."
-
-#, fuzzy
-#~ msgid "Configuration de Lilo/Grub"
-#~ msgstr "cumraíocht"
-
-#, fuzzy
-#~ msgid "Boot style configuration"
-#~ msgstr "Trialaigh an cumraíocht"
-
-#~ msgid "Configure LILO/GRUB"
-#~ msgstr "Cumraigh LILO/GRUB"
-
-#~ msgid "Create a boot floppy"
-#~ msgstr "Cruthaigh flapach bootáil"
-
-#~ msgid "Choice"
-#~ msgstr "Rogha"
-
-#~ msgid "gMonitor"
-#~ msgstr "gMonitor"
-
-#~ msgid "Miscellaneous"
-#~ msgstr "Eile"
-
-#~ msgid "Miscellaneous questions"
-#~ msgstr "Ceisteanna eile"
-
-#~ msgid "First DNS Server"
-#~ msgstr "Cead Freastalaí DNS"
-
-#~ msgid "Second DNS Server"
-#~ msgstr "Dara Freastalaí DNS"
-
-#, fuzzy
-#~ msgid "using module"
-#~ msgstr "Luchóg ar bith"
-
-#, fuzzy
-#~ msgid "Development, Database"
-#~ msgstr "Forbairt"
-
-#, fuzzy
-#~ msgid "Which bootloader(s) do you want to use?"
-#~ msgstr "Cén tescán ag a dteastaíonn uait é a bhogadh?"
-
-#~ msgid "Try to find a modem?"
-#~ msgstr "Déan iarracht móideam a aimsiú?"
-
-#, fuzzy
-#~ msgid "Configure local network"
-#~ msgstr "Cumraigh gréasánú"
-
-#, fuzzy
-#~ msgid "Configure the Internet connection / Configure local Network"
-#~ msgstr "Nasc na hIdirlíon agus cumraíocht"
-
-#, fuzzy
-#~ msgid ""
-#~ "Local networking has already been configured.\n"
-#~ "Do you want to:"
-#~ msgstr "Tá gréasánú lóganta cumraithe cheana féin. An dteastaíonn uait:"
-
-#, fuzzy
-#~ msgid "Reconfigure using wizard..."
-#~ msgstr "Cumraigh Cártaí PCMCIA"
-
-#~ msgid "KDE"
-#~ msgstr "KDE"
-
-#~ msgid "Gnome"
-#~ msgstr "Gnome"
-
-#~ msgid "Internet Tools"
-#~ msgstr "Uirlisí Idirlíon"
-
-#~ msgid "Development C/C++"
-#~ msgstr "Forbairt C/C++"
-
-#~ msgid "Configure timezone"
-#~ msgstr "Cumraigh crios ama"
-
-#, fuzzy
-#~ msgid "Network adaptater 1 (eth0):"
-#~ msgstr "Printéir Gréasán (lpd)"
-
-#, fuzzy
-#~ msgid "Enable num lock at startup"
-#~ msgstr "X ag tús"
-
-#~ msgid "Confirm Password"
-#~ msgstr "Pasfhocal (arís)"
-
-#~ msgid "Gateway device:"
-#~ msgstr "Gaireas na hInneal Geata:"
-
-#~ msgid "default"
-#~ msgstr "gnáth"
-
-#, fuzzy
-#~ msgid "What is your system used for?"
-#~ msgstr "Cén ceann do chrois ama"
-
-#~ msgid "Use diskdrake"
-#~ msgstr "Úsáid diskdrake"
-
-#~ msgid "Customized"
-#~ msgstr "Socraithe"
-
-#~ msgid "Use shadow file"
-#~ msgstr "Bain úsáid as scáilcomhad"
-
-#~ msgid "MD5"
-#~ msgstr "MD5"
-
-#~ msgid "Use MD5 passwords"
-#~ msgstr "Bain úsáid as pasfhocail MD5"
-
-#~ msgid "Search"
-#~ msgstr "Cuardaigh"
-
-#~ msgid "Package"
-#~ msgstr "Pacáiste"
-
-#~ msgid "Tree"
-#~ msgstr "Crann"
-
-#~ msgid "Category"
-#~ msgstr "Saghas"
-
-#~ msgid "Installed packages"
-#~ msgstr "Pacáistí feistiú"
-
-#~ msgid "Available packages"
-#~ msgstr "Pacáistí le fáil"
-
-#~ msgid "Find Package"
-#~ msgstr "Cuardaigh Pacáiste"
-
-#~ msgid "Regexp"
-#~ msgstr "Regexp"
-
-#~ msgid "Directory"
-#~ msgstr "Eolaire"
-
-#~ msgid "Other countries"
-#~ msgstr "Tír Eile"
-
-#~ msgid "Alcatel modem"
-#~ msgstr "móideim alcatel"
-
-#~ msgid "ECI modem"
-#~ msgstr "móideim ECI"
-
-#~ msgid "don't use pppoe"
-#~ msgstr "ná úsáid pppoe"
-
-#~ msgid "i18n (important)"
-#~ msgstr "i18n (tábhachtach)"
-
-#~ msgid "i18n (very nice)"
-#~ msgstr "i18n (an-dheas)"
-
-#~ msgid "i18n (nice)"
-#~ msgstr "i18n (deas)"
-
-#~ msgid "Czech"
-#~ msgstr "Ceichís"
-
-#~ msgid "Reconfigure local network"
-#~ msgstr "Athchumraigh an gréasánú áitiúl"
-
-#, fuzzy
-#~ msgid "Connect to Internet with a normal modem"
-#~ msgstr "Bainteach le hIdirlíon"
-
-#, fuzzy
-#~ msgid "Connect to Internet using ISDN"
-#~ msgstr "Bainteach le hIdirlíon"
-
-#, fuzzy
-#~ msgid "Connect to Internet using DSL (or ADSL)"
-#~ msgstr "Bainteach le hIdirlíon"
-
-#, fuzzy
-#~ msgid "Connect to Internet using Cable"
-#~ msgstr "Bainteach le hIdirlíon"
-
-#~ msgid "Automatic resolutions"
-#~ msgstr "Uath-Réiteach"
-
-#~ msgid "Automatical resolutions search"
-#~ msgstr "Uath-cuardaigh réiteach"
-
-#~ msgid "Install/Rescue"
-#~ msgstr "Feistiú/Tarrtháil"
-
-#~ msgid "Rescue"
-#~ msgstr "Tarrtháil"
-
-#~ msgid "Apple ADB Mouse"
-#~ msgstr "Luchóg ADB Apple"
-
-#~ msgid "Apple ADB Mouse (2 Buttons)"
-#~ msgstr "Luchóg ADB Apple (2 Cnaipí)"
-
-#~ msgid "Apple ADB Mouse (3+ Buttons)"
-#~ msgstr "Luchóg Apple ADB (3+ Cnaipí)"
-
-#~ msgid "Apple USB Mouse"
-#~ msgstr "Luchóg USB Apple"
-
-#~ msgid "Apple USB Mouse (2 Buttons)"
-#~ msgstr "Luchóg USB Apple (2 Cnaipí)"
-
-#~ msgid "Apple USB Mouse (3+ Buttons)"
-#~ msgstr "Luchóg USB Apple (3+ Cnaipí)"
-
-#~ msgid "Generic Mouse (PS/2)"
-#~ msgstr "Mouse Gnáth (PS/2)"
-
-#~ msgid "Logitech MouseMan/FirstMouse (ps/2)"
-#~ msgstr "Logitech MouseMan/FirstMouse (ps/2)"
-
-#~ msgid "ASCII MieMouse (PS/2)"
-#~ msgstr "ASCII MieMouse (PS/2)"
-
-#~ msgid "Genius NetMouse Pro (PS/2)"
-#~ msgstr "Genius NetMouse Pro (PS/2)"
-
-#~ msgid "ATI Bus Mouse"
-#~ msgstr "Luchóg Bus ATI"
+#~ msgid "What do you want to do?"
+#~ msgstr "Céard a theastaíonn uait a dhéanamh?"
-#~ msgid "Microsoft Bus Mouse"
-#~ msgstr "Luchóg Bus Microsoft"
+#~ msgid "Change Monitor"
+#~ msgstr "Athraigh Scáileán"
-#~ msgid "USB Mouse (3 buttons or more)"
-#~ msgstr "Luchóg USB (3 cnaipí nó níos mó)"
+#~ msgid "Change Graphics card"
+#~ msgstr "Athraigh carta grafach"
-#~ msgid "Microsoft Rev 2.1A or higher (serial)"
-#~ msgstr "Microsoft Rev 2.1A nó barr (srathach)"
+#~ msgid "Change Server options"
+#~ msgstr "Athraigh cumraíocht an freastalaí"
-#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-#~ msgstr "Logitech MouseMan+/FirstMouse+ (srathach)"
+#~ msgid "Change Resolution"
+#~ msgstr "Athraigh Réiteach"
-#~ msgid "ASCII MieMouse (serial)"
-#~ msgstr "ASCII MieMouse (srathach)"
+#~ msgid "Show information"
+#~ msgstr "Taispeán Eolas"
-#~ msgid "Genius NetMouse (serial)"
-#~ msgstr "Genius NetMouse (srathach)"
+#~ msgid "Test again"
+#~ msgstr "Bain trial as arís"
-#~ msgid "Microsoft IntelliMouse (serial)"
-#~ msgstr "Microsoft IntelliMouse (srathach)"
+#~ msgid "Graphics card"
+#~ msgstr "Carta Grafach"
-#~ msgid "Logitech MouseMan/FirstMouse (serial)"
-#~ msgstr "Logitech MouseMan/FirstMouse (srathach)"
+#~ msgid "Select a graphics card"
+#~ msgstr "Roghnaigh carta grafachach"
-#~ msgid "Generic Mouse (serial)"
-#~ msgstr "Luchóg de gnáth (srathach)"
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Gnáth VGA, 640x480 ag 60Hz"
-#~ msgid "Microsoft compatible (serial)"
-#~ msgstr "Microsoft nó comhoriúnach (srathach)"
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 ag 56 Hz"
-#~ msgid "Generic 3 Button Mouse (serial)"
-#~ msgstr "Luchóg 3-cnaipe de gnáth (srathach)"
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "Cinéal 8514, 1024x768 ag 87 Hz Idirdhuillith (gan 800x600)"
-#~ msgid "Kensington Thinking Mouse (serial)"
-#~ msgstr "Kensington Thinking Mouse (srathach)"
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 ag 87 Hz Idirdhuillithe, 800x600 ag 56 Hz"
-#~ msgid "What do you wish to do?"
-#~ msgstr "Céard a theastaíonn uait a dhéanamh?"
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "SVGA Leathnaithe, 800x600 ag 60 Hz, 640x480 ag 72 Hz"
-#~ msgid "pump"
-#~ msgstr "pump"
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "SVGA Neamh-idirdhuillithe, 1024x768 ag 60 Hz, 800x600 ag 72 Hz"
-#~ msgid "dhcpxd"
-#~ msgstr "dhcpxd"
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "SVGA d'árd minicíocht, 1024x768 ag 70 Hz"
-#~ msgid "dhcp-client"
-#~ msgstr "dhcp-client"
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Scáileán ilmhinicíocht a bhfuil in ann do 1280x1024 ag 60 Hz"
-#~ msgid "What is the type of your mouse?"
-#~ msgstr "Cén cinéal luchóg atá agat?"
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Scáileán ilmhinicíocht a bhfuil in ann do 1280x1024 ag 74 Hz"
-#~ msgid "Cryptographic"
-#~ msgstr "Rúnscríobhach"
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Scáileán ilmhinicíocht a bhfuil in ann do 1280x1024 ag 76 Hz"
-#~ msgid "Configure LAN"
-#~ msgstr "Cumraigh LAN"
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Scáileán a bhfuil in ann do 1600x1200 ag 70Hz"
-#~ msgid "Show less"
-#~ msgstr "Taispéan níos lú"
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Scáileán a bhfuil in ann do 1600x1200 ag 76Hz"
-#~ msgid "Show more"
-#~ msgstr "Taispeán níos mo"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Roghnaigh liebhéal slándáil"
diff --git a/perl-install/share/po/gl.po b/perl-install/share/po/gl.po
index a0f63f21a..1c219d281 100644
--- a/perl-install/share/po/gl.po
+++ b/perl-install/share/po/gl.po
@@ -1,82 +1,108 @@
-# Translation file of Mandrake graphic install
-# Copyright (C) 1999, 2000 Mandrakesoft.
-# Copyright (C) 2000 Jesús Bravo Álvarez.
-# José Manuel Cambre <asforber@asforber.com>, 1999
-# Jesús Bravo Álvarez <jba@pobox.com>, 2000
-#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2000-06-08 18:14+0200\n"
+"Project-Id-Version: drakfloppy\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2001-03-17 19:17+0100\n"
"Last-Translator: Jesús Bravo Álvarez (mdk) <jba@pobox.com>\n"
"Language-Team: Galician <trasno@ceu.fi.udc.es>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 KB"
-#: ../../Xconfigurator.pm_.c:243
-#, fuzzy
-msgid "Use Xinerama extension"
-msgstr "Usar detección automática"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 KB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB ou máis"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Escolla un servidor X"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "Servidor X"
+
+#: ../../Xconfig/card.pm_.c:225
#, fuzzy
msgid "Multi-head configuration"
msgstr "lendo a configuración"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Tarxeta gráfica"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Seleccione a cantidade de memoria da tarxeta gráfica"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Seleccione unha tarxeta gráfica"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "Configuración de XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Escolla un servidor X"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "żQue configuración de XFree quere usar?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "Servidor X"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:293
+#: ../../Xconfig/card.pm_.c:375
#, fuzzy
-msgid "Choose a X driver"
-msgstr "Escolla un servidor X"
+msgid "Use Xinerama extension"
+msgstr "Usar detección automática"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "Servidor X"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Axudante da configuración de rede"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "żQue configuración de XFree quere usar?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s con aceleración 3D por hardware"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -86,33 +112,18 @@ msgstr ""
"XFree %s. A tarxeta está soportada por XFree %s, que pode ter un mellor\n"
"soporte en 2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"A súa tarxeta pode ter soporte de aceleración 3D por hardware con XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s con aceleración 3D por hardware"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"A súa tarxeta pode ter soporte de aceleración 3D por hardware, pero só con\n"
-"XFree %s, ADVIRTA QUE ESTE SOPORTE É EXPERIMENTAL E PODE COLGAR O SISTEMA."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s con aceleración 3D por hardware EXPERIMENTAL"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -124,31 +135,58 @@ msgstr ""
"A súa tarxeta está soportada por XFree %s, que pode ter un mellor soporte en "
"2D."
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
+"A súa tarxeta pode ter soporte de aceleración 3D por hardware, pero só con\n"
+"XFree %s, ADVIRTA QUE ESTE SOPORTE É EXPERIMENTAL E PODE COLGAR O SISTEMA."
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Configuración de XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Seleccione a cantidade de memoria da tarxeta gráfica"
+#: ../../Xconfig/card.pm_.c:445
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Escolla as opcións para o servidor"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"żManter os cambios?\n"
+"A configuración actual é:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Escolla o monitor"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Personalizado"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Xenérico"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Refacer"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -171,515 +209,327 @@ msgstr ""
"xa que pode danalo.\n"
"No caso de dúbida, escolla unha configuración conservadora."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Frecuencia de actualización horizontal"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Frecuencia de actualización vertical"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "O monitor non está configurado"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "A tarxeta gráfica aínda non está configurada"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Resolucións aínda non escollidas"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "żDesexa probar a configuración?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Aviso: probar esta tarxeta gráfica pode colgar o ordenador"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Proba da configuración"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 cores (8 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"probe a cambiar algúns parámetros"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 mil cores (15 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Ocorreu un erro:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 mil cores (16 bits)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Saíndo en %d segundos"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 millóns de cores (24 bits)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "żÉ esta a configuración correcta?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 mil millóns de cores (32 bits)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Ocorreu un erro, probe a cambiar algúns parámetros"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Resolucións"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Resolución"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Escolla a resolución e a profundidade de cor"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Tarxeta gráfica: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Servidor XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Máis"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Cancelar"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Aceptar"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Modo experto"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Ver todo"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "żDesexa probar a configuración?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Resolucións"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Proba da configuración"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Disposición do teclado: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Tipo de rato: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Dispositivo do rato: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Frecuencia horizontal do monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Frecuencia vertical do monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Tarxeta gráfica: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Tarxeta gráfica: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Memoria da tarxeta gráfica: %s KB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Profundidade de cor: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Resolución: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Servidor XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Controlador de XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Preparando a configuración de X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "żQué desexa facer?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Mudar o monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Mudar a tarxeta gráfica"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Mudar as opcións do servidor"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Mudar a resolución"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Mostrar información"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Probar de novo"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Saír"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"żManter os cambios?\n"
-"A configuración actual é:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "Lanzar X11 ó arrincar"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Pódese configurar o seu ordenador para que entre automaticamente\n"
"en X ó arrincar. żDesexa que se execute X ó reiniciar?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Entre de novo en %s para activar os cambios"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Saia da sesión e use Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 cores (8 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mil cores (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mil cores (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 millóns de cores (24 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 mil millóns de cores (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 KB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 KB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-#, fuzzy
-msgid "16 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-#, fuzzy
-msgid "32 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-#, fuzzy
-msgid "64 MB or more"
-msgstr "16 MB ou máis"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "VGA estándar, 640x480 a 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 a 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Compatible 8514, 1024x768 a 87 Hz entrelazado (no 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 a 87 Hz entrelazado, 800x600 a 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Super VGA estendido, 800x600 a 60 Hz, 640x480 a 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "SVGA non-entrelazado, 1024x768 a 60 Hz, 800x600 a 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "SVGA alta-frecuencia, 1024x768 a 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Monitor multi-frecuencia soportando 1280x1024 a 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Monitor multi-frecuencia soportando 1280x1024 a 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Monitor multi-frecuencia soportando 1280x1024 a 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor soportando 1600x1200 a 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor soportando 1600x1200 a 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Primeiro sector da partición de arranque"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Primeiro sector do disco (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "Instalación do SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "żOnde quere instalar o cargador de arrinque?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "Instalación do LILO/grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO con menú de texto"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO con menú gráfico"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Arrincar dende DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Opcións principais do cargador de arrinque"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Cargador de arrinque que usar"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Instalación do cargador de arrinque"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Dispositivo de arrinque"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (non funciona en BIOS antigas)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Compacto"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "compacto"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Modo de vídeo"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Retardo antes de arrincar a imaxe por omisión"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Contrasinal"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Contrasinal (de novo)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Restrinxir opcións da lińa de comandos"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "restrinxir"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Baleirar /tmp en cada arrinque"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Tamańo exacto de memoria se for necesario (atopáronse %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Activar perfís múltiples"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Indicar o tamańo da memoria en MB"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"A opción ``restrinxir opcións da lińa de comandos'' non ten sentido sen "
"contrasinal"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Tente de novo"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Os contrasinais non coinciden"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Mensaxe inicial"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr ""
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr ""
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "żPermitir o arrinque de CD?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr ""
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "żSO por omisión?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -688,83 +538,83 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Estas son as diferentes entradas.\n"
"Pode engadir algunhas máis ou cambiar as que xa existen."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Engadir"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Feito"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Modificar"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "żQue tipo de entrada desexa engadir?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Outros SO (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Outros SO (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Outros SO (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Imaxe"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Raíz"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Agregar"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Lectura-escritura"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Táboa"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Inseguro"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Etiqueta"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Por omisión"
@@ -797,53 +647,75 @@ msgstr "Debe ter unha partición de intercambio"
msgid "This label is already used"
msgstr "Esta etiqueta xa se está a usar"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "%s interfaces %s atopadas"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "żTen algunha outra?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "żTen algunha interface %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Non"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Si"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Mire a información sobre o hardware"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instalando o controlador para a tarxeta %s %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(módulo %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Aquí deben ir as diferentes opcións para o módulo %s.\n"
+"As opcións son da forma Ťnome=valor nome2=valor2 ...ť.\n"
+"Por exemplo pode ter Ťio=0x300 irq=7ť"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Opcións do módulo:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "żQue controlador de %s desexa probar?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -861,37 +733,15 @@ msgstr ""
"analizar o equipo pode provocar que se pare, pero non debería\n"
"causar ningún dano."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Autodetección"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Especificar as opcións"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Aquí deben ir as diferentes opcións para o módulo %s.\n"
-"As opcións son da forma Ťnome=valor nome2=valor2 ...ť.\n"
-"Por exemplo pode ter Ťio=0x300 irq=7ť"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Opcións do módulo:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -900,49 +750,54 @@ msgstr ""
"Fallo o cargar o módulo %s\n"
"żDesexa retentalo con outros parámetros?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(%s xa foi engadido)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Este contrasinal é demasiado simple"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Indique o nome de usuario"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "O nome de usuario (login) só debe conter letras, números, '-' e '_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Este nome de usuario xa está engadido"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Este nome de usuario xa está engadido"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Engadir usuario"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -951,32 +806,32 @@ msgstr ""
"Introduza un usuario\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Aceptar usuario"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Nome real"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Nome de usuario"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Icona"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Login automático"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -986,123 +841,103 @@ msgstr ""
"como un usuario. Se non quere usar esta característica, prema o botón\n"
"cancelar."
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Escolla o usuario por defecto:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Escolla o xestor de fiestras para executar:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr "Escolla a lingua que desexe usar."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr "Pode escoller outras linguas que estarán dispońibles trala instalación"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Todas"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr "Engadir usuario"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Personalizado"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr "CUPS iniciando"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Este paquete ten que ser actualizado\n"
"żEstá seguro de que quere deseleccionalo?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Cancelar"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Benvida ós crackers"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Pobre"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Estándar"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Alto"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Alto"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoico"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1112,7 +947,7 @@ msgstr ""
"sinxelo de utilizar, pero é moi sensible: non debe usarse nunha máquina\n"
"conectada a outras ou á Internet. Non hai contrasinais de acceso."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1120,7 +955,7 @@ msgstr ""
"Os contrasinais están activados, pero o uso como ordenador de rede aínda\n"
"non se recomenda."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1129,60 +964,61 @@ msgstr ""
"Esta é a seguridade recomendada para un ordenador usado para conectar\n"
"á Internet como cliente. Agora hai más comprobacións de seguridade."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Con este nivel de seguridade, é posible usar este sistema coma servidor.\n"
"A seguridade é agora alta dabondo para usar o sistema coma un servidor\n"
"que acepta conexións de múltiples clientes."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Tómanse características do nivel 4, pero agora o sistema está completamente\n"
"pechado. As características de seguridade están ó máximo nivel."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Escola o nivel de seguridade"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
#, fuzzy
msgid "Security level"
msgstr "Establecendo o nivel de seguridade"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Escolla as opcións para o servidor"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1206,53 +1042,53 @@ 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_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "­Benvido ao GRUB, o selector de sistemas operativos!"
#. -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_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use as teclas %c e %c para seleccionar a entrada marcada."
#. -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_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Prema enter para arrincar o SO seleccionado, 'e' para editar os"
#. -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_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "comandos antes de arrincar, ou 'c' para a li¤a de comandos."
#. -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_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "A entrada marcada arrincarase automaticamente en %d segundos."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "non hai espacio dabondo en /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Escritorio"
# Manter o 'ú' en iso-8859-1
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Menú Inicio"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "żOnde quere instalar o cargador de arrinque?"
@@ -1265,15 +1101,19 @@ msgstr "axuda aínda non implementada.\n"
msgid "Boot Style Configuration"
msgstr "Configuración do estilo de arrinque"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Ficheiro"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Ficheiro/_Saír"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1312,12 +1152,12 @@ msgstr "Modo de arrinque"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
#, fuzzy
msgid "Configure"
@@ -1328,7 +1168,7 @@ msgid "System mode"
msgstr ""
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Lanzar o sistema X-Window ó iniciar"
#: ../../bootlook.pm_.c:148
@@ -1339,14 +1179,16 @@ msgstr "Non, non quero login automático"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Si, quero login automático con este (usuario, escritorio)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "Aceptar"
@@ -1395,7 +1237,7 @@ msgstr "Non é posible engadir máis particións"
msgid "Screenshots will be available after install in %s"
msgstr "Pode escoller outras linguas que estarán dispońibles trala instalación"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Francia"
@@ -1403,7 +1245,7 @@ msgstr "Francia"
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Belga"
@@ -1432,11 +1274,12 @@ msgstr "Noruegués"
msgid "Sweden"
msgstr "Mirar"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr "Italiano"
@@ -1446,7 +1289,7 @@ msgstr "Italiano"
msgid "Austria"
msgstr "serie"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1454,8 +1297,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr "Faga primeiro unha copia de seguridade dos seus datos"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "ĄLea coidadosamente!"
@@ -1468,11 +1311,12 @@ msgstr ""
"Se ten pensado usar aboot, teńa coidado de deixar un espacio libre (2048\n"
"sectores abondan) no inicio do disco"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Erro"
@@ -1480,11 +1324,11 @@ msgstr "Erro"
msgid "Wizard"
msgstr "Axudante"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Escolla a acción"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1496,150 +1340,155 @@ msgstr ""
"Aconséllase que primeiro a redimensione\n"
"(prema nela, e logo en \"Redimensionar\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Prema nunha partición"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Detalles"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
#, fuzzy
msgid "Journalised FS"
msgstr "mount fallou"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Intercambio"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Baleiro"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Outros"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Tipos de sist. de ficheiros:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Crear"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tipo"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Use ``%s'' no seu lugar"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Borrar"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Use ``Desmontar'' primeiro"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Ó mudar o tipo da partición %s, perderanse tódolos datos desta partición"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose a partition"
msgstr "Escolla a acción"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose another partition"
msgstr "Crear unha nova partición"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Mudar a modo experto"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Mudar a modo normal"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Refacer"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "żContinuar de calquera xeito?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Saír sen gardar"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "żSaír do programa sen gardar a táboa de particións?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "żDesexa probar a configuración?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Asignación automática"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Borrar todas"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Máis"
+
+#: ../../diskdrake/interactive.pm_.c:263
#, fuzzy
msgid "Hard drive information"
msgstr "Información do correo"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Tódalas particións primarias están usadas"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Non é posible engadir máis particións"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1647,35 +1496,35 @@ msgstr ""
"Para ter máis particións, borre unha para poder crear unha partición "
"estendida"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr "Escribir táboa de particións"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr "Táboa de particións de rescate"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Táboa de particións de rescate"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr "Táboa de particións de rescate"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Removable media automounting"
msgstr "Automonta-las unidades extraíbles"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Seleccione un ficheiro"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1683,11 +1532,11 @@ msgstr ""
"A táboa de particións de rescate non ten\n"
"o mesmo tamańo. żContinuar de calquera xeito?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Advertencia"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1695,124 +1544,131 @@ msgstr ""
"Insira un disquete na unidade\n"
"Perderanse tódolos datos no disquete"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Tentando recuperar a táboa de particións de rescate"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
#, fuzzy
msgid "Detailed information"
msgstr "Información do correo"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Punto de montaxe"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opcións"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Redimensionar"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Desprazar"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formatar"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Montar"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Engadir ó RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Engadir ó LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Desmontar"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Quitar do RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Quitar do LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Modificar o RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Usar para loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Crear unha nova partición"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Sector inicial: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Tamańo en MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Tipo de sist. de ficheiros: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Punto de montaxe: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Preferencia: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+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/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Formatando o ficheiro loopback %s"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Mudar o tipo de partición"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "żQué sistema de ficheiros desexa?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "żOnde desexa montar o ficheiro loopback %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "żOnde desexa montar o dispositivo %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1821,129 +1677,136 @@ msgstr ""
"usar de loopback.\n"
"Quite primeiro o loopback"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Calculando os límites do sistema de ficheiros FAT"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Redimensionando"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Esta partición non se pode redimensionar"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Debería facer unha copia de seguridade dos datos desta partición"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Ó redimensionar a partición %s, perderanse tódolos datos desta partición"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Escoller o novo tamańo"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
#, fuzzy
msgid "New size in MB: "
msgstr "Tamańo en MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "żA que disco desexa desprazala?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sector"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "żA que sector desexa desprazala?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Desprazando"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Desprazando partición..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Escolla un dos RAID para engadirlle"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "novo"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Escolla un dos LVM para engadirlle"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "żNome do LVM?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Esta partición non pode usarse para loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Nome do ficheiro loopback: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr "Nome real"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "O ficheiro xa está a ser usado por outro loopback, escolla outro"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "O ficheiro xa existe. żUsalo?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
#, fuzzy
msgid "Mount options"
msgstr "Opcións do módulo:"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "dispositivo"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "nivel"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "tamańo do bloque de datos"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Teńa coidado: esta operación é perigosa."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "żQué tipo de particionamento quere?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr ""
+"Este paquete ten que ser actualizado\n"
+"żEstá seguro de que quere deseleccionalo?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1954,7 +1817,7 @@ msgstr ""
"(nun cilindro > 1024). Se usa o LILO, non funcionará, e se non o\n"
"usa, non necesita /boot"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1966,7 +1829,7 @@ msgstr ""
"Se pensa usar o selector de SO de arrinque LILO, lembre engadir unha\n"
"partición /boot"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1977,138 +1840,138 @@ msgstr ""
"partición /boot.\n"
"Lembre polo tanto engadir unha partición /boot"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "ĄEscribirase ó disco a táboa de particións da unidade %s!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Necesitará reiniciar o equipo para que a modificación sexa tomada en conta"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Ó formatar a partición %s, perderanse tódolos datos desta partición"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Formatando"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatando o ficheiro loopback %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Formatando a partición %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Hide files"
msgstr "mkraid fallou"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr "Non hai espacio libre dabondo para asignar novas particións"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Non hai espacio libre dabondo para asignar novas particións"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Resolución: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Dispositivo: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Letra de unidade DOS: %s (aproximación)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Tipo: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Nome: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Inicio: sector %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Tamańo: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sectores"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cilindro %d a cilindro %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Formatado\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Non formatado\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Montado\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Ficheiro(s) loopback: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2116,27 +1979,27 @@ msgstr ""
"Partición de arrinque por omisión\n"
" (para arrincar en MS-DOS, non para lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Nivel %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Tamańo do bloque de datos %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "Discos RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Nome do ficheiro loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2144,7 +2007,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2152,65 +2015,65 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Tamańo: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Xeometría: %s cilindros, %s cabezas, %s sectores\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "Discos LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tipo de táboa de particións: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "no bus %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Opcións: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Tipo de sist. de ficheiros: "
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Este contrasinal é demasiado simple (ten que ter polo menos %d caracteres)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Os contrasinais non coinciden"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2221,36 +2084,66 @@ msgstr "Mudar o tipo de partición"
#: ../../diskdrake/removable_gtk.pm_.c:28
#, fuzzy
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Prema nunha partición"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Autenticación"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Internet"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Nome de usuario"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Nome de usuario"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "Dominio NIS"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "Servidor DNS"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "O formato %s de %s fallou"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Descońécese o xeito de formatar %s de tipo %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "erro desmontando %s: %s"
@@ -2267,69 +2160,323 @@ msgstr ""
msgid "server"
msgstr "servidor"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Non pode usar JFS para particións máis pequenas que 16MB"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Non pode usar ReiserFS para particións máis pequenas que 32MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Os puntos de montaxe deben empezar por /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Xa existe unha partición co punto de montaxe %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Non pode usar un volume lóxico LVM para o punto de montaxe %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Este directorio debería permanecer dentro do sistema de ficheiros raíz"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Necesita un sistema de ficheiros real (ext2, reiserfs) para este punto de "
"montaxe\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Non pode usar un volume lóxico LVM para o punto de montaxe %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Non hai espacio libre dabondo para asignar novas particións"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Erro ó abrir %s para escritura: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Ocorreu un erro - non se atopou ningún dispositivo válido para crear novos "
"sistemas de ficheiros. Verifique o seu equipo para ver a razón deste problema"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "ĄNon ten ningunha partición!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Usar detección automática"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Xenérico"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Memoria da tarxeta (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Formatando"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Mudar o tipo de partición"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Saír"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/A_xuda"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/A_xuda"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Axuda/_Acerca..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Rato"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Memoria da tarxeta (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Cancelar"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Rato"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Descrición"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Autenticación"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Seleccione un ficheiro"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Dispositivo de pasarela"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 botóns"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Detectar discos duros"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Mire a información sobre o hardware"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Mostrar información"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Configurar o rato"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "detectado no porto %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Agarde, por favor"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d segundos"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Lendo a base de datos de controladores de CUPS..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Autodetección"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2343,7 +2490,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2414,9 +2561,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2606,7 +2752,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2618,9 +2764,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2667,21 +2812,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2697,9 +2841,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Neste punto, ten que escoller onde quere instalar o sistema operativo\n"
"Mandrake Linux no disco duro. Se está baleiro, ou se hai outro sistema\n"
@@ -2784,9 +2928,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -2896,38 +3039,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3002,11 +3139,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3063,7 +3200,7 @@ msgstr ""
"cońecemento de GNU/Linux. Polo tanto, non\n"
" escolla esta clase de instalación a menos que saiba o que está a facer."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3078,7 +3215,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3093,7 +3230,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3109,7 +3246,7 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
#, fuzzy
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
@@ -3118,23 +3255,23 @@ msgstr ""
"Seleccione o porto correcto. Por exemplo, o porto\n"
"COM1 en MS Windows chámase ttyS0 en GNU/Linux."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3156,7 +3293,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3178,7 +3315,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3186,7 +3323,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3207,7 +3344,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
#, fuzzy
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
@@ -3233,7 +3370,7 @@ msgstr ""
"poidendo borrar as entradas correspondentes. Pero neste caso, precisará\n"
"un disquete de arrinque para poder usalos."
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
#, fuzzy
msgid ""
"You must indicate where you wish to place the information required to boot\n"
@@ -3249,29 +3386,28 @@ msgstr ""
"A menos que sepa exactamente o que fai, elixa sempre\n"
"\"Primeiro sector do disco (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3280,7 +3416,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3305,11 +3441,11 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3319,9 +3455,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3333,7 +3468,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" 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"
@@ -3359,7 +3494,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3386,18 +3521,17 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3405,12 +3539,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3426,14 +3559,14 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3444,7 +3577,7 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3452,12 +3585,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3472,20 +3605,20 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr ""
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Insira un disquete formatado con FAT na unidade %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3493,7 +3626,7 @@ msgstr ""
"Para usar esta selección de paquetes gardada, arrinque a instalación con "
"``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Erro lendo o ficheiro %s"
@@ -3523,7 +3656,7 @@ msgstr "Debe ter unha partición de intercambio"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -3531,60 +3664,60 @@ msgstr ""
"\n"
"żDesexa continuar de calquera xeito?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Debe ter unha partición de intercambio"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Usar espacio libre"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Non hai espacio libre dabondo para asignar novas particións"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Usar partición existente"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Non hai ningunha partición existente para usar"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Usar a partición de Windows para loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "żQue partición desexa usar para Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Escolla os tamańos"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Tamańo da partición raíz en MB: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Tamańo da partición de intercambio en MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Usar o espacio libre da partición de Windows"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "żQue partición desexa redimensionar?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Calculando os límites do sistema de ficheiros de Windows"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -3593,13 +3726,16 @@ msgstr ""
"O redimensionador de FAT non é capaz de manexar a súa partición,\n"
"ocorreu o seguinte erro: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"A partición de Windows está demasiado fragmentada, execute primeiro o "
"``defrag''"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -3620,56 +3756,56 @@ msgstr ""
"Tamén é aconsellable facer unha copia de seguridade dos seus datos.\n"
"Cando estea seguro, prema Aceptar."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "żQue tamańo desexa manter para o Windows en"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "partición %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "O redimensionamento da FAT fallou: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Non hai particións FAT para redimensionar ou para usar como loopback (ou non "
"hai espacio libre dabondo)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Borrar o disco completo"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Borrar Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
"Ten máis dunha unidade de disco duro, żen cal delas desexa instalar linux?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"Perderanse TODAS as particións existentes e os seus datos na unidade %s"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Particionamento de disco personalizado"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Usar fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -3678,11 +3814,11 @@ msgstr ""
"Pode agora particionar %s.\n"
"Cando remate, non esqueza gravar usando `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Non ten espacio libre dabondo na partición de Windows"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Non se pode atopar espacio para a instalación"
@@ -3690,16 +3826,16 @@ msgstr "Non se pode atopar espacio para a instalación"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "O axudante de particionamento do DrakX atopou as seguintes solucións:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "O particionamento fallou: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Activando a rede"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Desactivando a rede"
@@ -3711,12 +3847,12 @@ msgstr ""
"Ocorreu un erro, e o programa non sabe como manexalo de\n"
"maneira limpa. Continúe ó seu propio risco."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Punto de montaxe %s duplicado"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3728,12 +3864,12 @@ msgstr ""
"Comprobe o cdrom nun ordenador xa instalado usando \"rpm -qpl Mandrake/RPMS/"
"*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Benvido a %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Ningunha disqueteira dispońible"
@@ -3743,9 +3879,9 @@ msgstr "Ningunha disqueteira dispońible"
msgid "Entering step `%s'\n"
msgstr "Entrando na etapa '%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -3755,203 +3891,158 @@ msgstr ""
"en modo texto. Para iso, prema 'F1' cando arrinque o CDROM, e escriba\n"
"'text'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Clase de instalación"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Escolla unha das seguintes clases de instalación:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "O tamańo total dos grupos que seleccionou é aproximadamente %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Se quere instalar menos deste tamańo,\n"
-"seleccione a porcentaxe de paquetes que desexe.\n"
-"\n"
-"Unha porcentaxe baixa instalará só os paquetes máis importantes;\n"
-"unha porcentaxe dun 100%% instalará tódolos paquetes seleccionados."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Ten espacio no seu disco para unicamente o %d%% destes paquetes.\n"
-"\n"
-"Se desexa instalar menos ca isto,\n"
-"seleccione a porcentaxe de paquetes que quere instalar.\n"
-"Unha porcentaxe baixa instalará só os paquetes máis importantes;\n"
-"unha porcentaxe de %d%% instalará tódolos paquetes posibles."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Vostede poderá escollelos máis especificamente na seguinte etapa."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Porcentaxe de paquetes a instalar"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Selección dos grupos de paquetes"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Selección individual de paquetes"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Tamańo total: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Paquete erróneo"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Nome: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Versión: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Tamańo: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Importancia: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Non pode seleccionar este paquete xa que non hai espacio dabondo para "
"instalalo"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Vanse instalar os seguintes paquetes"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Vanse eliminar os seguintes paquetes"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Non pode seleccionar/deseleccionar este paquete"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Este é un paquete obrigatorio, non se pode deseleccionar"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Non pode deseleccionar este paquete. Xa está instalado"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Este paquete ten que ser actualizado\n"
"żEstá seguro de que quere deseleccionalo?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Non pode deseleccionar este paquete. Ten que ser actualizado"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Instalar"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Gardar nun disquete"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
#, fuzzy
msgid "Updating package selection"
msgstr "Gardar a selección de paquetes"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
#, fuzzy
msgid "Minimal install"
msgstr "Desinstalar"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Escolla os paquetes que desexa instalar"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Instalando"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Estimando"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Tempo restante "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Por favor, agarde, preparando a instalación"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d paquetes"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Instalando o paquete %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Aceptar"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Rexeitar"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -3965,17 +4056,17 @@ msgstr ""
"Por favor, insira o Cd-Rom etiquetado \"%s\" na unidade e prema Aceptar. Se "
"non o ten, prema Cancelar para omitir a instalación deste Cd-Rom."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "żSeguir adiante?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Houbo un erro ó ordenar os paquetes:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Houbo un erro ó instalar os paquetes:"
@@ -4020,11 +4111,11 @@ msgstr "Ocorreu un erro"
msgid "Do you really want to leave the installation?"
msgstr "żDesexa reiniciar a rede?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Acordo da licencia"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4039,7 +4130,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -4145,113 +4236,117 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Teclado"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Escolla a disposición do seu teclado."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Esta é a lista completa de teclados dispońibles"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "żQué clase de instalación desexa?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Instalar/Actualizar"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "żÉ isto unha instalación ou unha actualización?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Recomendada"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Experto"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade"
msgstr "Actualización"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr "Gardar a selección de paquetes"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Escolla o seu tipo de rato."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Porto do rato"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Escolla o porto serie onde está conectado o seu rato."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Configurando tarxetas PCMCIA..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Configurando o IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "ningunha partición dispońible"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Examinando as particións para atopar os puntos de montaxe"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Seleccione os puntos de montaxe"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4264,7 +4359,7 @@ msgstr ""
"\n"
"żConcorda coa perda de tódalas particións?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4272,144 +4367,147 @@ msgstr ""
"O DiskDrake non puido ler correctamente a táboa de particións.\n"
"ĄContinúe ó seu propio risco!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Elixa as particións que desexa formatar"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Partición raíz"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "żCal é a partición raíz (/) do seu sistema?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Necesita reiniciar o equipo para que a modificación da táboa\n"
"de particións se tome en conta"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Elixa as particións que desexa formatar"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "żComprobar os bloques erróneos?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Formatando as particións"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Creando e formatando o ficheiro %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Non hai espacio de intercambio dabondo para finalizar a instalación,\n"
"por favor, engada algún"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Buscando os paquetes dispońibles"
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "Buscando os paquetes dispońibles"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Atopando os paquetes para actualizar"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Non pode deseleccionar este paquete. Xa está instalado"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"O seu sistema non ten espacio libre dabondo para a instalación ou "
"actualización (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Completo (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Mínimo (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Recomendado (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
#, fuzzy
msgid "Load from floppy"
msgstr "Restaurar a partir dun disquete"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Loading from floppy"
msgstr "Restaurar a partir dun disquete"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Package selection"
msgstr "Selección dos grupos de paquetes"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Insira un disquete na unidade %s"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Gardar nun disquete"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
#, fuzzy
msgid "Type of install"
msgstr "Elixa o paquete a instalar"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
#, fuzzy
msgid "With X"
msgstr "Agarde"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4419,16 +4517,16 @@ msgstr ""
"Se non ten ningún deses CDs, prema Cancelar.\n"
"Se só faltan algúns dos CDs, desmárqueos, e prema Aceptar."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom etiquetado \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Preparando a instalación"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4437,23 +4535,23 @@ msgstr ""
"Instalando o paquete %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Configuración trala instalación"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Insira un disquete na unidade %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Insira un disquete baleiro na unidade %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -4522,167 +4620,198 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Contactando co espello para obter a lista dos paquetes dispońibles"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Escoller un espello do que coller os paquetes"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Contactando co espello para obter a lista dos paquetes dispońibles"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "żCal é a súa zona horaria?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "żO reloxo interno do seu ordenador usa a hora GMT?"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
#, fuzzy
msgid "NTP Server"
msgstr "Servidor NIS"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Servidor CUPS remoto"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Sen impresora"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "żTen algunha outra?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Resume"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Rato"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Zona horaria"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Impresora"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "Tarxeta RDSI"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Tarxeta de son"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "Tarxeta de TV"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "NIS"
msgstr "Usar NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Windows(FAT32)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Local files"
msgstr "Impresora local"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Contrasinal de root"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Sen contrasinal"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Este contrasinal é demasiado simple (ten que ter polo menos %d caracteres)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autenticación"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
#, fuzzy
msgid "Authentication LDAP"
msgstr "Autenticación"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "LDAP Server"
msgstr "Servidor"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
#, fuzzy
msgid "Authentication NIS"
msgstr "Autenticación NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "Dominio NIS"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "Servidor NIS"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Autenticación"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Dominio NIS"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "Servidor NIS"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
#, fuzzy
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4711,19 +4840,19 @@ msgstr ""
"de Mandrake, facendo así moito máis fácil a recuperación no caso de fallo\n"
"grave do sistema. żDesexa crear un disco de arrinque para o seu sistema?"
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Primeira unidade de disquete"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Segunda unidade de disquete"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Omitir"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4750,7 +4879,7 @@ msgstr ""
"grave do sistema. żDesexa crear un disco de arrinque para o seu sistema?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -4759,28 +4888,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Desculpe, pero non hai ningunha disqueteira dispońible"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Escolla a disqueteira que quere usar para crear o disco de arranque"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Insira un disquete na unidade %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Creando o disco de arrinque"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Preparando o cargador de arrinque"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4788,11 +4917,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "żDesexa usar aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -4800,16 +4929,16 @@ msgstr ""
"Erro instalando aboot, \n"
"żprobar a forzar a instalación mesmo se iso destrúe a primeira partición?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
#, fuzzy
msgid "Installing bootloader"
msgstr "Cargador de arrinque"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "A instalación do xestor de arrinque fallou. Ocorreu o seguinte erro:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4820,18 +4949,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Insira un disquete baleiro na unidade %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Creando un disquete de auto-instalación"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -4841,7 +4969,8 @@ msgstr ""
"\n"
"żDesexa realmente saír agora?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -4852,7 +4981,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -4866,18 +4995,22 @@ msgstr ""
"de Mandrake Linux, consulte o ficheiro de erratas dispońibles en\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Para información sobre a configuración do seu sistema, despois\n"
"da instalación, hai un capítulo na Guía do Usuario Oficial\n"
"de Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Xerar disquete de auto-instalación"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4891,15 +5024,15 @@ msgstr ""
"\n"
"Pode preferir realizar novamente a instalación.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automatizada"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Reproducir"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Gardar a selección de paquetes"
@@ -4927,422 +5060,406 @@ msgstr ""
msgid "Choose a file"
msgstr "Escolla a acción"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Avanzado"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Agarde, por favor"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Expandir árbore"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Pechar árbore"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Mudar entre lista completa e ordenada por grupos"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Elección incorrecta, tente de novo\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "żA súa escolla? (por omisión %s)"
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "żA súa escolla? (por omisión %s)"
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Opcións: %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr "żDesexa usar aboot?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "żA súa escolla? (por omisión %s)"
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Checo (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Alemán"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Teclado dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Espańol"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finlandés"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Francés"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Noruegués"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Polaco"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Ruso"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Sueco"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Británico"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Estadounidense"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Albanian"
msgstr "Iraniano"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armenio (antigo)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armenio (máquina de escribir)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armenio (fonético)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbaianí (latín)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belga"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armenio (fonético)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Búlgaro"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brasileiro (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Bielorruso"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Suízo (alemán)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Suízo (francés)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Checo (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Alemán (sen teclas acentuadas)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Dinamarqués"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (EUA)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Noruegués)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (EUA)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estonio"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Xeorxiano (\"ruso\")"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Xeorxiano (\"latino\")"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Grego"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Húngaro"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Croata"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Israelí"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Israelí (Fonético)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iraniano"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islandés"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Italiano"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Xaponés de 106 teclas"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
#, fuzzy
msgid "Korean keyboard"
msgstr "Británico"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latinoamericano"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Lituano AZERTY (antigo)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Lituano AZERTY (novo)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituano \"ringleira de números\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituano \"fonético\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
#, fuzzy
msgid "Latvian"
msgstr "Localización"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Macedonio"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Holandés"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Polaco (disposición qwerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Polaco (disposición qwertz)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugués"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Canadiano (Québec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Ruso (Yawerty)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Ruso (Yawerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Ruso (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Esloveno"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Eslovaco (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Eslovaco (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Azerbaianí (cirílico)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Táboa"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Teclado Thai"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Teclado Thai"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turco (tradicional modelo \"F\")"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turco (moderno modelo \"Q\")"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ucraíno"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Estadounidense (internacional)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamita \"ringleira de números\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Iugoslavo (latín/cirílico)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5355,7 +5472,31 @@ msgstr "Puntos de montaxe circulares %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Quitar primeiro os volumes lóxicos\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Número de teléfono"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Formatar particións"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5396,10 +5537,6 @@ msgstr "1 botón"
msgid "Generic 2 Button Mouse"
msgstr "Rato de 2 botóns xenérico"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Xenérico"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Roda"
@@ -5464,38 +5601,54 @@ msgstr "ningún"
msgid "No mouse"
msgstr "Ningún rato"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Probe o seu rato"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Para activar o rato,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "ĄMOVA A RODA!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Finalizar"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Seguinte ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Anterior"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "żÉ isto correcto?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Info"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Expandir árbore"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Pechar árbore"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Mudar entre lista completa e ordenada por grupos"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Conectar á Internet"
@@ -5542,7 +5695,7 @@ msgstr ""
"Non se detectou ningún adaptador de rede ethernet no seu sistema.\n"
"Non se pode configurar este tipo de conexión."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Escolla a interface de rede"
@@ -5555,7 +5708,7 @@ msgstr "Escolla o adaptador de rede que desexa usar para conectar á Internet"
msgid "no network card found"
msgstr "non se atopou ningunha tarxeta de rede"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Configurando a rede"
@@ -5571,15 +5724,15 @@ msgstr ""
"Este nome debe ser completamente cualificado,\n"
"como ``mińamaquina.meulab.mińacomp.es''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Nome de máquina"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Axudante da configuración de rede"
@@ -5627,7 +5780,7 @@ msgstr "Configuración da RDSI"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Seleccione o seu provedor.\n"
" Se non está na lista, escolla 'Unlisted'"
@@ -5650,14 +5803,14 @@ msgstr "Resto do mundo"
#: ../../network/isdn.pm_.c:185
#, fuzzy
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Resto do mundo \n"
" sen canle-D (lińas dedicadas)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "żQué protocolo desexa usar?"
#: ../../network/isdn.pm_.c:199
@@ -5681,7 +5834,8 @@ 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"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Se ten unha tarxeta ISA, os valores na seguinte pantalla deberían ser os "
@@ -5698,13 +5852,13 @@ msgid "Continue"
msgstr "Continuar"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "żCal é a sua tarxeta RDSI?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Detectouse unha Tarxeta RDSI PCI, pero se descońece o tipo. Seleccione unha "
"tarxeta PCI na seguinte pantalla."
@@ -5722,47 +5876,47 @@ msgstr "Escolla o porto serie onde está conectado o seu módem."
msgid "Dialup options"
msgstr "Opcións de chamada"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Nome da conexión"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Número de teléfono"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "ID do login"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr ""
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Baseado nun script"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Baseado nun terminal"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Nome de dominio"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Primeiro Servidor DNS (opcional)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Segundo Servidor DNS (opcional)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -5770,7 +5924,7 @@ msgstr ""
"\n"
"Pode desconectar ou reconfigurar a súa conexión."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -5778,11 +5932,11 @@ msgstr ""
"\n"
"Pode reconfigurar a súa conexión."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Está neste intre conectado á internet."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -5790,36 +5944,36 @@ msgstr ""
"\n"
"Pode conectar á Internet ou reconfigurar a súa conexión."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Non está neste intre conectado á Internet."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Conectar"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
#, fuzzy
msgid "Disconnect"
msgstr "conexión por RDSI"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "Configurar a rede"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Conexión e configuración de Internet"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
"\n"
"Pode desconectar ou reconfigurar a súa conexión."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, fuzzy, c-format
msgid ""
"\n"
@@ -5833,12 +5987,12 @@ msgstr ""
"\n"
"Pode desconectar ou reconfigurar a súa conexión."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Configuración da rede"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -5849,10 +6003,10 @@ msgstr ""
"Prema Aceptar para manter a configuración, ou Cancelar para reconfigurar a "
"conexión de rede e Internet.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
#, fuzzy
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"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"
@@ -5862,93 +6016,99 @@ msgstr ""
"Vaise configurar a súa conexión á internet/rede.\n"
"Se non quere usar a detección automática, desmarque a caixa.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Escolla o perfil para configurar"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Usar detección automática"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Modo experto"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Detectando os dispositivos..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Conexión normal por módem"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "detectado no porto %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "conexión por RDSI"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "detectouse %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy
msgid "ADSL connection"
msgstr "Conexión LAN"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "detectouse na interface %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Conexión por cable"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "cable connection detected"
msgstr "Conexión por cable"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "Conexión LAN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "tarxeta(s) ethernet detectada(s)"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Elixa a ferramenta que queira usar"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
#, fuzzy
msgid "Internet connection"
msgstr "Compartición da conexión á Internet"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "żDesexa que a conexión se inicie ó arrincar?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Configuración da rede"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -5956,7 +6116,7 @@ msgid ""
"%s"
msgstr "żDesexa reiniciar a rede?"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -5966,7 +6126,7 @@ msgstr ""
"\n"
"Agora vai ser aplicada ó seu sistema.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -5974,16 +6134,16 @@ msgstr ""
"Tras facer iso, aconséllase reiniciar o sistema X para\n"
"evitar os problemas de mudar o nome de máquina."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"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."
@@ -5993,7 +6153,7 @@ msgstr ""
"Simplemente acepte para manter o dispositivo configurado.\n"
"Se modifica os campos de embaixo, subsituirá esta configuración."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6003,38 +6163,43 @@ msgstr ""
"Cada valor ten que ser introducido coma un enderezo IP en\n"
"notación decimal con puntos (por exemplo: 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Configurar o dispositivo de rede %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (controlador %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "Enderezo IP"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Máscara de rede"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "IP automático"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Iniciado o arrincar"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "Os enderezos IP deben estar no formato 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6046,64 +6211,64 @@ msgstr ""
"como ``mińamaquina.meulab.mińacomp.es''.\n"
"Pode tamén introducir o enderezo IP da pasarela se usa unha"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "Servidor DNS"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Dispositivo de pasarela"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Configuración dos proxys"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "O proxy debería ser http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "O proxy debería ser ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Configuración de Internet"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "żQuere probar agora a conexión á Internet?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Probando a conexión..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "O sistema está conectado á Internet."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr ""
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6111,114 +6276,119 @@ msgstr ""
"Semella que o sistema non está conectado á internet.\n"
"Probe reconfigurando a conexión."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Configuración da conexión"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Encha ou marque os campos de embaixo"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ da tarxeta"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Memoria da tarxeta (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "E/S da tarxeta"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "E/S_0 da tarxeta"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "E/S_1 da tarxeta"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "O seu número de teléfono persoal"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Nome do provedor (p.ex provider.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Número de teléfono do provedor"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Dns 1 do provedor (opcional)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Dns 2 do provedor (opcional)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
#, fuzzy
msgid "Choose your country"
msgstr "Escoller teclado"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Modo de marcación"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection speed"
msgstr "Tipo de conexión: "
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Tipo de conexión: "
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Login da conta (nome de usuario)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Contrasinal da conta"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "mount fallou: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "As particións estendidas non están soportadas nesta plataforma"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Ten un burato na táboa de particións, pero non se pode usar.\n"
"A única solución é desprazar as particións primarias para que\n"
"o burato esté despois das particións estendidas"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Fallou a restauración a partir do ficheiro %s: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Ficheiro de backup incorrecto"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Erro escribindo ó ficheiro %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6228,193 +6398,193 @@ msgstr ""
"A proba para verificar a integridade dos datos fallou.\n"
"Isto significa que calquera escritura no disco producirá lixo aleatorio"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "debe telo"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "importante"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "moi bo"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "bo"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "indiferente"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr ""
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr ""
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Impresora local"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Impresora remota"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "Servidor CUPS remoto"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Servidor lpd remoto"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Impresora de rede (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Impresora SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Servidor de impresión"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
#, fuzzy
msgid "Enter a printer device URI"
msgstr "URI do dispositivo de impresión"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr "Impresora local"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr "Impresora remota"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Erro escribindo ó ficheiro %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(módulo %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP do servidor CUPS"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Por omisión)"
@@ -6437,12 +6607,12 @@ msgstr ""
"ningunha impresora, xa que serán detectadas automaticamente.\n"
"No caso de dúbida, seleccione \"Servidor CUPS remoto\"."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "Configuración da LAN"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "Servidor CUPS remoto"
@@ -6473,7 +6643,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "Os enderezos IP deben estar no formato 1.2.3.4"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
#, fuzzy
msgid "The port number should be an integer!"
msgstr "O número de porto debe ser numérico"
@@ -6482,7 +6652,7 @@ msgstr "O número de porto debe ser numérico"
msgid "CUPS server IP"
msgstr "IP do servidor CUPS"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Porto"
@@ -6491,22 +6661,13 @@ msgstr "Porto"
msgid "Automatic CUPS configuration"
msgstr "Configuración do estilo de arrinque"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "Detectando os dispositivos..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Probar portos"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "Sen impresora"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6519,14 +6680,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr "Impresora local"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6544,12 +6705,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "Impresora remota"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6563,11 +6724,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6577,35 +6738,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "Usar detección automática"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "Impresora remota"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Probar portos"
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "detectouse %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
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, ..., "
@@ -6613,43 +6778,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "URI do dispositivo de impresión"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr "Impresora local"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6657,7 +6822,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6665,73 +6830,83 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Escolla o porto serie onde está conectado o seu módem."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "URI do dispositivo de impresión"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "Configuración"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "Instalando o paquete %s"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing SANE packages..."
msgstr "Instalando o paquete %s"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Instalando o paquete %s"
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
#, fuzzy
-msgid "Making printer port available for CUPS ..."
+msgid "Making printer port available for CUPS..."
msgstr "Lendo a base de datos de controladores de CUPS..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
#, fuzzy
-msgid "Reading printer database ..."
+msgid "Reading printer database..."
msgstr "Lendo a base de datos de controladores de CUPS..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Opcións da impresora remota lpd"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -6741,31 +6916,31 @@ msgstr ""
"que indique o nome do servidor de impresión e o nome da fila\n"
"nese servidor."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
#, fuzzy
msgid "Remote host name"
msgstr "Nome do servidor"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
#, fuzzy
msgid "Remote printer name"
msgstr "Impresora remota"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
#, fuzzy
msgid "Remote host name missing!"
msgstr "Nome do servidor"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Nome do servidor"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Opcións de impresora SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -6780,35 +6955,35 @@ msgstr ""
"da impresora que quere usar, así como calquera nome de usuario,\n"
"grupo de traballo ou contrasinal que for necesario."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "Servidor de SMB"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP do servidor SMB"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Nome de recurso compartido"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Grupo de traballo"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -6832,7 +7007,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -6841,7 +7016,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -6849,11 +7024,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Opcións de impresora NetWare"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -6867,28 +7042,28 @@ msgstr ""
"que desexa usar, así como calquera nome de usuario ou contrasinal\n"
"que for necesario."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Servidor de impresión"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Nome da fila de impresión"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Opcións da impresora de socket"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
@@ -6899,60 +7074,56 @@ msgstr ""
"Para imprimir nunha impresora de socket, ten que fornecer\n"
"o nome do servidor da impresora, e opcionalmente o número do porto."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
#, fuzzy
msgid "Printer host name"
msgstr "Servidor de impresión"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
#, fuzzy
msgid "Printer host name missing!"
msgstr "Servidor de impresión"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "URI do dispositivo de impresión"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
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 ""
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Nome da impresora"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Descrición"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Localización"
-#: ../../printerdrake.pm_.c:1021
+#: ../../printerdrake.pm_.c:1045
#, fuzzy
-msgid "Preparing printer database ..."
+msgid "Preparing printer database..."
msgstr "Lendo a base de datos de controladores de CUPS..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "Impresora remota"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -6967,28 +7138,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "żÉ isto correcto?"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "Impresora remota"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
#, fuzzy
msgid "Printer model selection"
msgstr "Conexión da impresora"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
#, fuzzy
msgid "Which printer model do you have?"
msgstr "żQué tipo de impresora ten?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -6997,18 +7168,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Configuración de Internet"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7018,12 +7189,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Configuración de Internet"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7031,7 +7202,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7044,7 +7215,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7054,34 +7225,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "żDesexa probar a impresión?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
#, fuzzy
msgid "Test pages"
msgstr "Probar portos"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7089,45 +7260,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
#, fuzzy
msgid "No test pages"
msgstr "Si, imprimir ambas páxinas de proba"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
#, fuzzy
msgid "Print"
msgstr "Impresora"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
#, fuzzy
msgid "Standard test page"
msgstr "Ferramentas estándar"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Imprimindo páxina(s) de proba..."
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
#, fuzzy
msgid "Photo test page"
msgstr "Imprimindo páxina(s) de proba..."
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "Imprimindo páxina(s) de proba..."
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Imprimindo páxina(s) de proba..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7143,7 +7314,7 @@ msgstr ""
"\n"
"żFunciona correctamente?"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7153,16 +7324,16 @@ msgstr ""
"Pode que lle leve un pouco ata que a impresora comece.\n"
"żFunciona correctamente?"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "Sen impresora"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7171,15 +7342,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
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 ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7188,49 +7359,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, 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\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7240,7 +7411,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7249,31 +7420,42 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-#, fuzzy
-msgid "Close"
-msgstr "Rato"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Desactivando a rede"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Desactivando a rede"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Desactivando a rede"
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Desactivando a rede"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+#, fuzzy
+msgid "Close"
+msgstr "Rato"
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "Opcións da impresora"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7281,38 +7463,38 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
#, fuzzy
-msgid "Reading printer data ..."
+msgid "Reading printer data..."
msgstr "Lendo a base de datos de controladores de CUPS..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Configuración de Internet"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7322,51 +7504,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7374,62 +7556,62 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid "New printer name"
msgstr "Sen impresora"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, 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 ""
-#: ../../printerdrake.pm_.c:1887
+#: ../../printerdrake.pm_.c:1935
#, fuzzy
-msgid "Refreshing printer data ..."
+msgid "Refreshing printer data..."
msgstr "Lendo a base de datos de controladores de CUPS..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Configurar a impresora"
-#: ../../printerdrake.pm_.c:1896
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
-msgid "Starting network ..."
+msgid "Starting network..."
msgstr "Probando a conexión..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr "Configurar a rede"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "O monitor non está configurado"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7437,12 +7619,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Configurando a rede"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7452,34 +7634,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
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 ""
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
-msgid "Restarting printing system ..."
+msgid "Restarting printing system..."
msgstr "żQue sistema de impresión desexa usar?"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "Alto"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "Paranoico"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7494,12 +7676,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "żQue sistema de impresión desexa usar?"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7513,69 +7695,69 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Selección da conexión da impresora"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "żQue sistema de impresión desexa usar?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Configurar impresora"
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr "Instalando o paquete %s"
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Opcións da impresora"
-#: ../../printerdrake.pm_.c:2318
+#: ../../printerdrake.pm_.c:2389
#, fuzzy
-msgid "Preparing PrinterDrake ..."
+msgid "Preparing PrinterDrake..."
msgstr "Lendo a base de datos de controladores de CUPS..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Configurar impresora"
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "żDesexa configurar unha impresora?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7586,7 +7768,7 @@ msgstr ""
"Estas son as filas de impresión.\n"
"Pode engadir unha nova ou cambiar as que xa existen."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7596,139 +7778,143 @@ msgstr ""
"Estas son as filas de impresión.\n"
"Pode engadir unha nova ou cambiar as que xa existen."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Configurar a rede"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr ""
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Saír"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "żDesexa probar a configuración?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
#, fuzzy
msgid "Modify printer configuration"
msgstr "Configuración de Internet"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "żDesexa probar a configuración?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
#, fuzzy
msgid "Printer connection type"
msgstr "Compartición da conexión á Internet"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
#, fuzzy
msgid "Printer name, description, location"
msgstr "Conexión da impresora"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
#, fuzzy
msgid "Print test pages"
msgstr "Imprimindo páxina(s) de proba..."
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "żDesexa probar a configuración?"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
#, fuzzy
msgid "Remove printer"
msgstr "Impresora remota"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
msgstr "Lendo a base de datos de controladores de CUPS..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
#, fuzzy
msgid "Default printer"
msgstr "Impresora local"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "żDesexa reiniciar a rede?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr "Lendo a base de datos de controladores de CUPS..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -7812,24 +7998,60 @@ msgstr "Os contrasinais non coinciden"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Non se pode engadir unha partición ó RAID _formatado_ md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Non se pode escribir o ficheiro %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid fallou"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid fallou (żpode que non estean as raidtools?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Non hai particións dabondo para o nivel RAID %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Este nivel hai que usalo con coidado. Fai que o seu sistema sexa máis\n"
+"sinxelo de utilizar, pero é moi sensible: non debe usarse nunha máquina\n"
+"conectada a outras ou á Internet. Non hai contrasinais de acceso."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+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 ""
+"Con este nivel de seguridade, é posible usar este sistema coma servidor.\n"
+"A seguridade é agora alta dabondo para usar o sistema coma un servidor\n"
+"que acepta conexións de múltiples clientes."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Configuración da LAN"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Opcións"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -7884,7 +8106,7 @@ msgid ""
"new/changed hardware."
msgstr ""
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -7953,7 +8175,7 @@ msgid ""
"available server."
msgstr ""
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -8029,7 +8251,7 @@ msgstr ""
"como NFS e NIS. O servidor portmap ten que estar a se executar en máquinas\n"
"que actúan de servidores de protocolos que usan o mecanismo RPC."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -8128,7 +8350,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "Mouse Systems"
@@ -8251,6 +8473,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Centro de control"
@@ -8355,6 +8578,15 @@ msgstr ""
msgid "Installing packages..."
msgstr "Instalando o paquete %s"
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Saia da sesión e use Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Entre de novo en %s para activar os cambios"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8363,6 +8595,160 @@ msgstr ""
"Non se pode ler a táboa de particións, está demasiado deteriorada :-(\n"
"Probarase a ir pońendo en branco as particións erróneas"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Configuración de Internet"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Bases de datos"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Bases de datos"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Engadir usuario"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "Cliente DHCP"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Axuda"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Non conectado"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Borrar"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Seleccione un ficheiro"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Engadir usuario"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "Cliente DHCP"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Configurando..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "reconfigurar"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Insira un disquete na unidade %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Ningunha disqueteira dispońible"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
#, fuzzy
msgid "Error!"
@@ -8404,6 +8790,11 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Creando un disquete de auto-instalación"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -8412,47 +8803,40 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "ĄNoraboa!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "Instalar"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "Engadir usuario"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "Formatando o ficheiro loopback %s"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8460,15 +8844,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8476,707 +8852,771 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#, c-format
+msgid ""
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "Erro lendo o ficheiro %s"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "Selección dos grupos de paquetes"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "Eliminar fila"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr "Windows(FAT32)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr "Usuarios"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Probe o seu rato"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "Tente de novo"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "Tente de novo"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "Sen contrasinal"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Conexión LAN"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Selección da conexión da impresora"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Escolla a disposición do seu teclado."
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Prema nunha partición"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Escolla os paquetes que desexa instalar."
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "Probe o seu rato"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "Interface de rede"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Tipo"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "Nome de usuario"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Escolla a lingua que desexe usar."
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Usar optimizacións de disco duro"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Usar optimizacións de disco duro"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
#, fuzzy
msgid "What"
msgstr "Agarde"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr "Roda"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr "Roda"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "Opcións do módulo:"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Configuración da rede"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "Sistemas de ficheiros"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
#, fuzzy
msgid ""
"\n"
"- User Files:\n"
msgstr "Ficheiros:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
#, fuzzy
msgid ""
"\n"
"- Other Files:\n"
msgstr "Ficheiros:\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Dispositivo do rato: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save to Tape on device : %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, c-format
+msgid ""
+"\n"
+"- Save via %s on host : %s\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Opcións"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Escolla o porto serie onde está conectado o seu módem."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "Configuración da rede"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "Escolla o seu tipo de rato."
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Probe o seu rato"
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "Conexión LAN"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Selección da conexión da impresora"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Restaurar a partir dun disquete"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "Escolla o seu tipo de rato."
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "Outros"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "Instalar sistema"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "Restaurar a partir dun ficheiro"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "Restaurar a partir dun ficheiro"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "Personalizado"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Axuda"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "Anterior"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr "Estado:"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
msgstr "Restaurar"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr "Texto"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "Seleccionar paquetes"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Vanse instalar os seguintes paquetes"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "Escolla a lingua que desexe usar."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "Escolla a lingua que desexe usar."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "Escolla a lingua que desexe usar."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "Gardar nun ficheiro"
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "Probe o seu rato"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Configuración da rede"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "Configuración da rede"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "Configuración da LAN"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "Configuración da LAN"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "Sistemas de ficheiros"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9208,7 +9648,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9217,7 +9657,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9258,7 +9698,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9286,12 +9726,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -9308,7 +9753,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9348,7 +9793,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9359,7 +9804,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9372,7 +9817,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9416,104 +9861,524 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Fallou a instalación do %s. Ocorreu o erro seguinte:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Ferramentas de consola"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "Centro de control"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "obrigatorio"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Rato"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Impresora remota"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Nome de recurso compartido"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Printerdrake"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Axudante da configuración de rede"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Autenticación"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Selección dos grupos de paquetes"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Agarde, por favor"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Saír da instalación"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "Porto"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Pode escoller outras linguas que estarán dispońibles trala instalación"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Configuración de rede (%d adaptadores)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Perfil: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Borrar perfil..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Perfil para borrar:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Novo perfil..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Nome de máquina: "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Acceso á Internet"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Tipo:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Pasarela:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Interface:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Estado:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Configurar o acceso á Internet..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "Configuración da LAN"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Controlador"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Interface"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protocolo"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Estado"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Configurar a rede de área local..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Axudante..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Por favor, agarde... Aplicando a configuración"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#, fuzzy
+msgid "Connected"
+msgstr "Conectar..."
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Non conectado"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Conectar..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#, fuzzy
+msgid "Disconnect..."
+msgstr "Conectar..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "Configuración da LAN"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Adaptador %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Protocolo de arrinque"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Iniciado o arrincar"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "Cliente DHCP"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "activate now"
+msgstr "Activar"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "deactivate now"
+msgstr "Activar"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Configuración da conexión á Internet"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Configuración da conexión á Internet"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Tipo de conexión: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parámetros"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Pasarela"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Tarxeta Ethernet"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "Cliente DHCP"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "uso: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Nome do módulo"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Tamańo"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "creación do disquete de arrinque"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "defecto"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Erro do DrakFloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "versión do núcleo"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Xeral"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Área de experto"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "argumentos opcionais para o mkinitrd"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Engadir un módulo"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "forzar"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "se for necesario"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "omitir os módulos scsi"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "omitir os módulos raid"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Quitar un módulo"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Saída"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Crear o disco"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:427
+#, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "%s non atopado"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "feito"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
#, fuzzy
msgid "Fonts copy"
msgstr "Formatar disquete"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "Preparando a instalación"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
#, fuzzy
msgid "Restart XFS"
msgstr "restrinxir"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "restrinxir"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -9522,123 +10387,122 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "Formatar particións"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
#, fuzzy
msgid "Uninstall Fonts"
msgstr "Desinstalando os RPMs"
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Configuración da LAN"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr "Punto de montaxe"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Elixa as particións que desexa formatar"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "Office"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr "Abortar"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr "Impresora"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "Instalar sistema"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "Seleccione un ficheiro"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "Impresora remota"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
#, fuzzy
msgid "Initials tests"
msgstr "Mensaxe inicial"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr "ĄNon hai ningún adaptador de rede no seu sistema!"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "Instalar"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr "ĄNon hai ningún adaptador de rede no seu sistema!"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "Saír da instalación"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Compartición da conexión á Internet"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "A compartición da conexión á Internet está activada"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -9650,31 +10514,31 @@ msgstr ""
"\n"
"żQue desexa facer?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "desactivar"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr ""
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "reconfigurar"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Desactivando os servidores..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "A compartición da conexión á Internet está agora desactivada."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "A compartición da conexión á Internet está desactivada"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -9686,19 +10550,19 @@ msgstr ""
"\n"
"żQue desexa facer?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "activar"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Activando os servidores..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "A compartición da conexión á Internet está agora activada."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
#, fuzzy
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -9714,21 +10578,21 @@ msgstr ""
"Nota: necesita un adaptador de rede dedicado para configurar unha rede de "
"área local (LAN)."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interface %s (usando o módulo %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Interface %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "ĄNon hai ningún adaptador de rede no seu sistema!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -9736,11 +10600,11 @@ msgstr ""
"Non se detectou ningún adaptador de rede ethernet no seu sistema. Execute a "
"ferramenta de configuración de hardware."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Interface de rede"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -9755,19 +10619,19 @@ msgstr ""
"\n"
"Vaise configurar a rede de área local usando ese adaptador."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Escolla o adaptador de rede que vai estar conectado á rede de área local."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "O monitor non está configurado"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -9777,17 +10641,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Configuración do estilo de arrinque"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "Configuración de Internet"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -9798,7 +10662,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
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 C-Class Network that "
@@ -9810,35 +10674,35 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP do servidor CUPS"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"ĄAtopouse un conflicto potencial de enderezos da LAN na configuración actual "
"de %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "ĄDetectouse unha configuración de firewall!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -9846,21 +10710,21 @@ msgstr ""
"ĄAtención! Detectouse unha configuración de firewall existente. Pode que "
"teńa que facer algún arranxo manual trala instalación."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Configurando..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Configurando os scripts, instalando o software, iniciando os servidores..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Problemas instalando o paquete %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -9870,7 +10734,7 @@ msgstr ""
"Agora pode compartir a conexión á Internet con outros ordenadores da rede de "
"área local, usando a configuración automática de rede (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
#, fuzzy
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
@@ -9879,23 +10743,23 @@ msgstr ""
"\n"
"żQue desexa facer?"
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
"A configuración da compartición da conexión á Internet xa foi feita.\n"
"Actualmente está activada."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
#, fuzzy
msgid "No Internet Connection Sharing has ever been configured."
msgstr "A compartición da conexión á Internet está activada"
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
#, fuzzy
msgid "Internet connection sharing configuration"
msgstr "Conexión e configuración de Internet"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -9905,210 +10769,6 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr ""
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Configuración de rede (%d adaptadores)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Perfil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Borrar perfil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Perfil para borrar:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Novo perfil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Nome de máquina: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Acceso á Internet"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tipo:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Pasarela:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Interface:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Estado:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Configurar o acceso á Internet..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Configuración da LAN"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Controlador"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interface"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protocolo"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Estado"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Configurar a rede de área local..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Axudante..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr ""
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Por favor, agarde... Aplicando a configuración"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Connected"
-msgstr "Conectar..."
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Non conectado"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Conectar..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-#, fuzzy
-msgid "Disconnect..."
-msgstr "Conectar..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Configuración da LAN"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adaptador %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Protocolo de arrinque"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Iniciado o arrincar"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "Cliente DHCP"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Activar"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Activar"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Configuración da conexión á Internet"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Configuración da conexión á Internet"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Tipo de conexión: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parámetros"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Pasarela"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Tarxeta Ethernet"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "Cliente DHCP"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Establecendo o nivel de seguridade"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Centro de control"
@@ -10117,94 +10777,130 @@ msgstr "Centro de control"
msgid "Choose the tool you want to use"
msgstr "Elixa a ferramenta que queira usar"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\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 ""
+
+#: ../../standalone/drakxtv_.c:72
#, fuzzy
msgid "Canada (cable)"
msgstr "Canadiano (Québec)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "East Europe"
msgstr "Europa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Francia"
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr "Islandés"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "West Europe"
msgstr "Europa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr "serie"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Houbo un erro ó instalar os paquetes:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10249,7 +10945,7 @@ msgstr ""
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
#, fuzzy
msgid "logdrake"
msgstr "draknet"
@@ -10298,10 +10994,6 @@ msgstr "/_Opcións"
msgid "/Options/Test"
msgstr "/Opcións/Proba"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/A_xuda"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr "/Axuda/_Acerca..."
@@ -10366,7 +11058,7 @@ msgstr ""
msgid "Content of the file"
msgstr ""
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -10375,80 +11067,111 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr ""
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "Configuración da LAN"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr ""
-
#: ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid "sshd"
-msgstr "shadow"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Nome de dominio"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "Ext2"
+msgid "Ftp Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Bases de datos"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "Servidor NIS"
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "dispositivo"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Servidor de impresión"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "interesante"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "Formatando"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "Configuración"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Gardar como..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Escolla o seu tipo de rato."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "non se atopou ningún serial_usb\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "żEmular o terceiro botón?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Lendo a base de datos de controladores de CUPS..."
+
+#: ../../standalone/scannerdrake_.c:42
+#, fuzzy
+msgid "Detecting devices ..."
+msgstr "Detectando os dispositivos..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -10492,6 +11215,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
#, fuzzy
msgid "Firewalling Configuration"
@@ -10840,10 +11575,6 @@ msgid "Multimedia - Sound"
msgstr "Multimedia - Son"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Utilidades"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Documentación"
@@ -10949,10 +11680,6 @@ msgstr ""
"e para navegar na Web"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arquivado, emuladores, monitorizaxe"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Finanzas persoais"
@@ -11001,1241 +11728,153 @@ msgstr "Multimedia - Gravación de CD"
msgid "Scientific Workstation"
msgstr "Estación de traballo científica"
-#~ msgid "None"
-#~ msgstr "Ningún"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Agora pode indicar as opcións para o módulo %s."
-
-#~ msgid "Low"
-#~ msgstr "Baixo"
-
-#~ msgid "Medium"
-#~ msgstr "Medio"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Poucas melloras neste nivel de seguridade, a principal é que hai máis\n"
-#~ "avisos e comprobacións de seguridade."
-
-#~ msgid "mount failed"
-#~ msgstr "mount fallou"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "Linux xestiona a hora en GMT ou \"Hora do Meridiano de Greenwich\", e a\n"
-#~ "traslada á hora local dependendo da zona que vostede escolla."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "Conectar á Internet"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Desconectar de Internet"
-
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Configurar a conexión de rede (LAN ou Internet)"
-
-#~ msgid "Active"
-#~ msgstr "Activar"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "Unha impresora, de modelo \"%s\", foi detectada en "
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Dispositivo de impresión local"
-
-#~ msgid "Printer Device"
-#~ msgstr "Dispositivo da impresora"
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Escolla o tamańo que quere instalar"
-
-#~ msgid "Total size: "
-#~ msgstr "Tamańo total: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Agarde, por favor, "
-
-#~ msgid "Total time "
-#~ msgstr "Tempo total "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "żUsar a configuración existente para X11?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
-#~ msgstr ""
-#~ "żA que dispositivo está conectada a súa impresora?\n"
-#~ "(advirta que /dev/lp0 é equivalente a LPT1:)\n"
-
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr ""
-#~ "Atención, o adaptador de rede xa está configurado. Vai ser reconfigurado."
-
-#~ msgid "New"
-#~ msgstr "Novo"
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Ambigüidade (%s), sexa máis preciso\n"
-
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (por omisión %s) "
-
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "żA súa escolla? (por omisión %s, escriba 'none' para ningunha)"
-
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "non se pode abrir /etc/sysconfig/autologin para lectura: %s"
-
-#~ msgid "Do you want to restart the network"
-#~ msgstr "żDesexa reiniciar a rede?"
-
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "żConcorda?"
-
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Está a piques de se reiniciar o dispositivo de rede:\n"
-
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "Está a piques de se reiniciar o dispositivo de rede %s. żConcorda?"
-
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr "Escolla a lingua que prefira para a instalación e para o sistema."
-
-#~ msgid ""
-#~ "You need to accept the terms of the above license to continue "
-#~ "installation.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Accept\" if you agree with its terms.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Refuse\" if you disagree with its terms. Installation "
-#~ "will end without modifying your current\n"
-#~ "configuration."
-#~ msgstr ""
-#~ "Ten que aceptar os termos da licencia de enriba para continuar coa "
-#~ "instalación.\n"
-#~ "\n"
-#~ "\n"
-#~ "Por favor, prema \"Aceptar\" se concorda con eses termos.\n"
-#~ "\n"
-#~ "\n"
-#~ "Por favor, prema \"Rexeitar\" se non concorda con eses termos. A "
-#~ "instalación rematará sen modificar a súa configuración actual."
-
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr "Escolla a disposición do teclado que corresponda ó seu na lista"
-
-#~ msgid ""
-#~ "If you wish other languages (than the one you choose at\n"
-#~ "beginning of installation) will be available after installation, please "
-#~ "chose\n"
-#~ "them in list above. If you want select all, you just need to select \"All"
-#~ "\"."
-#~ msgstr ""
-#~ "Se desexa ter outras linguas (á parte da que escolleu ó principio da\n"
-#~ "instalación) dispońibles trala instalación, escóllaas na lista de "
-#~ "enriba.\n"
-#~ "Se quere seleccionar todas, só ten que usar \"Todas\"."
-
-#~ msgid ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!"
-#~ msgstr ""
-#~ "Seleccione:\n"
-#~ "\n"
-#~ " - Personalizada: Se xa está familiarizado con GNU/Linux, pode entón "
-#~ "escoller\n"
-#~ " o uso principal da súa máquina. Mire embaixo para os detalles.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Experto: Isto supón que vostede manexa ben GNU/Linux e quere facer\n"
-#~ " unha instalación altamente personalizada. Do mesmo xeito que coa\n"
-#~ " clase de instalación \"Personalizada\", poderá escoller o uso do seu\n"
-#~ " sistema. Pero, por favor, ĄNON ESCOLLA ISTO A MENOS QUE SAIBA O QUE\n"
-#~ " ESTÁ A FACER!"
-
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "Agora ten que definir o uso da súa máquina. As escollas son:\n"
-#~ "\n"
-#~ "* Estación de traballo: esta é a escolla ideal se pretende usar a súa "
-#~ "máquina principalmente para o uso cotián,\n"
-#~ " na oficina ou na casa.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Desenvolvemento: se pretende usar a súa máquina principalmente para o "
-#~ "desenvolvemento de software, esta é unha boa escolla.\n"
-#~ " Terá unha completa colección de software instalado para compilar, "
-#~ "depurar e formatar código fonte, ou\n"
-#~ " para crear paquetes de software.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Servidor: se pretende usar esta máquina coma servidor, é a escolla "
-#~ "correcta. Sexa un servidor de ficheiros (NFS\n"
-#~ " ou SMB), un servidor de impresión (estilo Unix ou Microsoft Windows), "
-#~ "un servidor de autenticación (NIS), un servidor\n"
-#~ " de bases de datos, etc... Como tal, non espere que haxa cousas como "
-#~ "KDE, GNOME, etc. instaladas."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "Agora pode selecciona-lo grupo de paquetes que desexa instalar\n"
-#~ "ou actualizar.\n"
-#~ "\n"
-#~ "DrakX comprobará se ten espacio dabondo para instalalos todos. Se non,\n"
-#~ "avisaralle diso. Se quere seguir aínda así, procederá coa instalación\n"
-#~ "de tódolos grupos seleccionados, pero deixará algún de menor interese.\n"
-#~ "Ó final da lista pode marca-la opción \"Selección individual de paquetes"
-#~ "\";\n"
-#~ "neste caso terá que percorrer máis de 1000 paquetes..."
-
-#~ msgid ""
-#~ "If you have all the CDs in the list above, click Ok. If you have\n"
-#~ "none of those CDs, click Cancel. If only some CDs are missing, unselect "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "Se ten tódolos CDs da lista superior, prema Aceptar. Se non ten\n"
-#~ "ningún deses CDs, prema Cancelar. Se só faltan algúns dos CDs,\n"
-#~ "desmárqueos, e prema Aceptar."
-
-#~ msgid "Please turn on your modem and choose the correct one."
-#~ msgstr "Acenda o seu módem e escolla o correcto."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, the correct informations can "
-#~ "be\n"
-#~ "obtained from your Internet Service Provider."
-#~ msgstr ""
-#~ "Vostede pode agora introduci-las opcións de chamada. Se non está seguro "
-#~ "de\n"
-#~ "que escribir, a información correcta pode obtela do seu ISP."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Introduza:\n"
-#~ "\n"
-#~ " - Dirección IP: se non a cońece, pregúntelle ó seu administrador de "
-#~ "rede\n"
-#~ "ou ISP.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Máscara de Rede: \"255.255.255.0\" é normalmente unha boa elección. "
-#~ "Se\n"
-#~ "non está seguro, pregunte ó seu administrador de rede ou ISP.\n"
-#~ "\n"
-#~ "\n"
-#~ " - IP automática: Se a súa rede usa o protocolo bootp ou dhcp, escolla\n"
-#~ "esta opción. Neste caso, non é necesario ningún valor en \"Dirección IP"
-#~ "\".\n"
-#~ "Se non está seguro, pregunte ó seu administrador de rede ou ISP.\n"
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, ask your network administrator."
-#~ msgstr ""
-#~ "Se a súa rede usa NIS, escolla \"Usar NIS\". Se non o sabe, pregúntelle "
-#~ "ó\n"
-#~ "seu administrador de rede."
-
-#~ msgid ""
-#~ "You may now enter dialup options. If you're not sure what to enter, the\n"
-#~ "correct information can be obtained from your ISP."
-#~ msgstr ""
-#~ "Agora pode introducir as opcións de marcado. Se non está seguro do\n"
-#~ "que escribir, a información correcta pode obtela do seu ISP."
-
-#~ msgid ""
-#~ "If you will use proxies, please configure them now. If you don't know if\n"
-#~ "you should use proxies, ask your network administrator or your ISP."
-#~ msgstr ""
-#~ "Se vai usar proxys, configúreos agora. Se non sabe se vai usar proxys,\n"
-#~ "pregunte ó seu administrador de rede ou ó seu ISP."
-
-#, fuzzy
-#~ msgid ""
-#~ "You can install cryptographic package if your internet connection has "
-#~ "been\n"
-#~ "set up correctly. First choose a mirror where you wish to download "
-#~ "packages and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "Pode instalar paquetes de criptografía se xa configurou a súa conexión a\n"
-#~ "internet correctamente. Primeiro escolla un espello do que quere baixa-"
-#~ "los\n"
-#~ "paquetes, e entón escolla os paquetes que desexa instalar.\n"
-#~ "\n"
-#~ "Percátese de que ten que escolle-lo espello e os paquetes criptográficos\n"
-#~ "de acordo coa súa lexislación."
-
-#~ msgid "You can now select your timezone according to where you live."
-#~ msgstr ""
-#~ "Agora pode seleccionar a zona horaria dependendo do lugar onde viva."
-
-#, fuzzy
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "Agora pode introduci-lo contrasinal do superusuario para o seu sistema\n"
-#~ "Mandrake Linux. O contrasinal deberá ser tecleado dúas veces para\n"
-#~ "comprobar que ámbolos dous son idénticos.\n"
-#~ "\n"
-#~ "\n"
-#~ "O superusuario (root) é o administrador do sistema, e é o único usuario\n"
-#~ "ó que se lle permete modifica-la configuración do sistema. ĄPor tanto,\n"
-#~ "escolla o contrasinal con coidado! O uso non autorizado da conta de root\n"
-#~ "pode ser extremadamente perigoso para a integridade do sistema e os seus\n"
-#~ "datos, e para os outros sistemas conectados a el. O contrasinal debería\n"
-#~ "ser unha mestura de caracteres alfanuméricos e de 8 caracteres de longo,\n"
-#~ "polo menos. NUNCA debe ser anotado. Non escolla un contrasinal longo\n"
-#~ "de máis ou complicado: ten que ser capaz de lembralo sen moito esforzo."
-
-# Non é realmente fuzzy, é só para revisala. :)
-#, fuzzy
-#~ msgid ""
-#~ "You may now create one or more \"regular\" user account(s), as\n"
-#~ "opposed to the \"privileged\" user account, root. You can create\n"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "Pode agora crear unha ou varias contas de usuarios Ťnormaisť, como\n"
-#~ "contraposición á conta de usuario Ťprivilexiadoť, root. Vostede\n"
-#~ "pode crear unha ou máis contas para cada persoa á que vostede queira\n"
-#~ "permitirlle o uso do ordenador. Note que cada conta de usuario terá\n"
-#~ "as súas preferencias (ambiente gráfico, configuración dos programas, "
-#~ "etc.)\n"
-#~ "e o seu propio directorio (chamado \"home\"), no que se almacenan esas\n"
-#~ "preferencias.\n"
-#~ "\n"
-#~ "\n"
-#~ "Antes que nada, Ącree unha conta para vostede mesmo! Aínda se é a única\n"
-#~ "persoa que vai usa-la máquina, NON debe entrar como root para o uso\n"
-#~ "diario do sistema: é un risco de seguridade elevado. Facer que o\n"
-#~ "sistema fique totalmente inoperante, pode ser moitas veces causa dun\n"
-#~ "simple erro ó teclear.\n"
-#~ "\n"
-#~ "\n"
-#~ "Polo tanto, debe entrar no sistema usando a conta de usuario normal que\n"
-#~ "vai crear aquí, e entrar como root só para as tarefas de administración\n"
-#~ "que o precisen."
-
-#, fuzzy
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <number>: use the corresponding text mode.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories\n"
-#~ "stored in \"/tmp\" when you boot your system, select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the\n"
-#~ "BIOS about the amount of RAM present in your computer. As consequence, "
-#~ "Linux may\n"
-#~ "fail to detect your amount of RAM correctly. If this is the case, you "
-#~ "can\n"
-#~ "specify the correct amount or RAM here. Please note that a difference of "
-#~ "2 or 4\n"
-#~ "MB between detected memory and memory present in your system is normal."
-#~ msgstr ""
-#~ "As opcións principais do LILO e do grub son:\n"
-#~ " - Dispositivo de arrinque: Establece o nome do dispositivo (p.ex unha\n"
-#~ "partición dun disco duro) que contén o sector de arrinque. A menos que\n"
-#~ "saiba específicamente que é outro, escolla \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Retardo antes de arrinca-la imaxe por omisión: Indica o número de\n"
-#~ "décimas de segundo que agardará o cargador de inicio antes de arrincar a\n"
-#~ "primeira imaxe. Isto é útil nos sistemas que arrincan inmediatamente do\n"
-#~ "disco duro tras activa-lo teclado. O boot loader non agarda se o \"retardo"
-#~ "\"\n"
-#~ "é cero ou non se indica.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Modo de vídeo: Indica o modo de texto VGA que será utilizado ó\n"
-#~ "arrincar. Os seguintes valores están dispońibles:\n"
-#~ " * normal: escoller modo de texto normal 80x25.\n"
-#~ " * <número>: usa-lo modo de texto correspondente."
-
-#, fuzzy
-#~ msgid ""
-#~ "SILO is a bootloader for SPARC: it is able to boot\n"
-#~ "either GNU/Linux or any other operating system present on your computer.\n"
-#~ "Normally, these other operating systems are correctly detected and\n"
-#~ "installed. If this is not the case, you can add an entry by hand in this\n"
-#~ "screen. Be careful as to choose the correct parameters.\n"
-#~ "\n"
-#~ "\n"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "anyone, in which case you can delete the corresponding entries. But\n"
-#~ "in this case, you will need a boot disk in order to boot them!"
-#~ msgstr ""
-#~ "LILO (O LInux LOader) e Grub son cargadores de arrinque: poden arrincar\n"
-#~ "Linux ou outro sistema operativo presente no seu ordenador.\n"
-#~ "Normalmente, estes outros sitemas son detectados correctamente e "
-#~ "instalados.\n"
-#~ "Se non é o caso, pode engadir unha entrada a man nesta pantalla. Sexa\n"
-#~ "coidadoso na escolla dos parámetros correctos.\n"
-#~ "\n"
-#~ "\n"
-#~ "Tamén pode non querer dar acceso a eses outros sitemas operativos a "
-#~ "calquera,\n"
-#~ "poidendo borrar as entradas correspondentes. Pero neste caso, precisará\n"
-#~ "un disquete de arrinque para poder usalos."
-
-#, fuzzy
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ "As opcións principais do LILO e do grub son:\n"
-#~ " - Dispositivo de arrinque: Establece o nome do dispositivo (p.ex unha\n"
-#~ "partición dun disco duro) que contén o sector de arrinque. A menos que\n"
-#~ "saiba específicamente que é outro, escolla \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Retardo antes de arrinca-la imaxe por omisión: Indica o número de\n"
-#~ "décimas de segundo que agardará o cargador de inicio antes de arrincar a\n"
-#~ "primeira imaxe. Isto é útil nos sistemas que arrincan inmediatamente do\n"
-#~ "disco duro tras activa-lo teclado. O boot loader non agarda se o \"retardo"
-#~ "\"\n"
-#~ "é cero ou non se indica.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Modo de vídeo: Indica o modo de texto VGA que será utilizado ó\n"
-#~ "arrincar. Os seguintes valores están dispońibles:\n"
-#~ " * normal: escoller modo de texto normal 80x25.\n"
-#~ " * <número>: usa-lo modo de texto correspondente."
+#~ msgid "Choose options for server"
+#~ msgstr "Escolla as opcións para o servidor"
-#, fuzzy
-#~ msgid ""
-#~ "Now it's time to configure the X Window System, which is the\n"
-#~ "core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "Agora é o momento de configura-lo sistema de fiestras X, que é\n"
-#~ "o centro da interface gráfica de Linux. Para iso necesita configura-\n"
-#~ "-la súa tarxeta de vídeo e o seu monitor. A maioría deses pasos están\n"
-#~ "automatizados, así que probablemente a súa tarea limitarase a verificar\n"
-#~ "o que se fixo e aceptar a configuración proposta :-)\n"
-#~ "\n"
-#~ "\n"
-#~ "Cando a configuración estea rematada, lanzarase o servidor X\n"
-#~ "(a menos que vostede lle pida a DrakX que non), de xeito que\n"
-#~ "poida comprobar se todo está ben e corresponde ó que desexa.\n"
-#~ "Se non, pode voltar atrás e troca-la configuración; tantas\n"
-#~ "veces como sexa necesario."
+#~ msgid "Monitor not configured"
+#~ msgstr "O monitor non está configurado"
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ "Se algo vai mal coa configuración de X, use estas opcións para "
-#~ "configurar\n"
-#~ "correctamente o sistema X Window."
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "A tarxeta gráfica aínda non está configurada"
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "Se prefire usar un login gráfico, escolla \"Si\". Doutro xeito,\n"
-#~ "seleccione \"Non\"."
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Resolucións aínda non escollidas"
#~ msgid ""
-#~ "Your system is going to reboot.\n"
#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
+#~ "try to change some parameters"
#~ msgstr ""
-#~ "O sistema vaise reiniciar.\n"
#~ "\n"
-#~ "Despois de reiniciar, o seu novo sistema Mandrake Linux cargarase\n"
-#~ "automaticamente. Se vostede quere iniciar outro sistema operativo que xa\n"
-#~ "exista, lea as instruccións adicionais."
+#~ "probe a cambiar algúns parámetros"
-#~ msgid "Czech (Programmers)"
-#~ msgstr "Checo (Programadores)"
+#~ msgid "An error occurred:"
+#~ msgstr "Ocorreu un erro:"
-#~ msgid "Slovakian (Programmers)"
-#~ msgstr "Eslovaco (Programadores)"
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Saíndo en %d segundos"
-#~ msgid "Name of the profile to create:"
-#~ msgstr "Nome do perfil para crear:"
+#~ msgid "Is this the correct setting?"
+#~ msgstr "żÉ esta a configuración correcta?"
-#~ msgid "Write /etc/fstab"
-#~ msgstr "Escribir /etc/fstab"
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Ocorreu un erro, probe a cambiar algúns parámetros"
-#~ msgid "Format all"
-#~ msgstr "Formatar todas"
+#~ msgid "XFree86 server: %s"
+#~ msgstr "Servidor XFree86: %s"
-#~ msgid "After formatting all partitions,"
-#~ msgstr "Logo de formatar tódalas particións,"
+#~ msgid "Show all"
+#~ msgstr "Ver todo"
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "perderanse os datos nesas particións"
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Preparando a configuración de X-Window"
-#~ msgid "Reload"
-#~ msgstr "Recargar"
+#~ msgid "What do you want to do?"
+#~ msgstr "żQué desexa facer?"
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr ""
-#~ "żQuere realmente xerar un disquete de instalación para replicar linux?"
-
-#~ msgid "ADSL configuration"
-#~ msgstr "Configuración de ADSL"
+#~ msgid "Change Monitor"
+#~ msgstr "Mudar o monitor"
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ "Cun servidor CUPS remoto, non terá que configurar aquí\n"
-#~ "ningunha impresora, xa que serán detectadas automaticamente,\n"
-#~ "a menos que teńa un servidor nunha rede diferente. Neste\n"
-#~ "caso, terá que indicar o enderezo IP do servidor de CUPS\n"
-#~ "e opcionalmente o número de porto."
+#~ msgid "Change Graphics card"
+#~ msgstr "Mudar a tarxeta gráfica"
-#~ msgid "Remote queue"
-#~ msgstr "Fila de impresión remota"
+#~ msgid "Change Server options"
+#~ msgstr "Mudar as opcións do servidor"
-#~ msgid "Profile "
-#~ msgstr "Perfil "
+#~ msgid "Change Resolution"
+#~ msgstr "Mudar a resolución"
-#~ msgid "NetWare"
-#~ msgstr "Impresora Netware"
+#~ msgid "Show information"
+#~ msgstr "Mostrar información"
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "Non foi posible interpretar o contido do ficheiro de configuración."
+#~ msgid "Test again"
+#~ msgstr "Probar de novo"
-#~ msgid "Unrecognized config file"
-#~ msgstr "Ficheiro de configuración non recońecido"
+#~ msgid "Setting security level"
+#~ msgstr "Establecendo o nivel de seguridade"
-#~ msgid "Adapter"
-#~ msgstr "Adaptador"
+#~ msgid "Graphics card"
+#~ msgstr "Tarxeta gráfica"
-#~ msgid "Disable network"
-#~ msgstr "Desactivar a rede"
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "Conexión DSL (ou ADSL)"
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr ""
-#~ "Pode especificar directamente o URI para acceder á impresora co CUPS."
+#~ msgid "Select a graphics card"
+#~ msgstr "Seleccione unha tarxeta gráfica"
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "Si, imprimir unha páxina ASCII de proba"
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "Aviso: probar esta tarxeta gráfica pode colgar o ordenador"
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "Si, imprimir unha páxina PostScript de proba"
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "VGA estándar, 640x480 a 60 Hz"
-#~ msgid "Paper Size"
-#~ msgstr "Tamańo do papel"
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 a 56 Hz"
-#~ msgid "Eject page after job?"
-#~ msgstr "żExtraer a páxina trala impresión?"
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "Compatible 8514, 1024x768 a 87 Hz entrelazado (no 800x600)"
-#~ msgid "Uniprint driver options"
-#~ msgstr "Opcións do controlador Uniprint"
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 a 87 Hz entrelazado, 800x600 a 56 Hz"
-#~ msgid "Color depth options"
-#~ msgstr "Opcións da profundidade de cor"
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Super VGA estendido, 800x600 a 60 Hz, 640x480 a 72 Hz"
-#~ msgid "Print text as PostScript?"
-#~ msgstr "żImprimir texto como PostScript?"
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "SVGA non-entrelazado, 1024x768 a 60 Hz, 800x600 a 72 Hz"
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "żCorrixir o efecto escaleira?"
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "SVGA alta-frecuencia, 1024x768 a 70 Hz"
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Número de páxinas por páxina de saída"
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Monitor multi-frecuencia soportando 1280x1024 a 60 Hz"
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "Marxes dereita/esquerda en puntos (1/72 dunha polgada)"
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Monitor multi-frecuencia soportando 1280x1024 a 74 Hz"
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "Marxes superior/inferior en puntos (1/72 dunha polgada)"
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Monitor multi-frecuencia soportando 1280x1024 a 76 Hz"
-#~ msgid "Extra GhostScript options"
-#~ msgstr "Opcións extra do Ghostscript"
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Monitor soportando 1600x1200 a 70 Hz"
-#~ msgid "Extra Text options"
-#~ msgstr "Opcións extra para texto"
-
-#~ msgid "Reverse page order"
-#~ msgstr "Inverter a orde das páxinas"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Seleccionar a conexión á impresora remota"
-
-#~ msgid ""
-#~ "Every printer need a name (for example lp).\n"
-#~ "Other parameters such as the description of the printer or its location\n"
-#~ "can be defined. What name should be used for this printer and\n"
-#~ "how is the printer connected?"
-#~ msgstr ""
-#~ "Cada impresora necesita un nome (por exemplo lp).\n"
-#~ "Pódense definir outros parámetros como a descrición da\n"
-#~ "impresora ou a súa localización. żQue nome quere usar para\n"
-#~ "esta impresora e como está conectada?"
-
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a\n"
-#~ "name (often lp) and a spool directory associated with it. What\n"
-#~ "name and directory should be used for this queue and how is the printer "
-#~ "connected?"
-#~ msgstr ""
-#~ "Cada fila de impresión (á que se dirixen os traballos de impresión)\n"
-#~ "necesita un nome (frecuentemente lp) e un directorio spool asociado\n"
-#~ "a el. żQué nome e directorio quere que se utilicen para esta fila e como\n"
-#~ "está conectada a impresora?"
-
-#~ msgid "Name of queue"
-#~ msgstr "Nome da fila"
-
-#~ msgid "Spool directory"
-#~ msgstr "Directorio spool"
-
-#~ msgid "Disable"
-#~ msgstr "Desactivar"
-
-#~ msgid "Enable"
-#~ msgstr "Activar"
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ msgstr ""
-#~ "Para ter un sistema máis seguro, debería seleccionar \"Usar ficheiro "
-#~ "shadow\"\n"
-#~ "e \"Usar contrasinais MD5\"."
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Monitor soportando 1600x1200 a 76 Hz"
#~ msgid ""
-#~ "If your network uses NIS, select \"Use NIS\". If you don't know, ask "
-#~ "your\n"
-#~ "network administrator."
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
#~ msgstr ""
-#~ "Se a súa rede usa NIS, escolla \"Usar NIS\". Se non o sabe, pregúntelle "
-#~ "ó\n"
-#~ "seu administrador de rede."
+#~ "O tamańo total dos grupos que seleccionou é aproximadamente %d MB.\n"
-#~ msgid "yellow pages"
-#~ msgstr "páxinas amarelas (yp)"
-
-#~ msgid "Provider dns 1"
-#~ msgstr "Dns 1 do provedor"
-
-#~ msgid "Provider dns 2"
-#~ msgstr "Dns 2 do provedor"
-
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr "żComo quere conectar á Internet?"
-
-#~ msgid "Boot style configuration"
-#~ msgstr "Configuración do estilo de arrinque"
-
-#~ msgid "gMonitor"
-#~ msgstr "gMonitor"
-
-#, fuzzy
#~ msgid ""
-#~ "You can now select some miscellaneous options for your system.\n"
-#~ "\n"
-#~ "* Use hard drive optimizations: this option can improve hard disk "
-#~ "performance but is only for advanced users. Some buggy\n"
-#~ " chipsets can ruin your data, so beware. Note that the kernel has a "
-#~ "builtin blacklist of drives and chipsets, but if\n"
-#~ " you want to avoid bad surprises, leave this option unset.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Choose security level: you can choose a security level for your system. "
-#~ "Please refer to the manual for complete\n"
-#~ " information. Basically, if you don't know what to choose, keep the "
-#~ "default option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the BIOS about the amount of RAM present in\n"
-#~ " your computer. As consequence, Linux may fail to detect your amount of "
-#~ "RAM correctly. If this is the case, you can\n"
-#~ " specify the correct amount or RAM here. Please note that a difference "
-#~ "of 2 or 4 MB between detected memory and memory\n"
-#~ " present in your system is normal.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Removable media automounting: if you would prefer not to manually mount "
-#~ "removable media (CD-Rom, floppy, Zip, etc.) by\n"
-#~ " typing \"mount\" and \"umount\", select this option.\n"
-#~ "\n"
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
#~ "\n"
-#~ "* Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories stored in \"/tmp\" when you boot your system,\n"
-#~ " select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Enable num lock at startup: if you want NumLock key enabled after "
-#~ "booting, select this option. Please note that you\n"
-#~ " should not enable this option on laptops and that NumLock may or may "
-#~ "not work under X."
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
-#~ "Vostede pode agora escoller algunhas opcións diversas para o sistema.\n"
-#~ "\n"
-#~ " - Usar optimizacións de disco duro: esta opción pode mellora-lo "
-#~ "rendemento\n"
-#~ " do disco duro, pero é só para usuarios avanzados: algúns chipsets que "
-#~ "non\n"
-#~ " funcionan ben poden estraga-los seus datos. O kernel ten unha lista "
-#~ "negra\n"
-#~ " de unidades e chipsets, pero se quere evitar sorpresas "
-#~ "desagradables,\n"
-#~ " deixe esta opción desactivada.\n"
-#~ "\n"
-#~ " - Escoller un nivel de seguridade: pode escoller un nivel de "
-#~ "seguridade\n"
-#~ " para o seu sistema. Vaia ó manual para información completa. "
-#~ "Basicamente:\n"
-#~ " se non sabe cal, escolla \"Medio\"; se quere realmente ter unha "
-#~ "máquina\n"
-#~ " segura, escolla \"Paranoico\", pero teńa coidado: ĄNESTE NIVEL, ROOT "
-#~ "NON\n"
-#~ " PODE FACER LOGIN NA CONSOLA! Se quere ser root, terá que facer login "
-#~ "como\n"
-#~ " usuario e entón usar \"su\". Máis xeralmente, non agarde usa-la súa\n"
-#~ " máquina para outra cousa que non sexa un servidor. Xa foi avisado.\n"
+#~ "Se quere instalar menos deste tamańo,\n"
+#~ "seleccione a porcentaxe de paquetes que desexe.\n"
#~ "\n"
-#~ " - Tamańo exacto da memoria se se necesita: por desgracia, no mundo "
-#~ "actual\n"
-#~ " de PCs, non hai un método estándar para preguntarlle á BIOS acerca "
-#~ "da\n"
-#~ " cantidade de RAM no seu ordenador. Por iso, Linux pode non ser capaz "
-#~ "de\n"
-#~ " detectar correctamente a cantidade de RAM. Se é o caso, indique a\n"
-#~ " cantidade correcta. Nota: unha diferencia de 2 ou 4 MB é normal.\n"
-#~ "\n"
-#~ " - Automonta-las unidades extraíbles: Se vostede prefere non montar\n"
-#~ " manualmente as unidades extraíbles (CD-ROM, disquete, Zip), "
-#~ "escribindo\n"
-#~ " \"mount\" e \"umount\", escolla esta opción.\n"
-#~ "\n"
-#~ " - Activar Bloq Num ó iniciar: Se quere que Bloq Num estea activado\n"
-#~ " tralo arrinque, escolla esta opción (Nota: Bloq Num pode ou non pode\n"
-#~ " funcionar nas X)."
-
-#~ msgid "Miscellaneous"
-#~ msgstr "Varios"
-
-#~ msgid "Automatic dependencies"
-#~ msgstr "Dependencias automáticas"
-
-#~ msgid "Selected size %d%s"
-#~ msgstr "Tamańo seleccionado %d%s"
-
-#~ msgid "Miscellaneous questions"
-#~ msgstr "Preguntas varias"
-
-#~ msgid "Can't use supermount in high security level"
-#~ msgstr "Non se pode usar o supermount no nivel de seguridade alto"
-
-#~ msgid ""
-#~ "beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
-#~ "If you want to be root, you have to login as a user and then use \"su\".\n"
-#~ "More generally, do not expect to use your machine for anything but as a "
-#~ "server.\n"
-#~ "You have been warned."
-#~ msgstr ""
-#~ "atención: NESTE NIVEL DE SEGURIDADE, A AUTENTICACIÓN DO ROOT NA CONSOLA\n"
-#~ "NON ESTÁ PERMITIDA! Se quere ser root, terá que conectar coma\n"
-#~ "usuario e logo usar o \"su\". De xeito máis xeral, non agarde que a\n"
-#~ "máquina actúe doutro modo distinto a un servidor.\n"
-#~ "Xa foi avisado."
+#~ "Unha porcentaxe baixa instalará só os paquetes máis importantes;\n"
+#~ "unha porcentaxe dun 100%% instalará tódolos paquetes seleccionados."
#~ msgid ""
-#~ "Be carefull, having numlock enabled causes a lot of keystrokes to\n"
-#~ "give digits instead of normal letters (eg: pressing `p' gives `6')"
-#~ msgstr ""
-#~ "Teńa coidado, ter o bloqueo numérico activado causa que moitas teclas\n"
-#~ "dean díxitos en vez de letras normais (p.ex: premer `p' dá un `6')"
-
-#~ msgid "Sorry, the mail configuration is not yet implemented. Be patient."
-#~ msgstr ""
-#~ "Desculpe, a configuración do correo aínda non está implementada. Sexa "
-#~ "paciente."
-
-#~ msgid ""
-#~ "Welcome to The Network Configuration Wizard.\n"
-#~ "Which components do you want to configure?\n"
-#~ msgstr ""
-#~ "Benvido ó axudante da configuración de rede.\n"
-#~ "żQue compońentes desexa configurar?\n"
-
-#~ msgid "Internet/Network access"
-#~ msgstr "Acceso a Internet/Rede"
-
-#~ msgid ""
-#~ "Now that your Internet connection is configured,\n"
-#~ "your computer can be configured to share its Internet connection.\n"
-#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
-#~ "(LAN).\n"
+#~ "You have space on your disk for only %d%% of these packages.\n"
#~ "\n"
-#~ "Would you like to setup the Internet Connection Sharing?\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
#~ msgstr ""
-#~ "Agora que a conexión á Internet está configurada,\n"
-#~ "o seu ordenador pode ser configurado para compartila.\n"
-#~ "Nota: Necesita un adaptador de rede dedicado para configurar unha rede de "
-#~ "área local (LAN).\n"
+#~ "Ten espacio no seu disco para unicamente o %d%% destes paquetes.\n"
#~ "\n"
-#~ "żDesexa configurar a compartición da conexión á Internet?\n"
-
-#~ msgid "This startup script try to load your modules for your usb mouse."
-#~ msgstr ""
-#~ "Este script de inicialización tenta cargar os módulos para o rato usb."
-
-#~ msgid "Configure LILO/GRUB"
-#~ msgstr "Configuración do LILO/GRUB"
-
-#~ msgid "Create a boot floppy"
-#~ msgstr "Creación dun disquete de arrinque"
-
-#~ msgid "Choice"
-#~ msgstr "Escolla"
-
-#~ msgid "Actions"
-#~ msgstr "Accións"
-
-#~ msgid "Scientific applications"
-#~ msgstr "Aplicacións científicas"
-
-#~ msgid "File/Print/Samba"
-#~ msgstr "Ficheiro/Impresión/Samba"
-
-#~ msgid "DNS/DHCP "
-#~ msgstr "DNS/DHCP "
-
-#~ msgid "Which bootloader(s) do you want to use?"
-#~ msgstr "żQue cargador(es) de arrinque quere usar?"
-
-#~ msgid "loopback"
-#~ msgstr "loopback"
-
-#~ msgid "Configure timezone"
-#~ msgstr "Zona horaria"
-
-#~ msgid "Auto install floppy"
-#~ msgstr "Disquete de auto-instalación"
-
-#~ msgid "Use diskdrake"
-#~ msgstr "Usar diskdrake"
-
-#~ msgid "Customized"
-#~ msgstr "Personalizada"
-
-#~ msgid ""
-#~ "Are you sure you are an expert? \n"
-#~ "You will be allowed to make powerful but dangerous things here.\n"
-#~ "\n"
-#~ "You will be asked questions such as: ``Use shadow file for passwords?'',\n"
-#~ "are you ready to answer that kind of questions?"
-#~ msgstr ""
-#~ "żEstá seguro de que é un experto? \n"
-#~ "Permitiráselle facer cousas máis potentes pero perigosas.\n"
-#~ "Vánselle preguntar cuestións como: ``żUsar ficheiro shadow para os "
-#~ "contrasinais?'', żestá preparado para responder a este tipo de cuestións?"
-
-#~ msgid "What is your system used for?"
-#~ msgstr "żCal é o uso do seu sistema?"
-
-#~ msgid "Select the size you want to install"
-#~ msgstr "Escolla o tamańo que quere instalar"
-
-#~ msgid "Use shadow file"
-#~ msgstr "Usar ficheiro shadow"
-
-#~ msgid "MD5"
-#~ msgstr "MD5"
-
-#~ msgid "Use MD5 passwords"
-#~ msgstr "Usar contrasinais MD5"
-
-#~ msgid "(may cause data corruption)"
-#~ msgstr "(pode provocar corrupción dos datos)"
-
-#~ msgid "Enable num lock at startup"
-#~ msgstr "Activar Bloq Num ó iniciar"
-
-#~ msgid "Confirm Password"
-#~ msgstr "Confirmar Contrasinal"
-
-#~ msgid "I have found an ISDN Card:\n"
-#~ msgstr "Atopouse unha tarxeta RDSI:\n"
-
-#~ msgid "Try to find a modem?"
-#~ msgstr "żDesexa que se tente atopar un módem?"
-
-#~ msgid "Other countries"
-#~ msgstr "Outros países"
-
-#~ msgid "In which country are you located ?"
-#~ msgstr "żEn que país se atopa vostede?"
-
-#~ msgid "Alcatel modem"
-#~ msgstr "Módem alcatel"
-
-#~ msgid "ECI modem"
-#~ msgstr "Módem ECI"
-
-#~ msgid ""
-#~ "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
-#~ msgstr "Se o seu módem adsl é Alcatel, escolla Alcatel. Doutro xeito, ECI."
-
-#~ msgid "don't use pppoe"
-#~ msgstr "non usar pppoe"
-
-#~ msgid "Disable Internet Connection"
-#~ msgstr "Desactivar a Conexión a Internet"
-
-#~ msgid "Configure the Internet connection / Configure local Network"
-#~ msgstr "Configurar a conexión a Internet / Configurar a Rede local"
-
-#~ msgid ""
-#~ "Local networking has already been configured.\n"
-#~ "Do you want to:"
-#~ msgstr ""
-#~ "A rede local xa foi configurada.\n"
-#~ "Desexa:"
-
-#~ msgid "i18n (important)"
-#~ msgstr "i18n (importante)"
-
-#~ msgid "i18n (very nice)"
-#~ msgstr "i18n (moi bo)"
-
-#~ msgid "i18n (nice)"
-#~ msgstr "i18n (bo)"
-
-#~ msgid "using module"
-#~ msgstr "usando un módulo"
-
-#~ msgid "Search"
-#~ msgstr "Buscar"
-
-#~ msgid "Package"
-#~ msgstr "Paquete"
-
-#~ msgid "Tree"
-#~ msgstr "Árbore"
-
-#~ msgid "Sort by"
-#~ msgstr "Ordenar por"
-
-#~ msgid "Category"
-#~ msgstr "Categoría"
-
-#~ msgid "Installed packages"
-#~ msgstr "Paquetes instalados"
-
-#~ msgid "Available packages"
-#~ msgstr "Paquetes dispońibles"
-
-#~ msgid "Show only leaves"
-#~ msgstr "Amosar só as pólas"
-
-#~ msgid "Expand all"
-#~ msgstr "Expandir todos"
-
-#~ msgid "Collapse all"
-#~ msgstr "Pechar todos"
-
-#~ msgid "Add location of packages"
-#~ msgstr "Engadir localización dos paquetes"
-
-#~ msgid "Update location"
-#~ msgstr "Actualizar lugar"
-
-#~ msgid "Configuration: Add Location"
-#~ msgstr "Configuración: Engadir Lugar"
-
-#~ msgid "Find Package"
-#~ msgstr "Buscar Paquete"
-
-#~ msgid "Find Package containing file"
-#~ msgstr "Buscar paquete que conteńa un ficheiro"
-
-#~ msgid "Toggle between Installed and Available"
-#~ msgstr "Trocar entre Instalado e Dispońible"
-
-#~ msgid "Checking dependencies"
-#~ msgstr "Comprobando dependencias"
-
-#~ msgid "The following packages are going to be uninstalled"
-#~ msgstr "Os seguintes paquetes van ser desinstalados"
-
-#~ msgid "Regexp"
-#~ msgstr "Expr.Reg"
-
-#~ msgid "Which package are looking for"
-#~ msgstr "Que paquetes buscar"
-
-#~ msgid "No match"
-#~ msgstr "Sen coincidencias"
-
-#~ msgid "No more match"
-#~ msgstr "Non hai máis coincidencias"
-
-#~ msgid ""
-#~ "rpmdrake is currently in ``low memory'' mode.\n"
-#~ "I'm going to relaunch rpmdrake to allow searching files"
-#~ msgstr ""
-#~ "rpmdrake está en modo ``baixa memoria''.\n"
-#~ "Vaise reiniciar rpmdrake para permitir a busca de ficheiros"
-
-#~ msgid "Which file are you looking for?"
-#~ msgstr "żQue ficheiro está a buscar?"
-
-#~ msgid "What are looking for?"
-#~ msgstr "żQue está a buscar?"
-
-#~ msgid "Give a name (eg: `extra', `commercial')"
-#~ msgstr "Dea un nome (ex: `extra', `commercial')"
-
-#~ msgid "Directory"
-#~ msgstr "Directorio"
-
-#~ msgid "No cdrom available (nothing in /mnt/cdrom)"
-#~ msgstr "Non hai cdrom dispońible (nada en /mnt/cdrom)"
-
-#~ msgid "URL of the directory containing the RPMs"
-#~ msgstr "URL do directorio que contén os RPMs"
-
-#~ msgid ""
-#~ "For FTP and HTTP, you need to give the location for hdlist\n"
-#~ "It must be relative to the URL above"
-#~ msgstr ""
-#~ "Para FTP e HTTP, ten que indicar o lugar de hdlist\n"
-#~ "Ten que ser relativo á URL anterior"
-
-#~ msgid "Please submit the following information"
-#~ msgstr "Por favor, envíe a seguinte información"
-
-#~ msgid "%s is already in use"
-#~ msgstr "%s xa está en uso"
-
-#~ msgid "Updating the RPMs base"
-#~ msgstr "Actualizando a base de RPMs"
-
-#~ msgid "Going to remove entry %s"
-#~ msgstr "Vaise borra-la entrada %s"
-
-#~ msgid "Finding leaves"
-#~ msgstr "Buscando as pólas"
-
-#~ msgid "Finding leaves takes some time"
-#~ msgstr "A busca das pólas leva un tempo"
-
-#~ msgid "Graphics Manipulation"
-#~ msgstr "Manipulación de Gráficos"
-
-#~ msgid "KDE, QT, Gnome, GTK+"
-#~ msgstr "KDE, QT, Gnome, GTK+"
-
-#~ msgid "Python, Perl, libraries, tools"
-#~ msgstr "Python, Perl, bibliotecas, ferramentas"
-
-#~ msgid "Development applications"
-#~ msgstr "Aplicacións de desenvolvemento"
-
-#~ msgid "Sciences"
-#~ msgstr "Ciencias"
-
-#~ msgid ""
-#~ "Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and "
-#~ "file transfer tools"
-#~ msgstr ""
-#~ "Programas de Chat (IRC ou mensaxería instantánea) como o xchat, licq, "
-#~ "gaim e ferramentas de transferencia de ficheiros"
-
-#~ msgid "Communication facilities"
-#~ msgstr "Facilidades de Comunicación"
-
-#~ msgid "KDE"
-#~ msgstr "KDE"
-
-#~ msgid "Gnome"
-#~ msgstr "Gnome"
-
-#~ msgid "Development other"
-#~ msgstr "Outros de desenvolvemento"
-
-#~ msgid "Databases clients and servers (mysql and postgresql)"
-#~ msgstr "Clientes e servidores de Bases de Datos (mysql e postgresql)"
+#~ "Se desexa instalar menos ca isto,\n"
+#~ "seleccione a porcentaxe de paquetes que quere instalar.\n"
+#~ "Unha porcentaxe baixa instalará só os paquetes máis importantes;\n"
+#~ "unha porcentaxe de %d%% instalará tódolos paquetes posibles."
-#~ msgid "Development C/C++"
-#~ msgstr "Desenvolvemento en C/C++"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Vostede poderá escollelos máis especificamente na seguinte etapa."
-#~ msgid "Czech"
-#~ msgstr "Checo"
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Porcentaxe de paquetes a instalar"
-#~ msgid "Which serial port is your mouse connected to?"
-#~ msgstr "żA qué porto serie está conectado o rato?"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Escola o nivel de seguridade"
diff --git a/perl-install/share/po/help-fr.pot b/perl-install/share/po/help-fr.pot
index ee17d2e5b..36b1dc8a1 100644
--- a/perl-install/share/po/help-fr.pot
+++ b/perl-install/share/po/help-fr.pot
@@ -2,29 +2,6 @@
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-"LILO (the LInux LOader) and GRUB are boot loaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -254,17 +231,6 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Choose the hard drive you want to erase to install your new Mandrake Linux\n"
-"partition. Be careful, all data present on it will be lost and will not be\n"
-"recoverable!"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
@@ -341,72 +307,6 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\n"
-"\n"
-" * Open Firmware Delay: unlike LILO, there are two delays available with\n"
-"yaboot. The first delay is measured in seconds and at this point, you can\n"
-"choose between CD, OF boot, MacOS or Linux;\n"
-"\n"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
-"Open Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-"Yaboot is a boot loader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful as\n"
-"to choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message that is displayed before the boot\n"
-"prompt.\n"
-"\n"
-" * Boot Device: indicate where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you setup a bootstrap partition earlier to\n"
-"hold this information.\n"
-"\n"
-" * Open Firmware Delay: unlike LILO, there are two delays available with\n"
-"yaboot. The first delay is measured in seconds and at this point, you can\n"
-"choose between CD, OF boot, MacOS or Linux.\n"
-"\n"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected.\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose \"C\" for CD\n"
-"at the first boot prompt.\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose \"N\" for\n"
-"Open Firmware at the first boot prompt.\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
@@ -431,15 +331,6 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Please select the correct port. For example, the COM1 port under MS Windows\n"
-"is named ttyS0 under GNU/Linux."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
"your installed hardware, you may - or not, see the following entries:\n"
"\n"
@@ -703,69 +594,6 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"More than one Microsoft Windows partition has been detected on your hard\n"
-"drive. Please choose the one you want resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\",\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\",\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\",\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-msgid ""
"The first time you try the X configuration, you may not be very satisfied\n"
"with its display (screen is too small, shifted left or right...). Hence,\n"
"even if X starts up correctly, DrakX then asks you if the configuration\n"
@@ -1013,13 +841,6 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
msgid ""
-"Please be patient. This operation can take several minutes."
-msgstr ""
-"Please be patient. This operation can take several minutes."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
@@ -1148,88 +969,6 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installs. If you make any changes, you must at least define a root\n"
-"partition (Ť / ť). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for Ť /home ť\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\",\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\",\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\",\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"Click on Ť OK ť if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on Ť OK ť, you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on Ť Cancel ť to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
@@ -1433,21 +1172,6 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose Ť First sector of drive\n"
-"(MBR) ť."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
@@ -1568,230 +1292,3 @@ msgstr ""
"site du fabricant (si vous avez un accčs ŕ Internet) ou ŕ partir des menus\n"
"de Microsoft Windows (si vous utilisiez ce peripherique avec Windows)."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, 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 simply the name you will have to type at the yaboot\n"
-"prompt to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. 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 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override 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 just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OS's, the entry consists only of a label and the root partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot\n"
-"prompt to select this boot option.\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension.\n"
-"\n"
-" * Root: the Ť root ť device or \"/\" for your Linux installation.\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" \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 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used.\n"
-"\n"
-" * Read-write: normally the Ť root ť partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes \"live\".\n"
-"Here, you can override 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 just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a \"*\", if you press [Tab] to see the boot\n"
-"selections."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
-"users to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
-"your hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on\n"
-"partitions (type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [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 filesystem 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 ""
-"At this point, you need to choose what partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have been already\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on \"hda\" for the first IDE drive,\n"
-"\"hdb\" for the second, \"sda\" for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * Ť Clear all ť: this option deletes all partitions on the selected hard\n"
-"drive.\n"
-"\n"
-" * Ť Auto allocate ť: this option allows you to automatically create Ext2\n"
-"and swap partitions in free space of your hard drive.\n"
-"\n"
-" * Ť Rescue partition table ť: if your partition table is damaged, you can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail.\n"
-"\n"
-" * Ť Undo ť: use this option to cancel your changes.\n"
-"\n"
-" * Ť Reload ť: you can use this option if you wish to undo all changes and\n"
-"load your initial partitions table.\n"
-"\n"
-" * Ť Assistant ť: use this option if you wish to use a assistant to\n"
-"partition your hard drive. This is recommended if you do not have a good\n"
-"knowledge of partitioning.\n"
-"\n"
-" * Ť Restore from floppy ť: this option will allow you to restore a\n"
-"previously saved partition table from floppy disk.\n"
-"\n"
-" * Ť Save to floppy ť: saves the partition table to a floppy. Useful for\n"
-"later partition-table recovery if necessary. It is strongly recommended to\n"
-"perform this step.\n"
-"\n"
-" * Ť Done ť: when you have finished partitioning your hard drive, this will\n"
-"save your changes back to disc.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [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"
-"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"
-"boot loader. 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."
-
diff --git a/perl-install/share/po/help-it.pot b/perl-install/share/po/help-it.pot
index 6fd5a0be5..10039201e 100644
--- a/perl-install/share/po/help-it.pot
+++ b/perl-install/share/po/help-it.pot
@@ -346,72 +346,6 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\n"
-"\n"
-" * Open Firmware Delay: unlike LILO, there are two delays available with\n"
-"yaboot. The first delay is measured in seconds and at this point, you can\n"
-"choose between CD, OF boot, MacOS or Linux;\n"
-"\n"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
-"Open Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-"Yaboot is a boot loader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful as\n"
-"to choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message that is displayed before the boot\n"
-"prompt.\n"
-"\n"
-" * Boot Device: indicate where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you setup a bootstrap partition earlier to\n"
-"hold this information.\n"
-"\n"
-" * Open Firmware Delay: unlike LILO, there are two delays available with\n"
-"yaboot. The first delay is measured in seconds and at this point, you can\n"
-"choose between CD, OF boot, MacOS or Linux.\n"
-"\n"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected.\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose \"C\" for CD\n"
-"at the first boot prompt.\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose \"N\" for\n"
-"Open Firmware at the first boot prompt.\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
@@ -1682,100 +1616,6 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, 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 simply the name you will have to type at the yaboot\n"
-"prompt to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. 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 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override 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 just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OS's, the entry consists only of a label and the root partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot\n"
-"prompt to select this boot option.\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension.\n"
-"\n"
-" * Root: the \"root\" device or \"/\" for your Linux installation.\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. 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 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used.\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes \"live\".\n"
-"Here, you can override 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 just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a \"*\", if you press [Tab] to see the boot\n"
-"selections."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
"defined, either from a previous installation of GNU/Linux or from another\n"
diff --git a/perl-install/share/po/hr.po b/perl-install/share/po/hr.po
index 20347847b..655bd0053 100644
--- a/perl-install/share/po/hr.po
+++ b/perl-install/share/po/hr.po
@@ -1,12 +1,13 @@
# KTranslator Generated File
# Copyright (c) 1999 MandrakeSoft
# Vladimir Vuksan <vuksan@veus.hr>, 1999.
-# Vlatko Kosturjak <kost@iname.com>, 2001.
+# Vlatko Kosturjak <kost@iname.com>, 2001, 2002.
+# Dejan Dakic <ddakic@foi.hr>, 2002.
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-13 06:59CET\n"
+"Project-Id-Version: DrakX\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2002-03-22 05:58CET\n"
"Last-Translator: Vlatko Kosturjak <kost@iname.com>\n"
"Language-Team: Croatian <lokalizacija@linux.hr>\n"
"MIME-Version: 1.0\n"
@@ -14,24 +15,55 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 0.8\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Podesi sve zaslone nezavisno"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Koristi Xinerama proširenje"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Podesi samo karticu \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB ili više"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Odaberite X poslužitelj"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X poslužitelj"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Više-zaslonska postava"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -39,41 +71,44 @@ msgstr ""
"Vaš sustav podržava postavu sa više zaslona.\n"
"Što želite napraviti?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Grafička kartica"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Odaberite količinu memorije na grafičkoj kartici"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Odaberite grafičku karticu"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "XFree postavke"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Odaberite X poslužitelj"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Koju konfiguraciju XFree-a želite imati?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X poslužitelj"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Podesi sve zaslone nezavisno"
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Odaberite X upravljački program"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Koristi Xinerama proširenje"
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "X upravljački program"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Podesi samo karticu \"%s\" (%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Koju konfiguraciju XFree-a želite imati?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s sa 3D hardware akceleracijom"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -82,33 +117,17 @@ msgstr ""
"Vaša video kartica može imati 3D ubrzanje samo sa XFree %s.\n"
"Vaša kartica je podržana od XFree %s koji možda ima bolju podršku u 2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Vaša kartica može imati 3D hardware-sku akceleraciju sa XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s sa 3D hardware akceleracijom"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Vaša kartica može imati 3D hadware akceleraciju podržanu od XFree %s,\n"
-"UPOZORAVAMO VAS DA JE OVO EKSPERIMENTALNA PODRŠKA I MOŽE ZAMRZNUTI VAŠE "
-"RAČUNALO."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s sa EXPERIMENTALNOM 3D hardware akceleracijom"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -120,31 +139,59 @@ msgstr ""
"RAČUNALO.Vaša kartica je podržana od XFree %s koja može imati bolju podršku "
"u 2D."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Vaša kartica može imati 3D hadware akceleraciju podržanu od XFree %s,\n"
+"UPOZORAVAMO VAS DA JE OVO EKSPERIMENTALNA PODRŠKA I MOŽE ZAMRZNUTI VAŠE "
+"RAČUNALO."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (instalacijski zaslonski upravljački program)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree postavke"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Odaberite količinu memorije na grafičkoj kartici"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Postavke poslužitelja"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Zadrži promjene?\n"
+"Trenutna postava je:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Odaberite monitor"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Prilagođeno"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Generički"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Vrati"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -168,512 +215,327 @@ msgstr ""
"veći od mogućnosti vašeg monitora jer možete oštetiti vaš monitor.\n"
" Ukoliko ste u nedoumici, izaberite konzervativne postavke."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Horizontalna vrijednost osvježavanja"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Vertikalna vrijednost osvježavanja"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Niste podesili monitor"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Niste podesili grafičku karticu"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Niste podesili rezoluciju"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Da li želite iskušati postavu ?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Upozorenje: testiranje grafičke kartice može zamrzunti vaše računalo"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Iskušaj postavu"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 boja (8 bita)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"provjerite parametre koje ste unjeli"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 tisuća boja (15 bita)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Pojavila se greška:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 tisuća boja (16 bita)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Zatvaram nakon %d sekundi"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 milijuna boja (24 bita)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Da li je ovo ispravno?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 milijarde boja (32 bita)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Pojavila se greška, provjerite parametre koje ste unjeli"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Rezolucije"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Rezolucija"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Odaberite rezoluciju i color depth"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Grafička kartica: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 poslužitelj: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Više"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Odustani"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "U redu"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Ekspertni mod"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Pokaži sve"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Da li želite iskušati postavu ?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Rezolucije"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Iskušaj postavu"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Raspored tipkovnice: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Vrsta miša: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Uređaj miša: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Horizontalna Sinkronizacija Monitora: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Vertikalno Osvježenje Monitora: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Grafička kartica: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Identifikacija grafičke kartice: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Grafička memorija: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Dubina boje: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Rezolucija: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 poslužitelj: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 upravljački program: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Pripremam X-Window postavu"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Što želite napraviti?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Promijeni monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Promijeni grafičku karticu"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Promijeni postavke poslužitelja"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Promijeni rezoluciju"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Prikaži informacije"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Iskušaj ponovo"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Završi"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Zadrži promjene?\n"
-"Trenutna postava je:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X kod pokretanja sustava"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Mogu podesiti da se X podigne automatski kod podizanja sustava.\n"
"Da li želite da se X automatski pokreće?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Molim ponovo se logirajte u %s kako bi aktivirali promjenjeno"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Molim prvo se odjavite te pritisnite Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 boja (8 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 tisuća boja (15 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 tisuća boja (16 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milijuna boja (24 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 milijarde boja (32 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB ili više"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standardni VGA, 640x480 na 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 na 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 kompatibilan, 1024x768 na 87 Hz s preplitanjem (bez 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 na 87 Hz s preplitanjem, 800x600 na 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Prošireni Super VGA, 800x600 na 60 Hz, 640x480 na 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Bez preplitanja SVGA, 1024x768 na 60 Hz, 800x600 na 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Visoko frekvencijski SVGA, 1024x768 na 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frekvencijski koji ide do 1280x1024 na 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frekvencijski koji ide do 1280x1024 na 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frekvencijski koji ide do 1280x1024 na 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor koji ide do 1600x1200 na 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor koji ide do 1600x1200 na 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Prvi sektor boot particije"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Prvi sektor pogona (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "SILO instalacija"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Gdje želite instalirati bootloader?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "LILO/grub instalacija"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO sa tekstualnim menijem"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO sa grafičkim menijem"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Podizanje sa DOS/Windows-a (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Glavne postavke bootloadera"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Koristiti Bootloader"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Bootloader instalacija"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Boot uređaj"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ne radi na starim BIOSima)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Zbijeno"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "zbijeno"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Video mod"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Odgoda prije bootiranja uobičajenog imagea"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Lozinka"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Lozinka (provjera)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Ograničene opcije na komandnoj liniji"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "ograniči"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Očisti /tmp na svakom podizanju"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Precizna veličina RAMa (pronađeno %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Omogući više obrazaca"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Upišite veličinu RAM u Mb"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Postavka ``Ograničene opcije na komandnoj liniji'' nema svrhe ako ne unesete "
"lozinku"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Molim pokušajte ponovo"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Lozinke se ne podudaraju"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Init poruka"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Pauza Otvorenog Firmware-a"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Vrijeme čekanja podizanja kernela"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Omogući CD podizanje?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Omogući podizanje?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Uobičajeni OS?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -687,83 +549,83 @@ msgstr ""
"\n"
"Sa kojeg diska želite podizati?"
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Ovo su trenutni zapisi.\n"
"Možete dodati još koji ili urediti postojeći."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Dodaj"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Gotov"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Promjeni"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Kakvu vrstu zapisa želite dodati"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Drugi OS (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Drugi OS (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Drugi OS (Windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Slika (image)"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Dodaj na kraj"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Čitaj-piši"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tablica"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Nesigurno"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Oznaka"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Uobičajeno"
@@ -795,53 +657,77 @@ msgstr "Morate odrediti root particiju"
msgid "This label is already used"
msgstr "Ova oznaka već postoji"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Pronašao sam %s %s međusklopova"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Da li imate još koji?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Da li imate %s međusklopova?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Ne"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Da"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Pokaži info o hardveru"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instaliram upravljački program %s za karticu %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
+#: ../../any.pm_.c:697
+#, fuzzy, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+"Sada možete unijeti opcije za modul %s.\n"
+"Primjetite da svaka adresa treba biti unešena sa prefiksom 0x kao '0x123'"
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Sada možete unijeti postavke za modul %s.\n"
+"Postavke su formata ``ime=vrijednost ime2=vrijednost2...''.\n"
+"Na primjer, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Postavke modula:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Koji %s upravljački program želite isprobati?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -860,39 +746,15 @@ msgstr ""
"računalo za informacije koje treba? Ponekad, isprobavanje može zamrznuti\n"
"vaše računlo, ali ne bi trebalo izazvati nikakvu štetu."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Auto. ispitaj"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Odredi postavke"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"Sada možete unijeti opcije za modul %s.\n"
-"Primjetite da svaka adresa treba biti unešena sa prefiksom 0x kao '0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Sada možete unijeti postavke za modul %s.\n"
-"Postavke su formata ``ime=vrijednost ime2=vrijednost2...''.\n"
-"Na primjer, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Postavke modula:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -901,49 +763,54 @@ msgstr ""
"Učitavanje modula %s nije uspjelo.\n"
"Da li želite pokušati ponovo sa drugim parametrima?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "pristup X programima"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "pristup rpm alatima"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "dozvoli \"su\""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "pristup administracijskim datotekama"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(već postoji %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Lozinka je prejednostavna"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Molim dajte korisniku korisničko ime"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Korisničko ime može sadržavati samo mala slova, brojeve, `-' i `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Ovaj korisnik već postoji"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Ovaj korisnik već postoji"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Dodaj korisnika"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -952,32 +819,32 @@ msgstr ""
"Unesite korisnika\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Prihvati korisnika"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Puno ime"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Korisničko ime"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Ljuska"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Ikona"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Auto-prijava"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -985,56 +852,56 @@ msgstr ""
"Mogu podesiti da se vaše računalo automatski prijavi kao jedan korisnik.\n"
"Da li želite koristiti tu pogodnost?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Izaberite uobičajenog korisnika:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Izaberite prozorski upravitelj koji želite pokrenuti:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Molim izaberite jezik koji želite koristiti."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr "Možete izabrati druge jezike koji će biti dostupni nakon instalacije"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Sve"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Dozvoli svim korisnicima"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Prilagođeno"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "Nema dijeljenja"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Paket %s treba instalirati. Da li ga želite instalirati?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Možete izvesti koristeći NFS ili Sambu. Koji od njih želite"
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Nužni paket %s nedostaje"
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
@@ -1048,31 +915,11 @@ msgstr ""
"\n"
"\"Proizvoljno\" će omogućiti dozvoljavanje po korisniku.\n"
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Odustani"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr "Pokreni userdrake"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -1080,31 +927,31 @@ msgstr ""
"Dijeljenje po korisniku koristi grupu \"fileshare\". \n"
"Možete koristiti userdrake za dodavanje korisnika u navedenu grupu."
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Dobrodošli Crackeri"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Slab"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Standardno"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Visok"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
msgstr "Viši"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoidan"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1115,7 +962,7 @@ msgstr ""
"ali vrlo osjetljiv: ne smije biti korišten za računala koja su povezana u "
"mreži ili na Internet. Naime, nema lozinke za pristup."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1123,7 +970,7 @@ msgstr ""
"Lozinke su sada uključene međutim još ne preporučam korištenje ovog računala "
"u mrežnom okolišu."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1131,7 +978,7 @@ msgstr ""
"Ovo je standardna sigurnosna razina preporučena za računala koja će biti "
"korištena za spajanje na Internet kao klijent."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1139,13 +986,14 @@ msgstr ""
"Već postoje neka ograničenja i više automatskih provjera se pokreće svake "
"noći."
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Sa ovom sigurnosnom razinom, korištenje ovog sustava kao poslužitelj postaje "
"moguće.\n"
@@ -1153,39 +1001,39 @@ msgstr ""
"koji prima zahtjeve od mnogo klijenata. Upozorenje: ako je vaše računalo "
"samo klijent na Internetu, bolje da izaberete nižu razinu."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Temeljeno na prijašnjoj razini, ali je sustav potpuno zatvoren.\n"
"Sigurnosne značajke su na maksimumu."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Izaberite sigurnosni nivo"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Sigurnosna razina"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Koristi libsafe za poslužitelje"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Biblioteka koja štiti od prekoračenja spremnika i format string napada."
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1208,52 +1056,52 @@ msgstr ""
# and only one line per string for the GRUB messages
#. -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_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Dobro dosli u GRUB izbornik operativnih sustava!"
#. -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_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Za mijenjanje izabranog sustava pritisnite tipke %c i %c."
#. -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_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Pritisnite ENTER za bootiranje izabranog OS, 'e' za promjenu"
#. -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_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "naredbe prije bootiranja ili 'c' za komandnu liniju."
#. -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_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Osvjetljeni zapis biti će bootiran automatski za %d sekundi."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "nema dovoljno mjesta u /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Radna površina"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Ne možete instalirati bootloader na %s particiju\n"
@@ -1266,15 +1114,19 @@ msgstr "nema još implementirane pomoći.\n"
msgid "Boot Style Configuration"
msgstr "Postava Stila Podizanja"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Datoteka"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Datoteka/_Izlaz"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1309,14 +1161,14 @@ msgstr "Yaboot mod"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Trenutno koristite %s kao Upravitelj Boot-a.\n"
"Pritisnite na Podesi za pokretanje čarobnjaka za postavljanje."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Podesi"
@@ -1326,7 +1178,7 @@ msgid "System mode"
msgstr "Sistemski mod"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Pokreni X-Window sustav pri podizanju"
#: ../../bootlook.pm_.c:148
@@ -1337,14 +1189,16 @@ msgstr "Ne, ne želim automatsko prijavljivanje"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Da, želim automatsko prijavljivanje sa ovim korisnikom i okružjem"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "U redu"
@@ -1392,7 +1246,7 @@ msgstr "Ne mogu napraviti screenshotove prije particioniranja"
msgid "Screenshots will be available after install in %s"
msgstr "Screenshotovi će biti raspoloživi poslije instalaciju u %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Francuska"
@@ -1400,7 +1254,7 @@ msgstr "Francuska"
msgid "Costa Rica"
msgstr "Kosta Rika"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Belgija"
@@ -1424,11 +1278,12 @@ msgstr "Norveška"
msgid "Sweden"
msgstr "Švedska"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Nizozemska"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "Italija"
@@ -1436,7 +1291,7 @@ msgstr "Italija"
msgid "Austria"
msgstr "Austrija"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "Sjedinjene Američke Države"
@@ -1444,8 +1299,8 @@ msgstr "Sjedinjene Američke Države"
msgid "Please make a backup of your data first"
msgstr "Prvo napravite backup podataka"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Pročitajte pažljivo!"
@@ -1459,11 +1314,12 @@ msgstr ""
"sektora) na\n"
"početku diska"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Greška"
@@ -1471,11 +1327,11 @@ msgstr "Greška"
msgid "Wizard"
msgstr "Čarobnjak"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Izaberite akciju"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1487,77 +1343,77 @@ msgstr ""
"Preporučam da promijenite veličinu particije\n"
"(kliknite prvo na particiju te onda na \"Promijeni veličinu\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Molim kliknite na particiju"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Detalji"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "Journalised FS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Prazno"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Ostali"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Vrste datotečnih sustava:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Napravi"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Vrsta"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Umjesto toga koristi ``%s''"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Obriši"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Prvo pritisnite ``Demontiraj''"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1565,67 +1421,72 @@ msgstr ""
"Nakon mijenjanja tipa particije %s svi podaci na ovoj particiji biti će "
"obrisani"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Izaberite particiju"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Izaberite drugu particiju"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Izlaz"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Normalno > Ekspert"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Prebaci u normalni mod"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Vrati"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Da ipak nastavim?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Da završim bez spremanja"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Da završim bez zapisivanje particijske tablice?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "Da li želite spremiti /etc/fstab promjene?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Raspodijeli automatski"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Očisti sve"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Više"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "Hard disk informacije"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Sve primarne particije su iskorištene"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Ne mogu dodati niti jednu dodatnu particiju"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1634,31 +1495,31 @@ msgstr ""
"bi\n"
"mogli stvoriti jednu extended particiju."
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "Spremi particijsku tabelu"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "Vrati particijsku tabelu"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Spasi particijsku tabelu"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "Ponovno učitaj particijsku tabelu"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "Automatsko montiranje prenosivog medija"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Odaberite datoteku"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1666,11 +1527,11 @@ msgstr ""
"Backup particijske tablice nema istu veličinu\n"
"Da ipak nastavim?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Upozorenje"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1678,122 +1539,129 @@ msgstr ""
"Umetnite disketu u pogon\n"
"Svi podaci na disketi biti će izbrisani"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Pokušavam spasiti particijsku tablicu"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Detaljne informacije"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Točka montiranja"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opcije"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Promijeni veličinu"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Premjesti"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formatiraj"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Montiraj"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Dodaj RAID-u"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Dodaj LVM-u"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Demontiraj"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Ukloni sa RAID-a"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Ukloni sa LVM-a"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Promijeni RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Koristi za loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Stvori novu particiju"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Početni sektor:"
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Veličina u MB:"
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Vrsta datotečnog sustava:"
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Mjesto montiranja:"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Postavke:"
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+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/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "Ukloniti loopback datoteku?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Mijenjam tip particije"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Koji datotečni sustav želite?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Mijenjam iz ext2 u ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Gdje želite montirati loopback datoteku %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Gdje želite montirati uređaj %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1802,128 +1670,133 @@ msgstr ""
"loop back.\n"
"Uklonite loopback prvo"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Izračunavam granice fat datotečnog sustava"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Mijenjam veličinu"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Ova particija nije promjenjiva u veličini"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Preporučam da prvo backupirate sve podatke s ove particije"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Nakon mijenjanja veličine particije %s svi podaci na ovoj particiji biti će "
"izgubljeni"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Odaberite novu veličinu"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Nova veličina u MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Na koji disk se želite premjestiti?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Na koji se sektor želite premjestiti?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Premještam"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Premještam particiju..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Izaberite postojeći RAID na koji želite dodati "
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "novi"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Izaberite postojeći LVM na koji želite dodati "
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "LVM ime?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Ova particija se ne može koristiti za loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Ime loopback datoteke:"
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Dajte ime datoteke"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr ""
"Datoteku koristi neki drugi loopback. Molim izaberite neku drugu datoteku"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Datoteka već postoji. Da li da nju upotrijebim?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Opcije montiranja"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Razno"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "uređaj"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "razina"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "chunk veličina"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Budite oprezni: ova operacija je opasna"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Kakav tip particioniranja?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Paket %s treba instalirati. Da li ga želite instalirati?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1935,7 +1808,7 @@ msgstr ""
"Imate dvije opcije ili ćete koristiti LILO pa neće raditi ili nećete\n"
"koristiti LILO pa vam /boot neće ni trebati."
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1947,7 +1820,7 @@ msgstr ""
"Ukoliko planirate koristiti LILO boot menadžer, budite pažljivi da dodate/"
"boot particiju"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1957,130 +1830,130 @@ msgstr ""
"Nema bootloader-a koji je u mogućnosti to podržati bez /boot particije.\n"
"Zato budite pažljivi da dodate /boot particiju"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Particijska tablica pogona %s će sada biti zapisana na disk!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Trebate ponovo pokrenuti sustav prije nego promjene postanu aktivne"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Nakon formatiranja particije %s svi podaci na ovoj particiji biti će obrisani"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Formatiram"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatiram loopback datoteku %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Formatiram particiju %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Sakrij datoteku"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Premijesti datoteku na novu particiju"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"Direktorij %s već sadrži neke podatke\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "Premiješteam datoteke na novu particiju"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Kopiram %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Uklanjam %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "particija %s je sada poznata kao %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Uređaj:"
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS uređaj slovo: %s (nagađanje)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Vrsta: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Ime: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Početak: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Veličina: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sektora"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cilindar %d do %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Formatiran\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Nije formatiran\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Montiran\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2089,7 +1962,7 @@ msgstr ""
"Loopback datoteka(e):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2097,27 +1970,27 @@ msgstr ""
"Podrazumijevana boot particija\n"
" (za MS-DOS boot, ne za LILO)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Razina %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Chunk veličina %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-diskovi %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Ime loopback datoteke: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2129,7 +2002,7 @@ msgstr ""
"ustvari particija upravljačkog programa, vjerojatno\n"
"biste ju trebali ostaviti.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2141,64 +2014,64 @@ msgstr ""
"particija je za\n"
"dvostruko-podizanje (dual-boot) vašeg sustava.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Veličina: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrija: %s cilindara, %s glava, %s sektora\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-diskovi %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Vrsta particijske tabele: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "na sabirnici %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Opcije: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "Ključ enkriptiranja datotečnog sustava"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "Izaberite vaš ključ za enkriptiranje datotečnog sustava"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Upisani enkripcijski ključ je prejednostavan (mora biti dug najmanje %d "
"znakova)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "Enkripcijski ključevi se ne slažu"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "Enkripcijski ključ"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "Enkripcijski ključ (ponovno)"
@@ -2207,35 +2080,65 @@ msgid "Change type"
msgstr "Promijeni tip"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Molim kliknite na medij"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Provjera autentičnosti"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Internet"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Korisničko ime"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Korisničko ime"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS domena"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "Poslužitelji za pretraživanje"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatiranje %s nije uspjelo"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "ne znam kako formatirati %s kao vrstu %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "montiranje particije %s u direktorij %s neuspješno"
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck neuspješan sa izlaznim kodom %d ili signalom %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "greška kod demontiranja %s: %s"
@@ -2252,70 +2155,324 @@ msgstr "sa /usr"
msgid "server"
msgstr "poslužitelj"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "JFS se ne može koristiti na particijama koje su manje od 16 MB"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "ReiserFS se ne može koristiti na particijama koje su manje od 32 MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Mjesto montiranja mora početi sa /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Već postoji particija sa mjestom montiranja %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Ne možete koristiti LVM logički prostor za mjesto montiranja %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Ovaj direktorij bi trebao ostati unutar root datotečnog sustava"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Treba vam istinski datotečni sustav (ex2, reiserfs) za ovo mjesto "
"montiranja\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
"Ne možete koristiti enkriptirani datotečni sustav za točku montiranja %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "Nema dovoljno slobodnog prostora za auto-alokaciju"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr "Nema ništa za uraditi"
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Greška prilikom otvaranja %s za pisanje: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Pojavila se greška - ne mogu pronaći niti jedan valjani uređaj na kojem\n"
"bih mogao instalirati datotečni sustav. Provjerite da li je sa vašim "
"hardverom sve u redu."
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Nemate niti jednu particiju!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Koristi auto detekciju"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Generički"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Memorija kartice (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Postavka opterećenja"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Promijeni tip"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Završi"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Pomoć"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Pomoć"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Pomoć/_O programu"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Miš"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Memorija kartice (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Odustani"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Miš"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Opis"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Provjera autentičnosti"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Odaberite datoteku"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Gateway uređaj"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 gumba"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Otkrivanje hard diskova"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Pokaži info o hardveru"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Prikaži informacije"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Podesi miš"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "detektiran na portu %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Molim pričekajte"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d sekundi"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Uklanjam pisač \"%s\" ..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Auto. ispitaj"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2329,7 +2486,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2475,9 +2632,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2833,6 +2989,23 @@ msgid ""
"server, choose \"FBDev\". This is a failsafe option which works with any\n"
"modern graphics card. Then choose \"Test again\" to be sure."
msgstr ""
+"Kada prvi put isprobate X konfiguraciju, možda nećete biti vrlo zadovoljni\n"
+"prikazom (premaleni ekran, pomaknut ulijevo ili udesno...). Stoga, i ako se\n"
+"Xi pokrenu normalno, DrakX će vas pitati da li vam postavke odgovaraju. "
+"Također\n"
+"će predložiti da ih promijenite izabiranjem jednog od ispravnih modova sa "
+"popisa\n"
+" pronađenih.\n"
+"\n"
+"Kao posljednju mjeru, ako još uvijek niste uspjeli natjerati Xe da rade, "
+"izaberite\n"
+"\"Promijeni grafičku karticu\", opcija \"Nenavedena kartica\", i kada "
+"budete\n"
+"upitani za poslužitelj, izaberite \"FBDev\". Ovo je sigurnosna opcija koja "
+"radi\n"
+"sa svakom suvremenom grafičkom karticom. Potom izaberite \"Ponovno isprobaj"
+"\" da\n"
+"biste bili sigurni."
#: ../../help.pm_.c:249
msgid ""
@@ -2852,7 +3025,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2864,9 +3037,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2876,9 +3048,37 @@ msgid ""
"you do not need. You will not have to format it since DrakX will rewrite\n"
"the whole disk."
msgstr ""
+"Mandrake Linux CD-ROM ima ugrađeni mod za spašavanje. Možete mu pristupiti\n"
+"pokretanjem sustava sa CD-ROMa, pritiskanjem >>F1<< tipke pri podizanju "
+"sustava\n"
+"i upisivanjem >>rescue<< u komandnoj liniji. Ali ako se sustav ne može "
+"podići\n"
+"sa CD-ROMa, trebali biste se vratiti ovom koraku za pomoć u barem dvije "
+"situacije:\n"
+"\n"
+" * kada instalira bootloader, DrakX će prepisati boot sektor (MBR) vašeg\n"
+"primarnog diska (osim ako već ne koristite neki drugi boot manager), da bi "
+"vam\n"
+"omogućio pokretanje ili Windowsa ili GNU/Linuxa (ako imate Windowse u "
+"računalu).\n"
+"Ako trebate ponovno instalirati Windowse, Microsoftov proces instalacije će\n"
+"prepisati boot sektor, i nećete moći pokrenuti GNU/Linux!\n"
+"\n"
+" * ako se pojavi problem i ne možete pokrenuti GNU/Linux sa tvrdog diska,\n"
+"ova disketa će biti jedini način na koji možete pokrenuti GNU/Linux. Sadrži\n"
+"dovoljan broj sustavskih alata za povrat sustava koji se srušio zbog "
+"nedostatka\n"
+"energije, nesretne greške pri tipkanju, pogreške pri upisivanju lozinke ili "
+"bilo\n"
+"kojeg drugog razloga.\n"
+"\n"
+"Kada kliknete na ovaj korak, pojavit će se zahtjev za ubacivanjem diskete u "
+"pogon.\n"
+"Disketa koju ubacujete mora biti prazna ili sadržavati podatke koji vam "
+"nisu\n"
+"potrebni. Nećete je morati formatirati, jer će je DrakX potpuno prepisati."
#: ../../help.pm_.c:280
-#, fuzzy
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -2913,21 +3113,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2943,80 +3142,82 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"U ovom trenutku, trebate izabrati gdje ćete instalirati vaš\n"
-"Mandrake Linux operativni sustav na vaš hard disk. Ukoliko je prazan ili "
-"ako\n"
-"postojeći operativni sustav koristi čitav prostor na disku, trebate ga\n"
-"particionirati. Jednostavno, particioniranje hard diska sastoji se od "
-"logičkog\n"
-"dijeljenja kako bi napravili prostor za instalaciju vašeg novog Mandrake "
-"Linux sustava.\n"
-"\n"
-"\n"
-"Zato što su posljedice procesa particioniranja obično ireverzibilne,\n"
+"Mandrake Linux operativni sustav na vašem tvrdom disku. Ukoliko je prazan "
+"ili \n"
+"ako postojeći operativni sustav koristi čitav prostor na disku, trebate ga\n"
+"particionirati. Jednostavno, particioniranje hard diska sastoji se od\n"
+"logičkog dijeljenja kako bi napravili prostor za instalaciju vašeg novog\n"
+"Mandrake Linux sustava.\n"
+"\n"
+"Zato što su posljedice procesa particioniranja obično nepovratne,\n"
"particioniranje može biti strašno i stresno ukoliko ste korisnik bez "
"iskustva.\n"
-"Ovaj čarobnjak pojednostavljuje proces. Prije početka, molimo konzultirajte "
-"upute\n"
-"i uzmite vremena koliko vam je potrebno.\n"
-"\n"
+"Ovaj čarobnjak pojednostavljuje proces. Prije početka, molimo konzultirajte\n"
+"upute i uzmite vremena koliko vam je potrebno.\n"
"\n"
-"Trebate najmanje dvije particije. Jedna je za sam operativni sustav, a\n"
-"druga je za virtualnu memoriju (također zvanu Swap).\n"
+"Ako ste pokrenuli instalaciju u modu za stručnjake, ući ćete u DiskDrake,\n"
+"Mandrake Linuxov alat za particioniranje, s kojim možete fino podešavati\n"
+"particije. Pogledajte DiskDrake odjeljak u ``User Guide''.\n"
+"Iz sučelja instalacije možete koristiti čarobnjake koji su ovdje opisani\n"
+"pritiskom na \"Čarobnjak\" dugme.\n"
"\n"
+"Ako su particije već određene, od prijašnje instalacije, ili nekog drugog\n"
+"alata za particioniranje, samo ih izaberite da bi instalirali vaš Linux "
+"sustav.\n"
"\n"
-"Ukoliko su particije već definirane (iz prijašnje instalacije iliiz\n"
-"drugih particijskih alata), trebate samo izbarati te particije za "
-"instalaciju vašeg\n"
-"Linux sustava.\n"
+"Ako particije nisu definirane, morate ih stvoriti korištenjem čarobnjaka.\n"
+"Ovisno o vašem tvrdom disku, nekoliko opcija je dostupno:\n"
"\n"
+" * \"Koristi slobodni prostor\": ova opcija će jednostavno automatski\n"
+"particionirati vaše prazne diskove. Nećete biti više ništa priupitani;\n"
"\n"
-"Ukoliko particije nisu već definirane, trebate ih napraviti. \n"
-"Da biste to napravili, koristite čarobnjak gore raspoloživ. U zavisnosti od "
-"vaših hard disk\n"
-"postavki, nekoliko rješenja je raspoloživo:\n"
-"\n"
-"* Korištenje postojeće particije: čarobnjak je detektirao jednu ili više "
+" * \"Korištenje postojeće particije\": čarobnjak je detektirao jednu ili "
+"više\n"
"postojećih Linux particija na vašem hard disku. Ukoliko\n"
-" ih želite zadržati, izaberite ovu opciju.\n"
-"\n"
+"ih želite zadržati, izaberite ovu opciju.\n"
"\n"
-"* Obriši cijeli disk: ukoliko želite obrisati sve podatke i sve particije "
+" * \"Obriši cijeli disk\": ukoliko želite obrisati sve podatke i sve "
+"particije\n"
"koje postoje na vašem hard disku i zamjeniti ih sa\n"
-" vašim novim Mandrake Linux sustavom, možete izabrati ovu opciju. Budite "
+"vašim novim Mandrake Linux sustavom, možete izabrati ovu opciju. Budite\n"
"pažljivi sa ovim rješenjem, nećete moći\n"
-" povratiti vaš izbor nakon potvrde.\n"
-"\n"
+"povratiti vaš izbor nakon potvrde.\n"
"\n"
-"* Koristiti slobodan prostor na Windows particiji: ukoliko je Microsoft "
+" * \"Koristiti slobodan prostor na Windows particiji\": ukoliko je "
+"Microsoft\n"
"Windows instaliran na vašem hard disku i zauzima\n"
-" cjeli raspoloživ prostor na njemu, trebate napraviti slobodan prostor za "
+"cjeli raspoloživ prostor na njemu, trebate napraviti slobodan prostor za\n"
"Linux podatke. Da biste to napravili možete obrisati vašu\n"
-" Microsoft Windows particiju i podatke (pogledajte \"Brisanje cijelog diska"
-"\" ili \"Ekspert mod\" rješenja) ili mjenjati veličinu vaše\n"
-" Microsoft Windows particije. Mjenjanje veličine može se obaviti bez "
-"gubitka bilo kakvih podataka. Ovo rješenje je\n"
-" preporučeno ukoliko želite koristiti zajedno Mandrake Linux i Microsoft "
-"Windows-e na istom računalu.\n"
-"\n"
-"\n"
-" Prije izabiranja ovog rješenja, molimo razumite da će veličina vaše "
+"Microsoft Windows particiju i podatke (pogledajte \"Brisanje cijelog diska"
+"\"\n"
+"ili \"Ekspert mod\" rješenja) ili mijenjati veličinu vaše\n"
+"Microsoft Windows particije. Mijenjanje veličine može se obaviti bez\n"
+"gubitka bilo kakvih podataka, ako prethodno defragmentirate Windows "
+"particiju.\n"
+"Ovo rješenje je preporučeno ukoliko želite koristiti zajedno Mandrake Linux\n"
+"i Microsoft Windows-e na istom računalu.\n"
+"\n"
+" Prije izabiranja ovog rješenja, molimo shvatite da će veličina vaše "
"Microsoft\n"
-" Windows partiticije biti manja nego što je sada. To znači da ćete imati "
+"Windows partiticije biti manja nego što je sada. To znači da ćete imati\n"
"manje slobodnog prostora pod\n"
-" Microsoft Windows-ima za spremanje vaših podataka ili instaliranje novog "
+"Microsoft Windows-ima za spremanje vaših podataka ili instaliranje novog "
"software-a.\n"
"\n"
+" * \"Obiši Windowse\": ovo će jednostavno obri sati sve na disku i početi\n"
+"particionirati sve ispočetka. Svi podaci na disku će biti izgubljeni;\n"
"\n"
-"* Ekspertni mod: Ukoliko želite particionirati ručno vaš hard disk, možete "
+" * \"Ekspertni mod\": Ukoliko želite particionirati ručno vaš hard disk, "
+"možete\n"
"izabrati ovu opciju. Budite pažljivi prije\n"
-" izabiranja ovog rješenja. Vrlo je moćno, ali i vrlo opasno. Možete "
+"izabiranja ovog rješenja. Vrlo je moćno, ali i vrlo opasno. Možete\n"
"izgubiti sve vaše podatke vrlo lako. Zato,\n"
-" nemojte izabrati ovo rješenje ukoliko ne znate što radite."
+"nemojte izabrati ovo rješenje ukoliko ne znate što radite."
#: ../../help.pm_.c:347
msgid ""
@@ -3036,9 +3237,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3051,9 +3251,45 @@ msgid ""
"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
"\"mformat a:\")"
msgstr ""
+"Eto. Instalacija je završena i vaš GNU/Linux sustav je spreman za "
+"korištenje.\n"
+"Samo pritisnite \"U redu\" da bi ponovno pokrenuli sustav. Možete pokrenuti\n"
+"GNU/Linux ili Windowse, što god želite (ako imate dva sustava), čim se\n"
+"računalo ponovno podigne.\n"
+"\n"
+"\"Napredno\" dugme (samo u modu za stručnjake) će prikazati još dva "
+"dugmeta: \n"
+"\n"
+" * \"napravi disketu za automatsku instalaciju\": za stvaranje "
+"instalacijske\n"
+"diskete koja će automatski izvršiti čitavu instalaciju bez pomoći "
+"operatora,\n"
+"sličnu instalaciji koju ste upravo namjestili.\n"
+"\n"
+" Primjetite da su dvije različite opcije dostupne nakon pritiska na "
+"dugme:\n"
+"\n"
+" * \"Replay\". Ovo je djelomice automatizirana instalacija, pošto\n"
+"particioniranje (i samo to) ostaje interaktivno;\n"
+"\n"
+" * \"Automatska instalacija\". Potpuno automatizirana instalacija: tvrdi\n"
+"disk se u potpunosti prebrisava, svi podaci se gube.\n"
+"\n"
+" Ova opcija je dosta korisna pri instaliranju na veći broj sličnih "
+"mašina.\n"
+"Pogledajte odjeljak za automatsku instalaciju na našem web siteu;\n"
+"\n"
+" * \"Snimi odabir paketa\"(*): snima prethodni odabir paketa. Potom, pri "
+"drugoj\n"
+"instalaciji, stavite disketu u pogon i pokrenite instalaciju odlaskom u\n"
+"ekran za pomoć pritiskom na [F1], te zadavanjem >>linux defcfg=\"floppy\"<<\n"
+"naredbe.\n"
+"\n"
+"(*) Trebate FAT formatiranu disketu (da bi je napravili u GNU/Linuxu, "
+"napišite\n"
+"\"mformat a:\")"
#: ../../help.pm_.c:378
-#, fuzzy
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a filesystem).\n"
@@ -3080,38 +3316,31 @@ msgid ""
"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
"for bad blocks on the disk."
msgstr ""
-"Svaka particija koja je novo definirana mora biti\n"
+"Svaka novo definirana particija mora biti\n"
"formatirana za korištenje (formatiranje znači pravljenje datotečnog "
"sustava).\n"
"\n"
-"\n"
-"Trenutno, možete htjeti ponovno formatirati neke već postojeće particije "
+"Trenutno, možete htjeti ponovno formatirati neke već postojeće particije\n"
"kako bi obrisali\n"
-"podatke koje one posjeduju. Ukoliko želite to napraviti, molimo također "
-"izaberite particije\n"
-"koje želite formatirati.\n"
-"\n"
-"\n"
-"Molimo primjetite da nije nužno ponovno formatirati sve već postojeće "
-"particije.\n"
-"Morate ponovno formatirati particije koje sadrže operativni sustav (poput \"/"
-"\",\n"
-"\"/usr\" ili \"/var\") ali ne morate ponovno formatirati particije koje "
-"sadrže podatke\n"
-"koje želite zadržati (tipično /home).\n"
-"\n"
+"podatke koje one posjeduju. Ukoliko želite to napraviti,\n"
+"izaberite particije koje želite formatirati.\n"
"\n"
-"Molimo budite pažljivi odabirom particija, poslije formatiranja, svi podaci "
-"će biti\n"
-"obrisani i nećete ih moći povratiti.\n"
+"Primjetite da nije nužno ponovno formatirati sve već postojeće particije.\n"
+"Morate ponovno formatirati particije koje sadrže operativni sustav (poput \n"
+"\"/\",\"/usr\" ili \"/var\") ali ne morate ponovno formatirati particije "
+"koje\n"
+"sadrže podatke koje želite zadržati (tipično \"/home\").\n"
"\n"
+"Molimo budite pažljivi odabirom particija, poslije formatiranja, svi podaci\n"
+"će biti obrisani i nećete ih moći povratiti.\n"
"\n"
"Pritisnite na \"U redu\" kada ste spremni za formatiranje particije.\n"
"\n"
+"Pritisnite na \"Odustani\" kada želite izabrati druge particije za\n"
+"instalaciju vašeg novog Mandrake Linux operativnog sustava.\n"
"\n"
-"Pritisnite na \"Odustani\" kada želite izabrati druge particije za "
-"instalaciju vašeg novog\n"
-"Mandrake Linux operativnog sustava."
+"Pritisnite na \"Napredno\" ako želite izabrati particije koje će biti\n"
+"provjeravane radi loših blokova (bad blocks)."
#: ../../help.pm_.c:404
msgid ""
@@ -3144,6 +3373,18 @@ msgid ""
"appears: review the selection, and press \"Install\" to retrieve and\n"
"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
+"Dok instalirate Mandrake Linux, moguće je da su neki paketi već nadograđeni\n"
+"od prvotne inačice. Neki bugovi su možda uklonjeni, i sigurnost poboljšana.\n"
+"Da bi iskoristili prednosti tih nadogradnji, predloženo vam je da ih\n"
+"skinete s Interneta. Izaberite \"Da\" ako ste povezani s Internetom, ili \"Ne"
+"\"\n"
+"ako biste radije instalirali nadograđene pakete kasnije.\n"
+"\n"
+"Odabir \"Da\" prikazuje popis mjesta otkuda se nadogradnje mogu skinuti.\n"
+"Izaberite ono najbliže vama. Tada će se pojaviti stablo za odabir paketa:\n"
+"pregledajte odabir i stisnite \"Instaliraj\" da bi skinuli i instalirali "
+"odabrane\n"
+"pakete, ili \"Odustani\" za prekid."
#: ../../help.pm_.c:425
msgid ""
@@ -3170,9 +3411,18 @@ msgid ""
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
+"Sada treba odabrati željenu razinu sigurnosti računala. Opće pravilo jest "
+"da\n"
+"što je više računalo izloženo i podaci vrijedniji, to bi veća razina "
+"sigurnosti\n"
+"trebala biti. Međutim, veća razina sigurnosti utječe na jednostavnost "
+"korištenja.\n"
+"Pogledajte u \"msec\" poglavlje u ``Reference Manual'' za bolje obješnjenje\n"
+"značenja tih razina.\n"
+"\n"
+"Ako ne znate što biste odabrali, ostavite podrazumijevanu opciju."
#: ../../help.pm_.c:442
-#, fuzzy
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"
@@ -3194,38 +3444,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3250,85 +3494,76 @@ msgid ""
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
msgstr ""
-"U ovoj točki instalacije, trebate izabrati koje\n"
-"partiticije ćete koristiti za instalaciju vašeg novog Mandrake Linux "
-"sustava. Ukoliko su\n"
+"U ovoj točki instalacije, trebate izabrati koje partiticije ćete koristiti "
+"za\n"
+"instalaciju vašeg novog Mandrake Linux sustava. Ukoliko su\n"
"particije već definirane (iz prethodne instalacije GNU/Linux-a ili iz\n"
-"drugih particijskih alata), možete koristiti postojeće particije. U drugim "
-"slučajevima,\n"
-"hard disk particije moraju biti definirane.\n"
-"\n"
+"drugih particijskih alata), možete koristiti postojeće particije. Inače,\n"
+"moraju biti definirane.\n"
"\n"
-"Za pravljenje particija, morate prvo izabrati hard disk. Možete izabrati \n"
+"Za pravljenje particija, morate prvo izabrati tvrdi disk. Možete izabrati \n"
"disk za particioniranje klikanjem na \"hda\" za prvi IDE disk, \"hdb\" za\n"
"drugi ili \"sda\" za prvi SCSI disk i tako dalje.\n"
"\n"
-"\n"
"Za particioniranje izabranog hard diska, možete izabrati ove opcije:\n"
"\n"
-" * Obriši sve: ova opcija će obrisati sve raspoložive particije na "
+" * \"Obriši sve\": ova opcija će obrisati sve raspoložive particije na\n"
"odabranom hard disku.\n"
"\n"
+" * \"Auto alokacija\": ova opcija vam dozvoljava da automatski napravite\n"
+"\"Ext2\" i swap particije u slobodnom prostoru vašeg hard diska.\n"
"\n"
-" * Auto alokacija: ova opcija vam dozvoljava da automatski napravite Ext2 "
-"i swap particije u slobodnom prostoru vašeg\n"
-" hard diska.\n"
-"\n"
+" * \"Dodatno\": pristup dodatnim mogućnostima:\n"
"\n"
-" * Spasi particijsku tablicu: ukoliko je vaša particijska tablica "
+" * \"Spasi particijsku tablicu\": ukoliko je vaša particijska tablica\n"
"oštećena, možete probati spasiti ju koristeći ovu opciju. Molimo\n"
-" budite pažljivi i zapamtite da ne mora biti uspješna.\n"
+"budite pažljivi i zapamtite da ne mora biti uspješna.\n"
"\n"
+" * \"Povrati\": možete koristiti ovu opciju za odustajanje od vaših "
+"promjena.\n"
"\n"
-" * Povrati: možete koristiti ovu opciju za odustajanje od vaših promjena.\n"
-"\n"
-"\n"
-" * Ponovno učitaj: možete koristiti ovu opciju ukoliko želite vratiti "
+" * \"Ponovno učitaj\": možete koristiti ovu opciju ukoliko želite vratiti\n"
"unazad sve promjene i učitati vašu inicijalnu particijsku tablicu\n"
"\n"
-"\n"
-" * Čarobnjak: ukoliko želite koristiti čarobnjak za particioniranje vašeg "
+" * \"Čarobnjak\": ukoliko želite koristiti čarobnjak za particioniranje "
+"vašeg\n"
"hard diska, možete koristiti ovu opciju. Preporučeno je ukoliko \n"
-" nemate dovoljno znanja oko particioniranja.\n"
+"nemate dovoljno znanja oko particioniranja.\n"
"\n"
-"\n"
-" * Vrati sa diskete: ukoliko ste spremili vašu particijsku tablicu na "
+" * \"Vrati sa diskete\": ukoliko ste spremili vašu particijsku tablicu na\n"
"disketu tijekom prijašnje instalacije, možete\n"
-" ju vratiti koristeći ovu opciju.\n"
-"\n"
-"\n"
-" * Spremi na disketu: ukoliko želite spremiti vašu particijsku tablicu na "
-"disketu kako biste ju mogli kasnije vratiti, možete koristiti ovu\n"
-" opciju. Jako je preporučljivo koristiti ovu opciju\n"
+"je vratiti koristeći ovu opciju.\n"
"\n"
+" * \"Spremi na disketu\": ukoliko želite spremiti vašu particijsku tablicu "
+"na\n"
+"disketu kako biste je mogli kasnije vratiti, možete koristiti ovu\n"
+"opciju. Jako je preporučljivo koristiti ovu opciju\n"
"\n"
-" * Završi: kada ste završili s particioniranjem vašeg hard diska, "
+" * \"Završi\": kada ste završili s particioniranjem vašeg hard diska,\n"
"koristite ovu opciju za spremanje vaših promjena.\n"
"\n"
-"\n"
-"Za informaciju, možete dohvatiti bilo koju opciju koristeći tastaturu: "
-"navigiranje kroz particije se obavlja koristeći Tab i Up/Down strelice.\n"
-"\n"
+"Za informaciju, možete dohvatiti bilo koju opciju koristeći tastaturu:\n"
+"navigiranje kroz particije se obavlja koristeći [Tab] i [Up/Down] strelice.\n"
"\n"
"Kada je particija odabrana, možete koristiti:\n"
"\n"
-" * Ctrl-c za pravljenje novih particija (kada je prazna particija "
+" * Ctrl-c za pravljenje novih particija (kada je prazna particija\n"
"izabrana)\n"
"\n"
-" * Ctrl-d za brisanje particije\n"
+" * Ctrl-d za brisanje particije\n"
"\n"
-" * Ctrl-m za postavljanje točke montiranja\n"
-" \n"
+" * Ctrl-m za postavljanje točke montiranja\n"
"\n"
-" \n"
-"Ukoliko instalirate na PPC računalo, želiti će te napraviti malu HFS "
-"'bootstrap' particiju od najmanje 1MB za korištenje\n"
-"od strane yaboot bootloader-a. Ukoliko se odlučite za pravljenje malo veće "
+"Za informacije o raznim dostupnim datotečnim sustavima, pročitajte ext2fs\n"
+"poglavlje u ``Reference Manual''\n"
+"\n"
+"Ukoliko instalirate na PPC računalo, željet ćete napraviti malu HFS\n"
+"'bootstrap' particiju od najmanje 1MB koju će koristiti\n"
+"yaboot bootloader. Ukoliko se odlučite za pravljenje malo veće \n"
"particije, recimo 50MB, možete ju pronaći korisnom za stavljanje\n"
"dodatnog kernela i ramdisk slike u slučaju nužde."
#: ../../help.pm_.c:513
-#, fuzzy
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one you want to resize in order to install your new\n"
@@ -3361,25 +3596,21 @@ msgid ""
"disk or partition is called \"C:\")."
msgstr ""
"Više od jedne Microsoft Windows particije su pronađene\n"
-"na vašem hard disku. Molimo izaberite jednu kojoj želite promjeniti veličinu "
-"kako bi instalirali\n"
-"vaš novi Mandrake Linux operativni sustav.\n"
-"\n"
+"na vašem hard disku. Molimo izaberite jednu kojoj želite promjeniti "
+"veličinu\n"
+"kako bi instalirali vaš novi Mandrake Linux operativni sustav.\n"
"\n"
-"Za informaciju, svaka particija je popisana kako slijedi; \"Linux ime\", "
-"\"Windows\n"
-"ime\" \"Kapacitet\".\n"
+"Svaka je particija popisana kako slijedi; \"Linux ime\", \"Windows ime\"\n"
+"\"Kapacitet\".\n"
"\n"
"\"Linux ime\" je kodirano kako slijedi: \"tip hard diska\", \"broj hard diska"
"\",\n"
"\"broj particije\" (naprimjer, \"hda1\").\n"
"\n"
-"\n"
"\"Tip hard diska\" je \"hd\" ukoliko je hard disk - IDE hard disk i \"sd\"\n"
"ukoliko je on SCSI hard disk.\n"
"\n"
-"\n"
-"\"Broj hard diska\" je uvijek slovo poslije \"hd\" ili \"sd\". Sa IDE hard "
+"\"Broj hard diska\" je uvijek slovo poslije \"hd\" ili \"sd\". Sa IDE hard\n"
"diskovima:\n"
"\n"
" * \"a\" znači \"master hard disk na primarnom IDE kontroleru\",\n"
@@ -3390,8 +3621,7 @@ msgstr ""
"\n"
" * \"d\" znači \"slave hard disk na sekundarnom IDE kontroleru\".\n"
"\n"
-"\n"
-"Sa SCSI hard diskovima, \"a\" znači \"primarni hard disk\", \"b\" znači "
+"Sa SCSI hard diskovima, \"a\" znači \"primarni hard disk\", \"b\" znači\n"
"\"sekundarni hard disk\", itd...\n"
"\n"
"\"Windows ime\" je slovo vašeg hard diska pod Windows-ima (prvi disk\n"
@@ -3402,7 +3632,6 @@ msgid "Please be patient. This operation can take several minutes."
msgstr "Molimo budite strpljivi. Ova operacija može potrajati nekoliko minuta."
#: ../../help.pm_.c:547
-#, fuzzy
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
"installation or if you want to have greater control (\"Expert\"). You can\n"
@@ -3413,11 +3642,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3440,43 +3669,60 @@ msgid ""
"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
"choose this unless you know what you are doing."
msgstr ""
-"Molimo izaberite \"Instalacija\" ukoliko nemate prethodne verzijeMandrake "
-"Linux-a\n"
-"instalirano ili ako želite koristiti nekoliko operativnih sustava.\n"
-"\n"
-"\n"
-"Molimo izaberite \"Dogradnja\" ukoliko želite dograditi već postojeću "
-"verzijuMandrake Linux-a.\n"
-"\n"
+"DrakX sada treba znati da li želite raditi podrazumijevanu instalaciju\n"
+"(\"Preporučeno\") ili želite li imati veću kontrolu (\"Stručnjak\"). Možete\n"
+"također izabrati da li želite novu instalaciju ili nadogradnju postojećeg\n"
+"Mandrake Linux sustava:\n"
+"\n"
+" * \"Instalacija\": potuno briše stari sustav. U stvari, ovisno kako je "
+"sačinjen\n"
+"sustav, moći ćete zadržati neke stare (Linux ili ne) particije "
+"nepromijenjene;\n"
+"\n"
+" * \"Dogradnja\": ova vrsta instalacije vam omogućuje da jednostavno "
+"nadogradite\n"
+"pakete instalirane u vašem Mandrake Linux sustavu. Zadržava particije na "
+"vašem\n"
+"tvrdom disku kao i postavke korisnika. Svi ostali koraci (u odnosu na "
+"običnu\n"
+"instalaciju) pri konfiguraciji ostaju dostupni;\n"
+"\n"
+" * \"Dogradnja paketa\": ova nova vrsta instalacije omogućuje dogradnju "
+"postojećeg\n"
+"Mandrake Linux sustava i zadržavanje svih sustavskih postavki. Dodavanje "
+"novih\n"
+"paketa postojećoj instalaciji je također moguće.\n"
+"\n"
+"Dogradnje bi trebale raditi dobro za Mandrake Linux sustave počev od \"8.1"
+"\"\n"
+"inačice.\n"
"\n"
-"U zavisnosti od znanja u GNU/Linux, možete izabrati jednu od slijedećih "
+"U zavisnosti od znanja u GNU/Linux, možete izabrati jednu od slijedećih\n"
"razina za instalaciju ili dogradnju\n"
"vašeg Mandrake Linux operativnog sustava:\n"
"\n"
-"* Preporučeno: ukoliko nikad niste instalirali GNU/Linux operativni sustav "
-"izaberite ovo. Instalacija će biti\n"
-" vrlo laka i pitati će vas samo nekoliko pitanja.\n"
-"\n"
+"* Preporučeno: ukoliko nikad niste instalirali GNU/Linux operativni sustav \n"
+"izaberite ovo. Instalacija će biti vrlo laka i pitati će vas samo nekoliko "
+"pitanja.\n"
"\n"
-"* Prilagođeno: ukoliko ste već upoznati sa GNU/Linux, možete izabrati "
+"* Prilagođeno: ukoliko ste već upoznati sa GNU/Linux, možete izabrati\n"
"primarnu upotrebu (radna stanica, poslužitelj,\n"
-" razvoj) za vaš sustav. Trebati ćete odgovoriti na više pitanja nego u "
+"razvoj) za vaš sustav. Trebati ćete odgovoriti na više pitanja nego u\n"
"\"Preporučenoj\" instalacijskoj\n"
-" klasi, zato trebate znati više o tome kako GNU/Linux radi kako bi izabrali "
+"klasi, zato trebate znati više o tome kako GNU/Linux radi kako bi izabrali\n"
"ovu instalacijsku klasu.\n"
"\n"
-"\n"
-"* Stručnjak: ukoliko imate dobro znanje o GNU/Linux-u, možete izabrati ovu "
+"* Stručnjak: ukoliko imate dobro znanje o GNU/Linux-u, možete izabrati ovu\n"
"instalacijsku klasu. Kao u \"Prilagođenoj\"\n"
-" instalacijskoj klasi, moći ćete izabrati primarnu upotrebu za vaš sustav "
+"instalacijskoj klasi, moći ćete izabrati primarnu upotrebu za vaš sustav\n"
"(radna stanica, poslužitelj, razvoj). Budite jako\n"
-" pažljivi prije nego što odaberete ovu instalacijsku klasu. Moći ćete "
+"pažljivi prije nego što odaberete ovu instalacijsku klasu. Moći ćete\n"
"izvršiti visoko prilagođenu instalaciju.\n"
-" Odgovori na neka pitanja mogu biti jako teški ukoliko nemate dobro znanje "
+"Odgovori na neka pitanja mogu biti jako teški ukoliko nemate dobro znanje\n"
"GNU/Linux. Dakle, nemojte izabrati\n"
-" ovu instalacijsku klasu ukoliko ne znate što radite."
+"ovu instalacijsku klasu ukoliko ne znate što radite."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3490,8 +3736,18 @@ msgid ""
"Click on the \"More\" button to be presented with the complete list of\n"
"supported keyboards."
msgstr ""
+"Obično, DrakX izabere pravu tipkovnicu za vas (ovisno o jeziku koji ste "
+"odabrali)\n"
+"i nećete ni vidjeti ovaj korak. Međutim, možda nemate tipkovnicu koja točno\n"
+"odgovara vašem jeziku: npr. ako ste iz Švicarske a govorite engleski, možda\n"
+"svejedno želite švicarsku tipkovnicu. Ili ako govorite engleski, a živite u\n"
+"Quebecu, možda ćete se naći u sličnoj situaciji. U oba slučaja, morate se "
+"vratiti\n"
+"na ovaj instalacijski korak i odabrati odgovarajuću tipkovnicu iz popisa.\n"
+"\n"
+"Pristisnite \"Dodatno\" da biste dobili potpun popis podržanih tipkovnica."
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3505,8 +3761,23 @@ msgid ""
"Note that multiple languages may be installed. Once you have selected any\n"
"additional locales, click the \"OK\" button to continue."
msgstr ""
+"Izaberite jezik kojim se želite služiti u instalaciji i sustavu.\n"
+"\n"
+"Pritiskom na \"Napredno\" moći ćete izabrati druge jezike koji će biti "
+"instalirani\n"
+"na vašu radnu stanicu. Odabiranjem drugih jezika instalirat će se "
+"specifične\n"
+"jezične datoteke za sustavsku dokumentaciju i aplikacije. Npr. ako ćete na "
+"svom\n"
+"računalu imati korisnike iz Španjolske, u stablu odaberite Engleski kao "
+"glavni\n"
+"jezik i u sekciji Napredno označite kućicu koja odgovara Španjolskoj.\n"
+"\n"
+"Primjetite da se može instalirati više jezika. Kada odredite eventualne "
+"dodatne\n"
+"lokale, stisnite \"U redu\" za nastavak."
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3521,33 +3792,46 @@ msgid ""
"correct. If the mouse is not working well, press the space bar or [Return]\n"
"to \"Cancel\" and choose again."
msgstr ""
+"DrakX obično prepozna koliko vaš miš ima dugmeta. Ako ne, pretpostavlja da\n"
+"imate miš sa dva dugmeta, a treće će emulirati. DrakX će automatski znati da "
+"li\n"
+"se radi o PS/2, serijskom ili USB mišu.\n"
+"\n"
+"Ako želite odrediti drugačiji tip miša, odaberite odgovarajući tip iz "
+"ponuđenog\n"
+"popisa.\n"
+"\n"
+"Ako izaberete miš različit od podrazumijevanog, prikazati će se testni "
+"ekran.\n"
+"Koristite dugmad i kotačić da potvrdite da li su postavke točne. Ako miš ne "
+"radi\n"
+"dobro, stisnite razmaknicu ili [Return] da bi odustali i ponovno izabirali."
-#: ../../help.pm_.c:623
-#, fuzzy
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
"Molim odaberite ispravni port. Na primjer, COM1 port pod MS Windowsima\n"
-"je imenovan ttyS0 pod GNU/Linuxom."
+"se, pod GNU/Linuxom zove \"ttyS0\"."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3568,8 +3852,54 @@ msgid ""
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
msgstr ""
-
-#: ../../help.pm_.c:663
+"Ovo je najvažnija odluka za sigurnost vašeg GNU/Linux sustava: morate "
+"unijeti\n"
+"\"root\" lozinku. \"root\" je sustavski administrator i jedini koji je "
+"ovlašten\n"
+"da vrši nadogradnje, dodaje korisnike, mijenja cjelokupne postavke sustava, "
+"itd.\n"
+"Ukratko, \"root\" može raditi sve! Stoga morate izabrati lozinku koju je "
+"teško\n"
+"pogoditi, DrakX će vam reći da li je prelagana. Kao što vidite, možete "
+"odabrati\n"
+"da ne unesete lozinku, ali jako vam savjetujemo da to ne činite, barem zbog\n"
+"jednog razloga: nemojte mislite da, zbog tog što ste pokrenuli GNU/Linux, su "
+"vaši\n"
+"ostali operacijski sustavi sigurni od grešaka. Pošto \"root\" može "
+"premostiti\n"
+"sva ograničenja i nenamjerno obrisati sve podatke na particijama nemarnim "
+"pristupanjem,\n"
+"važno je da bude teško postati \"root\".\n"
+"\n"
+"Lozinka bi trebala biti kombinacija alfanumeričkih znakova i barem 8 znakova "
+"duga.\n"
+"Nikad ne zapisujte \"root\" lozinku, prelako dovodite sustav u opasnost.\n"
+"\n"
+"Ipak, nemojte izabrati predugu ili presloženu lozinku, jer ćete je morati "
+"lako\n"
+"zapamtiti.\n"
+"\n"
+"Lozinka se neće pojaviti na ekranu kako je budete upisivali. Zato je morate\n"
+"upisati dvaput da bi smanjili mogućnost greške pri upisu. Ako ipak ponovite "
+"istu\n"
+"grešku dva puta, morat ćete koristiti ovu \"netočnu\" lozinku kada se prvi "
+"put\n"
+"budete prijavljivali.\n"
+"\n"
+"U stručnjak modu, bit ćete zapitani da li ćete se spajati na "
+"autentifikacijski\n"
+"poslužitelj, poput NISa ili LDAPa.\n"
+"\n"
+"Ako vaša mreža koristi LDAP (ili NIS) protokole za autentifikaciju, "
+"izaberite\n"
+"\"LDAP\" (ili \"NIS\") kao autentifikaciju. Ako ne znate kako, pitajte\n"
+"administratora mreže.\n"
+"\n"
+"Ako vaše računalo nije povezano sa administriranom mrežom, morat ćete "
+"izabrati\n"
+"\"Lokalne datoteke\" za autentifikaciju."
+
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3591,7 +3921,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3599,7 +3929,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3619,9 +3949,63 @@ msgid ""
"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
"installation step."
msgstr ""
+"LILO i grub su GNU/Linux bootloaderi. Ovaj korak je obično potpuno "
+"automatiziran.\n"
+"U stvarim DrakX analizira boot sektor diska i ponaša se u skladu s onim što "
+"je\n"
+"tamo pronašao:\n"
+"\n"
+" * ako je pronađen Windows boot sektor, bit će zamijenjen sa grub/LILO boot "
+"sektorom.\n"
+"Prema tome, moći ćete podizati ili GNU/Linux ili neki drugi OS;\n"
+"\n"
+" * ako je pronađen grub/LILO boot sektor, bit će zamijenjen sa novim.\n"
+"\n"
+"Ako postoji neka dvojba, DrakX će izbaciti dijalog za različitim opcijama.\n"
+"\n"
+" * \"Koji bootloader koristiti\": imate tri izbora:\n"
+"\n"
+" * \"GRUB\": ako preferirate grub (tekstualni izbornik).\n"
+"\n"
+" * \"LILO sa grafičkim izbornikom\": ako preferirate LILO sa svojim\n"
+"grafičkim sučeljem.\n"
+"\n"
+" * \"LILO sa tekstualnim izbornikom\": ako preferirate LILO sa svojim\n"
+"tekstualnim sučeljem.\n"
+"\n"
+" * \"Boot uređaj\": u većini slučajeva, nećete mijenjati podrazumijevani\n"
+"(\"/dev/hda\"), ali ak vam je tako draže, bootloader se može instalirati na "
+"drugi\n"
+"tvrdi disk (\"/dev/hdb\"), ili čak na disketu (\"/dev/fd0\");\n"
+"\n"
+" * \"Vrijeme do podizanja podrazumijevane slike\": kada pokrećete računalo,\n"
+"ovo je vrijeme koje korisnik ima da u bootloader izborniku izabere drugi "
+"izbor\n"
+"od podrazumijevanog.\n"
+"\n"
+"!! Pazite da, ako izaberete da se bootloader ne instalira (pritiskom na\n"
+"\"Odustani\"), morate na neki drugi način osigurati podizanje Mandrake/"
+"Linux\n"
+"sustava! Također, budite sigurni da znate što radite prije mijenjanja "
+"opcija. !!\n"
+"\n"
+"Pritiskom na \"Napredno\" u ovom dijalogu dobit ćete mnoštvo naprednih "
+"opcija,\n"
+"rezerviranih za napredne korisnike.\n"
+"\n"
+"Nakon što ste namjestili opće parametre bootloadera, bit će prikazan popis "
+"opcija\n"
+"za podizanje sustava koje će biti dostupne prilikom podizanja sustava.\n"
+"\n"
+"Ako postoji neki drugi operacijski sustav instaliran na vašem računalu, "
+"automatski\n"
+"će biti dodan boot izborniku. Ovdje možete fino podesiti postojeće opcije. "
+"Izaberite\n"
+"stavku i stisnite \"Promijeni\" da bi je promijenili ili uklonili; \"Dodaj\" "
+"stvara\n"
+"novu stavku; i \"Završi\" kreće dalje na slijedeći instalacijski korak."
-#: ../../help.pm_.c:711
-#, fuzzy
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3634,18 +4018,17 @@ msgid ""
"you will need a boot disk in order to boot those other operating systems!"
msgstr ""
"LILO (the LInux LOader) i Grub su bootloaderi: oni su u mogućnosti podići\n"
-"ili GNU/Linux ili bilo koji drugi postojeći operativni sustav na vašem "
+"ili GNU/Linux ili bilo koji drugi postojeći operativni sustav na vašem\n"
"računalu.\n"
"Normalno, ti drugi operativni sustavi su ispravno pronađeni i\n"
"instalirani. Ako to nije slučaj, možete ga dodati ručno na ovom\n"
"zaslonu. Budite pažljivi da izaberete ispravne parametre.\n"
"\n"
-"\n"
"Također ćete poželiti ne dati pristup tim drugim operativnim sustavima\n"
"drugima, u tom slučaju možete obrisati odgovarajuće unose. Ali\n"
"u tom slučaju, trebati ćete boot disketu kako bi ih mogli podići!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3660,29 +4043,28 @@ msgstr ""
"Ako ne znate točno što radite, izaberite \"Prvi sektor diska\n"
"(MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3690,9 +4072,44 @@ msgid ""
"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
"networks."
msgstr ""
-
-#: ../../help.pm_.c:757
-#, fuzzy
+"Ovdje biramo sustav za ispis za vaše računalo. Drugi OSovi možda nude "
+"jedan,\n"
+"ali Mandrake Linux nudi tri.\n"
+"\n"
+" * \"pdq\", što znači ``print, don't queue'' (ispiši, bez stavljanja u red), "
+"je\n"
+"izbor koji ćete koristiti ako imate izravnu vezu sa pisačem, želite izbjeći\n"
+"zastoje u ispisu i nemate pisače u mreži. Ima samo jednostavne mrežne "
+"mogućnosti\n"
+"i ponešto je spor za mrežu. Izaberite \"pdq\" ako ste novi u GNU/Linuxu. "
+"Možete\n"
+"promijeniti odabir poslije instalacije pokretanjem PrinterDrakea iz "
+"Mandrake\n"
+"kontrolnog centra i pritiskom na dugme za stručnjake.\n"
+"\n"
+" * \"CUPS\"``Common Unix Printing System'', je izvrstan za ispis na vašem "
+"lokalnom\n"
+"računalu, kao i za ispis na drugom kraju svijeta. Jednostavan je i može "
+"poslužiti\n"
+"kao poslužitelj i klijent za drevni \"lpd\" sustav za ispis. Dakle, "
+"kompatibilan je\n"
+"s ranijim sustavima. Ima mnoštvo trikova, ali osnovne postavke su gotovo\n"
+"jednostavne kao i \"pdq\". Ako trebate da vam emulira \"lpd\" poslužitelj, "
+"morate\n"
+"uključiti \"cups-lpd\" daemon. Ima grafička sučelja za ispis i za odabir "
+"opcija\n"
+"za ispis.\n"
+"\n"
+" * \"lprNG\"``line printer daemon New Generation''. Ovaj sustav može raditi\n"
+"otprilike iste stvari kao i ostali, ali će pisati i s pisačima u Novell "
+"mreži,\n"
+"jer podržava IPX protokol, i može ispisivati izravno u komande ljuske. Ako "
+"vam\n"
+"treba Novell ili ispis u komande bez korištenja preusmjeravanja, koristite "
+"lprNG.\n"
+"Inačem CUPS je najbolji jer je jednostavniji i bolje radi preko mreže."
+
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3717,40 +4134,37 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
-"DrakX će pokušati pronaći PCI SCSI adapter(e). Ukoliko DrakX\n"
-"pronađe SCSI adapter i zna koji upravljački program da koristi, on će "
-"automatski biti\n"
-"instaliran.\n"
+"DrakX sada pretražuje IDE uređaje prisutne u vašem računalu.Također će "
+"pokušati\n"
+"pronaći PCI SCSI adapter(e). Ukoliko DrakX\n"
+"pronađe SCSI adapter i zna koji upravljački program da koristi, on će \n"
+"automatski biti instaliran.\n"
"\n"
-"\n"
-"Ukoliko nemate SCSI adapter, ISA SCSI adapter ili PCI SCSI adapter koji\n"
+"Ukoliko imate SCSI adapter, ISA SCSI adapter ili PCI SCSI adapter koji\n"
"DrakX ne može prepoznati, biti ćete pitani da li imate SCSI adapter u vašem\n"
"sustavu. Ukoliko nemate adapter, možete kliknuti na \"Ne\". Ukoliko kliknete "
"na\n"
"\"Da\", dobiti ćete popis upravljačkih programa odakle možete izabrati vaš\n"
"specifičan adapter.\n"
"\n"
-"\n"
"Ako trebate ručno specifirati vaš adapter, DrakX će pitati da li želite \n"
"specifirati opcije za njega. Trebali biste dozvoliti DrakX-u da isproba "
"opcije za\n"
"hardware. Ovo obično radi dobro.\n"
"\n"
-"\n"
-"Ako ne, trebati ćete navesti opcije za upravljački program. Molimo "
+"Ako ne, trebati ćete navesti opcije za upravljački program. Molimo\n"
"pregledajte User\n"
-"Guide (poglavlje 3, sekciju \"Collective informations on your hardware\") za "
-"preporuke\n"
-"o pribavljanju ovih informacija iz dokumentacije hardware-a, sa \n"
+"Guide (poglavlje 3, sekciju \"Collecting informations on your hardware\") "
+"za\n"
+"preporuke o pribavljanju ovih informacija iz dokumentacije hardware-a, sa \n"
"proizvođačevog Web site-a (ukoliko imate Internet pristup) ili iz Microsoft "
"Windows-a\n"
"(ukoliko ga imate na vašem sustavu)."
-#: ../../help.pm_.c:784
-#, fuzzy
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3760,9 +4174,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3774,7 +4187,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" 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"
@@ -3802,72 +4215,54 @@ msgstr ""
"Možete dodati dodatne unose za yaboot, ili za drugi operativni sustav,\n"
"alternativne kernele, ili za spasonosnu boot sliku.\n"
"\n"
-"\n"
-"Za druge OS-ove - unos se sastoji samo od labele i root particije.\n"
-"\n"
+"Za druge OS-ove - unos se sastoji samo od labele i \"root\" particije.\n"
"\n"
"Za Linux, postoji nekoliko mogućih opcija: \n"
"\n"
+" * Labela: Jednostavno, ovo je ime koje ćete napisati u yaboot promptu za\n"
+"odabir ove boot opcije.\n"
"\n"
-" - Labela: Ovo je jednostavno ime koje ćete napisati u yaboot promptu za "
-"odabir ove \n"
-"boot opcije.\n"
-"\n"
-"\n"
-" - Slika: Ovo će biti ime kernela pri podizanju. Tipično vmlinux ili\n"
-"varijacija vmlinux-a sa ekstenzijom.\n"
-"\n"
-"\n"
-" - Root: root uređaj ili '/' za vašu Linux instalaciju.\n"
+" * Slika: Ovo je ime kernela koji se podiže. Tipično vmlinux ili\n"
+"varijacija vmlinux-a sa ekstenzijom;\n"
"\n"
+" * Root: \"root\" uređaj ili '/' za vašu Linux instalaciju.\n"
"\n"
-" \n"
-" - Dodatak: Na Apple hardware-u, kernel dodatak opcija se koristi vrlo "
-"često za\n"
-"pomoć pri inicijaliziranju video hardware-a, ili za omogućavanje emulacije "
-"tastaturnih mišjih gumba\n"
-"zbog čestog nedostatka 2-og ili 3-eg mišjeg gumba na Apple miševima. "
-"Slijedeće \n"
-"su neki primjeri:\n"
-"\n"
+" * Dodatak: Na Apple hardware-u, kernel dodatak opcija se koristi vrlo često "
+"za\n"
+"pomoć pri inicijaliziranju video hardware-a, ili za omogućavanje emulacije\n"
+"tipaka na mišu tipkovnicom zbog čestog nedostatka 2-og ili 3-eg tipke na "
+"Apple\n"
+" miševima. Neki primjeri:\n"
"\n"
-"\t video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
"hda=autotune\n"
"\n"
-"\t video=atyfb:vmode:12,cmode:24 adb_buttons=103,111 \n"
+" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111 \n"
"\n"
-"\n"
-" \n"
-" - Initrd: Ova opcija se može koristiti ili za učitavanje inicijalnih "
-"modula, prijenego što je boot\n"
+" * Initrd: Ova opcija se može koristiti ili za učitavanje inicijalnih\n"
+"modula, prije nego što je boot\n"
"uređaj raspoloživ, ili za učitavanje ramdisk slike za spasonosne boot "
"situacije.\n"
"\n"
+" * Initrd-veličina: Podrazumijevana veličina ramdisk-a je općenito 4096\n"
+"byte-ova. Ukoliko trebate alocirati veći ramdisk, ova opcija može biti "
+"korištena.\n"
"\n"
-" - Initrd-veličina: Podrazumijevana veličina ramdisk-a je općenito 4096 "
-"byte-ova. Ukoliko trebate\n"
-"alocirati veći ramdisk, ova opcija može biti korištena.\n"
+" * Čitaj-Piši: Normalno je \"root\" particija inicijalno podignuta u čitaj-"
+"samo,\n"
+"radi mogućnosti provjere datotečnog sustava prije nego sustav postane "
+"'živ'.\n"
+"Možete premostiti tu opciju ovdje.\n"
"\n"
-"\n"
-" - Čitaj-Piši: Normalno je 'root' particija inicijalno podignuta u čitaj-"
-"samo, za mogućnost\n"
-"provjere datotečnog sustava prije nego sustav postane 'živ'. Možete "
-"nadjačati ovu opciju ovdje.\n"
-"\n"
-"\n"
-" - NoVideo: Ako se Apple hardware pokaže kao iznimno problematičan, možete\n"
+" * NoVideo: Ako se Apple hardware pokaže kao iznimno problematičan, možete\n"
"izabrati ovu opciju za podizanje u 'novideo' modu, sa native framebuffer "
"podrškom.\n"
"\n"
-"\n"
-" - Podrazumijevano: Izabire ovaj unos kao podrazumijevani Linux izbor, "
-"moguće izbirati sa samo\n"
-"pritiskom ENTER-a na yaboot pitanju. Ovaj unos će također biti označen sa "
-"'*', ukoliko\n"
-"koristite TAB za pregledavanje boot izbora."
+" * Podrazumijevano: Izabire ovaj unos kao podrazumijevani Linux izbor,\n"
+"moguće izbirati pritiskom ENTER-a na yaboot pitanju. Ovaj unos će također\n"
+"biti označen sa '*', ukoliko stisnete [Tab] za pregledavanje boot izbora."
-#: ../../help.pm_.c:830
-#, fuzzy
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3894,63 +4289,49 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-"Yaboot je bootloader za NewWorld MacIntosh hardware. U mogućnosti je\n"
-"podići ili GNU/Linux, MacOS, ili MacOSX, ukoliko postoje na vašem računalu.\n"
-"Normalno, ti drugi operativni sustavi su ispravno pronađeni i\n"
+"Yaboot je bootloader za NewWorld MacIntosh hardware. Može\n"
+"podići GNU/Linux, MacOS, ili MacOSX, ukoliko postoje na vašem računalu.\n"
+"Obično, ti drugi operativni sustavi su ispravno pronađeni i\n"
"instalirani. Ukoliko to nije slučaj, možete dodati unos ručno na ovom\n"
"zaslonu. Budite pažljivi da izaberete ispravne parametre.\n"
"\n"
+"Glavne opcije Yaboota su:\n"
"\n"
-"Yaboot glavne opcije su:\n"
-"\n"
-"\n"
-" - Init Poruka: Jednostavna tekst poruka koja se prikaže prije pitanja o\n"
+" * Init Poruka: Jednostavna tekst poruka koja se prikaže prije pitanja o\n"
"podizanju.\n"
"\n"
+" * Boot Uređaj: Označava gdje želite staviti informaciju potrebnu za \n"
+"podizanje GNU/Linux-a. Općenito, bootstrap particiju namještate prije, \n"
+"da sadrži ovu informaciju.\n"
"\n"
-" - Boot Uređaj: Označava gdje želite staviti informaciju potrebnu za \n"
-"podizanje GNU/Linux-a. Općenito, morati ćete imati postavljenu bootstrap "
-"particiju prije, \n"
-"da može držati ovu informaciju.\n"
-"\n"
-"\n"
-" - Otvorena Firmware Pauza: Za razliku od LILO-a, postoje dvije raspoložive "
-"pauze sa\n"
-"yaboot-om. Prva pauza se mjeru sekundama i na tom mjestu možete \n"
+" * Otvorena Firmware Pauza: Za razliku od LILO-a, postoje dvije raspoložive\n"
+"pauze sa yaboot-om. Prva pauza se mjeru sekundama i na tom mjestu možete \n"
"birati izmežu CD-a, OF boot-a, MacOS-a ili Linux-a.\n"
"\n"
-"\n"
-" - Kernel Boot Čekanje: Ovo čekanje je slično LILO boot čekanju. Poslije \n"
+" * Kernel Boot Čekanje: Ovo čekanje je slično LILO boot čekanju. Poslije \n"
"izabiranja Linux-a, imati ćete pauzu od 0.1 sekunde prije nego "
"podrazumijevani\n"
"kernel opis bude odabran.\n"
"\n"
+" * Omogući CD Boot?: Postavljanje ove opcije će vam dozvoliti da možete\n"
+"izabrati 'C' za CD na prvom pitanju pri podizanju.\n"
"\n"
-" - Omogući CD Boot?: Postavljanje ove opcije će vam dozvoliti da možete "
-"izabrati 'C' za CD na\n"
-"prvom pitanju pri podizanju.\n"
-"\n"
-"\n"
-" - Omogući OF Boot?: Postavljanje ove opcije će vam dozvoliti da možete "
-"izabrati 'N' za Open\n"
-"Firmware prvi prvom pitanju pri podizanju.\n"
-"\n"
+" * Omogući OF Boot?: Postavljanje ove opcije će vam dozvoliti da možete\n"
+"izabrati 'N' za Open Firmware prvi prvom pitanju pri podizanju.\n"
"\n"
-" - Podrazumijevani OS: Možete izabrati koji OS ćete podići podrazumijevano "
-"kada Open Firmware \n"
-"pauza istekne."
+" * Podrazumijevani OS: Možete izabrati koji OS ćete podići podrazumijevano\n"
+"kada Open Firmware pauza istekne."
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3958,12 +4339,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3978,8 +4358,39 @@ msgid ""
"displayed here. You can click on the button to change the parameters\n"
"associated with it."
msgstr ""
+"Ovdje su predstavljeni različiti parametri za vaše računalo. Ovisno o\n"
+"instaliranom hardveru, vidjet ćete ili ne slijedeće stavke:\n"
+"\n"
+" * \"Miš\": možete provjeriti trenutne postavke miša i promijeniti\n"
+"ih, ako treba, pritiskom na dugme;\n"
+"\n"
+" * \"Tipkovnica\": možete provjeriti trenutnu postavu tipkovnice i "
+"promijeniti\n"
+"je, ako treba, pritiskom na dugme;\n"
+"\n"
+" * \"Vremenska zona\": DrakX, podrazumijevano, pogađa vremensku zonu prema\n"
+"izabranom jeziku. Ali i ovdje, kao i kod izbora tipkovnice, možda niste u "
+"zemlji\n"
+"za koju bi izabrani jezik trebao odgovarati. Stoga, možda ćete trabati "
+"stisnuti\n"
+"\"Vremenska zona\" dugme da bi namjestili sat prema vašoj vremenskoj zoni;\n"
+"\n"
+" * \"Pisač\": pritiskom na \"Nema pisača\" dugme otvorit će se čarobnjak za\n"
+"namještanje pisača;\n"
+"\n"
+" * \"Zvučna kartica\": ako je zvučna kartica nađena, bit će ovdje "
+"prikazana.\n"
+"Nije je moguće mijenjati tijekom instalacije;\n"
+"\n"
+" * \"TV kartica\": ako je nađena TV kartica, ovdje će biti prikazana. Nije "
+"je\n"
+"moguće mijenjati tijekom instalacije;\n"
+"\n"
+" * \"ISDN kartica\": ako je nađena ISDN kartica, ovdje će biti prikazana. "
+"Možete\n"
+"mijenjati njene parametre pritiskom na dugme."
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -3989,8 +4400,7 @@ msgstr ""
"novu Mandrake Linux particiju. Budite pažljivi, svi postojeći podaci\n"
"biti će izgubljen i neće se moći povratiti!"
-#: ../../help.pm_.c:896
-#, fuzzy
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4001,30 +4411,31 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
"Izaberite \"U redu\" ukoliko želite obrisati sve podatke i\n"
-"postojeće particije na navedenom hard disku. Budite pažljivi, nakon "
-"klikanja\n"
-"na \"U redu\", nećete moći povratiti bilo kakve postojeće podatke ili "
-"particije\n"
-"na ovom hard disku, uključujući Windows podatke.\n"
-"\n"
+"postojeće particije na navedenom tvrdom disku. Budite pažljivi, nakon\n"
+"klikanja na \"U redu\", nećete moći povratiti bilo kakve postojeće podatke "
+"ili\n"
+"particije na ovom hard disku, uključujući Windows podatke.\n"
"\n"
"Pritisnite na \"Odustani\" za prekidanje ove operacije bez gubljenja bilo\n"
"kakvih postojećih podataka i particija na ovom hard disku."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
"missing), this generally means your boot floppy in not in sync with the "
"Installation medium (please create a newer boot floppy)"
msgstr ""
+"Ne mogu pristupiti kernel modulima koji odgovaraju vašem kernelu (datoteka %"
+"s nedostaje), ovo obično znači da vaša disketa za dizanje sustava nije "
+"usklađena sainstalacijskim medijem (napravite noviju boot disketu)"
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr "Morate također formatirati %s"
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4050,20 +4461,20 @@ msgstr ""
"\n"
"Da li zaista želite instalirati te poslužitelje?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "Ne mogu koristiti broadcast bez NIS domene"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Umetnite FAT formatiranu disketu u pogon %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Ova disketa nije FAT formatirana"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4071,7 +4482,7 @@ msgstr ""
"Za korištenje spremljenog odabira paketa, podignite instalaciju sa ``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Greška prilikom čitanja datoteke %s"
@@ -4101,7 +4512,7 @@ msgstr "Morate imati swap particiju"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -4109,59 +4520,59 @@ msgstr ""
"\n"
"Da ipak nastavim?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Morate imati FAT particiju montiranu na /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Koristi slobodan prostor"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Nema dovoljno slobodnog prostora za pravljenje novih particija"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Koristi postojeće particije"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Nema postojećih particija koje bih mogao upotrijebiti"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Koristi Windows particiju za loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Koju particiju želite koristiti za Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Odaberite veličinu"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Veličina korijenske particije u MB: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Veličina swap particiju u MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Iskoristi slobodan prostor na Windows particiji"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Kojoj particiji želite promijeniti veličinu?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Izračunavam granice Windows datotečnog sustava"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4170,12 +4581,15 @@ msgstr ""
"Program koji mjenja veličinu FAT-a ne može rukovati vašom particijom, \n"
"slijedeća greška se dogodila: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"Vaša Windows particija je prefragmentirana, molim pokrenite ``defrag'' prvo."
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -4196,54 +4610,54 @@ msgstr ""
"Također preporučljivo je da sačuvate vaše podatke (napravite backup).\n"
"Kada ste sigurni da želite nastaviti, pritisnite U redu."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Koliku veličinu želite zadržati za windowse"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "particija %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Mijenjanje FAT veličine nije uspjelo: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Nema FAT particije za mjenjanje veličine ili za korištenje loopback-a (ili "
"nema dovoljno prostora)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Obriši cijeli disk"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Ukloni Windowse(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Imate više od jednog hard diska, na koji želite instalirati Linux?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "SVE postojeće particije i podaci biti će izgubljeni na disku %s"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Proizvoljno particioniranje diska"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Koristi fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4252,11 +4666,11 @@ msgstr ""
"Sada možete razdijeliti %s.\n"
"Kada ste gotovi ne zaboravite spremiti postavu sa `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Nemate dovoljno slobodnog prostora na vašoj Windows particiji"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Ne mogu pronaći bilo kakvo mjesto za instaliranje"
@@ -4264,16 +4678,16 @@ msgstr "Ne mogu pronaći bilo kakvo mjesto za instaliranje"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX čarobnjak za particioniranje je pronašao slijedeća rješenja:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Particioniranje neuspjelo: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Podižem mrežu"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Onemogućujem mrežu"
@@ -4285,12 +4699,12 @@ msgstr ""
"Dogodila se greška, ali neznam kako s njom lijepo rukovati.\n"
"Nastavite dalje na vlastiti rizik."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Dupliciraj mjesto monitranja %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4302,12 +4716,12 @@ msgstr ""
"Provjerite cdrom na instaliranom računalu koristeći \"rpm -qpl Mandrake/RPMS/"
"*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Dobrodošli u %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Disketni pogon nije dostupan"
@@ -4317,9 +4731,9 @@ msgstr "Disketni pogon nije dostupan"
msgid "Entering step `%s'\n"
msgstr "Pokrećem korak `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4328,199 +4742,154 @@ msgstr ""
"instalacije Mandrake Linux-a. Ukoliko se to desi, možete probati tekstualnu\n"
"instalaciju. Za to, pritisnite `F1' kada podižete CDROM, i unesite `text'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Instalacijski razred"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr "Molim izaberite jedan od slijedećih razreda instalacije:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Ukupna veličina izabranih grupa je otprilike %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Ukoliko želite instalirati manje od ove veličine,\n"
-"izaberite postotak paketa koliko želite instalirati.\n"
-"\n"
-"Mali postotak će instalirati samo najvažnije pakete;\n"
-"dok postotak od 100%% će instalirati sve odabrane pakete."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Imate mjesta na vašem disku za samo %d%% paketa.\n"
-"\n"
-"Ukoliko želite instalirati manje od ovoga,\n"
-"izaberite postotak paketa koliko želite instalirati.\n"
-"Mali postotak će instalirati samo najvažnije pakete;\n"
-"dok postotak od %d%% će instalirati koliko god je paketa moguće."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Detaljniji izbor nalazi se u slijedećem koraku."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Odaberite postotak paketa koje želite instalirati"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Odabir grupe paketa"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Individualan odabir paketa"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ukupna veličina: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Loš paket"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Ime: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Inačica: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Veličina: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Značaj: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Ne možete označiti ovaj paket budući da nema dovoljno mjesta gdje ga se može "
"instalirati"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Slijedeći paketi će biti instalirani"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Slijedeći paketi će biti uklonjeni"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Ne možete označiti/odznačiti ovaj paket"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Budući da je ovo obvezni paket ne možete ga odznačiti"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Ne možete odznačiti ovaj paket budući da je već instaliran"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Ovaj paket treba nadograditi\n"
"Da li ste sigurni da ga želite odznačiti?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Ne možete odznačiti ovaj paket budući da ga treba nadograditi"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Prikaži automatski odabrane pakete"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Instaliraj"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Učitaj/Spremi na disketu"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "Dograđujem izbor paketa"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "Minimalna instalacija"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Odaberite pakete koje želite instalirati"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Instaliram"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Procjenjujem"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Preostalo vrijeme"
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Molimo pričekajte, Pripremam instalaciju"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d paketa"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Instaliram paket %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Prihvati"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Odbij"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4536,17 +4905,17 @@ msgstr ""
"Ukoliko ga nemate, pritisnite Odustani kako bi izbjegli instalaciju sa ovog "
"Cd-Rom-a."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Da ipak nastavim?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Javila se greška prilikom sortiranja paketa:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Pojavila se greška kod instalacije paketa:"
@@ -4619,11 +4988,11 @@ msgstr "Pojavila se greška"
msgid "Do you really want to leave the installation?"
msgstr "Da li zaista želite napustiti instalaciju?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Licencni dogovor"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4638,7 +5007,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -4857,109 +5226,113 @@ msgstr ""
"Za bilo kakva pitanja o ovom dokumentu, molimo kontaktirajte MandrakeSoft S."
"A. \n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Tipkovnica"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "Molim, izaberite raspored tipkovnice."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Ovdje je cijeli popis raspoloživih tipkovnica"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Koji instalacijski razred želite?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Instaliraj/Nadogradi"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Da li je ovo instalacija ili nadogradnja?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Preporučeno"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Ekspert"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "Dogradnja"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "Samo dogradi pakete"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Molim izaberite vašu vrstu miša."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Port miša"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Izaberite na kojem serijskom portu je miš priključen."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Emulacija gumbova"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Emulacija 2 gumba"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Emulacija 3 gumba"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Podešavam PCMCIA kartice..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Podešavam IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "nema dostupnih particija"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Tražim particije kako bi pronašao mjesta montiranja"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Odaberite mjesta montiranja"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4972,7 +5345,7 @@ msgstr ""
"\n"
"Da li se slažete da izgubite sve particije?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4980,7 +5353,7 @@ msgstr ""
"DiskDrake nije uspio pročitati vašu particijsku tablice.\n"
"Nastavite o vlastitoj odgovornosti."
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -4989,76 +5362,79 @@ msgstr ""
"podizanje vašeg sustava, trebati ćete napraviti bootstrap particiju u "
"DiskDrake-u"
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr "Niti jedna root particija nije pronađena da se obavi dogradnja"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Korijenska particija"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Koja je korijenska particija (/) vašeg sustava?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Morate ponovo pokrenuti sustav kako bi se aktivirala promjena particijske "
"tablice"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Izaberite particije koje želite formatirati"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Provjeri za loše blokove?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Formatiram particije"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Stvaram i formatiram datoteku %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Nema dovoljno swapa za završetak instalacije, molim dodajte još"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Tražim dostupne pakete"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
+msgstr "Tražim dostupne pakete"
+
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Tražim pakete koje mogu nadograditi"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Ne možete odznačiti ovaj paket budući da je već instaliran"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Vaš sustav nema dovoljno prostora za instalaciju ili dogradnju (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Kompletno (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimum (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Preporučeno (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5066,35 +5442,35 @@ msgstr ""
"Molimo izaberite učitivanje ili spremanje izbora paketa na disketu.\n"
"Format je isto kao auto_install napravljene diskete."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Učitaj sa diskete"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Učitavam sa diskete"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Odabir paketa"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "Umetnite disketu koja sadržava izbor paketa"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Spremi na disketu"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Izabrana veličina je veća nego raspoloživ prostor"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr "Tip instalacije"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5102,19 +5478,19 @@ msgstr ""
"Niste izabrali niti jednu grupu paketa\n"
"Izaberite minimalnu instalaciju ako želite"
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "Sa X-ima"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr "Sa osnovnom dokumentacijom (preporučeno!)"
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr "Stvarno malena instalacija (posebice bez urpmia)"
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5125,16 +5501,16 @@ msgstr ""
"Ako imate samo neke od dolje navedenih CDa odznačite one koje nemate i "
"kliknite U redu."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom naslovljen \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Pripremam instalaciju"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -5143,23 +5519,23 @@ msgstr ""
"Instaliram paket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Postava nakon instalacije"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Molim, umetnite Boot disketu u pogon %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Molim, umetnite Update Modules disketu u pogon %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5228,170 +5604,201 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
#, fuzzy
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
"Imate mogućnost skidanja (downloada) paketa za dogradnju koji su\n"
"izašli poslije nego što je distribucija postala raspoloživa.\n"
"\n"
-"Dobiti ćete sigurnosne popravke i popravke od grešaka, ali trebate imati\n"
-"Internet vezu konfiguriranu za nastavak.\n"
+"Dobit ćete sigurnosne popravke i popravke od grešaka, ali za nastavak\n"
+"trebate imati podešenu Internet vezu.\n"
"\n"
-"Da li želite nastaviti ?"
+"Da li želite instalirati dogradnju?"
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Kontaktiram Mandrake Linux web site za dobivanje popisa raspoloživih mirrora"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Izaberite mirror sa kojeg želite skinuti pakete"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Spajam se na mirror kako bih pribavio popis dostupnih paketa"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Koja je vaša vremenska zona?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Vaš hardverski sat namješten je na GMT"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatska vremenska sinkronizacija (koristeći NTP)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "NTP Poslužitelj"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Udaljeni CUPS poslužitelj"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Nema pisača"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
msgstr "Da li imate ISA zvučnu karticu?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Pokrenite \"sndconfig\" poslije instalacije za podešavanje vaše zvučne "
"kartice"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Nije pronađena zvučna kartica. Probajte \"harddrake\" poslije instalacije"
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Sumarno"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Miš"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Vremenska zona"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Pisac"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "ISDN kartica"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Zvučna kartica"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV kartica"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Windowse (FAT32)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Lokalne datoteke"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Podešavanje root lozinke"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Bez lozinke"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Ova lozinka je prejednostavna (lozinka mora sadržavati barem %d znakova)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Provjera autentičnosti"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "LDAP Autentifikacija"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "LDAP Poslužitelj"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "NIS Autentifikacija"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS domena"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS Poslužitelj"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "LDAP Autentifikacija"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Dobavi Windows fontove"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NTP Poslužitelj"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -5422,19 +5829,19 @@ msgstr ""
"Ako želite napraviti boot disketu za vaš sustav, ubacite disketu u prvi\n"
" pogon i pritisnite \"U redu\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Prvi disketni pogon"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Drugi disketni pogon"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Preskoči"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5461,7 +5868,7 @@ msgstr ""
"Da li želite napraviti proizvoljnu boot disketu za vaš sustav?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5469,29 +5876,34 @@ msgid ""
"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
"because XFS needs a very large driver)."
msgstr ""
+"\n"
+"\n"
+"(UPOZORENJE! Koristite XFS za vašu root particiju,\n"
+"stvaranje boot diskete na disketi kapaciteta 1.44 Mb vjerojatno\n"
+"neće uspjeti, jer XFS treba vrlo velik pokretački program)."
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Žalim, međutim disketni pogon nije dostupan"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Izaberite disketni pogon koji želite koristiti za izradu boot diskete"
-#: ../../install_steps_interactive.pm_.c:1216
-#, fuzzy, c-format
+#: ../../install_steps_interactive.pm_.c:1221
+#, c-format
msgid "Insert a floppy in %s"
msgstr "Umetnite disketu u pogon %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Stvaram boot disketu"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Pripremam bootloader"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5503,11 +5915,11 @@ msgstr ""
"Instalacija će nastaviti, ali ćete morati\n"
" koristiti BootX da podignete vaše računalo"
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Da li želite koristiti aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5515,16 +5927,16 @@ msgstr ""
"Greška prilikom instalacije aboot-a, \n"
"probati nasilno instalirati iako to može uništiti prvu particiju?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Instaliranje bootloadera"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"Instalacija bootloader-a nije uspjela. Prijavljena je slijedeća grešska:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5541,18 +5953,17 @@ msgstr ""
" Tada napišite: shut-down\n"
"Pri slijedećem podizanju trebali biste vidjeti prompt bootloadera."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Umetnite praznu disketu u pogon %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Pravim auto instalacijsku disketu"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5562,7 +5973,8 @@ msgstr ""
"\n"
"Želite li zaista završiti?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5573,7 +5985,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5588,17 +6000,22 @@ msgstr ""
"konzultirajte Eratu raspoloživu na\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Informacije o konfiguriranju vašeg sustava je raspoloživo u poslije\n"
"instalacijskom poglavlju od Official Mandrake Linux User's Guide."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+#, fuzzy
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakesoft.com/sales/contact"
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Napravi auto instalacijsku disketu"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5612,15 +6029,15 @@ msgstr ""
"\n"
"Možete preferirati da ponovite instalaciju.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automatski"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Ponovno prikaži"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Spremi odabir paketa"
@@ -5641,50 +6058,30 @@ msgstr "kdesu nedostaje"
#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
msgid "consolehelper missing"
-msgstr ""
+msgstr "nedostaje consolehelper"
#: ../../interactive.pm_.c:152
msgid "Choose a file"
msgstr "Izaberite datoteku"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Napredno"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr "Osnovno"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Molim pričekajte"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Proširi stablo"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Sažmi stablo"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Prebaci između ravno i grupno sortiranog"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Krivi izbor, pokušajte ponovo\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Vaš izbor? (uobičajeno %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -5693,31 +6090,35 @@ msgstr ""
"Unosi koje trebate popuniti:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Vaš izbor? (0/1, uobičajeno '%s') "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "Gumb `%s': %s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+msgid "Do you want to click on this button?"
msgstr "Da li želite kliknuti na ovaj gumb? "
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Vaš izbor? (uobičajeno `%s'%s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Postoji mnogo stvari za odabir iz (%s).\n"
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -5727,7 +6128,7 @@ msgstr ""
"ili samo pritisnite Enter za nastavak.\n"
"Vaš izbor? "
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -5736,332 +6137,329 @@ msgstr ""
"=> Obavijest, naziv promijenjen:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr "Ponovno Pošalji"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Češka (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Njemačka"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Španjolska"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finska"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Francuska"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norveška"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Poljska"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Ruska"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Švedska"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "UK tipkovnica"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "US tipkovnica"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Albanska"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armenska (stara)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armenska (pisaća mašina)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armenska (fonetska)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbejdžanska (latinica)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgijska"
-#: ../../keyboard.pm_.c:199
-#, fuzzy
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
-msgstr "Armenska (fonetska)"
+msgstr "Bugarska (fonetska)"
-#: ../../keyboard.pm_.c:200
-#, fuzzy
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
-msgstr "Bugarska"
+msgstr "Bugarska (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brazilska (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Bjeloruska"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Švicarska (Njemački raspored)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Švicarska (francuski raspored)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Češka (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Njemačka (bez mrtvih tipaka)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Danska"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (USA)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norveška)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Švedska)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estonska"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Gruzijska (\"Ruski\" raspored)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Gruzijska (\"Latin\" raspored)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Grčka"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Mađarska"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Hrvatska"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Izraelska"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Izraelska (fonetska)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iranska"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islandska"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Talijanska"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Japanska (106 tipaka)"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Korejska tipkovnica"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latino američka"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Lituanska AZERTY (stara)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Lituanska AZERTY (nova)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituanska \"number row\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituanska \"fonetska\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "Latvija"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Makedonska"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Nizozemska"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Poljska (qwerty raspored)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Poljska (qwertz raspored)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugalska"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Kanadska (Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Rumunjska (qwertz)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Rumunjska (qwerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Ruska (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slovenska"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovačka (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovačka (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "Srpska (čirilica)"
-#: ../../keyboard.pm_.c:258
-#, fuzzy
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
-msgstr "Tablica"
+msgstr "Tamil"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Tajlandska tipkovnica"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Tajik tipkovnica"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turska (tradicionalni \"F\" model)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turska (moderna \"Q\" model)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukrajinska"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US keyboard (internacionalna)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vijetnamska \"numeric row\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Jugoslavenska (latinična)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
-msgstr ""
+msgstr "Desna Alt tipka"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
-msgstr ""
+msgstr "Obe Shift tipke istodobno"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
-msgstr ""
+msgstr "Control i Shift tipke istodobno"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
-msgstr ""
+msgstr "CapsLock tipka"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
+msgstr "Ctrl i Alt tipke istodobno"
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
-msgstr ""
+msgstr "Alt i Shift tipku istodobno"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
-msgstr ""
+msgstr "\"Menu\" tipka"
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
-msgstr ""
+msgstr "Lijeva \"Windows\" tipka"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
-msgstr ""
+msgstr "Desna \"Windows\" tipka"
#: ../../loopback.pm_.c:32
#, c-format
@@ -6072,7 +6470,31 @@ msgstr "Kružno montiranje %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Ukloni logički volumen prvo\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Telefonski broj"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Formatiraj particije"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -6114,10 +6536,6 @@ msgstr "1 gumb"
msgid "Generic 2 Button Mouse"
msgstr "Generički miš s 2 gumba"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Generički"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Kotačić"
@@ -6182,38 +6600,54 @@ msgstr "niti jedan"
msgid "No mouse"
msgstr "Nema miša"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Molimo istestirajte miša."
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Za aktiviranje miša,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "POMAKNITE VAŠ KOTAČIĆ!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-2,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Završi"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Slijedeće ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Prijašnje"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Da li je ovo ispravno?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Info"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Proširi stablo"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Sažmi stablo"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Prebaci između ravno i grupno sortiranog"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Spoji se na Internet"
@@ -6260,7 +6694,7 @@ msgstr ""
"Nije pronađen niti jedan mrežni adapter na vašem sustavu.\n"
"Ne mogu postaviti ovu vrstu veze."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Odaberite mrežni međusklop"
@@ -6274,7 +6708,7 @@ msgstr ""
msgid "no network card found"
msgstr "ne mogu pronaći niti jednu mrežnu karticu"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Podešavam mrežu"
@@ -6290,15 +6724,15 @@ msgstr ""
"Vaše ime računala bi trebalo biti potpuno-kvalificirano ime računala,\n"
"kao što je ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Ime računala"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Čarobnjak mrežnih postavki"
@@ -6353,7 +6787,7 @@ msgstr "ISDN postavke"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Izaberite vašeg pružatelja Internet usluga.\n"
" Ako nije na popisu odaberite Drugi"
@@ -6372,14 +6806,14 @@ msgstr "Protokol za ostatak svijeta"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Protokol za ostatak svijeta \n"
" bez D-kanala (za iznajmljene linije)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Koji protokol želite koristiti ?"
#: ../../network/isdn.pm_.c:199
@@ -6403,7 +6837,8 @@ 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"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Ukoliko imate ISA karticu, vrijednosti na slijedećem zaslonu trebale bi biti "
@@ -6420,13 +6855,13 @@ msgid "Continue"
msgstr "Nastavi"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Kakvu ISDN karticu imate?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Pronašao sam ISDN PCI karticu međutim ne znam kojeg je tipa. Molim izaberite "
"vašu PCI karticu na slijedećem ekranu."
@@ -6445,47 +6880,47 @@ msgstr "Izaberite serijski port na kojemu se nalazi modem."
msgid "Dialup options"
msgstr "Podesi dialup"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Ime veze"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Telefonski broj"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Prijavno ime"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Temeljem skripta"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Terminal-zasnovano"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Ime domene"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Prvi DNS poslužitelj (opciono)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Drugi DNS poslužitelj (opciono)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6493,7 +6928,7 @@ msgstr ""
"\n"
"Možete isključiti ili ponovno konfigurirati vašu vezu."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6501,11 +6936,11 @@ msgstr ""
"\n"
"Možete ponovno konfigurirati vašu vezu."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Trenutno ste spojeni na internet."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6513,35 +6948,32 @@ msgstr ""
"\n"
"Možete se spojiti na Internet ili ponovno konfigurirati vašu vezu."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Niste trenutno spojeni na Internet."
-#: ../../network/netconnect.pm_.c:41
-#, fuzzy
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
-msgstr "Povezan"
+msgstr "Poveži"
-#: ../../network/netconnect.pm_.c:43
-#, fuzzy
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
-msgstr "Odspoji..."
+msgstr "Odspoji"
-#: ../../network/netconnect.pm_.c:45
-#, fuzzy
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
-msgstr "Podesi mrežu"
+msgstr "Podesi vezu"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Internet veza i postava"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Sada ćemo podesiti %s vezu."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6560,12 +6992,12 @@ msgstr ""
"\n"
"Pritisnite U redu za nastavak."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Mrežne postavke"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6576,9 +7008,9 @@ msgstr ""
"Pritisnite U redu da zadržite postojeće postavke, ili Odustani za ponovno "
"konfiguriranje vaše mrežne/Internet veze.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"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"
@@ -6589,66 +7021,72 @@ msgstr ""
"Ukoliko ne želite koristiti auto detekciju, odselektirajte kvadratić s "
"potvrdom.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Izaberite profil za konfiguriranje"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Koristi auto detekciju"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Ekspertni mod"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Otkrivanje uređaja..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Normalna modemska veza"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "detektiran na portu %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN veza"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "detektirano %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "ADSL veza"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "detektirano na međusklopu %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Kablovska veza"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "detektirana kablovska veza"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "LAN veza"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "ethernet kartica(e) pronađene"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Izaberite vezu koju želite podesiti"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6658,23 +7096,23 @@ msgstr ""
"Molimo izaberite koji želite koristiti.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Internet veza"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Da li želite pokreniti vašu vezu kod svakog podizanja (boot) sustava ?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Mrežne postavke"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr "Mreža treba biti ponovno pokrenuta"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6685,7 +7123,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6695,7 +7133,7 @@ msgstr ""
"\n"
"Konfiguracija će sada biti primjenjena na vašem sustavu.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6703,16 +7141,20 @@ msgstr ""
"Nakon što je to napravljeno, preporučamo da ponovno pokrenete vaše X\n"
"okružje kako bi izbjegli probleme prilikom promjene imena računala."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
+"Došlo je do problema tijekom namještanja. Provjerite vezu putem "
+"net_monitora\n"
+"ili mcca. Ako vaša veza ne radi, možda ćete morati ponovno pokrenuti\n"
+"konfiguraciju"
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"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."
@@ -6722,7 +7164,7 @@ msgstr ""
"Jednostavno prihvatite ovaj uređaj konfiguriran.\n"
"Promjena polja niže će prepisati ovu konfiguraciju."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6732,38 +7174,42 @@ msgstr ""
"Svaka stavka treba biti unesena kao IP adresa odvojena\n"
"točkama (npr. 1.2.3.4)"
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Podešavam mrežni uređaj %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (upravljački program %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP adresa"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Netmaska"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Automatski IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+msgid "Start at boot"
+msgstr "Pokrenuto pri podizanju"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP adresa treba biti oblika 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6775,64 +7221,64 @@ msgstr ""
"primjerice mojeracunalo.odjel.domena.hr.\n"
"Također unesite IP adresu gateway računala ako gateway postoji"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS poslužitelj"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
-msgstr ""
+msgstr "Gateway (npr. %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Gateway uređaj"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Postava proxy-a"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Prati id mrežne kartice (korisno za laptope)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Proxy treba biti http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Proxy treba biti ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Postava Interneta"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Da li želite pokušati spajanje na Internet ?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Testiram vašu vezu..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Sustav je sada spojen na Internet."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Zbog sigurnosnih razloga, biti će sada odspojen."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6840,111 +7286,116 @@ msgstr ""
"Čini se kako sustav nije spojen na internet.\n"
"Probajte ponovno podesiti vašu vezu."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Postava Veze"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Molim ispunite ili provjerite vrijednost doljnjeg polja"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ kartice"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Memorija kartice (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "IO kartice"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "IO_0 kartice"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "IO_1 kartice"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Vaš osobni telefonski broj"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Ime ISP pružatelja (npr. provider.hr)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Telef. broj pružatelja"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Pružateljev DNS 1 (opciono)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Pružateljev DNS 2 (opciono)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Odaberite vašu zemlju"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Način biranja"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Brzina"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "Vrijeme čekanja veze (u sek)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Korisničko ime"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Korisnička Lozinka"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "montiranje nije uspjelo: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Proširene particije nisu podržane na ovoj platformi"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Imate rupu u svojoj particijskoj tablici međutim ja je ne mogu iskoristiti.\n"
"Jedino rješenje je da pomaknete vašu primarnu particiju kako bi rupa bila\n"
"odmah do proširenih particija."
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Vraćanje iz datoteke %s nije uspjelo: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Loša backup datoteka"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Greška prilikom pisanja u datoteku %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6954,188 +7405,186 @@ msgstr ""
"Test za provjeru integriteta podataka je neuspješan. \n"
"To znači da pisanje bilo čega na vaš disk rezultira slučajnim smećem"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "potrebno"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "važno"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "vrlo lijepo"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "lijepo"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "možda"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Common Unix Printing System"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR Nova Generacija"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Line Printer Daemon"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Ispiši, Bez Reda"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Lokalni pisač"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Udaljeni pisač"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Pisač na udaljenom CUPS poslužitelju"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Pisač na udaljenom lpd poslužitelju"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Mrežni pisač (TCP/socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Pisač na SMB/Windows 95/98/NT poslužitelju"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Pisač na NetWare poslužitelju"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Unesite URI pisača"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "Proslijedi (pipe) na komandu"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Nepoznati model"
-#: ../../printer.pm_.c:532
-#, fuzzy
+#: ../../printer.pm_.c:535
msgid "Local Printers"
-msgstr "Lokalni pisač"
+msgstr "Lokalni pisači"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-#, fuzzy
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
-msgstr "Udaljeni pisač"
+msgstr "Udaljeni pisači"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
-msgstr ""
+msgstr " na paralelnom portu \\/*%s"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
-msgstr ""
+msgstr ", USB pisač \\/*%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
-msgstr ""
+msgstr ", multi-funkcionalan uređaj na paralelnom portu \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
-msgstr ""
+msgstr ", multi-funkcionalan uređaj na USBu"
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
-msgstr ""
+msgstr ", multi-funkcionalan uređaj na HP JetDirectu"
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
-msgstr ""
+msgstr ", multi-funkcionalan uređaj"
-#: ../../printer.pm_.c:559
-#, fuzzy, c-format
+#: ../../printer.pm_.c:562
+#, c-format
msgid ", printing to %s"
-msgstr "Greška prilikom pisanja u datoteku %s"
+msgstr ", ispis na %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
-msgstr ""
+msgstr "na LPD poslužitelju \"%s\", pisač \"%s\""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
-msgstr ""
+msgstr ", TCP/IP host \"%s\", port %s"
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
-msgstr ""
+msgstr "na Windows poslužitelju \"%s\", dijeli \"%s\""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
-msgstr ""
+msgstr "na Novell poslužitelju \"%s\", pisač \"%s\""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
-msgstr ""
+msgstr ", korištenjem komande %s"
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr "Raw printer (Bez upravljačkog programa)"
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(na %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(na ovom računalu)"
-#: ../../printer.pm_.c:868
-#, fuzzy, c-format
+#: ../../printer.pm_.c:871
+#, c-format
msgid "On CUPS server \"%s\""
-msgstr "IP CUPS poslužitelja"
+msgstr "Na CUPS poslužitelju \"%s\""
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Uobičajeno)"
@@ -7148,26 +7597,22 @@ msgid "How is the printer connected?"
msgstr "Kako je pisač povezan?"
#: ../../printerdrake.pm_.c:25
-#, fuzzy
msgid ""
"\n"
"Printers on remote CUPS servers you do not have to configure here; these "
"printers will be automatically detected."
msgstr ""
"\n"
-"Pisače na udaljenom CUPS poslužitelju ne morate konfigurirati\n"
-"ovdje; ti pisači će biti automatski pronađeni. Molim,\n"
-"izaberite \"Pisač na udaljenom CUPS poslužitelju\" u tom slučaju."
+"Pisače na udaljenom CUPS poslužitelju ne morate konfiguriratiovdje; ti "
+"pisači će biti automatski pronađeni."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-#, fuzzy
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
msgid "CUPS configuration"
-msgstr "LAN postavke"
+msgstr "CUPS postavke"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-#, fuzzy
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
msgid "Specify CUPS server"
-msgstr "Udaljeni CUPS poslužitelj"
+msgstr "Odredi CUPS poslužitelj"
#: ../../printerdrake.pm_.c:71
msgid ""
@@ -7179,6 +7624,13 @@ msgid ""
"to enter the CUPS server IP address and optionally the port number to get "
"the printer information from the server, otherwise leave these fields blank."
msgstr ""
+"Da bi pristupili pisačima na udaljenim CUPS poslužiteljima u vašoj "
+"lokalnojmreži ne morate ništa namještati; CUPS poslužitelji automatski "
+"obavještavajuvaše računalo o svojim pisačima. Svi pisači koji su poznati "
+"vašem računalusu popisani u \"Udaljeni pisači\" odjeljku glavnog prozora "
+"Printerdrakea. Kadavaš CUPS poslužitelj nije u vašoj lokalnoj mreži, morate "
+"unesti IP adresuCUPS poslužitelja i, opcionalno, broj porta, da bi dobili "
+"informacije o pisačuod poslužitelja. Inače, ostavite ova polja praznima."
#: ../../printerdrake.pm_.c:72
msgid ""
@@ -7189,12 +7641,18 @@ msgid ""
"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
"forget to restart CUPS afterwards (command: \"service cups restart\")."
msgstr ""
+"\n"
+"Obično, CUPS se automatski namješta prema vašem mrežnom okružju, tako "
+"damožete pristupiti pisačima na CUPS poslužiteljima u vašoj lokalnoj mreži."
+"Ako ovo ne radi dobro, isključite \"Automatsku CUPS konfiguraciju\" i "
+"uredite datoteku /etc/cups/cupsd.conf ručno. Nemojte zaboraviti poslije "
+"ponovnopokrenuti CUPS (naredba:\"service cups restart\")."
#: ../../printerdrake.pm_.c:76
msgid "The IP address should look like 192.168.1.20"
msgstr "IP adresa treba izgledati poput 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "Broj porta bi trebao biti cjelobrojni broj!"
@@ -7202,7 +7660,7 @@ msgstr "Broj porta bi trebao biti cjelobrojni broj!"
msgid "CUPS server IP"
msgstr "IP CUPS poslužitelja"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Port"
@@ -7210,21 +7668,12 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Automatska CUPS konfiguracija"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Otkrivanje uređaja ..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Iskušaj portove"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-#, fuzzy
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
-msgstr "Nema pisača"
+msgstr "Dodaj novi pisač"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7236,15 +7685,24 @@ msgid ""
"you access to all available printer drivers, driver options, and printer "
"connection types."
msgstr ""
+"\n"
+"Dobrodošli u Čarobnjak za namještanje pisača\n"
+"\n"
+"Ovaj čarobnjak vam omogućuje da instalirate lokalne ili udaljene pisače "
+"koji\n"
+"će se koristiti s ovog računala kao i sa drugih računala u mreži.\n"
+"\n"
+"Pita vas za sve potrebne informacije za namještanje pisača i daje vam "
+"pristupsvim dostupnim pokretačkim programima za pisače, njihovim opcijama i "
+"vrstamaveza prema pisačima."
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-#, fuzzy
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Lokalni pisač"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7261,13 +7719,26 @@ msgid ""
"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
+"\n"
+"Dobrodošli u Čarobnjak za namještanje pisača\n"
+"\n"
+"Ovaj čarobnjak će vam pomoći da instalirate pisače spojene na ovo računalo.\n"
+"\n"
+"Priključite svoj pisač(e) u ovo računalo i uključite ga/ih. Stisnite na "
+"\"Dalje\"kada ste spremni, ili na \"Odustani\" ako ne želite sada namještati "
+"pisač(e).\n"
+"\n"
+"Primjetite da se neka računala mogu srušiti tijekom automatskog "
+"prepoznavanjapisača. Isključite \"Automatski prepoznaj pisače\" da bi "
+"instalirali pisač bezautomatskog prepoznavanja. Koristite \"Mod za stručnjake"
+"\" ili printerdrake kadaželite namjestiti ispis na udaljenom pisaču ako ga "
+"printerdrake ne prikažeautomatski."
-#: ../../printerdrake.pm_.c:186
-#, fuzzy
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
-msgstr "Automatski pronalazak pisača"
+msgstr "Automatski prepoznaj pisač"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7280,12 +7751,22 @@ msgid ""
"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
"Center."
msgstr ""
+"\n"
+"Čestitamo, vaš pisač je sada instaliran i namješten!\n"
+"\n"
+"Možete pisati korištenjem \"Ispis\" naredbe u vašoj aplikaciji (obično u "
+"\"File\" izborniku).\n"
+"\n"
+"Ako želite dodati, maknuti ili promijeniti ime pisaču, ili želite "
+"promijenitipodrazumijevane opcije (ladicu za uvlačenje papira, kakvoću "
+"ispisa,...),izaberite \"Pisač\" u \"Hardver\" odjeljku Mandrake kontrolnog "
+"centra."
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr "Automatski pronalazak pisača"
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7294,234 +7775,269 @@ msgid ""
"\n"
"Do you really want to get your printers auto-detected?"
msgstr ""
+"Printerdrake može prepoznati vaše lokalne paralelne i USB pisače, "
+"aliprimjetite da na nekim sustavima proces automatskog prepoznavanja "
+"MOŽEZAMRZNUTI VAŠ SUSTAV I OŠTETITI DATOTEČNE SUSTAVE! Zato činite to "
+"NAVLASTITI RIZIK!\n"
+"\n"
+"Da li zaista želite automatski prepoznati vaše pisače?"
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-#, fuzzy
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "Koristi auto detekciju"
-#: ../../printerdrake.pm_.c:228
-#, fuzzy
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
-msgstr "Ime udaljenog pisača"
+msgstr "Ručno podešavanje pisača"
-#: ../../printerdrake.pm_.c:256
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Iskušaj portove"
+
+#: ../../printerdrake.pm_.c:252
+#, c-format
msgid "Detected %s"
-msgstr "detektirano %s"
+msgstr "Detektirano %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
-msgstr ""
+msgstr "Pisač na paralelnom portu \\/*%s"
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
-msgstr ""
+msgstr "USB pisač \\/*%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
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 ""
+"Nije pronađen nijedan lokalni pisač! Za ručno instaliranje pisača upišiteime "
+"uređaja/datoteke u liniju za unos (paralelni portovi:/dev/lp0, /dev/lp1, ...,"
+"odgovara LPT1:, LPT2:, ..., prvi USB pisač: /dev/usb/lp0, drugi USB pisač:/"
+"dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:383
-#, fuzzy
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
-msgstr "Unesite URI pisača"
+msgstr "Morate unijeti ime uređaja ili datoteke!"
-#: ../../printerdrake.pm_.c:394
-#, fuzzy
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
-msgstr "Lokalni pisač"
+msgstr ""
+"Nije pronađen lokalni pisač!\n"
+"\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
+"Mrežni pisači se mogu instalirati samo nakon instalacije. Izaberite\"Hardver"
+"\" i potom \"Pisač\" u Mandrake kontrolnom centru."
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
+"Da bi instalirali mrežne pisače, stisnite \"Odustani\", prebacite se u"
+"\"Stručnjak\" mod i ponovno stisnite \"Dodaj novi pisač\"."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
+"Ovaj pisač je prepoznat, ako to nije onaj kojeg želite podešavati, "
+"upišiteime uređaja/datoteke u liniju za unos."
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
+"Ovo je popis svih prepoznatih pisača. Izaberite kojeg želite podesitiili "
+"upišite ime uređaja/datoteke u liniju za unos"
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
"if you prefer a customized printer configuration, turn on \"Manual "
"configuration\"."
msgstr ""
+"Ovaj pisač je prepoznat. Namještanje pisača će raditi potpuno automatski.Ako "
+"vaš pisač nije ispravno prepoznat ili ako biste radije ručno "
+"namještalipisač, uključite \"Ručno namještanje\"."
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
"automatically. If your printer was not correctly detected or if you prefer a "
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
+"Ovaj je popis svih prepoznatih pisača. Izaberite pisač kojeg želite podesiti."
+"Namještanje pisača će raditi potpuno automatski.Ako vaš pisač nije ispravno "
+"prepoznat ili ako biste radije ručno namještalipisač, uključite \"Ručno "
+"namještanje\"."
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
+"Izaberite port preko kojeg je vaš pisač povezan ili upišite ime uređaja/"
+"datotekeu liniju za unos."
-#: ../../printerdrake.pm_.c:414
-#, fuzzy
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
-msgstr "Izaberite serijski port na kojemu se nalazi modem."
+msgstr "Izaberite port na kojem se nalazi pisač."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
+" (paralelni portovi:/dev/lp0, /dev/lp1, ...,odgovara LPT1:, LPT2:, ..., prvi "
+"USB pisač: /dev/usb/lp0, drugi USB pisač: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:421
-#, fuzzy
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
-msgstr "Unesite URI pisača"
+msgstr "Morate izabrati/upisati pisač/uređaj!"
-#: ../../printerdrake.pm_.c:441
-#, fuzzy
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
-msgstr "Postava Interneta"
+msgstr "Ručno namještanje"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
+#, fuzzy
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
+"Da li je vaš pisač HPov multi-funkcijski uređaj (OfficeJet, PSC, PhotoSmart,"
+"LaserJet 1100/1200/1220/3200/3300 sa skenerom)?"
-#: ../../printerdrake.pm_.c:482
-#, fuzzy
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
-msgstr "Instaliram paket %s"
+msgstr "Instaliram HPOJ paket"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr ""
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
+msgstr "Provjeravam uređaj i namještam HPOJ ..."
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
#, fuzzy
-msgid "Installing SANE package..."
-msgstr "Instaliram paket %s"
+msgid "Installing SANE packages..."
+msgstr "Instaliram SANE paket..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Instaliram pakete..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
-msgstr ""
+msgstr "Skeniram na vašem HP multi-funkcijskom uređaju"
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
#, fuzzy
-msgid "Making printer port available for CUPS ..."
-msgstr "Čitam bazu pisača ..."
+msgid "Photo memory card access on your HP multi-function device"
+msgstr "Skeniram na vašem HP multi-funkcijskom uređaju"
+
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
+msgstr "Činim pisač dostupnim CUPSu ..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr "Čitam bazu pisača ..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Postavke udaljenog lpd pisača"
-#: ../../printerdrake.pm_.c:625
-#, fuzzy
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
msgstr ""
-"Ukoliko želite koristiti udaljeni lpd red morate unijeti\n"
-"ime ispisnog poslužitelja te ime reda na poslužitelju\n"
-"na koji želite ispisivati."
+"Ukoliko želite koristiti udaljeni lpd pisač, morate unijetiime ispisnog "
+"poslužitelja te ime pisača na tom poslužitelju."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Udaljeno ime računala"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Ime udaljenog pisača"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "Nedostaje ime računala udaljenog pisača!"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "Nedostaje ime udaljenog pisača!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Postavke SMB (Windows 9x/NT) pisača"
-#: ../../printerdrake.pm_.c:703
-#, fuzzy
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
"the print server, as well as the share name for the printer you wish to "
"access and any applicable user name, password, and workgroup information."
msgstr ""
-"Za ispis na SMB pisač, trebate navesti\n"
-"ime SMB domaćina (Primjetite da može biti različit od TCP/IP imena "
-"računala)\n"
-"i vjerojatno IP adresu poslužitelja pisača, kao i\n"
-"ime dijeljenog resursa za pisač kojem želite pristupiti i bilo koje\n"
-"primjenjivo korisničko ime, lozinku ili informacije o radnoj grupi."
+"Za ispis na SMB pisač, trebate navestiime SMB domaćina (Primjetite da može "
+"biti različit od TCP/IP imena računala) i vjerojatno IP adresu ispisnog "
+"poslužitelja, kao iime dijeljenog resursa za pisač kojem želite pristupiti i "
+"bilo kojeprimjenjivo korisničko ime, lozinku ili informacije o radnoj grupi."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "SMB poslužitelj"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP SMB poslužitelja"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Ime sharea"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Radna grupa"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "Ime poslužitelja ili IP poslužitelja mora biti naveden!"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "Ime dijeljenog samba resursa nedostaje!"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
-msgstr ""
+msgstr "SIGURNOSNO UPOZORENJE!"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7544,8 +8060,27 @@ msgid ""
"type in Printerdrake.\n"
"\n"
msgstr ""
+"Sada ćete namjestiti ispis na Windows korisničkom računu sa lozinkom. "
+"Zboggreške u arhitekturi Samba klijent softvera, lozinka je stavljena u "
+"čistomtekstualnom obliku u komandnoj liniji Samba klijenta koji se koristi "
+"zaslanje ispisnog posla Windows poslužitelju. Tako je moguće da si svaki "
+"korisnikna ovom računalu ispiše lozinku na ekranu izdavanje komandi poput "
+"\"psauxwww\".\n"
+"\n"
+"Preporučamo da iskoristite jednu od slijedećih alternativa (u svim "
+"slučajevimamorate provjeriti da samo računala sa vaše lokalne mreže imaju "
+"pristup vašemWindows serveru, npr. putem vatrozida):\n"
+"\n"
+"Koristite korisnički račun bez lozinke na vašem Windows poslužitelju, kao"
+"\"GUEST\" račun ili posebni račun određen samo za ispis. Nemojte "
+"micatizaštitu lozinkom sa osobnog ili administratorskog računa.\n"
+"\n"
+"Namjestite vaš Windows poslužitelj da omogućuje pristup pisaču preko "
+"lpdprotokola. Zatim namjestite ispis s ovog računala sa \"%s\" tipom veze "
+"uPrinterdrakeu.\n"
+"\n"
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7553,119 +8088,122 @@ msgid ""
"type in Printerdrake.\n"
"\n"
msgstr ""
+"Namjestite vaš Windows poslužitelj da omogućuje pristup pisaču preko "
+"IPPprotokola i namjestite ispis s ovog računala sa \"%s\" tipom veze u "
+"Printerdrakeu.\n"
+"\n"
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
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 ""
+"Povežite vaš pisač na Linux poslužitelj i dopustite da se vaša "
+"Windowsračunala povezuju na njega kao klijenti.\n"
+"\n"
+"Da li stvarno želite nastaviti namještati ovaj pisač kao što činite sada?"
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Postavke NetWare pisača"
-#: ../../printerdrake.pm_.c:802
-#, fuzzy
+#: ../../printerdrake.pm_.c:826
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 ""
-"Za ispis na NetWare pisač, trebate navesti\n"
-"NetWare ime poslužitelja pisača (Primjetite da može biti različit od\n"
-"njegovog TCP/IP imena računala!) kao i ime ispisnog reda za piač koji\n"
-"želite pristupiti kao i primjenjivo korisničko ime i lozinku."
+"Za ispis na NetWare pisač, trebate navestiNetWare ime ispisnog poslužitelja "
+"(Primjetite da može biti različit odnjegovog TCP/IP imena računala!) kao i "
+"ime ispisnog reda za pisač kojimželite pristupiti, te neko primjenjivo "
+"korisničko ime i lozinku."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Ispisni poslužitelj"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Ime reda pisača"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "Ime NCP poslužitelja nedostaje!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "Nedostaje ime NCP reda!"
-#: ../../printerdrake.pm_.c:852
-#, fuzzy
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
-msgstr "Opcije socket pisača"
+msgstr "Opcije TCP/Socket pisača"
-#: ../../printerdrake.pm_.c:853
-#, fuzzy
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
"number is usually 9100, on other servers it can vary. See the manual of your "
"hardware."
msgstr ""
-"Za ispis na socket pisač, trebate navesti \n"
-"ime poslužitelja od printera te opciono broj porta."
+"Za ispis na TCP ili socket pisač, trebate navestiime poslužitelja pisača te "
+"opciono broj porta. Na HP JetDirect poslužiteljimabroj porta je obično 9100, "
+"na drugim poslužiteljima može biti drugačije.Pogledajte priručnik vašeg "
+"hardvera."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Ime računala od pisača"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "Nedostaje ime računala od pisača!"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "URI Uređaja pisača"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
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 ""
+"Možete izravno odrediti da URI pristupa pisaču. URI mora odgovarati oliCUPS "
+"ili Foomatic specifikacijama. Primjetite da nisu svi URI tipovi podržani od "
+"svih spoolera."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "Ispravan URI mora biti unešen!"
-#: ../../printerdrake.pm_.c:1004
-#, fuzzy
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-"Svaki pisač treba ime (na primjer lp).\n"
-"Polja opisa i lokacije ne mora biti \n"
-"popunjeno. To su komentari za korisnike."
+"Svaki pisač treba ime (na primjer \"pisač\").Polja opisa i lokacije ne "
+"moraju biti popunjena. To su komentari za korisnike."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Ime pisača"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Opis"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Lokacija"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr "Pripremam bazu pisača ..."
-#: ../../printerdrake.pm_.c:1112
-#, fuzzy
+#: ../../printerdrake.pm_.c:1136
msgid "Your printer model"
-msgstr "Ime udaljenog pisača"
+msgstr "Model vašeg pisača"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7679,28 +8217,35 @@ msgid ""
"\n"
"%s"
msgstr ""
+"Printerdrake je usporedio ime modela koje je dobio autodetekcijom s "
+"modelimapopisanim u svojoj bazi podataka da bi našao koji najbolje odgovara. "
+"Ovaj izbormože biti pogrešan, posebice kada vaš pisač uopće nije u bazi "
+"pisača. Zatoprovjerite da li je izbor točan i stisnite \"Model je točan\" "
+"ako jest, a ako nestisnite \"Ručno izaberi model\" da bi mogli ručno "
+"izabrati model pisačana slijedećem ekranu.\n"
+"\n"
+"Za vaš pisač Printerdrake je našao:\n"
+"\n"
+"%s"
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-#, fuzzy
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
msgid "The model is correct"
-msgstr "Da li je ovo ispravno?"
+msgstr "Model je točan"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-#, fuzzy
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
msgid "Select model manually"
-msgstr "Ime udaljenog pisača"
+msgstr "Ručno izaberi model"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Izabir modela pisača"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Kakav model pisača imate?"
-#: ../../printerdrake.pm_.c:1141
-#, fuzzy
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7710,23 +8255,23 @@ msgid ""
msgstr ""
"\n"
"\n"
-"Molim, provjerite da li je Printerdrake \n"
-"automatski pronašao vaš model pisača\n"
-"ispravno. Pronađite ispravan model u\n"
-"popisu ukoliko pokazivač pokazuje a\n"
-"krivi model ili na \"Raw pisač\"."
+"Molim, provjerite da li je Printerdrakeautomatski pronašao vaš model "
+"pisačaispravno. Pronađite ispravan model upopisu kada pokazivač pokazuje "
+"nakrivi model ili na \"Raw pisač\"."
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
+"Ako vaš pisač nije prikazan, izaberite kombatibilni (pogledajte priručnik "
+"odpisača) ili neki slični."
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "OKI winprinter konfiguracija"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7735,20 +8280,30 @@ msgid ""
"first parallel port before you print a test page. Otherwise the printer will "
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
+"Namještate OKI laserski winpisač. Ovi pisači koriste dosta poseban\n"
+"komunikacijski protokol i stoga će raditi samo ako su spojeni na "
+"prviparalelni port. Kada je vaš pisač spojen na drugi port ili na "
+"kutijuispisnog poslužitelja spojite ga na prvi paralelni port prije "
+"ispisaprobne stranice. Inače pisač neće raditi. Vašu postavu tipa veze "
+"pokretačkiprogram će ignorirati."
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "Lexmark inkjet konfiguracija"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
"printer to a local port or configure it on the machine where it is connected "
"to."
msgstr ""
+"Pokretački programi za Inkjet pisače od Lexmarka podržavaju samo lokalne "
+"pisače,ne pisače na udaljenim računalima ili kutijama ispisnog poslužitelja. "
+"Spojitevaš pisač na lokalni port ili ga namjestite na računalu u kojeg je "
+"uključen."
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7760,8 +8315,17 @@ msgid ""
"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
"program."
msgstr ""
+"Da bi mogli ispisivati sa svojim Lexmark inkjetom i ovom postavom, "
+"trebateLexmarkove inkjet pokretačke programe za pisače (http://www.lexmark."
+"com/).Otiđite na američki site i stisnite na \"Drivers\" dugme. Zatim "
+"izaberitevaš model i potom \"Linux\" kao operativni sustav. Pokretački "
+"programi dolazekao RPM paketi ili skripte za ljusku sa interaktivnom "
+"grafičkom instalacijom.Ne trebate raditi ovu konfiguraciju iz grafičkog "
+"sučelja. Odustanite odmahnakon pristajanja na licencu. Zatim ispišite "
+"stranice za namještanje glavepisača sa \"lexmarkmaintain\" i podesite "
+"postavke za namještanje glave saovim programom."
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7770,23 +8334,29 @@ msgid ""
"duplex unit, extra trays) are set correctly. Note that with a very high "
"printout quality/resolution printing can get substantially slower."
msgstr ""
+"Podrazumijevane postavke pisača\n"
+"\n"
+"Trebali biste se uvjeriti da li su veličina stranice, vrsta tinte/"
+"načinispisa (ako je dostupan) i hardverske postavke laserskih pisača "
+"(memorija,duplex jedinica, dodatne ladice) postavljeni ispravno. Primjetite "
+"dasa vrlo velikom kakvoćom ispisa/rezolucijom ispis može znatno usporiti."
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Opcija %s mora biti cijeli broj!"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "Opcija %s mora biti broj!"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "Opcija %s je izvan dosega!<"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7795,52 +8365,55 @@ msgstr ""
"Da li želite postaviti ovaj pisač (\"%s\")\n"
"kao podrazumijevani pisač?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "Testne stranice"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
"laser printers with too low memory it can even not come out. In most cases "
"it is enough to print the standard test page."
msgstr ""
+"Izaberite probne stranice koje želite ispisati.\n"
+"Primjetite: foto probna stranica se može vrlo dugo ispisivati, a na "
+"laserskimpisačima sa malo memorije i uopće se ne ispisati. U većini "
+"slučajeva jedovoljno ispisati standardnu probnu stranicu."
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "Bez testnih stranica"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Ispiši"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "Standardna testna stranica"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr "Alternativna testna stranica (Letter)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "Alternativna testna stranica (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "Foto testna stranica"
-#: ../../printerdrake.pm_.c:1602
-#, fuzzy
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
-msgstr "Ispisujem probnu stranicu(e)..."
+msgstr "Ne ispiši nikakve probne stranice"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Ispisujem probnu stranicu(e)..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7855,26 +8428,23 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
-#, fuzzy
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
msgstr ""
"Probna stranica(e) poslana je na pisač.\n"
"Ponekad je potrebno par sekundi prije nego pisač počne s ispisom.\n"
-"Da li sve radi kako treba?"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
-msgstr ""
+msgstr "Da li je sve radilo ispravno?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-#, fuzzy
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
-msgstr "Nema pisača"
+msgstr "Raw pisač"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7882,16 +8452,23 @@ msgid ""
"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
"to modify the option settings easily.\n"
msgstr ""
+"Da bi ispisali datoteku iz komandne linije (terminalski prozor) koristiteili "
+"komandu \"%s <datoteka>\" ili grafički alat za ispis: \"xpp <datoteka>\"ili "
+"\"kprinter <datoteka>\". Grafički alati vam omogućuju da lako izaberetepisač "
+"i podesite opcije.\n"
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
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 ""
+"Ove komande možete također koristiti u \"Printing command\" polju dijalogaza "
+"ispis mnogih aplikacija, ali ovdje ne stavljate ime datoteke jerdatoteku za "
+"ispis dobavlja sama aplikacija.\n"
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7899,50 +8476,66 @@ msgid ""
"particular printing job. Simply add the desired settings to the command "
"line, e. g. \"%s <file>\". "
msgstr ""
+"\n"
+"\"%s\" komanda dozvoljava da podesite opcije za pojedini posao ispisa.Samo "
+"dodajte željene postavke u komandnu liniju, npr. \"%s <datoteka>\"."
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#, fuzzy, 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\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
+"Da bi saznali o dostupnim opcijama za trenutni pisač pročitajte ili "
+"popisprikazan dolje ili stisnite na \"Popis ispisnih opcija\".%s\n"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
+"Ovo je popis dostupnih opcija za ispis za trenutni pisač:\n"
+"\n"
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
+"Da bi ipisali datoteku iz komandne linije (terminalski prozor) "
+"koristitekomandu \"%s <datoteka>\".\n"
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
+"Ovu naredbu možete također koristiti u \"Printing command\" polju "
+"dijalogamnogih aplikacija. Ali tamo ne upisujete ime datoteke jer datoteku "
+"za ispisdobavlja sama aplikacija.\n"
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
+"Da bi dobili popis opcija dostupnih za trenutni pisač stisnite na "
+"\"Popisispisnih opcija\"."
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
+"Da bi ispisali datoteku iz komandne linije (terminalskog prozora) "
+"koristitenaredbu \"%s <datoteka>\" ili \"%s <datoteka>\".\n"
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7951,8 +8544,13 @@ msgid ""
"jobs immediately when you click it. This is for example useful for paper "
"jams.\n"
msgstr ""
+"Možete također koristiti grafičko sučelje \"xpdq\" za namještanje opcijai "
+"upravljanje poslovima ispisa.\n"
+"Ako koristite KDE okružje, imate \"dugme za paniku\", ikonu na radnom stolu,"
+"nazvanu \"ZAUSTAVI pisač!\", koja zaustavlja sve poslove ispisa čim "
+"jestisnete. Ovo je korisno kad se, npr., zaglavi papir.\n"
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7960,70 +8558,91 @@ msgid ""
"a particular printing job. Simply add the desired settings to the command "
"line, e. g. \"%s <file>\".\n"
msgstr ""
+"\n"
+"\"%s\" i \"%s\" naredbe vam također omogućuju da podesite opcije za "
+"određeniposao ispisa. Jednostavno dodajte željene postavke u komandnu "
+"liniju, npr.\"%s <datoteka>\".\n"
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Zatvori"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1773
#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Ispis/skeniranje na \"%s\""
+
+#: ../../printerdrake.pm_.c:1774
+#, c-format
msgid "Printing/Scanning on \"%s\""
-msgstr "Onemogućujem mrežu"
+msgstr "Ispis/skeniranje na \"%s\""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Ispis/skeniranje na \"%s\""
+
+#: ../../printerdrake.pm_.c:1777
+#, c-format
msgid "Printing on the printer \"%s\""
-msgstr "Onemogućujem mrežu"
+msgstr "Ispis na pisaču \"%s\""
+
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Zatvori"
-#: ../../printerdrake.pm_.c:1744
-#, fuzzy
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
-msgstr "Postavke pisača"
+msgstr "Popis ispisnih opcija"
-#: ../../printerdrake.pm_.c:1766
-#, c-format
+#: ../../printerdrake.pm_.c:1802
+#, fuzzy, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
+"Vaš HP multi-funkcijski uređaj je automatski namješten za skeniranje. "
+"Sadamožete skenirati sa \"scanimage\" (\"scanimage -d hp:%s\" da odredite "
+"kojiskener, ako ih imate više) iz komandne linije ili s grafičkim sučeljima"
+"\"xscanimage\" ili \"xsane\". Ako koristite GIMP, također možete "
+"skeniratibiranjem odgovarajuće stavke u \"File\"/\"Acquire\" izborniku. "
+"Probajte\"man scanimage\" i \"man sane-hp\" u komandnoj liniji za više "
+"informacija.\n"
+"\n"
+"Ne koristite \"scannerdrake\" za ovaj uređaj!"
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-#, fuzzy
-msgid "Reading printer data ..."
-msgstr "Čitam CUPS bazu upravljačkih programa..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
+msgstr "Čitam podatke o pisaču ..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-#, fuzzy
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
-msgstr "Postava Interneta"
+msgstr "Prebaci postavke pisača"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8032,64 +8651,81 @@ msgid ""
"overtaken, but jobs will not be transferred.\n"
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
+"Možete preslikati postavke pisača koje ste napravili za spooler %s na %s,vaš "
+"trenutni spooler. Svi konfiguracijski podaci (ime pisača, opis, lokacija,"
+"vrsta veze i podrazumijevane opcije) su preuzeti, ali ne i poslovi.\n"
+"Ne mogu se svi redovi prebaciti zbog:\n"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
+"CUPS ne podržava pisače na Novell poslužiteljima ili pisače koji "
+"šaljupodatke u naredbu slobodne forme.\n"
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
+"PDQ podržava samo lokalne pisače, udaljene LPD pisače i socket/TCPpisače.\n"
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr ""
+msgstr "LPD i LPRng ne podržavaju IPP pisače.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
+"Uz to, ovaj program ne može stvarati redove ili \"foomatic-configure\" sene "
+"može prebaciti."
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
+"\n"
+"Također, pisači podešeni sa PPD datotekama od svog proizvođača ili sanative "
+"CUPS pokretačkim programima se ne mogu prebaciti."
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
+"\n"
+"Označite pisače koje želite prebaciti i stisnite \"Prebaci\"."
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
-msgstr ""
+msgstr "Ne prebacuj pisače"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
-msgstr ""
+msgstr "Prebaci"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
"Click \"Transfer\" to overwrite it.\n"
"You can also type a new name or skip this printer."
msgstr ""
+"Pisač \"%s\" već postoji na %s.\n"
+"Stisnite \"Prebaci\" da prepišete preko njega.\n"
+"Možete i upisati novo ime ili preskočiti ovaj pisač."
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Ime pisača može sadržavati samo slova, brojeve i podvlaku"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8098,63 +8734,62 @@ msgstr ""
"Pisač \"%s\" već postoji,\n"
"da li zaista želite prepisati njegovu konfiguraciju?"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Novo ime pisača"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
-msgstr ""
+msgid "Transferring %s..."
+msgstr "Prebacujem %s ..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, 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 ""
+"Prebacili ste vaš bivši podrazumijevani pisač(\"%s\"), da li bi trebao "
+"bitipodrazumijevani pisač i u novom sustavu %s?"
-#: ../../printerdrake.pm_.c:1887
-#, fuzzy
-msgid "Refreshing printer data ..."
-msgstr "Čitam CUPS bazu upravljačkih programa..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
+msgstr "Osvježavam padatke o pisaču ..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-#, fuzzy
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
-msgstr "Postavke pisača"
+msgstr "Postavke udaljenog pisača"
-#: ../../printerdrake.pm_.c:1896
-#, fuzzy
-msgid "Starting network ..."
-msgstr "Pokrećem vašu vezu..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
+msgstr "Pokrećem mrežu ..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-#, fuzzy
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr "Podesi mrežu"
-#: ../../printerdrake.pm_.c:1931
-#, fuzzy
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
-msgstr "Niste podesili monitor"
+msgstr "Mreža nije podešena"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
"configuration, you will not be able to use the printer which you are "
"configuring now. How do you want to proceed?"
msgstr ""
+"Sada ćete podesiti udaljeni pisač. Zahtjeva ispravni pristup mreži, aliona "
+"još nije podešena. Ako nastavite bez ispravne mreže, nećete moćikoristiti "
+"pisač kojeg sada podešavate. Kako želite nastaviti?"
-#: ../../printerdrake.pm_.c:1935
-#, fuzzy
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
-msgstr "Podešavam mrežu"
+msgstr "Nastavi bez podešavanja mreže"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8163,35 +8798,39 @@ msgid ""
"printer, also using the Mandrake Control Center, section \"Hardware\"/"
"\"Printer\""
msgstr ""
+"Postava mreže napravljena tijekom instalacije se ne može sada pokrenuti."
+"Provjerite da li je mreža dostupna poslije pokretanja sustava i "
+"ispravitepostavke korištenjem Mandrake kontrolnog centra, odjeljak \"Mreža i "
+"Internet\"/\"Veza\", i poslije podesite pisač, također iz Mandrake "
+"kontrolnog centra,odjeljak \"Hardver\"/\"Pisač\""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
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 ""
+"Mreža nije pokrenuta. Provjerite postavke i hardver. Zatim probajte "
+"ponovnopodesiti vaš udaljeni pisač."
-#: ../../printerdrake.pm_.c:1979
-#, fuzzy
-msgid "Restarting printing system ..."
-msgstr "Koji ispisni sustav želite koristiti?"
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
+msgstr "Ponovno pokrećem ispisni sutav ..."
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
+#: ../../printerdrake.pm_.c:2065
msgid "high"
-msgstr "Visok"
+msgstr "Visoka"
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
-msgstr "Paranoidan"
+msgstr "Paranoidna"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
-msgstr ""
+msgstr "Instaliram ispisni sustav s %s sigurnosnom razinom."
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8205,13 +8844,20 @@ msgid ""
"\n"
"Do you really want to configure printing on this machine?"
msgstr ""
+"Sada ćete instalirati ispisni sustav %s na sustav koji radi pod %s "
+"sigurnosnomrazinom.\n"
+"Ovaj ispisni sustav pokreće daemon (pozadinski proces) koji čeka na "
+"posloveispisa i rješava ih. Ovaj daemon je dostupan i udaljenim računalima "
+"prekomreže, te je tako moguće mjesto napada. Stoga se na ovoj sigurnosnoj "
+"razinisamo nekoliko izabranih daemona podrazumijevano pokreće.\n"
+"\n"
+"Da li stvarno želite namjestiti ispisivanje na ovom računalu?"
-#: ../../printerdrake.pm_.c:2051
-#, fuzzy
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
-msgstr "Koji ispisni sustav želite koristiti?"
+msgstr "Pokretanje ispisnog sustava prilikom podizanja sustava"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8224,218 +8870,222 @@ msgid ""
"Do you want to have the automatic starting of the printing system turned on "
"again?"
msgstr ""
+"Ispisni sustav (%s) se neće automatski pokretati kada se računalu pokrene.\n"
+"\n"
+"Moguće je da je automatsko pokretanje isključeno zbog prebacivanja na "
+"višusigurnosnu razinu, jer je ispisni sustav moguća točka napada.\n"
+"\n"
+"Želite li ponovno uključiti automatsko podizanje ispisnog sustava?"
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
-msgstr ""
+msgstr "Provjeravam instalirani softver..."
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
-msgstr ""
+msgstr "Uklanjam LPRng..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
-msgstr ""
+msgstr "Uklanjam LPD..."
-#: ../../printerdrake.pm_.c:2205
-#, fuzzy
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
-msgstr "Odaberite vezu pisača"
+msgstr "Odaberite spooler pisača"
-#: ../../printerdrake.pm_.c:2206
-#, fuzzy
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
-msgstr "Koji ispisni sustav želite koristiti?"
+msgstr "Koji ispisni sustav (spooler) želite koristiti?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Podesi pisač"
+msgid "Configuring printer \"%s\"..."
+msgstr "Podešavam pisač \"%s\" ..."
-#: ../../printerdrake.pm_.c:2252
-#, fuzzy
-msgid "Installing Foomatic ..."
-msgstr "Instaliram paket %s"
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
+msgstr "Instaliram Foomatic ..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Postavke pisača"
-#: ../../printerdrake.pm_.c:2318
-#, fuzzy
-msgid "Preparing PrinterDrake ..."
-msgstr "Čitam CUPS bazu upravljačkih programa..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
+msgstr "Pripremam PrinterDrake ..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-#, fuzzy
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
msgid "Configuring applications..."
-msgstr "Podesi pisač"
+msgstr "Podešavam aplikacije..."
-#: ../../printerdrake.pm_.c:2355
-#, fuzzy
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
-msgstr "Da li želite podesiti pisač?"
+msgstr "Da li želite podesiti ispisivanje?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
-msgstr ""
+msgstr "Ispisni sustav:"
-#: ../../printerdrake.pm_.c:2415
-#, fuzzy
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
-msgstr "Pisac"
+msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
"OpenOffice.org."
msgstr ""
+"Navedeni pisači su podešeni. Dvostruko kliknite na pisač da bi mu "
+"promijenilipostavke; da bi ga odredili za podrazumijevani pisač; da bi "
+"pogledali informacijeo njemu; ili da bi pisač sa udaljenog CUPS poslužitelja "
+"učinili dostupnimStarOfficeu/OpenOffice.orgu."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
"it."
msgstr ""
+"Navedeni pisači su podešeni. Dvostruko kliknite na pisač da bi mu "
+"promijenilipostavke; da ga odredite za podrazumijevani pisač; ili da bi "
+"pogledaliinformacije o njemu."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
+msgstr "Osvježi popis pisača (za prikaz svih dostupnih udaljenih CUPS pisača)"
-#: ../../printerdrake.pm_.c:2464
-#, fuzzy
+#: ../../printerdrake.pm_.c:2535
msgid "Change the printing system"
-msgstr "Podesi mrežu"
+msgstr "Promijeni ispisni sustav"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Normalni mod"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-#, fuzzy
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Završi"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
-msgstr "Da li želite iskušati postavu ?"
+msgstr "Želite li podesiti neki drugi pisač?"
-#: ../../printerdrake.pm_.c:2711
-#, fuzzy
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
-msgstr "Postavke modema"
+msgstr "Promijeni postavke pisača"
-#: ../../printerdrake.pm_.c:2713
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2784
+#, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
-msgstr "Da li želite iskušati postavu ?"
+msgstr ""
+"Pisač %s\n"
+"Što želite promijeniti na ovom pisaču?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
-msgstr ""
+msgstr "Napravi!"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-#, fuzzy
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
-msgstr "Dijeljenje Internet Veze"
+msgstr "Vrsta veze s pisačem"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-#, fuzzy
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
-msgstr "Veza pisača"
+msgstr "Ime pisača, opis, lokacija"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
-msgstr ""
+msgstr "Proizvođač pisača, model, pokretački program"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
-msgstr ""
+msgstr "Proizvođač pisača, model"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
-msgstr ""
+msgstr "Odredi ovaj pisač za podrazumijevani"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr ""
+msgstr "Dodaj ovaj pisač StarOfficeu/OpenOffice.orgu"
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr ""
+msgstr "Ukloni ovaj pisač iz StarOfficea/OpenOffice.orga"
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-#, fuzzy
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
-msgstr "Ispisujem probnu stranicu(e)..."
+msgstr "Ispiši probne stranice"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-#, fuzzy
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
-msgstr "Da li želite iskušati postavu ?"
+msgstr "Saznajte kako koristiti ovaj pisač"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-#, fuzzy
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
-msgstr "Postavke udaljenog pisača"
+msgstr "Ukloni pisač"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "Čitam CUPS bazu upravljačkih programa..."
+msgid "Removing old printer \"%s\"..."
+msgstr "Uklanjam stari pisač \"%s\" ..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Podrazumijevani pisač"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
-msgstr ""
+msgstr "Pisač \"%s\" je sada određen za podrazumijevani."
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr ""
+msgstr "Dodavanje pisača StarOfficeu/OpenOffice.orgu"
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr ""
+msgstr "Pisač \"%s\" je uspješno dodan StarOfficeu/OpenOffice.orgu."
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr ""
+msgstr "Nisam uspio dodati \"%s\" StarOfficeu/OpenOffice.orgu."
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr ""
+msgstr "Uklanjam pisač iz StarOfficea/OpenOffice.orga"
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr ""
+msgstr "Pisač \"%s\" je uspješno uklonjen iz StarOfficea/OpenOffice.orga."
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr ""
+msgstr "Nisam uspio ukloniti pisač \"%s\" iz StarOfficea/OpenOffice.orga."
-#: ../../printerdrake.pm_.c:2836
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2907
+#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Da li želite ponovno pokrenuti mrežu?"
+msgstr "Da li stvarno želite ukloniti pisač \"%s\"?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Čitam CUPS bazu upravljačkih programa..."
+msgid "Removing printer \"%s\"..."
+msgstr "Uklanjam pisač \"%s\" ..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
#: ../../proxy.pm_.c:78
@@ -8519,24 +9169,62 @@ msgstr "Lozinke se ne podudaraju. Pokušajte ponovno!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Ne mogu dodati particiju na _formatirani_ RAID md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Ne mogu pisati u datoteku %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid nije uspio"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid nije uspio (možda niste instalirali raidtools alate?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nema dovoljno particija za RAID nivo %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Ova razina se treba koristiti sa pažnjom. Ona čini vaš sustav mnogo lakšim "
+"za korištenje,\n"
+"ali vrlo osjetljiv: ne smije biti korišten za računala koja su povezana u "
+"mreži ili na Internet. Naime, nema lozinke za pristup."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+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 ""
+"Sa ovom sigurnosnom razinom, korištenje ovog sustava kao poslužitelj postaje "
+"moguće.\n"
+"Sigurnost je sada toliko visoka da se sustav može koristiti kao poslužitelj\n"
+"koji prima zahtjeve od mnogo klijenata. Upozorenje: ako je vaše računalo "
+"samo klijent na Internetu, bolje da izaberete nižu razinu."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "Napredne opcije"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Opcije"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Pokreni ALSA (Naprednu Linux Zvučnu Arhitekturu) zvučni sustav"
@@ -8595,7 +9283,7 @@ msgstr ""
"HardDrake pokreće isprobavanje hardware-a, i opciono konfigurira\n"
"novi/promjenjeni hardware."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8671,8 +9359,7 @@ msgstr ""
"Linux Virtualni Poslužitelj, koristi se za pravljenje visoko raspoloživog\n"
"poslužitelja visokih performansi."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-#, fuzzy
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -8749,14 +9436,13 @@ msgstr ""
"poput NFS-a ili NIS-a. Portmap poslužitelj mora biti pokrenut na računalima\n"
"koji su poslužitelji za protokole koji se služe RPC mehanizmima."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
-#, fuzzy
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
msgstr ""
-"Postfix je Mail Transport Agent, koji je program koji\n"
-"šalje mail-ove sa jedne mašine na drugu."
+"Postfix je Mail Transport Agent, što je program kojišalje mail-ove sa jednog "
+"računala na drugo."
#: ../../services.pm_.c:67
msgid ""
@@ -8845,33 +9531,29 @@ msgstr "Internet"
#: ../../services.pm_.c:126
msgid "File sharing"
-msgstr ""
+msgstr "Dijeljenje datoteka"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-#, fuzzy
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
-msgstr "Sistemski mod"
+msgstr "Sustav"
#: ../../services.pm_.c:133
-#, fuzzy
msgid "Remote Administration"
-msgstr "Postavke udaljenog lpd pisača"
+msgstr "Udaljeno administriranje"
# ../../share/compssUsers
#: ../../services.pm_.c:141
-#, fuzzy
msgid "Database Server"
-msgstr "Baze"
+msgstr "Poslužitelj baza podataka"
#: ../../services.pm_.c:170
#, c-format
msgid "Services: %d activated for %d registered"
-msgstr ""
+msgstr "Servisi: %d aktiviran za %d registriran"
#: ../../services.pm_.c:186
-#, fuzzy
msgid "Services"
-msgstr "uređaj"
+msgstr "Servisi"
#: ../../services.pm_.c:198
msgid "running"
@@ -8898,22 +9580,20 @@ msgid "On boot"
msgstr "Pri pokretanju"
#: ../../services.pm_.c:236
-#, fuzzy
msgid "Start"
-msgstr "Status:"
+msgstr "Pokretanje"
#: ../../services.pm_.c:236
-#, fuzzy
msgid "Stop"
-msgstr "Sektor"
+msgstr "Zaustavljanje"
#: ../../share/advertising/00-thanks.pl_.c:9
msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr ""
+msgstr "Hvala vam što ste izabrali Mandrake Linux 8.2"
#: ../../share/advertising/00-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
-msgstr ""
+msgstr "Dobrodošli u Open Source svijet"
#: ../../share/advertising/00-thanks.pl_.c:11
msgid ""
@@ -8921,11 +9601,12 @@ msgid ""
"Your new operating system is the result of collaborative work on the part of "
"the worldwide Linux Community"
msgstr ""
+"Uspjeh MandrakeSofta se temelji na principima slobodnog softvera. Vašnovi "
+"operativni sustav je rezultat udruženog rada svjetske Linux zajednice"
#: ../../share/advertising/01-gnu.pl_.c:9
-#, fuzzy
msgid "Join the Free Software world"
-msgstr "Protokol za ostatak svijeta"
+msgstr "Pridružite se svijetu slobodnog softvera"
#: ../../share/advertising/01-gnu.pl_.c:10
msgid ""
@@ -8933,11 +9614,13 @@ msgid ""
"help others by joining the many discussion forums that you will find in our "
"\"Community\" webpages"
msgstr ""
+"Upoznajte Open Source zajednicu i postanite članom. Učite, podučavajte "
+"ipomažite drugima učestvovanjem u diskusijama u mnogim forumima koje "
+"ćetepronaći na \"Community\" web stranicama"
#: ../../share/advertising/02-internet.pl_.c:9
-#, fuzzy
msgid "Internet and Messaging"
-msgstr "Internet pristup"
+msgstr "Internet i slanje poruka"
#: ../../share/advertising/02-internet.pl_.c:10
msgid ""
@@ -8946,9 +9629,12 @@ msgid ""
"Konqueror, exchange email & organize your personal information with "
"Evolution and Kmail, and much more"
msgstr ""
+"Mandrake Linux 8.2 pruža najbolji softver za pristupanje svemu što "
+"Internetima za ponuditi: surfajte webom i gledajte animacije sa Mozillom i "
+"Koquererom,razmjenjujte emailove i organizirajte vaše osobne informacije sa "
+"Evolutionomi Kmailom, i još mnogo toga"
#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
msgid "Multimedia and Graphics"
msgstr "Multimedija - Grafika"
@@ -8958,6 +9644,10 @@ msgid ""
"the latest software to play music and audio files, edit and organize your "
"images and photos, watch TV and videos, and much more"
msgstr ""
+"Mandrake Linux 8.2 vam omogućuje da potpuno ostvarite "
+"multimedijalnipotencijal vašeg računala! Koristite najnovije programe za "
+"reprodukcijuglazbe i zvučnih datoteka, uređujte i organizirajte slike i "
+"fotografije,gledajte TV i video zapise, i još mnogo toga"
#: ../../share/advertising/04-develop.pl_.c:9
msgid "Development"
@@ -8969,22 +9659,25 @@ msgid ""
"of the GNU gcc compiler as well as the best Open Source development "
"environments"
msgstr ""
+"Mandrake Linux 8.2 je najbolja platforma za razvoj aplikacija. Otkrijte moć "
+"GNU gcc prevoditelja kao i najbolja Open Source okružja za razvojaplikacija."
#: ../../share/advertising/05-contcenter.pl_.c:9
-#, fuzzy
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
-msgstr "Kontrolni Centar"
+msgstr "Mandrake Kontrolni Centar"
#: ../../share/advertising/05-contcenter.pl_.c:10
msgid ""
"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
"customizing and configuring your Mandrake system"
msgstr ""
+"Mandrake Linux 8.2 Kontrolni Centar je mjesto gdje si potpuno "
+"možetepodrediti i podesiti vaš Mandrake sustav"
#: ../../share/advertising/06-user.pl_.c:9
-#, fuzzy
msgid "User interfaces"
-msgstr "Mrežni međusklop"
+msgstr "Korisnička sučelja"
#: ../../share/advertising/06-user.pl_.c:10
msgid ""
@@ -8992,17 +9685,22 @@ msgid ""
"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
"0.8, and the rest"
msgstr ""
+"Mandrake Linux 8.2 ima izbor od 11 različitih grafičkih sučelja za radni "
+"stol i prozorne menađere koji uključuje GNOME 1.4, KDE 2.2.2, WindowMaker "
+"0.8 i ostale"
#: ../../share/advertising/07-server.pl_.c:9
-#, fuzzy
msgid "Server Software"
-msgstr "SMB poslužitelj"
+msgstr "Poslužiteljski softver"
#: ../../share/advertising/07-server.pl_.c:10
msgid ""
"Transform your machine into a powerful server with just a few clicks of the "
"mouse: Web server, email, firewall, router, file and print server, ..."
msgstr ""
+"Učinite od svog računala moćni poslužitelj sa samo nekoliko pritisaka na "
+"mišu:Web poslužitelj, email, vatrozid, router, datotečni i ispisni "
+"poslužitelj, ..."
#: ../../share/advertising/08-games.pl_.c:9
msgid "Games"
@@ -9013,10 +9711,12 @@ msgid ""
"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
"cards, sports, strategy, ..."
msgstr ""
+"Mandrake Linux 8.2 dolazi sa najboljim Open Source igrama - arkade, akcijske,"
+"kartanje, sport, strategije, ..."
#: ../../share/advertising/09-MDKcampus.pl_.c:9
msgid "MandrakeCampus"
-msgstr ""
+msgstr "MandrakeCampus"
#: ../../share/advertising/09-MDKcampus.pl_.c:10
msgid ""
@@ -9024,11 +9724,13 @@ msgid ""
"provides free Linux training, as well as a way to test your progress, at "
"MandrakeCampus -- our online training center"
msgstr ""
+"Želite li naučiti Linux jednostavno, brzo i besplatno? MandrakeSoftvam "
+"omogućuje besplatnu Linux obuku, kao i način da provjerite svojnapredak, u "
+"MandrakeCampusu -- našem online centru za obuku"
#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
msgid "MandrakeExpert"
-msgstr "Ekspert"
+msgstr "MandrakeExpert"
#: ../../share/advertising/10-MDKexpert.pl_.c:10
msgid ""
@@ -9036,10 +9738,13 @@ msgid ""
"around the corner. And if you're already a Linux veteran, become an \"Expert"
"\" and share your knowledge at our support website"
msgstr ""
+"Kvalitetna podrška od Linux zajednice, kao i od MandrakeSofta, je iza ugla.A "
+"ako već jeste Linux veteran, postanite \"Stručnjak\" i podijelite "
+"svojeznanje na našem websiteu za podršku"
#: ../../share/advertising/11-consul.pl_.c:9
msgid "MandrakeConsulting"
-msgstr ""
+msgstr "MandrakConsulting"
#: ../../share/advertising/11-consul.pl_.c:10
msgid ""
@@ -9048,31 +9753,47 @@ msgid ""
"vast experience as a Linux producer to provide a true IT alternative for "
"your business organization"
msgstr ""
+"Za sve vaše IT projekte, naši savjetnici su spremni analizirati vašezahtjeve "
+"i ponuditi konkretno rješenje. Iskoristite MandrakeSoftovogolemo iskustvo "
+"kao Linux stvaratelja da bi dobili ozbiljnu IT alternativuvašoj poslovnoj "
+"organizaciji"
#: ../../share/advertising/12-MDKstore.pl_.c:9
msgid "MandrakeStore"
-msgstr ""
+msgstr "MandrakeStore"
#: ../../share/advertising/12-MDKstore.pl_.c:10
msgid ""
"A full range of Linux solutions, as well as special offers on products and "
"'goodies', are available online at our e-store"
msgstr ""
+"Potpun raspon Linux rješenja, kao i posebne ponude proizvoda i 'goodiesa', "
+"sudostupni online preko naše e-trgovine"
#: ../../share/advertising/13-Nvert.pl_.c:9
msgid ""
"For more information on MandrakeSoft's Professional Services and commercial "
"offerings, please see the following web page:"
msgstr ""
+"Za više informacija o MandrakeSoftovim profesionalnim uslugama i "
+"komercijalnimponudama, pogledajte web stranice:"
#: ../../share/advertising/13-Nvert.pl_.c:11
msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr ""
+msgstr "http://www.mandrakesoft.com/sales/contact"
#: ../../standalone.pm_.c:25
-#, fuzzy
msgid "Installing packages..."
-msgstr "Instaliram paket %s"
+msgstr "Instaliram pakete..."
+
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Molim prvo se odjavite te pritisnite Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Molim ponovo se logirajte u %s kako bi aktivirali promjenjeno"
#: ../../standalone/diskdrake_.c:85
msgid ""
@@ -9082,20 +9803,175 @@ msgstr ""
"Ne mogu pročitati vašu particijsku tablicu, previše je uništena za mene :(\n"
"Pokušati ću sa brisanjem loših particija"
-#: ../../standalone/drakautoinst_.c:45
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Prebaci postavke pisača"
+
+# ../../share/compssUsers
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Poslužitelj baza podataka"
+
+# ../../share/compssUsers
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Poslužitelj baza podataka"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS Poslužitelj"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS Poslužitelj"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Dodaj korisnika"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP klijent"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Pomoć"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+#, fuzzy
+msgid "No kernel selected!"
+msgstr "Nema TV kartice!"
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Nije povezan"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Obriši"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Izabrao sve"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Dodaj korisnika"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "DHCP klijent"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Podešavam..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "ponovno postavi"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Molim, umetnite Boot disketu u pogon %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Disketni pogon nije dostupan"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
+#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
-msgstr "Greška"
+msgstr "Greška!"
#: ../../standalone/drakautoinst_.c:46
#, c-format
msgid "I can't find needed image file `%s'."
-msgstr ""
+msgstr "Ne mogu naći potrebnu datoteku sa slikom '%s'."
#: ../../standalone/drakautoinst_.c:48
-#, fuzzy
msgid "Auto Install Configurator"
-msgstr "Postava nakon instalacije"
+msgstr "Postava automatske instalacije"
#: ../../standalone/drakautoinst_.c:49
msgid ""
@@ -9111,17 +9987,35 @@ msgid ""
"\n"
"Do you want to continue?"
msgstr ""
+"Sada ćete instalirati disketu za automatsku instalaciju. Ova mogućnost "
+"jedonekle opasna i mora se oprezno koristiti.\n"
+"\n"
+"Sa tom mogućnošću, moći ćete ponoviti instalaciju kako ste je proveli naovom "
+"računalu, s tim da ćete biti interaktivno priupitani u nekim koracima,da bi "
+"promijenili njihove vrijednosti.\n"
+"\n"
+"Za maksimalnu sigurnost, particioniranje i formatiranje se nikad "
+"nećeobavljati automatski, što god izabrali prilikom instalacije na ovo "
+"računalo.\n"
+"\n"
+"Želite li nastaviti?"
#: ../../standalone/drakautoinst_.c:71
-#, fuzzy
msgid "Automatic Steps Configuration"
-msgstr "Postava Stila Podizanja"
+msgstr "Postava automatskih koraka"
#: ../../standalone/drakautoinst_.c:72
msgid ""
"Please choose for each step whether it will replay like your install, or it "
"will be manual"
msgstr ""
+"Izaberite za svaki korak da li će se ponoviti kao i u vašoj instalaciji, "
+"iliće se izvoditi ručno"
+
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Pravim auto instalacijsku disketu"
#: ../../standalone/drakautoinst_.c:145
msgid ""
@@ -9130,770 +10024,834 @@ msgid ""
"\n"
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
+"\n"
+"Dobrodošli.\n"
+"\n"
+"Parametri automatske instalacije su dostupni u odjeljku na lijevoj strani"
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Čestitke!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
+"Disketa je uspješno stvorena.\n"
+"Sada možete ponoviti svoju instalaciju"
-#: ../../standalone/drakautoinst_.c:282
-#, fuzzy
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
-msgstr "Instaliraj"
+msgstr "Automatska Instalacija"
-#: ../../standalone/drakautoinst_.c:352
-#, fuzzy
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
-msgstr "Dodaj korisnika"
+msgstr "Dodaj stavku"
-#: ../../standalone/drakautoinst_.c:359
-#, fuzzy
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
-msgstr "Formatiram loopback datoteku %s"
+msgstr "Ukloni posljednju stavku"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
+#: ../../standalone/drakbackup_.c:599
msgid ""
-"***********************************************************************\n"
+"\n"
+" DrakBackup Report \n"
"\n"
msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
"\n"
" DrakBackup Report \n"
"\n"
-msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
"\n"
"\n"
msgstr ""
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
"\n"
+" DrakBackup Daemon Report\n"
"\n"
-"***********************************************************************\n"
"\n"
-msgstr ""
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
"\n"
"\n"
msgstr ""
+"\n"
+" DrakBackup Report detalji\n"
+"\n"
+"\n"
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
-msgstr ""
+msgstr "ukupni progres"
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
-msgstr ""
+msgstr "Sigurnosna pohrana sustavskih datoteka"
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-#, fuzzy
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
-msgstr "Loša backup datoteka"
+msgstr "Sigurnosna pohrana datoteka na tvrdom disku..."
-#: ../../standalone/drakbackup_.c:615
-#, fuzzy
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
-msgstr "Loša backup datoteka"
+msgstr "Sigurnosna pohrana korisničkih datoteka"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
-msgstr ""
+msgstr "Progres sigurnosne pohrane tvrdog diska"
-#: ../../standalone/drakbackup_.c:666
-#, fuzzy
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
-msgstr "Loša backup datoteka"
+msgstr "Sigurnosna pohrana drugih datoteka"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, fuzzy, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
+"popis datoteka poslan FTPom : %s\n"
+" "
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
+#, fuzzy
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
+"\n"
+"(!) problem sa FTP vezom: nije bilo moguće poslati vaše pohranjene "
+"datotekeFTPom.\n"
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "Greška prilikom čitanja datoteke %s"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
-msgstr "Odabir paketa"
+msgstr "Odabir datoteka"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
-msgstr ""
+msgstr "Izaberi datoteke ili mape i stisni 'Dodaj'"
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
+"\n"
+"Provjerite sve opcije koje trebate.\n"
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
+"Ove opcije mogu pohraniti i povratiti sve datoteke u vašoj /etc mapi.\n"
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
-msgstr ""
+msgstr "Sigurnosno pohranjivanje vaših sustavskih datoteka ( /etc mapa )"
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
-msgstr ""
+msgstr "Koristi inkrementalno pohranjivanje (ne zamjenjuje staru pohranu)"
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
-msgstr ""
+msgstr "Izostavi kritične datoteke (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
+"S ovom opcijom moći ćete povratiti bilo koju inačicu\n"
+"vašeg /etc direktorija."
-#: ../../standalone/drakbackup_.c:812
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
-msgstr "Odaberite pakete za instalaciju."
+msgstr "Odaberite sve korisnike koje želite uključiti u pohranu."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
-msgstr ""
+msgstr "Izostavi cache preglednika (browsera)"
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
-msgstr ""
+msgstr "Koristi inkrementalnu pohranu (ne zamjenjuje stare pohrane)"
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
-msgstr "Ukloni zapis"
+msgstr "Ukloni izabrano"
-#: ../../standalone/drakbackup_.c:900
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
-msgstr "Ukloni Windowse(TM)"
+msgstr "Windowse (FAT32)"
-#: ../../standalone/drakbackup_.c:939
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
-msgstr "Korisničko ime"
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+msgstr "Korisnici"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1257
#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Koristi FTP vezu za pohranu"
+
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
-msgstr "Molimo istestirajte miša."
+msgstr "Upišite ime hosta ili IP."
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
-msgstr ""
+msgstr "Upišite mapu na ovom hostu u koju ćete staviti pohranu."
-#: ../../standalone/drakbackup_.c:977
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
-msgstr "Molim pokušajte ponovo"
+msgstr "Upišite svoje korisničko ime"
-#: ../../standalone/drakbackup_.c:982
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
-msgstr "Molim pokušajte ponovo"
+msgstr "Upišite svoju lozinku"
-#: ../../standalone/drakbackup_.c:988
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
-msgstr "ponovno unesite lozinku"
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "LAN veza"
+msgstr "Zapamti ovu lozinku"
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Odaberite vezu pisača"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
-msgstr ""
+msgstr "Koristi CD/DVDROM za pohranu"
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
-msgstr "Molim izaberite raspored tipkovnice."
+msgstr "Izaberite prostor na CDu"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
-msgstr "Molim kliknite na particiju"
+msgstr "Naznačite da li koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
-msgstr ""
+msgstr "Naznačite da li prethodno želite obrisati vaš CDRW"
-#: ../../standalone/drakbackup_.c:1106
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
-msgstr "Odaberite pakete za instalaciju."
+msgstr ""
+"Naznačite da li želite uključiti podizanje instalacije pri\n"
+"dizanju računala sa CDa."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
+"Upišite ime vašeg CD snimača\n"
+" ex: 0,1,0"
-#: ../../standalone/drakbackup_.c:1153
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
-msgstr "Loša backup datoteka"
+msgstr "Koristi vrpcu za pohranu"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
-msgstr ""
+msgstr "Upišite ime uređaja kojeg ćete koristiti za sigurnosnu pohranu"
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Naznačite da li prethodno želite obrisati vaš CDRW"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
+"Upišite maksimalnu dozvoljenu\n"
+" veličinu za Drakbackup"
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
-msgstr "Molimo istestirajte miša."
+msgid "Please enter the directory to save to:"
+msgstr "Upišite mapu za snimanje:"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
-msgstr "Loša backup datoteka"
+msgstr "Koristi quotu za pohranjene datoteke"
-#: ../../standalone/drakbackup_.c:1267
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
-msgstr "Mrežni međusklop"
+msgstr "Mreža"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
-msgstr ""
+msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
-msgstr ""
+msgstr "Tvrdi disk / NFS"
+
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Vrsta"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
-msgstr ""
+msgstr "svaki sat"
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
-msgstr ""
+msgstr "svaki dan"
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
-msgstr ""
+msgstr "svaki tjedan"
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
-msgstr ""
+msgstr "svaki mjesec"
-#: ../../standalone/drakbackup_.c:1312
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
-msgstr "Korisničko ime"
+msgstr "Koristi daemon"
-#: ../../standalone/drakbackup_.c:1317
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
-msgstr "Odaberite pakete za instalaciju."
+msgstr ""
+"Izaberite vremenski razmak između\n"
+"dvije sigurnosne pohrane"
-#: ../../standalone/drakbackup_.c:1323
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
-msgstr "Molim izaberite jezik koji želite koristiti."
+msgstr "Izaberite medij za pohranu."
-#: ../../standalone/drakbackup_.c:1327
+#: ../../standalone/drakbackup_.c:1648
#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Otkrivanje hard diskova"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Korisničko ime"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
+msgstr "Osigurajte da je cron daemon uključen u vaše servise"
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
-msgstr ""
+msgstr "Ovjde pošalji izvještaj mailom poslije svake pohrane:"
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
-msgstr ""
+msgstr "Što"
-#: ../../standalone/drakbackup_.c:1416
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
-msgstr "Kotačić"
+msgstr "Gdje"
-#: ../../standalone/drakbackup_.c:1421
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
-msgstr "Kotačić"
+msgstr "Kada"
-#: ../../standalone/drakbackup_.c:1426
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
-msgstr "Postavke modula:"
+msgstr "Još opcija"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
-msgstr "Mrežne postavke"
+msgstr "Drakbackup postava"
-#: ../../standalone/drakbackup_.c:1463
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
-msgstr "Odaberite pakete za instalaciju."
+msgstr "Izaberite gdje želite pohranjivati"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
-msgstr ""
+msgstr "na tvrdi disk"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
-msgstr ""
+msgstr "preko mreže"
-#: ../../standalone/drakbackup_.c:1540
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
-msgstr "Odaberite pakete za instalaciju."
+msgstr "Izaberite što želite pohranjivati"
-#: ../../standalone/drakbackup_.c:1541
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
-msgstr "Podesi datotečne sustave"
+msgstr "Pohrani sustav"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
-msgstr ""
+msgstr "Pohrani korisnike"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
-msgstr ""
+msgstr "Ručno izaberi korisnika"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
+"\n"
+"Izvori za pohranu: \n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
+"\n"
+"- Sustavske datoteke:\n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
+"\n"
+"- Korisničke datoteke:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
+"\n"
+"- Druge datoteke:\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
+"\n"
+"- Snimi na tvrdi disk u putanju : %s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Uređaj miša: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"Snimi FTPom na host : %s\n"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
+"\n"
+"Snimi FTPom na host : %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
+"\t\t korisničko ime: %s\n"
+"\t\t u putanju: %s \n"
-#: ../../standalone/drakbackup_.c:1637
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
-msgstr "Opcije"
+msgstr ""
+"\n"
+"- Opcije:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
-msgstr ""
+msgstr "\tIzostavi sustavske datoteke\n"
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
-msgstr ""
+msgstr "\tPohrana koristi tar i bzip2\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
-msgstr ""
+msgstr "\tPohrana koristi tar i gzip\n"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
+"\n"
+"- Daemon (%s) uključi :\n"
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
-msgstr ""
+msgstr "\t-Tvrdi disk.\n"
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
+msgstr "\t-CDROM.\n"
+
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
-msgstr ""
+msgstr "\t-Mrežu FTPom.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
-msgstr ""
+msgstr "\t-Mrežu SSHom.\n"
+
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t-Mrežu FTPom.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t-Mrežu FTPom.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
+msgstr "Nema postavki, molimo izaberite Čarobnjaka ili Napredno.\n"
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
+"Popis podataka za povrat:\n"
+"\n"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
+"Popis oštećenih podataka:\n"
+"\n"
-#: ../../standalone/drakbackup_.c:1755
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2115
msgid "Please uncheck or remove it on next time."
-msgstr "Izaberite serijski port na kojemu se nalazi modem."
+msgstr "Molimo poništite odabir ili ga uklonite idući put"
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
-msgstr ""
+msgstr "Pohranjene datoteke su oštećene"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
-msgstr ""
+msgstr " Svi vaši izabrani podaci su "
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
-msgstr ""
+msgstr " Uspješno povraćeni na %s "
-#: ../../standalone/drakbackup_.c:1886
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2254
msgid " Restore Configuration "
-msgstr "Mrežne postavke"
+msgstr " Povrati postavke "
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
-msgstr ""
+msgstr "U redu da bi povratili ostale datoteke"
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
+"Popis korisnika za povrat (samo je najnoviji nadnevak važan za svakog "
+"korisnika)"
-#: ../../standalone/drakbackup_.c:1972
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
-msgstr "Loša backup datoteka"
+msgstr "Pohrani sustavske datoteke prije:"
-#: ../../standalone/drakbackup_.c:1974
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2342
msgid "please choose the date to restore"
-msgstr "Molim izaberite koju vrstu miša koristite."
+msgstr "izaberite nadnevak za povrat"
-#: ../../standalone/drakbackup_.c:2002
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
-msgstr "Loša backup datoteka"
+msgstr "Koristi tvrdi disk za pohranu"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+msgid "Please enter the directory to save:"
+msgstr "Upišite mapu za snimanje:"
+
+#: ../../standalone/drakbackup_.c:2416
+msgid "FTP Connection"
+msgstr "FTP veza"
+
+#: ../../standalone/drakbackup_.c:2424
+msgid "Secure Connection"
+msgstr "Sigurna veza"
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
-msgstr ""
+msgstr "Povrati s tvrdog diska"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
-msgstr ""
+msgstr "Upišite mapu u koju ste pohranili podatke"
-#: ../../standalone/drakbackup_.c:2143
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
-msgstr "Molim izaberite koju vrstu miša koristite."
+msgstr "Izaberite drugi medij s kojeg ćete povratiti podatke"
-#: ../../standalone/drakbackup_.c:2145
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2514
msgid "Other Media"
-msgstr "Ostali"
+msgstr "Ostali mediji"
-#: ../../standalone/drakbackup_.c:2151
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2520
msgid "Restore system"
-msgstr "Instaliraj sustav"
+msgstr "Povrati sustav"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
-msgstr ""
+msgstr "Povrati korisnike"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
-msgstr ""
+msgstr "Povrati ostalo"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
-msgstr ""
+msgstr "izaberi putanju za povrat (umjesto / )"
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
+"Napravi novu sigurnosnu pohranu prije povrata (samo za inkrementalne "
+"pohrane.)"
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
-msgstr ""
+msgstr "Ukloni mape korisnika prije povrata."
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
-msgstr ""
+msgstr "Povrati sve pohrane"
-#: ../../standalone/drakbackup_.c:2225
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2594
msgid "Custom Restore"
-msgstr "Prilagođeno"
+msgstr "Prilagođena pohrana"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
-msgstr "<- Prijašnje"
+msgstr "Prijašnje"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
-#, fuzzy
msgid "Save"
-msgstr "Status:"
+msgstr "Snimi"
-#: ../../standalone/drakbackup_.c:2317
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
-msgstr "Loša backup datoteka"
+msgstr "Složi sigurnosnu pohranu"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
-msgstr "Prilagođeno"
+msgstr "Povrati"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
-msgstr "Slijedeće ->"
+msgstr "Slijedeće"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
+"Molimo složite pohranu prije povrata...\n"
+"ili provjerite da je putanja ispravna"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
+"Greška tijekom slanja pošte\n"
+" vaš mail sa izvještajem nije poslan\n"
+" molimo podesite sendmail"
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "Izabir instaliranih paketa"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Slijedeći paketi će biti instalirani"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
+#, fuzzy
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
+"Greška tijekom slanja datoteke putem FTPa.\n"
+" Ispravite svoje FTP postavke."
-#: ../../standalone/drakbackup_.c:2573
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
-msgstr "Molim izaberite jezik koji želite koristiti."
+msgstr "Izaberite podatke za povrat"
-#: ../../standalone/drakbackup_.c:2594
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
-msgstr "Molim izaberite jezik koji želite koristiti."
+msgstr "Izaberite medij za sigurnosnu pohranu..."
-#: ../../standalone/drakbackup_.c:2616
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
-msgstr "Molim izaberite jezik koji želite koristiti."
+msgstr "Izaberite podatke koje ćete pohraniti..."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
+"Nije pronađena datoteka s postavkama \n"
+"pritisnite Čarobnjaka ili Napredno."
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
-msgstr ""
+msgstr "Razvija se ... molimo sačekajte."
-#: ../../standalone/drakbackup_.c:2739
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3145
msgid "Backup system files"
-msgstr "Loša backup datoteka"
+msgstr "Pohrani sustavske datoteke"
-#: ../../standalone/drakbackup_.c:2741
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3147
msgid "Backup user files"
-msgstr "Loša backup datoteka"
+msgstr "Pohrani korisničke datoteke"
-#: ../../standalone/drakbackup_.c:2743
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3149
msgid "Backup other files"
-msgstr "Loša backup datoteka"
+msgstr "Pohrani ostale datoteke"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
-msgstr ""
+msgstr "Ukupni progres"
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
-msgstr ""
+msgstr "slanje datoteka FTPom"
-#: ../../standalone/drakbackup_.c:2771
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3177
msgid "Sending files..."
-msgstr "Otkrivanje uređaja..."
+msgstr "Šaljem datoteke..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
-msgstr ""
+msgstr "Popis datoteka koje će biti na CDu."
-#: ../../standalone/drakbackup_.c:2899
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3305
msgid "Please enter the cd writer speed"
-msgstr "Molimo istestirajte miša."
+msgstr "Upišite brzinu cd snimača"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
+msgstr "Upišite ime CD snimača (ex:0,1,0)"
-#: ../../standalone/drakbackup_.c:2923
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
-msgstr "Odaberite pakete za instalaciju."
+msgstr "Naznačite želite li da se instalacija sustava može pokretati sa CDa."
-#: ../../standalone/drakbackup_.c:2989
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3409
msgid "Backup Now from configuration file"
-msgstr "Mrežne postavke"
+msgstr "Pohrani iz datoteke sa postavkama"
-#: ../../standalone/drakbackup_.c:2999
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3419
msgid "View Backup Configuration."
-msgstr "Mrežne postavke"
+msgstr "Pogledaj postavke sigurnosne pohrane"
-#: ../../standalone/drakbackup_.c:3020
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3440
msgid "Wizard Configuration"
-msgstr "LAN postavke"
+msgstr "Postavke čarobnjaka"
-#: ../../standalone/drakbackup_.c:3024
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3445
msgid "Advanced Configuration"
-msgstr "LAN postavke"
+msgstr "Napredne postavke"
-#: ../../standalone/drakbackup_.c:3028
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
-msgstr "Podesi datotečne sustave"
+msgstr "Pohrani sada"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
-msgstr ""
+msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9924,8 +10882,36 @@ msgid ""
" \n"
"\n"
msgstr ""
+"opis opcija:\n"
+"\n"
+"U ovom koraku Drakbackup će vam omogućiti da promijenite:\n"
+"\n"
+" - Način sažimanja:\n"
+" \n"
+" Ako označite bzip2 sažimanje, sažet ćete vaše\n"
+" podatke bolje nego sa gzipom (oko 2-10 %).\n"
+" Ova opcija nije podrazumijevano označena jer\n"
+" ovaj način sažimanja zathjeva više vremena (oko 1000% više).\n"
+" \n"
+" - Način osvježavanja pohrane:\n"
+"\n"
+" Ova opcija će osvježavati pohranu, ali nije baš\n"
+" pretjerano korisna jer se prvo sve mora dekompresirati\n"
+" prije nego što se osvježi.\n"
+" \n"
+" - .backupignore način:\n"
+"\n"
+" Kao kod cvsa, Drakbackup će ignorirati sve reference\n"
+" iz .backupignore datoteka u svakoj od mapa.\n"
+" ex: \n"
+" /*> cat .backupignore*/\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
+"\n"
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9933,8 +10919,13 @@ msgid ""
" set myhostname or mydomain in /etc/postfix/main.cf\n"
"\n"
msgstr ""
+"\n"
+"Neke greške tijekom slanja pošte su uzrokovane \n"
+" lošim postavkama postfixa. Da bi ih riješili, morate\n"
+" namjesiti myhostname ili mydomain u /etc/postfix/main.cf\n"
+"\n"
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9974,8 +10965,45 @@ msgid ""
"\n"
"\n"
msgstr ""
+"opis opcija:\n"
+"\n"
+" - Pohrani sustavske datoteke:\n"
+" \n"
+"\tOva opcija vam omogućuje da pohranite svoju /etc mapu,\n"
+"\tkoja sadrži sve datoteke s postavkama. Budite\n"
+"\toprezni tijekom postupka povrata da ne bi prepisali:\n"
+"\t\t/etc/passed \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+" - Pohrani korisničke datoteke: \n"
+"\n"
+"\tOva opcija vam omogućuje da izaberete sve korisnike koje\n"
+"\tželite pohraniti.\n"
+"\tDa bi uštedjeli prostor na disku, preporučamo da\n"
+"\tizostavite cache web preglednika.\n"
+"\n"
+" - Pohrani ostale datoteke: \n"
+"\n"
+"\tOva opcija vam omogućuje da dodate još podataka za pohranu.\n"
+"\tSa ovom pohranom nije trenutačno moguće izabrati\n"
+"\tinkrementalnu pohranu.\t\t\n"
+" \n"
+" - Inkrementalne pohrane:\n"
+"\n"
+"\tInkrementalna pohrana je najmoćnija opcija kod\n"
+"\tpohranjivanja. Omogućuje vam da pohranite\n"
+"\tsve svoje podatke prvi put, a potom samo one\n"
+"\tpromijenjene.\n"
+"\tZatim ćete moći, prilikom povrata,\n"
+"\tvratiti vaše podatke prema određenom\n"
+"\tnadnevku.\n"
+"\tAko niste izabrali ovu opciju sve\n"
+"\tstare pohrane će biti prebrisane prije svake pohrane.\n"
+"\n"
+"\n"
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -10002,13 +11030,43 @@ msgid ""
"\n"
"\n"
msgstr ""
+"opis povrata:\n"
+" \n"
+"Samo će se najnoviji nadnevak koristiti, jer je s inkrementalnim \n"
+"pohranama potrebno povratiti stare pohrane jednu po jednu.\n"
+"\n"
+"Dakle, ako ne želite povratiti korisnika, isključite sve njegove\n"
+"kućice.\n"
+"\n"
+"Inače, možete izabrati samo jedno od ovog\n"
+"\n"
+" - Inkrementalne pohrane:\n"
+"\n"
+"\tInkrementalna pohrana je najmoćnija opcija kod\n"
+"\tpohranjivanja. Omogućuje vam da pohranite\n"
+"\tsve svoje podatke prvi put, a potom samo one\n"
+"\tpromijenjene.\n"
+"\tZatim ćete moći, prilikom povrata,\n"
+"\tvratiti vaše podatke prema određenom\n"
+"\tnadnevku.\n"
+"\tAko niste izabrali ovu opciju sve\n"
+"\tstare pohrane će biti prebrisane prije svake pohrane.\n"
+"\n"
+"\n"
+"\n"
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
+" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10024,8 +11082,21 @@ msgid ""
" along with this program; if not, write to the Free Software\n"
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
+"Ovaj program je besplatni softver; možete ga redistribuirati i/ili "
+"mijenjati\n"
+"pod uvjetima GNU General Public License objavljenje od Free Software\n"
+"Foundationa; ili inačice 2, ili (kako izaberete) neke kasnije inačice.\n"
+"\n"
+"Ovaj program se distribuira u nadi da će biti koristan, ali\n"
+"BEZ IKAKVE GARANCIJE; bez čak i podrazumijevane TRŽIŠNE GARANCIJE\n"
+"ili POGODNOSTI ZA ODREĐENU SVRHU. Pogledajte\n"
+"GNU General Public License za više detalja.\n"
+"\n"
+"Trebali ste dobiti presliku GNU General Public License\n"
+"sa ovim programom; ako ne, pišite na Free Software Foundation,\n"
+"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -10064,8 +11135,46 @@ msgid ""
"\n"
"\n"
msgstr ""
+"Opis:\n"
+"\n"
+" Drakbackup se koristi za sigurnosnu pohranu vašeg sustava.\n"
+" Tijekom podešavanja možete izabrati: \n"
+"\t- Sustavske datoteke, \n"
+"\t- Korisničke datoteke, \n"
+"\t- Ostale datoteke.\n"
+"\tčitav vaš sustav ... i ostale (poput Windows particija)\n"
+"\n"
+" Drakbackup vam omogućuje da pohranite vaš sustav na:\n"
+"\t- Tvrdi disk.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (s automatskim pokretanjem prilikom podizanja "
+"računala,\n"
+"spasonosnom opcijom i automatskom instalacijom.).\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t- Vrpcu.\n"
+"\n"
+" Drakbackup vam omogućuje da povratite vaš sustav u\n"
+" izabranu mapu.\n"
+"\n"
+" Podrazumijevano, sve pohrane će biti u\n"
+" /var/lib/drakbackup mapi\n"
+"\n"
+" Datoteka s postavkama:\n"
+"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+"\n"
+"\n"
+"Povrat:\n"
+" \n"
+" Tijekom povrata, DrakBackup će ukloniti \n"
+" vašu izvornu mapu i potvrditi da li su sve\n"
+" datoteke u pohrani ispravne. Preporučamo \n"
+" da napravite posljednju pohranu prije povrata.\n"
+"\n"
+"\n"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -10075,8 +11184,15 @@ msgid ""
"drive before sending it to the server.\n"
"\n"
msgstr ""
+"opis opcija:\n"
+"\n"
+"Budite oprezni kada koristite ftp pohranu, jer se samo\n"
+"pohrane koje su već složene mogu slati polužitelju.\n"
+"Tako sada trebate složiti pohranu na vaš tvrdi disk prije\n"
+"no što je pošaljete poslužitelju.\n"
+"\n"
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10088,8 +11204,16 @@ msgid ""
"data. It is important to be careful and not modify the \n"
"backup data files by hand.\n"
msgstr ""
+"\n"
+"Problemi sa povratom pohrane:\n"
+"\n"
+"Tijekom pohrane, drakbackup će provjeriti\n"
+"sve vaše datoteke u pohrani prije nego ih povrati.\n"
+"Prije povrata, Drakbackup će ukloniti vašu izvornu\n"
+"mapu, i izgubit ćete sve podatke. Važno je biti\n"
+"oprezan i ne mijenjati podatke u pohrani ručno.\n"
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -10127,109 +11251,575 @@ msgid ""
" \n"
"\n"
msgstr ""
+"Opis:\n"
+"\n"
+" Drakbackup se koristi za sigurnosnu pohranu vašeg sustava.\n"
+" Tijekom podešavanja možete izabrati: \n"
+"\t- Sustavske datoteke, \n"
+"\t- Korisničke datoteke, \n"
+"\t- Ostale datoteke.\n"
+"\tčitav vaš sustav ... i ostale (poput Windows particija)\n"
+"\n"
+" Drakbackup vam omogućuje da pohranite vaš sustav na:\n"
+"\t- Tvrdi disk.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (s automatskim pokretanjem prilikom podizanja "
+"računala,\n"
+"spasonosnom opcijom i automatskom instalacijom.).\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t- Vrpcu.\n"
+"\n"
+" Drakbackup vam omogućuje da povratite vaš sustav u\n"
+" izabranu mapu.\n"
+"\n"
+" Podrazumijevano, sve pohrane će biti u\n"
+" /var/lib/drakbackup mapi\n"
+"\n"
+" Datoteka s postavkama:\n"
+"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+"\n"
+"Povrat:\n"
+" \n"
+" Tijekom povrata, DrakBackup će ukloniti \n"
+" vašu izvornu mapu i potvrditi da li su sve\n"
+" datoteke u pohrani ispravne. Preporučamo \n"
+" da napravite posljednju pohranu prije povrata.\n"
+"\n"
+"\n"
#: ../../standalone/drakboot_.c:58
#, c-format
msgid "Installation of %s failed. The following error occured:"
msgstr "Instalacija %s-a nije uspjela. Prijavljena je slijedeća grešska:"
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
msgstr ""
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+# ../../share/compssUsers
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Konzolni Alati"
+
+#: ../../standalone/drakbug_.c:53
+#, fuzzy
+msgid "HardDrake"
+msgstr "na tvrdi disk"
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "MandrakConsulting"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "MandrakeStore"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Miš"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Udaljeni pisač"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Ime sharea"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakbug_.c:61
#, fuzzy
-msgid "no fonts found"
-msgstr "ne mogu pronaći niti jednu mrežnu karticu"
+msgid "Userdrake"
+msgstr "Printerdrake"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakbug_.c:62
#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Čarobnjak mrežnih postavki"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Provjera autentičnosti"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Odabir paketa"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Molim pričekajte"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Post deinstalacija"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "port"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Screenshotovi će biti raspoloživi poslije instalaciju u %s"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Mrežne postavke (%d adaptera)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profil: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Obriši profil..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Profil za obrisati:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Novi profil..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Ime profila kojeg treba stvoriti (novi profil se stvara kao kopija "
+"trenutnog):"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Ime računala: "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Internet pristup"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Tip:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Gateway:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Međusklop:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Status:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "Molim sačekajte"
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Podešavanje Internet Pristupa..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "LAN postavke"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Upravljački program"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Međusklop"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protokol"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Stanje"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Podesi lokalnu mrežu..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "Ovdje stisnite za pokretanje čarobnjaka ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Čarobnjak..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Primjeni"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Molimo pričekajte... Primjenjujem konfiguraciju"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Povezan"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Nije povezan"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Poveži..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Odspoji..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+"Upozorenje, otkrivena je još jedna Internet veza, koja možda koristivašu "
+"mrežu"
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Nemate niti jedan konfigurirani međusklop.\n"
+"Konfigurirajte ga prvo klikanjem na 'Postavljanje'"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "LAN postavke"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Adapter %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Boot protokol"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Pokrenuto pri podizanju"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP klijent"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "Aktiviraj sada"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "Deaktiviraj sada"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Ovo sučelje još nije podešeno.\n"
+"Pokrenite čarobnjak za postavu u glavnom prozoru"
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Nemate niti jednu internet vezu.\n"
+"Napravite jednu klikanjem na 'Podesi'"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Postava Internet veze"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Postava Internet veze"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Tip veze: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parametri"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Gateway"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Ethernet kartica"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP klijent"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "uporaba: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-iso8859-2,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Ime modula"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Veličina"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "pravljenje boot diskete"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "uobičajeno"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Greška DrakFloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "kernel inačica"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Općenito"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Ekspertno područje"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrd opcionalni argumenti"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Dodaj modul"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "prisili"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "ako je potrebno"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "izostavi scsi module"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "izostavi raid module"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Ukloni modul"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Ispis"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Napravi disk"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Uvjerite se da je medij\tprisutan za uređaj %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"Ne postoji medij za uređaj %s.\n"
+"Molimo ubacite jedan."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Ne mogu napraviti fork: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Ne mogu ispravno zatvoriti mkbootdisk: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
+msgid "Search installed fonts"
+msgstr "Traži instalirane fontove"
+
+#: ../../standalone/drakfont_.c:234
+msgid "Unselect fonts installed"
+msgstr "Odselektiraj instalirane fontove"
+
+#: ../../standalone/drakfont_.c:258
+msgid "parse all fonts"
+msgstr "parsiraj sve fontove"
+
+#: ../../standalone/drakfont_.c:261
+msgid "no fonts found"
+msgstr "nisu pronađeni fontovi"
+
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "Gotov"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
-msgstr ""
+msgstr "nisam mogao naći nikakve fontove na vašim montiranim particijama"
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
-msgstr ""
+msgstr "Ponovno izaberi ispravne fontove"
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
-msgstr ""
+msgstr "nisam mogao naći nijedan font.\n"
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
-msgstr ""
+msgstr "Potraži fontove u popisu instaliranih"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
-msgstr ""
+msgstr "Kopiranje fontova"
-#: ../../standalone/drakfont_.c:353
-#, fuzzy
+#: ../../standalone/drakfont_.c:382
msgid "True Type fonts installation"
-msgstr "Pripremam instalaciju"
+msgstr "Instalacija True Type fontova"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
-msgstr ""
+msgstr "sačekajte tijekom ttmkfdira..."
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
-msgstr ""
+msgstr "Instalacija True Typea gotova"
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
-msgstr ""
+msgstr "Pretvaranje fontova"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
-msgstr ""
+msgstr "stvaranje typ1insta"
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
-msgstr ""
+msgstr "Ghostscript reference"
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
-msgstr ""
+msgstr "pretvaranje ttf fontova"
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
-msgstr ""
+msgstr "pretvaranje pfm fontova"
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
-msgstr ""
+msgstr "Potisni privremene datoteke"
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
-msgstr ""
+msgstr "Ponovno pokreni XFS"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
-msgstr ""
+msgstr "Potisni datoteke fontova"
-#: ../../standalone/drakfont_.c:465
-#, fuzzy
+#: ../../standalone/drakfont_.c:535
msgid "xfs restart"
-msgstr "ograniči"
+msgstr "Ponovno pokreni xfs"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10237,123 +11827,113 @@ msgid ""
"-You can install the fonts using the normal way. In rare cases, bogus fonts "
"may hang up your X Server."
msgstr ""
+"Prije no što instalirate bilo kakve fontove, provjerite da li ih imate "
+"pravokoristiti i instalirati na vaš sustav.\n"
+"\n"
+"-Možete instalirati fontove na normalan način. U rijetkim slučajevima, "
+"lažnifontovi će srušiti vaš X poslužitelj."
-#: ../../standalone/drakfont_.c:547
-#, fuzzy
+#: ../../standalone/drakfont_.c:631
msgid "Fonts Importation"
-msgstr "Formatiraj particije"
+msgstr "Uvoz fontova"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
-msgstr ""
+msgstr "Dobavi Windows fontove"
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "LAN postavke"
+msgstr "Odinstaliraj fontove"
-#: ../../standalone/drakfont_.c:570
-#, fuzzy
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
-msgstr "Točka montiranja"
+msgstr "Popis fontova"
-#: ../../standalone/drakfont_.c:739
-#, fuzzy
+#: ../../standalone/drakfont_.c:910
msgid "Choose the applications that will support the fonts :"
-msgstr "Izaberite particije koje želite formatirati"
+msgstr "Izaberite aplikacije koje će podržavati fontove :"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
-msgstr ""
+msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:747
-#, fuzzy
+#: ../../standalone/drakfont_.c:926
msgid "StarOffice"
-msgstr "Ured"
+msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:751
-#, fuzzy
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
-msgstr "Prekini"
+msgstr "Abiword"
-#: ../../standalone/drakfont_.c:755
-#, fuzzy
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
-msgstr "Pisac"
+msgstr "Generički pisač"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
+msgstr "Izaberite datoteku ili mapu fontova i stisnite 'Dodaj'"
-#: ../../standalone/drakfont_.c:828
-#, fuzzy
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
-msgstr "Instaliraj sustav"
+msgstr "Instalacijski popis"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
-msgstr ""
+msgstr "stisnite ovdje ako ste sigurni"
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
-msgstr ""
+msgstr "ovdje ako niste."
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
-msgstr ""
+msgstr "Odselektiraj sve"
-#: ../../standalone/drakfont_.c:899
-#, fuzzy
+#: ../../standalone/drakfont_.c:1179
msgid "Selected All"
-msgstr "Odaberite datoteku"
+msgstr "Izabrao sve"
-#: ../../standalone/drakfont_.c:901
-#, fuzzy
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
-msgstr "Postavke udaljenog pisača"
+msgstr "Popis za uklanjanje"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-#, fuzzy
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
-msgstr "Init poruka"
+msgstr "Početni testovi"
-#: ../../standalone/drakfont_.c:920
-#, fuzzy
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
-msgstr "Nema mrežnog adaptera na vašem sustavu!"
+msgstr "Kopiraj fontove na vaš sustav"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
-msgstr ""
+msgstr "Instaliraj i pretvori fontove"
-#: ../../standalone/drakfont_.c:922
-#, fuzzy
+#: ../../standalone/drakfont_.c:1216
msgid "Post Install"
-msgstr "Instaliraj"
+msgstr "Post instalacija"
-#: ../../standalone/drakfont_.c:940
-#, fuzzy
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
-msgstr "Nema mrežnog adaptera na vašem sustavu!"
+msgstr "Ukloni fontove s vašeg sustava"
-#: ../../standalone/drakfont_.c:941
-#, fuzzy
+#: ../../standalone/drakfont_.c:1245
msgid "Post Uninstall"
-msgstr "Izlaz iz instalacije"
+msgstr "Post deinstalacija"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Dijeljenje Internet Veze"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Dijeljenje veze prema internetu je trenutno omogućeno"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10365,31 +11945,31 @@ msgstr ""
"\n"
"Što želite napraviti?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "onemogući"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "odustani"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "ponovno postavi"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Onemogućujem poslužitelje..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Dijeljenje veze prema Internetu je trenutno onemogućeno."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Dijeljenje veze prema Internetu je trenutno onemogućeno"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10401,19 +11981,19 @@ msgstr ""
"\n"
"Što želite napraviti?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "omogući"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Omogućujem poslužitelje..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Dijeljenje veze prema internetu je trenutno omogućeno."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10429,21 +12009,21 @@ msgstr ""
"Upozorenje: trebati ćete primjenjeni Mrežni Uređaj za postavljanje lokalne "
"mreže (LAN)."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Međusklop %s (koristi modul %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Međusklop %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Nema mrežnog adaptera na vašem sustavu!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10451,11 +12031,11 @@ msgstr ""
"Nije pronađen niti jedan mrežni adapter na vašem sustavu. Molimo pokrenite "
"hardware-ski konfiguracijski alat."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Mrežni međusklop"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10470,19 +12050,18 @@ msgstr ""
"\n"
"Postaviti ću lokalnu mrežu (LAN) sa tim adapterom."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Molimo odaberite koji mrežni adapter će biti povezan na vašu lokalnu mrežu."
-#: ../../standalone/drakgw_.c:271
-#, fuzzy
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
-msgstr "Niste podesili monitor"
+msgstr "Mrežno sučelje već podešeno"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10491,18 +12070,21 @@ msgid ""
"\n"
"You can do it manually but you need to know what you're doing."
msgstr ""
+"Upozorenje, mrežni adapter (%s) je već podešen.\n"
+"\n"
+"Želite li automatsku re-konfiguraciju?\n"
+"\n"
+"Možete je podesiti i ručno, ali trebate znati što radite."
-#: ../../standalone/drakgw_.c:277
-#, fuzzy
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
-msgstr "Postava Stila Podizanja"
+msgstr "Automatska rekonfiguracija"
-#: ../../standalone/drakgw_.c:278
-#, fuzzy
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
-msgstr "Postavke modema"
+msgstr "Pokaži trenutne postavke sučelja"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10512,8 +12094,14 @@ msgid ""
"IP attribution: %s\n"
"Driver: %s"
msgstr ""
+"Trenutne postavke '%s':\n"
+"\n"
+"Mreža: %s\n"
+"IP adresa: %s\n"
+"IP atribut: %s\n"
+"Pokretački program: %s"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
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 C-Class Network that "
@@ -10524,35 +12112,42 @@ msgid ""
"you.\n"
"\n"
msgstr ""
+"Mogu zadržati vaše trenutne postavke i pretpostaviti da ste već "
+"postaviliDHCP poslužitelj; u tom slučaju molim provjerite da li sam točno "
+"pročitaoC-Class mrežu koju koristite za vašu lokalnu mrežu; neću je "
+"ponovnokonfigurirati niti dirati postavke vašeg DHCP poslužitelja.\n"
+"\n"
+"Inače, mogu vam rekonfigurirati vaše sučelje i (re)konfiguriratiDHCP "
+"poslužitelj.\n"
+"\n"
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
-msgstr ""
+msgstr "C-Class lokalna mreža"
-#: ../../standalone/drakgw_.c:298
-#, fuzzy
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
-msgstr "IP CUPS poslužitelja"
+msgstr "IP (ovog) DHCP poslužitelja"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
-msgstr ""
+msgstr "Re-konfiguriraj sučelje i DHCP poslužitelj"
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
-msgstr ""
+msgstr "Lokalna mreža nije završila sa '.0', odustajem."
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Potencijalni LAN adresni konflikt je pronađen u trenutnoj konfiguraciji %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Detektirana je vatrozidna konfiguracija!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10560,20 +12155,20 @@ msgstr ""
"Upozorenje! Postojeća vatrozidna konfiguracija je pronađena. Morati ćete "
"ručno popraviti neke dijelove nakon instalacije."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Podešavam..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Podešavam skriptove, instaliram softver, pokrećem poslužitelje..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Problem prilikom instaliranja paketa %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10583,23 +12178,23 @@ msgstr ""
"Sada možete dijeliti vašu internet vezu sa drugim računalima na vašoj "
"lokalnoj mreži, koristeći automatsku mrežnu konfiguraciju (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "Postavljanje je već urađeno, ali je trenutno onemogućeno."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Postavljanje je već urađeno, ali je trenutno omogućeno."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Dijeljenje veze prema internetu nije bilo konfigurirano."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Postavke dijeljenja internet veze"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10614,213 +12209,6 @@ msgstr ""
"\n"
"Kliknite na Postavke ukoliko želite pokreniti čarobnjak za postavljanja."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Mrežne postavke (%d adaptera)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Obriši profil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Profil za obrisati:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Novi profil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Ime računala: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Internet pristup"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tip:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Međusklop:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Podešavanje Internet Pristupa..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "LAN postavke"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Upravljački program"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Međusklop"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokol"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Podesi lokalnu mrežu..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Čarobnjak..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Primjeni"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Molimo pričekajte... Primjenjujem konfiguraciju"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Povezan"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Nije povezan"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Poveži..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Odspoji..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Nemate niti jedan konfigurirani međusklop.\n"
-"Konfigurirajte ga prvo klikanjem na 'Postavljanje'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "LAN postavke"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adapter %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Boot protokol"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Pokrenuto pri podizanju"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP klijent"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Aktivno"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Aktivno"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Nemate niti jednu internet vezu.\n"
-"Napravite jednu klikanjem na 'Podesi'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Postava Internet veze"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Postava Internet veze"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Tip veze: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametri"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernet kartica"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP klijent"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Podešavam sigurnosni nivo"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Kontrolni Centar"
@@ -10829,92 +12217,126 @@ msgstr "Kontrolni Centar"
msgid "Choose the tool you want to use"
msgstr "Izaberite alat koje želite koristiti"
-#: ../../standalone/drakxtv_.c:48
-#, fuzzy
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\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 ""
+
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
-msgstr "Kanadska (Quebec)"
+msgstr "Kanada (kabl)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr ""
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
+msgstr "SAD (bcast)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
-msgstr ""
+msgstr "SAD (kabl)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
-msgstr ""
+msgstr "SAD (kabl-hrc)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr ""
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
+msgstr "Kina (bcast)"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
-msgstr ""
+msgstr "Japan (kabl)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
-msgstr ""
+msgstr "Istočna Europa"
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
+#: ../../standalone/drakxtv_.c:74
+msgid "France [SECAM]"
+msgstr "Francuska [SECAM]"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
-msgstr "Islandska"
+msgstr "Irska"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
-msgstr ""
+msgstr "Zapadna Europa"
-#: ../../standalone/drakxtv_.c:51
-#, fuzzy
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
-msgstr "serijski"
+msgstr "Australija"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
-msgstr ""
+msgstr "Novi Zeland"
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
-msgstr ""
+msgstr "Južna Afrika"
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
-msgstr ""
+msgstr "Argentina"
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
+"Molim, \n"
+"upišite svoj tv standard i zemlju"
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
-msgstr ""
+msgstr "TV standard :"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
-msgstr ""
+msgstr "Područje :"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
-msgstr ""
+msgstr "Pretraživanje TV kanala u tijeku ..."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
+msgstr "Tražim TV kanale"
+
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Pojavila se greška kod instalacije paketa:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:153
+msgid "No TV Card detected!"
+msgstr "Nema TV kartice!"
+
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10925,6 +12347,14 @@ msgid ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+"TV kartica nije prepoznata na vašem računalu. Provjerite da li je Linux-"
+"podržana Video/TV kartica ispravno uključena.\n"
+"\n"
+"\n"
+"Možete posjetiti našu bazu hardvera na:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
@@ -10957,238 +12387,241 @@ msgstr "Ne mogu pokrenuti živu nadogradnju !!!\n"
#: ../../standalone/localedrake_.c:32
msgid "The change is done, but to be effective you must logout"
-msgstr ""
+msgstr "Promjena je izvršena, ali da bi imala učinak, morate se odlogirati"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
-msgstr ""
+msgstr "logdrake"
#: ../../standalone/logdrake_.c:95
msgid "Show only for the selected day"
-msgstr ""
+msgstr "Pokaži samo izabrani dan"
#: ../../standalone/logdrake_.c:102
-#, fuzzy
msgid "/File/_New"
-msgstr "/Datoteka/_Izlaz"
+msgstr "/Datoteka/_Nova"
#: ../../standalone/logdrake_.c:102
-#, fuzzy
msgid "<control>N"
-msgstr "<control>Q"
+msgstr "<control>N"
#: ../../standalone/logdrake_.c:103
-#, fuzzy
msgid "/File/_Open"
-msgstr "/Datoteka/_Izlaz"
+msgstr "/Datoteka/_Otvori"
#: ../../standalone/logdrake_.c:103
-#, fuzzy
msgid "<control>O"
-msgstr "<control>Q"
+msgstr "<control>O"
#: ../../standalone/logdrake_.c:104
-#, fuzzy
msgid "/File/_Save"
-msgstr "/Datoteka/_Izlaz"
+msgstr "/Datoteka/_Snimi"
#: ../../standalone/logdrake_.c:104
-#, fuzzy
msgid "<control>S"
-msgstr "<control>Q"
+msgstr "<control>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
-msgstr ""
+msgstr "/Datoteka/Snimi_kao"
#: ../../standalone/logdrake_.c:106
-#, fuzzy
msgid "/File/-"
-msgstr "/_Datoteka"
+msgstr "/Datoteka/-"
#: ../../standalone/logdrake_.c:108
-#, fuzzy
msgid "/_Options"
-msgstr "Opcije"
+msgstr "/_Opcije"
#: ../../standalone/logdrake_.c:109
-#, fuzzy
msgid "/Options/Test"
-msgstr "Opcije"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr ""
+msgstr "/Opcije/Proba"
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
-msgstr ""
+msgstr "/Pomoć/_O programu"
#: ../../standalone/logdrake_.c:118
msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr ""
+msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
#: ../../standalone/logdrake_.c:119
msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr ""
+msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
#: ../../standalone/logdrake_.c:173
-#, fuzzy
msgid "User"
-msgstr "Korisničko ime"
+msgstr "Korisnik"
#: ../../standalone/logdrake_.c:174
-#, fuzzy
msgid "Messages"
-msgstr "Testne stranice"
+msgstr "Poruke"
#: ../../standalone/logdrake_.c:175
msgid "Syslog"
-msgstr ""
+msgstr "Syslog"
#: ../../standalone/logdrake_.c:176
msgid "Mandrake Tools Explanations"
-msgstr ""
+msgstr "Objašnjenja Mandrake alata"
#: ../../standalone/logdrake_.c:179
msgid "search"
-msgstr ""
+msgstr "potraga"
#: ../../standalone/logdrake_.c:185
msgid "A tool to monitor your logs"
-msgstr ""
+msgstr "Alat za nadziranje logova"
#: ../../standalone/logdrake_.c:186
msgid "Settings"
-msgstr ""
+msgstr "Postavke"
#: ../../standalone/logdrake_.c:191
-#, fuzzy
msgid "matching"
-msgstr "Procjenjujem"
+msgstr "odgovara"
#: ../../standalone/logdrake_.c:192
msgid "but not matching"
-msgstr ""
+msgstr "ali ne odgovara"
#: ../../standalone/logdrake_.c:196
-#, fuzzy
msgid "Choose file"
msgstr "Izaberite datoteku"
#: ../../standalone/logdrake_.c:201
-#, fuzzy
msgid "Calendar"
-msgstr "Standardno"
+msgstr "Kalendar"
#: ../../standalone/logdrake_.c:211
-#, fuzzy
msgid "Content of the file"
-msgstr "Spoji se na Internet"
+msgstr "Sadržaj datoteke"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
-msgstr ""
+msgstr "Upozorenje na poštu/SMS"
#: ../../standalone/logdrake_.c:268
-#, fuzzy, c-format
+#, c-format
msgid "please wait, parsing file: %s"
-msgstr "Molimo pričekajte, Pripremam instalaciju"
+msgstr "Molim pričekajte, parsiram datoteku: %s"
-#: ../../standalone/logdrake_.c:405
-#, fuzzy
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
-msgstr "Postava Interneta"
+msgstr "Postava upozorenja na poštu/SMS"
-#: ../../standalone/logdrake_.c:406
-#, fuzzy
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-"Dobro došli u pomoćni program za konfiguriranje proxy-a.\n"
+"Dobrodošli u pomoćni program za postavljanje pošte/SMSa.\n"
"\n"
-"Ovdje ćete moći postaviti vaš http i ftp proxi-e\n"
-"sa ili bez logina i lozinke\n"
-
-# ../../share/compssUsers
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache i Pro-ftpd"
+"Ovdje ćete moći namjestiti sustav upozoravanja.\n"
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
+msgid "Apache World Wide Web Server"
msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Ime domene"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "Izlaz"
+msgid "Ftp Server"
+msgstr "NIS Poslužitelj"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Postfix mail poslužitelj, Inn news poslužitelj"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS Poslužitelj"
#: ../../standalone/logdrake_.c:422
#, fuzzy
-msgid "service setting"
-msgstr "uređaj"
+msgid "SSH Server"
+msgstr "NIS Poslužitelj"
#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Servisi"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Ispisni poslužitelj"
+
+#: ../../standalone/logdrake_.c:431
+msgid "service setting"
+msgstr "postavljanje servisa"
+
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
-msgstr ""
+msgstr "Primit ćete upozorenje ako jedan od izabranih servisa više ne radi"
-#: ../../standalone/logdrake_.c:433
-#, fuzzy
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
-msgstr "Formatiram"
+msgstr "Postavka opterećenja"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
+msgstr "Primit ćete upozorenje ako je opterećenje veće od ove vrijednosti"
-#: ../../standalone/logdrake_.c:447
-#, fuzzy
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
-msgstr "Postava Interneta"
+msgstr "postava upozoravanja"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
-msgstr ""
+msgstr "Odredite način na koji će vas sustav upozoravati"
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
-msgstr ""
+msgstr "Snimi kao.."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Molim izaberite koju vrstu miša koristite."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "niti jedan serial_usb nije pronađen\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Emuliranje treće tipke?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Čitam podatke o pisaču ..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "Otkrivanje uređaja ..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
-msgstr ""
+msgstr "%s nađen na %s, podesi?"
#: ../../standalone/scannerdrake_.c:60
-#, fuzzy
msgid "Select a scanner"
-msgstr "Odaberite grafičku karticu"
+msgstr "Odaberite skener"
#: ../../standalone/scannerdrake_.c:80
#, c-format
msgid "This %s scanner is unsupported"
-msgstr ""
+msgstr "Skener %s nije podržan"
#: ../../standalone/scannerdrake_.c:94
#, c-format
@@ -11196,11 +12629,12 @@ msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
+"Scannerdrake nije uspio prepoznati vaš %s skener.\n"
+"Izaberite uređaj gdje je skener uključen"
#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
msgid "choose device"
-msgstr "Boot uređaj"
+msgstr "Izaberite uređaj"
#: ../../standalone/scannerdrake_.c:102
#, c-format
@@ -11209,6 +12643,9 @@ msgid ""
"You can launch printerdrake from the Mandrake Control Center in Hardware "
"section."
msgstr ""
+"Ovaj %s skener mora podesiti printerdrake.\n"
+"Možete pokrenuti printerdrake iz Mandrake kontrolnog centra uHardver "
+"odjeljku."
#: ../../standalone/scannerdrake_.c:107
#, c-format
@@ -11217,6 +12654,21 @@ msgid ""
"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
"applications menu."
msgstr ""
+"vaš %s skener je podešen.\n"
+"Možete sada skenirati dokumente korištenjem ''XSanea'' izMultimedija/Grafika "
+"u aplikacijskom izborniku."
+
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
@@ -11313,9 +12765,8 @@ msgid "Configure X"
msgstr "Podesi X"
#: ../../steps.pm_.c:34
-#, fuzzy
msgid "Install system updates"
-msgstr "Instaliraj sustav"
+msgstr "Instaliraj dogradnje sustava"
#: ../../steps.pm_.c:35
msgid "Exit install"
@@ -11492,46 +12943,44 @@ msgstr "Ne mogu otvoriti %s za pisanje: %s\n"
#: ../../tinyfirewall.pm_.c:180
msgid "No I don't need DHCP"
-msgstr ""
+msgstr "Ne, ne trebam DHCP"
#: ../../tinyfirewall.pm_.c:180
msgid "Yes I need DHCP"
-msgstr ""
+msgstr "Da, trebam DHCP"
#: ../../tinyfirewall.pm_.c:181
msgid "No I don't need NTP"
-msgstr ""
+msgstr "Ne, ne trebam NTP"
#: ../../tinyfirewall.pm_.c:181
msgid "Yes I need NTP"
-msgstr ""
+msgstr "Da, trebam NTP"
#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
msgid "Don't Save"
-msgstr ""
+msgstr "Nemoj snimiti"
#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
#: ../../tinyfirewall.pm_.c:206
msgid "Save & Quit"
-msgstr ""
+msgstr "Snimi & izađi"
#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-#, fuzzy
msgid "Firewall Configuration Wizard"
-msgstr "Vatrozidne postave"
+msgstr "Čarobnjak za postavu vatrozida"
#: ../../tinyfirewall.pm_.c:199
msgid "No (firewall this off from the internet)"
-msgstr ""
+msgstr "Ne (sadrži ovo s interneta na vatrozidu)"
#: ../../tinyfirewall.pm_.c:200
msgid "Yes (allow this through the firewall)"
-msgstr ""
+msgstr "Da (propusti ovo kroz vatrozid)"
#: ../../tinyfirewall.pm_.c:232
-#, fuzzy
msgid "Please Wait... Verifying installed packages"
-msgstr "Molimo pričekajte, Pripremam instalaciju"
+msgstr "Molimo pričekajte... Provjeravam instalirane pakete"
#: ../../tinyfirewall.pm_.c:238
#, c-format
@@ -11539,6 +12988,8 @@ msgid ""
"Failure installing the needed packages : %s and Bastille.\n"
" Try to install them manually."
msgstr ""
+"Neuspjela instalacija potrebnih paketa : %s i Bastille.\n"
+" Pokušajte ih instalirati ručno."
# ../../share/compssUsers
#: ../../share/compssUsers:999
@@ -11634,11 +13085,6 @@ msgstr "Alati za lako podešavanje vašeg računala"
msgid "Multimedia - Sound"
msgstr "Multimedija - Zvuk"
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Pomoćni programi"
-
#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Dokumentacija"
@@ -11661,9 +13107,8 @@ msgid "Multimedia station"
msgstr "Multimedijska stanica"
#: ../../share/compssUsers:999
-#, fuzzy
msgid "Configuration"
-msgstr "LAN postavke"
+msgstr "Postavke"
# ../../share/compssUsers
#: ../../share/compssUsers:999
@@ -11759,11 +13204,6 @@ msgstr ""
# ../../share/compssUsers
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arhiviranje, emulatori, praćenje"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Osobne financije"
@@ -11817,3 +13257,255 @@ msgstr "Multimedija - CD prženje"
#: ../../share/compssUsers:999
msgid "Scientific Workstation"
msgstr "Znanstvena radna stanica"
+
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "fsck neuspješan sa izlaznim kodom %d ili signalom %d"
+
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Identifikacija grafičke kartice: %s\n"
+
+#~ msgid "Choose options for server"
+#~ msgstr "Postavke poslužitelja"
+
+#~ msgid "Monitor not configured"
+#~ msgstr "Niste podesili monitor"
+
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Niste podesili grafičku karticu"
+
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Niste podesili rezoluciju"
+
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "provjerite parametre koje ste unjeli"
+
+#~ msgid "An error occurred:"
+#~ msgstr "Pojavila se greška:"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Zatvaram nakon %d sekundi"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Da li je ovo ispravno?"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Pojavila se greška, provjerite parametre koje ste unjeli"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 poslužitelj: %s"
+
+#~ msgid "Show all"
+#~ msgstr "Pokaži sve"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Pripremam X-Window postavu"
+
+#~ msgid "What do you want to do?"
+#~ msgstr "Što želite napraviti?"
+
+#~ msgid "Change Monitor"
+#~ msgstr "Promijeni monitor"
+
+#~ msgid "Change Graphics card"
+#~ msgstr "Promijeni grafičku karticu"
+
+#~ msgid "Change Server options"
+#~ msgstr "Promijeni postavke poslužitelja"
+
+#~ msgid "Change Resolution"
+#~ msgstr "Promijeni rezoluciju"
+
+#~ msgid "Show information"
+#~ msgstr "Prikaži informacije"
+
+#~ msgid "Test again"
+#~ msgstr "Iskušaj ponovo"
+
+#~ msgid ""
+#~ "Your HP multi-function device was configured automatically to be able to "
+#~ "scan. Now you can scan from the command line with \"ptal-hp %s scan ..."
+#~ "\". Scanning via a graphical interface or from the GIMP is not supported "
+#~ "yet for your device. More information you will find in the \"/usr/share/"
+#~ "doc/hpoj-0.8/ptal-hp-scan.html\" file on your system. If you have an HP "
+#~ "LaserJet 1100 or 1200 you can only scan when you have the scanner option "
+#~ "installed.\n"
+#~ "\n"
+#~ "Do not use \"scannerdrake\" for this device!"
+#~ msgstr ""
+#~ "Vaš multi-funkcijski uređaj je automatski podešen za skeniranje. "
+#~ "Sadamožete skenirati iz komandne linije sa \"ptal-hp %s scan ...\". "
+#~ "Skeniranjepreko grafičkog sučelja ili iz GIMPa nije još podržano za vaš "
+#~ "uređaj. Višeinformacija ćete naći u \"/usr/share/doc/hpoj-0.8/ptal-hp-"
+#~ "scan.html\" datoteci u vašem sustavu. Ako imate HP LaserJet 1100 ili 1200 "
+#~ "možeteskenirati samo ako imate instalirane opcije skenera.\n"
+#~ "\n"
+#~ "Ne koristite \"scannerdrake\" za ovaj uređaj!"
+
+#~ msgid "Use Hard Drive with daemon"
+#~ msgstr "Koristi tvrdi disk sa daemonom"
+
+#~ msgid "Use FTP with daemon"
+#~ msgstr "Koristi FTP sa daemonom"
+
+#~ msgid "Package List to Install"
+#~ msgstr "Popis paketa za instaliranje"
+
+# ../../share/compssUsers
+#~ msgid "proftpd"
+#~ msgstr "Proftpd"
+
+#~ msgid "sshd"
+#~ msgstr "sshd"
+
+#~ msgid "webmin"
+#~ msgstr "webmin"
+
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
+
+#~ msgid "Setting security level"
+#~ msgstr "Podešavam sigurnosni nivo"
+
+#~ msgid "Graphics card"
+#~ msgstr "Grafička kartica"
+
+#~ msgid "Select a graphics card"
+#~ msgstr "Odaberite grafičku karticu"
+
+#~ msgid "Choose a X driver"
+#~ msgstr "Odaberite X upravljački program"
+
+#~ msgid "X driver"
+#~ msgstr "X upravljački program"
+
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr ""
+#~ "Upozorenje: testiranje grafičke kartice može zamrzunti vaše računalo"
+
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Standardni VGA, 640x480 na 60 Hz"
+
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 na 56 Hz"
+
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514 kompatibilan, 1024x768 na 87 Hz s preplitanjem (bez 800x600)"
+
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 na 87 Hz s preplitanjem, 800x600 na 56 Hz"
+
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Prošireni Super VGA, 800x600 na 60 Hz, 640x480 na 72 Hz"
+
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Bez preplitanja SVGA, 1024x768 na 60 Hz, 800x600 na 72 Hz"
+
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "Visoko frekvencijski SVGA, 1024x768 na 70 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Multi-frekvencijski koji ide do 1280x1024 na 60 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Multi-frekvencijski koji ide do 1280x1024 na 74 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Multi-frekvencijski koji ide do 1280x1024 na 76 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Monitor koji ide do 1600x1200 na 70 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Monitor koji ide do 1600x1200 na 76 Hz"
+
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Ukupna veličina izabranih grupa je otprilike %d MB.\n"
+
+#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
+#~ msgstr ""
+#~ "Ukoliko želite instalirati manje od ove veličine,\n"
+#~ "izaberite postotak paketa koliko želite instalirati.\n"
+#~ "\n"
+#~ "Mali postotak će instalirati samo najvažnije pakete;\n"
+#~ "dok postotak od 100%% će instalirati sve odabrane pakete."
+
+#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
+#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
+#~ msgstr ""
+#~ "Imate mjesta na vašem disku za samo %d%% paketa.\n"
+#~ "\n"
+#~ "Ukoliko želite instalirati manje od ovoga,\n"
+#~ "izaberite postotak paketa koliko želite instalirati.\n"
+#~ "Mali postotak će instalirati samo najvažnije pakete;\n"
+#~ "dok postotak od %d%% će instalirati koliko god je paketa moguće."
+
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Detaljniji izbor nalazi se u slijedećem koraku."
+
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Odaberite postotak paketa koje želite instalirati"
+
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Izaberite sigurnosni nivo"
+
+#~ msgid "Complete (%dMB)"
+#~ msgstr "Kompletno (%dMB)"
+
+#~ msgid "Minimum (%dMB)"
+#~ msgstr "Minimum (%dMB)"
+
+#~ msgid "Recommended (%dMB)"
+#~ msgstr "Preporučeno (%dMB)"
+
+#~ msgid ""
+#~ "***********************************************************************\n"
+#~ "\n"
+#~ msgstr ""
+#~ "***********************************************************************\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "\n"
+#~ "\n"
+#~ "***********************************************************************\n"
+#~ "\n"
+#~ msgstr ""
+#~ "\n"
+#~ "\n"
+#~ "***********************************************************************\n"
+#~ "\n"
+
+#~ msgid "(!) Error during mail sending. \n"
+#~ msgstr "(!) greška tijekom slanja pošte.\n"
+
+#~ msgid "USA (bcast)"
+#~ msgstr "SAD (bcast)"
+
+#~ msgid "China (bcast)"
+#~ msgstr "Kina (bcast)"
+
+#~ msgid "Japan (bcast)"
+#~ msgstr "Japan (bcast)"
+
+# ../../share/compssUsers
+#~ msgid "Utilities"
+#~ msgstr "Pomoćni programi"
+
+# ../../share/compssUsers
+#~ msgid "Archiving, emulators, monitoring"
+#~ msgstr "Arhiviranje, emulatori, praćenje"
diff --git a/perl-install/share/po/id.po b/perl-install/share/po/id.po
index bf75c2e01..6b7c865ed 100644
--- a/perl-install/share/po/id.po
+++ b/perl-install/share/po/id.po
@@ -9,33 +9,64 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX 0.1\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-05 21:55+09:00\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2002-07-23 21:55+09:00\n"
"Last-Translator: Budi Rachmanto <rac@linux-mandrake.com>\n"
"Language-Team: Bahasa Indonesia <id@li.org>\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=iso-8859-1\n"
+"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 0.6\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Konfigurasikan semua head secara terpisah"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kb"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Gunakan ekstensi Xinerama"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kb"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Konfigurasi kartu \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB atau lebih"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Pilih server X"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "Server X"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Konfigurasi head majemuk"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -43,41 +74,44 @@ msgstr ""
"Sistem Anda mendukung konfigurasi head majemuk.\n"
"Apa yg ingin Anda lakukan?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Kartu grafis"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Pilih memori kartu grafis Anda"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Pilih kartu grafis"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "Konfigurasi XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Pilih server X"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Konfigurasi XFree mana yang Anda inginkan?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "Server X"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Konfigurasikan semua head secara terpisah"
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Pilih driver X"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Gunakan ekstensi Xinerama"
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "Driver X"
+#: ../../Xconfig/card.pm_.c:379
+#, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Konfigurasikan hanya kartu \"%s\"%s"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Konfigurasi XFree mana yang Anda inginkan?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s dengan akselerasi hardware 3D"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -87,32 +121,17 @@ msgstr ""
"XFree %s.\n"
"Kartu Anda ini dapat dipakai pada XFree %s yg punya dukungan baik dalam 2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Kartu Anda dapat menggunakan akselerasi hardware 3D pada XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s dengan akselerasi hardware 3D"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Kartu Anda dapat menggunakan akselerasi hardware 3D pada XFree %s,\n"
-"NAMUN INI BARU DALAM TAHAP PERCOBAAN DAN DAPAT MEMBUAT KOMPUTER ANDA HANG."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s dengan akselerasi hardware 3D PERCOBAAN"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -123,31 +142,57 @@ msgstr ""
"NAMUN INI BARU DALAM TAHAP PERCOBAAN DAN DAPAT MEMBUAT KOMPUTER ANDA HANG.\n"
"Kartu Anda ini dapat digunakan XFree %s yang lebih baik dalam 2D."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Kartu Anda dapat menggunakan akselerasi hardware 3D pada XFree %s,\n"
+"NAMUN INI BARU DALAM TAHAP PERCOBAAN DAN DAPAT MEMBUAT KOMPUTER ANDA HANG."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (instalasi driver display)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Konfigurasi XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Pilih memori kartu grafis Anda"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Pilih opsi server"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Lakukan perubahan?\n"
+"Konfigurasi sekarang adalah:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Pilih monitor"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Customized"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Generik"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+msgid "Vendor"
+msgstr "Pembuat"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -169,511 +214,326 @@ msgstr ""
"Anda akan rusak berat.\n"
"Kalau Anda ragu, gunakan setting yang umum."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Laju refresh horisontal"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Laju refresh vertikal"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor tidak dikonfigurasi"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Kartu grafis belum dikonfigurasi"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Resolusi belum ditentukan"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Anda ingin tes konfigurasi ini?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Awas: tes kartu grafis ini dapat membekukan komputer Anda"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Tes konfigurasi"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 warna (8 bit)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"coba ubah beberapa parameter"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 ribu warna (15 bit)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Ada error:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 ribu warna (16 bit)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Tinggalkan dalam %d detik"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 juta warna (24 bit)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Setting sudah benar?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 milyar warna (32 bit)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Ada kesalahan, coba ubah beberapa parameter"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Resolusi"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Resolusi"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Pilih resolusi dan kedalaman warna"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Kartu grafis: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Server XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Tambahan"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Batal"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Mode Ahli"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Tunjukan seluruhnya"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Anda ingin tes konfigurasi ini?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Resolusi"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Tes konfigurasi"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Layout Keyboard: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Jenis Mouse: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Device Mouse: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "HorizSync Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "VertRefresh Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Kartu grafis: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Identifikasi kartu grafis: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Memori grafis: %s KB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Pilihan kedalaman warna: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Resolusi: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Server XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Driver XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Siap-siap konfigurasikan X "
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Apa yang akan Anda mau?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Ubah Monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Ubah kartu grafis"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Ubah Parameter Server"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Ubah Resolusi"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Lihat info"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
+msgstr "Antarmuka grafis saat startup"
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Tes lagi"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Keluar"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Lakukan perubahan?\n"
-"Konfigurasi sekarang adalah:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "X saat startup"
-
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
-"Saya bisa bikin komputermu akan menjalankan X saat booting.\n"
-"Anda mau fasilitas ini ?"
-
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Silakan masuk lagi ke %s untuk mengaktifkan perubahan"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Silakan log out dan tekan Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 warna (8 bits)"
+"Komputer Anda bisa diset agar menjalankan X saat booting.\n"
+"Anda mau fasilitas ini?"
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 ribu warna (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 ribu warna (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 juta warna (24 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 milyar warna (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kb"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kb"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB atau lebih"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "VGA Standar, 640x480 pada 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "VGA Super, 800x600 pada 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 Kompatibel, 1024x768 pada 87 Hz interlaced (no 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 pada 87 Hz interlaced, 800x600 pada 56 hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Extended Super VGA, 800x600 pada 60 Hz, 640x480 pada 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Non-Interlaced SVGA, 1024x768 pada 60 Hz, 800x600 pada 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "High Frequency SVGA, 1024x768 pada 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frequency yang dapat mencapai 1280x1024 pada 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frequency yang dapat mencapai 1280x1024 pada 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frequency yang dapat mencapai 1280x1024 pada 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor yang dapat mencapai 1600x1200 pada 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor yang dapat mencapai 1600x1200 pada 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Sektor pertama di partisi boot"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Sektor pertama di drive (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "Instalasi SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
-msgstr "Bootloader akan diinstall di mana?"
+msgstr "Bootloader akan diinstal di mana?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "Instalasi LILO/grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO dengan menu teks"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO dengan menu grafis"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Boot dari DOS/windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Parameter Bootloader utama"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Bootloader yang hendak digunakan"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Instalasi Bootloader"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Device boot"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (tidak bisa dipakai pada BIOS kuno)"
+msgstr "LBA (tak bisa dipakai pada BIOS kuno)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
-msgstr "Compact"
+msgstr "Kompak"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
-msgstr "compact"
+msgstr "kompak"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Mode video"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Delay sebelum boot ke image default"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Katasandi"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Katasandi (lagi)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Batasi parameter command line"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "batasi"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Hapus /tmp saat boot"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Ukuram RAM yg tepat (saya nemu %d MB)"
+msgstr "Ukuran RAM yg tepat (ditemukan %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Buat multi profil"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Berikan jumlah RAM dalam satuan MB"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Pilihan ``Batasi parameter command line'' tidak ada gunanya tanpa katasandi"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Silakan ulangi"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Katasandi tidak sama"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Pesan Init"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Delay Open Firmware"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Timeout Kernel Boot"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Aktifkan boot dari CD?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Aktifkan boot dari OF?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Default OS?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -687,83 +547,83 @@ msgstr ""
"\n"
"Di drive mana Anda boot?"
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Ini adalah entri yang lain lagi.\n"
"Anda boleh tambahkan atau mengubah yang sudah ada."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Tambah"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Selesai"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Modifikasi"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
-msgstr "Tipe entri mana yang hendak ditambahkan"
+msgstr "Tipe entri mana yang hendak ditambahkan?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "OS Lain (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "OS Lain (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
-msgstr "OS Lain (windows...)"
+msgstr "OS Lain (Mindows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Image"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Sambung"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Read-write"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabel"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Tak aman"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Label"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Default"
@@ -795,53 +655,77 @@ msgstr "Anda harus tentukan partisi swap"
msgid "This label is already used"
msgstr "Label ini sudah dipakai"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
-msgstr "Ketemu interface %s %s"
+msgstr "Ditemukan interface %s %s"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Anda punya lagi?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
-msgstr "Punya %s interface?"
+msgstr "Punya antarmuka %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Tidak"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Ya"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Lihat info hardware"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
-msgstr "Menginstall driver untuk card %s %s"
+msgstr "Menginstal driver untuk kartu %s %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+"Anda dapat memberikan opsi terhadap modul %s.\n"
+"Ingat, semua alamat harus diisikan dengan awalan 0x misalnya '0x123'"
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Silakan beri parameter untuk modul %s ini.\n"
+"Parameter biasanya dalam format ``nama=nilai nama2=nilai2...''.\n"
+"Misalnya, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Pilihan Modul:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
-msgstr "Driver %s mana yang hendak saya coba?"
+msgstr "Driver %s mana yang harus saya coba?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -852,45 +736,20 @@ msgid ""
"should\n"
"not cause any damage."
msgstr ""
-"Kadangkala, driver %s butuh informasi tambahan agar dapat bekerja normal\n"
-"walaupun kadangkala juga ini tidak perlu. Nah, apakah Anda ingin untuk\n"
-"memberikan parameter tambahan tadi atau biarkan saja drivernya melakukan\n"
-"deteksi sendiri parameternya? Biasanya, autodetek akan membuat kompputer\n"
-"jadi hengki (baca: hang), tapi biasanya sih tak ngerusak hardwarenya."
+"Kadangkala, driver %s butuh info tambahan agar dapat bekerja normal walau\n"
+"biasanya tak perlu. Inginkah Anda memberikan parameter tambahan tadi atau\n"
+"biarkan saja drivernya melakukan deteksi sendiri parameternya? Deteksi\n"
+"otomatis bisa membuat komputer hang), tapi tak merusak."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Probe otomatis"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Tentukan opsi"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"Anda dapat memberikan opsi terhadap modul %s.\n"
-"Ingat, semua alamat harus diisikan dengan awalan 0x misalnya '0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Silakan beri parameter untuk modul %s ini.\n"
-"Parameter biasanya dalam format ``nama=nilai nama2=nilai2...''.\n"
-"Misalnya, ``io=0x300 irq=8''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Pilihan Modul:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -899,49 +758,53 @@ msgstr ""
"Module %s gagal diload.\n"
"Mau coba lagi dengan parameter yang lain?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "akses ke program X"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "akses ke peralatan rpm"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "izinkan \"su\""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "akses ke file administratif"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(sudah ditambahkan %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Katasandi ini terlalu sederhana"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Silakan tulis nama user"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Nama user hanya boleh terdiri dari huruf, angka, `-' dan `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+msgid "The user name is too long"
+msgstr "Nama user terlalu panjang"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "User ini sudah ada sebelumnya"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Tambah user"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -950,32 +813,32 @@ msgstr ""
"Masukkan user\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Buat user"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Nama Lengkap"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Nama user"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Ikon"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -983,87 +846,72 @@ msgstr ""
"Komputer Anda dapat diset agar secara otomatis login dg satu user.\n"
"Anda ingin pakai feature ini?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Pilih user default:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Pilih manajer window yg akan dipakai:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Pilih bahasan yg akan dipakai."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr "Anda bisa pilih bahasa lain yang akan tersedia setelah install selesai"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Semua"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Izinkan semua user"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Customized"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "Tiada pemakaian bersama"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Paket %s perlu diupgrade. Anda ingin instal?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr "Anda dapat mengekspor dg NFS atau Samba. Mana yg Anda ingin"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
+msgstr "Anda dapat mengekspor dg NFS atau Samba. Pilih yg Anda ingin."
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Paket wajib %s hilang"
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
+"Bolehkah user mengekspor direktori di home mereka?\n"
+"Jika diizinkan, user akan dapat meng-klik \"Share\" di konqueror and "
+"nautilus.\n"
+"\n"
+"\"Custom\" memungkinkan tuning masing-masing user.\n"
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Batal"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr "Luncurkan userdrake"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -1071,31 +919,31 @@ msgstr ""
"Sharing per-user menggunakan grup \"fileshare\". \n"
"Anda dapat memakai userdrake utk menambah user di grup ini."
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Selamat Datang di Crackers"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Lemah"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Standar"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Kuat"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
msgstr "Lebih Kuat"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Pengecut"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1106,13 +954,13 @@ msgstr ""
"mesin yang terhubung ke mesin lain atau ke ke Internet. Tidak akan ada\n"
"akses katasandi."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr "Katasandi akan diaktifkan, tapi mohon jangan disambungkan ke jaringan."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1120,7 +968,7 @@ msgstr ""
"Ini adalah sekuriti standar, dianjurkan untuk komputer yang akan\n"
"terkoneksi ke Internet sebagai klien."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1128,50 +976,51 @@ msgstr ""
"Sudah ada beberapa batasan, dan beberapa pengecekan otomatis berjalan tiap "
"malam."
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Dengan level sekuriti ini, sistem akan dapat digunakan sebagai server.\n"
"Sekuriti kini cukup tinggi untuk dapat melayani koneksi banyak klien.\n"
"Jika mesin Anda hanya berfungsi sebagai klien, pilihlah level lebih rendah."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Sama dengan level sebelumnya, tapi sistem sepenuhnya ditutup.\n"
"Fitur sekuriti maksimum."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Pilih Tingkat Security"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Tingkat keamanan"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Gunakan libsafe utk server"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr "Library penahan serangan string format dan overflow buffer"
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr "Admin Keamanan (login / email)"
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1196,73 +1045,77 @@ 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_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Selamat datang di sang pemilih sistem operasi, GRUB"
#. -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_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Gunakan tombol %c dan %c untuk memilih entri yang disorot"
#. -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_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Tekan enter untuk memboot OS yang terpilih, atau tekan 'e' untuk edit"
#. -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_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "perintah sebelum booting, atau 'c' untuk command line."
#. -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_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Entri yang dipilih akan diboot secara otomatis dalam %d detik."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
-msgstr "Waah /boot tak cukup spacenya nih"
+msgstr "tak cukup ruang di /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Anda tak dapat menginstal bootloader pada partisi %s\n"
#: ../../bootlook.pm_.c:46
msgid "no help implemented yet.\n"
-msgstr " belom ada help-nya nih.\n"
+msgstr "belum ada help.\n"
#: ../../bootlook.pm_.c:62
msgid "Boot Style Configuration"
msgstr "Konfigurasi Tipe Boot"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_File"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/File/_Keluar"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1297,12 +1150,12 @@ msgstr "mode Yaboot"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr "Manajer Boot: %s. Klik Configure untuk memanggil ahli setup."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Konfigurasikan"
@@ -1312,7 +1165,7 @@ msgid "System mode"
msgstr "Mode sistem"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Jalankan X-Window saat sistem dimulai"
#: ../../bootlook.pm_.c:148
@@ -1323,21 +1176,23 @@ msgstr "Tidak, saya tak mau autologin"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ya, saya mau autologin dg (user,desktop) ini"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "OK"
#: ../../bootlook.pm_.c:229
#, c-format
msgid "can not open /etc/inittab for reading: %s"
-msgstr "gagal baca file /etc/inittab nih: %s"
+msgstr "gagal baca file /etc/inittab: %s"
#: ../../common.pm_.c:94
msgid "GB"
@@ -1378,7 +1233,7 @@ msgstr "Gagal membuat screenshot sebelum buat partisi"
msgid "Screenshots will be available after install in %s"
msgstr "Screenshot akan tersedia setelah instal di %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Perancis"
@@ -1386,7 +1241,7 @@ msgstr "Perancis"
msgid "Costa Rica"
msgstr "Costa Rica"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Belgia"
@@ -1410,11 +1265,12 @@ msgstr "Norwegia"
msgid "Sweden"
msgstr "Swedia"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Belanda"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "Itali"
@@ -1422,7 +1278,7 @@ msgstr "Itali"
msgid "Austria"
msgstr "Austria"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "Amerika Serikat"
@@ -1430,8 +1286,8 @@ msgstr "Amerika Serikat"
msgid "Please make a backup of your data first"
msgstr "Lebih dulu buatlah backup data Anda"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Baca dengan seksama!"
@@ -1443,11 +1299,12 @@ msgid ""
msgstr ""
"Jika Anda ingin pakai aboot, sisakan ruang (cukup 2048 sektor) di awal disk"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Ada Kesalahan"
@@ -1455,11 +1312,11 @@ msgstr "Ada Kesalahan"
msgid "Wizard"
msgstr "Wizard"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Pilih aksi"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1471,175 +1328,180 @@ msgstr ""
"Disarankan utk mengubah ukuran partisi ini\n"
"(klik di situ, lalu pilih \"Ubah ukuran\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Silakan pilih partisi"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Detil"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "FS terjournal"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Kosong"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Lainnya"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Tipe filesystem:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Buat"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tipe"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Gunakan ``%s'' saja"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Hapus"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Gunakan ``unmount'' terlebih dahulu"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Setelah mengganti tipe partisi %s, semua data pada partisi ini akan hilang"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Pilih partisi"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Pilih partisi lain"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Keluar"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Ubah ke modus ahli"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Ubah ke modus normal"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Kembali"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Jalan terus?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Keluar tanpa menyimpan"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Keluar dari program tanpa menyimpan dalam tabel partisi?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "Ingin simpan modifikasi /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Alokasi otomatis"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Hapus semua"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Tambahan"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "Info hard drive"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Semua partisi primary telah digunakan"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Partisi tak dapat ditambah"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr ""
"Untuk menambahkan partisi, hapus satu agar dapat membuat partisi extended"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "Simpan tabel partisi"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "Kembalikan tabel partisi"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Selamatkan tabel partisi"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "Muat ulang tabel partisi"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "Mount otomatis media lepas"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Pilih file"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1647,11 +1509,11 @@ msgstr ""
"Backup tabel partisi tidak memiliki ukuran yg sama\n"
"Jalan terus?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Awas"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1659,248 +1521,260 @@ msgstr ""
"Masukkan disket ke drive\n"
"semua data di disket ini akan hilang"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Sedang mencoba menyelamatkan tabel partisi"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Info detil"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Posisi mount"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Pilihan"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Ubah ukuran"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Pindah"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Format"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Mount"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Tambahkan ke RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Tambahkan ke LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Unmount"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Hapus dari RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Hapus dari LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Ganti RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "digunakan untuk loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Membuat partisi baru"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Sektor awal: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Ukuran dalam MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Tipe filesystem: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Posisi mount: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Kesukaan: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+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/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "Hapus file loopback?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Mengubah tipe partisi"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Filesystem apa yang Anda inginkan?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Pindah dari ext2 ke ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
-msgstr "Device loopback %s akan di mount ke mana?"
+msgstr "Device loopback %s akan dimount ke mana?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
-msgstr "Mount device %s akan di mount ke mana?"
+msgstr "Mount device %s akan dimount ke mana?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
"Tak bisa unset mount point karena partisi ini sudah digunakan untuk\n"
-"loopback. Hapus dulu loopbacknya kalau mau begitu."
+"loopback. Hapus dulu loopbacknya."
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
-msgstr "Sedang menghitung bound filesystem fat"
+msgstr "Sedang menghitung bound filesystem FAT"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Sedang mengubah ukuran"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Ukuran partisi ini tidak dapat diubah"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
-msgstr "semua data pada partisi ini sebaiknya dibackup dulu"
+msgstr "Semua data pada partisi ini sebaiknya dibackup dulu"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Sehabis meresize partisi %s, semua data pada partisi ini akan hilang"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Pilih ukuran baru"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Ukuran baru dalam MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Disk mana yang hendak dipindah?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Sektor mana yang hendak dipindah"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Pindah"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Memindahkan partisi..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Pilih RAID yang ada untuk ditambahkan ke"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "baru"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Pilih LVM yang ada untuk ditambahkan ke"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "nama LVM?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Partisi ini tak bisa dipakai sebagai loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Nama file loopback: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Berikan nama file"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "File sudah digunakan loopback yang lain, pilih yang lainnya dong"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "File sudah ada. Gunakan file ini ?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Opsi mount"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Macam-macam"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "device"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "level"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "ukuran chunk"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
-msgstr "Hati-hati nih: operasi ini sangat berbuahayyya"
+msgstr "Hati-hati: operasi ini berbahaya"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Tipe partisi apa yang hendak digunakan?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Perlu paket %s. Anda ingin instal?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1911,7 +1785,7 @@ msgstr ""
"Kalau Anda pakai LILO dan tak jalan, atau Anda tak mau LILO dan tak mau /"
"boot juga"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1922,7 +1796,7 @@ msgstr ""
"dan Anda tidak memiliki partisi /boot. Apabila Anda akan menggunakan lilo\n"
"(boot manager), hati-hati dalam menambahkan partisi /boot"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1932,129 +1806,129 @@ msgstr ""
"Sekarang bootloader tak ada yang bisa handel tanpa partisi /boot.\n"
"Jadi hati-hati dalam menambahkan partisi /boot"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Tabel partisi pada drive %s akan ditulis ke disk!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Anda harus reboot agar perubahan tabel partisi dapat berlaku"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Sehabis memformat partisi %s semua data pada partisi ini akan hilang"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Sedang memformat"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Sekarang sedang memformat file loopback %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Melakukan format partisi %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Sembunyikan file"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Pindah file ke partisi baru"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"Direktori %s telah berisi data\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "Pindah file ke partisi baru"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Salin %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Hapus %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "partisi %s sekarang jadi %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Device: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS letter: %s (hanya tebakan)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Tipe: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Nama: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Mulai: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Ukuran: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sektor"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Silinder %d sampai %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Telah diformat\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Belum diformat\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Telah di-mount\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2063,7 +1937,7 @@ msgstr ""
"File loopback:\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2071,27 +1945,27 @@ msgstr ""
"Partisi di-boot secara default\n"
" (untuk MS-DOS boot, bukan untuk lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Level %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Ukuran chunk %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "Disk RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Nama file loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2100,10 +1974,10 @@ msgid ""
msgstr ""
"\n"
"Mungkin partisi ini adalah \n"
-"partisi driver, jadi sebaiknya\n"
-"jangan diapa-apain deh.\n"
+"partisi Driver, sebaiknya\n"
+"biarkan begitu saja.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2115,62 +1989,62 @@ msgstr ""
"yang khusus digunakan \n"
"oleh sistem dual boot.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Ukuran: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Ukuran: %s silinber, %s head, %s sektor\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "Disk LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partisi tipe: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
-msgid "on bus %d id %d\n"
-msgstr "pada bus %d id %d\n"
+msgid "on channel %d id %d\n"
+msgstr "pada kanal %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Pilihan: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "Kunci sandi sistem file"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "Pilih kunci sandi sistem file Anda"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Katasandi ini terlalu mudah (harus paling tidak %d karakter)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "Kunci sandi tak cocok"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "Kunci sandi"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "Kunci sandi (lagi)"
@@ -2179,35 +2053,60 @@ msgid "Change type"
msgstr "Ubah tipe"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Klik salah satu media"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr "Gagal login dg nama user %s (katakunci salah?)"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+msgid "Domain Authentication Required"
+msgstr "Otentikasi Domain Dibutuhkan"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Another one"
+msgstr "Yang lain"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Which username"
+msgstr "Nama user yang mana"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr "Masukkan nama user, katakunci dan nama domain utk mengakses host ini."
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+msgid "Username"
+msgstr "Nama user"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+msgid "Domain"
+msgstr "Domain"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "Cari Server"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s proses format dari %s gagal"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "tidak bisa melakukan format %s dengan tipe %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "penyambungan partisi %s ke direktori %s gagal"
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck gagal dg kode keluar %d / sinyal %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "error melepas mount %s: %s"
@@ -2224,66 +2123,310 @@ msgstr "dengan /usr"
msgid "server"
msgstr "server"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "JFS tak dapat dipakai utk partisi berukuran di bawah 16MB"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "ReiserFS tak dapat dipakai utk partisi berukuran di bawah 32MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Mount point harus diawali dengan /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Partisi dengan titik mount %s sudah ada\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Anda tak dapat menggunakan LVM Logical Volume untuk titik mount %s."
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Direktori ini harus ada di filesystem root"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
-msgstr "Anda perlu filesystem yg benar (ext2, reiserfs) utk titik mount ini\n"
+#: ../../fsedit.pm_.c:500
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
+msgstr ""
+"Anda perlu filesystem yg benar (ext2, reiserfs, xfs, atau jfs) utk titik "
+"mount ini\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Anda tak dapat menggunakan sistem file bersandi utk mount point %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "Tak cukup ruangan untuk alokasi otomatis"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr "Tiada yang dikerjakan"
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "error membuka file %s untuk ditulisi: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Error - tidak ada device yang valid untuk membuat filesystem baru. Periksa "
"kembali hardware untuk mencari penyebabnya"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Anda tak punya partisi!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+msgid "Auto-detect"
+msgstr "Deteksi otomatis"
+
+#: ../../harddrake/bttv.pm_.c:64
+msgid "Unknown|Generic"
+msgstr "Takdikenal|Generik"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr "Takdikenal|CPH05X (bt878) [banyak pembuat]"
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr "Takdikenal|CPH06X (bt878) [banyak vendors]"
+
+#: ../../harddrake/bttv.pm_.c:193
+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 ""
+"Pada kartu TV modern umumnya, modul bttv kernel GNU/Linux otomatis "
+"mendeteksi parameter yg benar.\n"
+"Jika kartu Anda tak terdeteksi, pilihlah tuner dan tipe kartu di sini. Pilih "
+"parameter kartu tv Anda jika perlu"
+
+#: ../../harddrake/bttv.pm_.c:196
+msgid "Card model :"
+msgstr "Model kartu :"
+
+#: ../../harddrake/bttv.pm_.c:197
+msgid "PLL setting :"
+msgstr "setting PLL :"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr "Jumlah buffer penangkap :"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr "Jumlah buffer penangkap utk penangkapan mmap"
+
+#: ../../harddrake/bttv.pm_.c:199
+msgid "Tuner type :"
+msgstr "Tipe tuner :"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr "Support radio :"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr "aktifkan support radio"
+
+#: ../../harddrake/ui.pm_.c:12
+msgid "/_Quit"
+msgstr "/_Keluar"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Tolong"
+
+#: ../../harddrake/ui.pm_.c:14
+msgid "/_Help..."
+msgstr "/_Tolong..."
+
+#: ../../harddrake/ui.pm_.c:15
+msgid "/_About..."
+msgstr "/_About..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Modul"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Model kartu :"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Batal"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr "Bus"
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "Module"
+msgstr "Modul"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr "Kelas media"
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Keterangan"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+msgid "Bus identification"
+msgstr "Identifikasi bus"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr "Lokasi di bus"
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Pilih file"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Device gateway"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 tombol"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+msgid "Harddrake2 version "
+msgstr "Harddrake2 versi "
+
+#: ../../harddrake/ui.pm_.c:122
+msgid "Detected hardware"
+msgstr "Hardware terdeteksi"
+
+#: ../../harddrake/ui.pm_.c:136
+msgid "Informations"
+msgstr "Info"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr "Jalankan alat konfigurasi"
+
+#: ../../harddrake/ui.pm_.c:158
+msgid "Configure module"
+msgstr "Konfigurasi modul"
+
+#: ../../harddrake/ui.pm_.c:168
+msgid "Detection in progress"
+msgstr "Pendeteksian sedang berjalan"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Tunggulah"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr "primer"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "secondary"
+msgstr "sekunder"
+
+#: ../../harddrake/ui.pm_.c:260
+#, c-format
+msgid "Running \"%s\" ..."
+msgstr "Jalankan \"%s\"..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr "Tentang Harddrake"
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+"Inilah HardDrake, alat konfigurasi hardware Mandrake.\n"
+"Versi:"
+
+#: ../../harddrake/ui.pm_.c:281
+msgid "Author:"
+msgstr "Pengarang:"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr "Pertolongan Harddrake"
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2297,7 +2440,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2423,9 +2566,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2744,7 +2886,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2756,9 +2898,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2823,21 +2964,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2853,9 +2993,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Pada tahap ini, pilihlah tempat Mandrake Linux akan diinstal di harddisk.\n"
"Bila harddisk masih kosong / ada sistem operasi lain yg mengisi seluruhnya,\n"
@@ -2931,9 +3071,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3116,38 +3255,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3307,11 +3440,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3362,7 +3495,7 @@ msgstr ""
"Bbrp pertanyaan sulit dijawab jika Anda tak berpengetahuan kuat tentang\n"
"GNU/Linux. Jangan pilih kelas ini kecuali Anda tahu apa yang Anda lakukan."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3386,7 +3519,7 @@ msgstr ""
"\n"
"Klik \"Lagi\" utk menampilkan daftar lengkap keyboard ter-support."
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3411,7 +3544,7 @@ msgstr ""
"Anda dapat menginstal banyak bahasa. Setelah Anda selesai memilih tambahan\n"
"bahasa (locale) klik \"OK\" untuk melanjutkan."
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3436,7 +3569,7 @@ msgstr ""
"mouse. Gunakan tombol dan roda untuk verifikasi setting. Jika mouse tak\n"
"bekerja baik tekan spasi atau RETURN untuk \"Batal\" dan pilih lagi."
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3444,23 +3577,23 @@ msgstr ""
"Pilih port yang benar. Misalnya \"COM1\" di Mindows bernama \"ttyS0\" di \n"
"GNU/Linux."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3512,7 +3645,7 @@ msgstr ""
"Jika komputer Anda tak terhubung dengan jaringan terkelola, pilihlah\n"
"\"File lokal\" untuk otentikasi."
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3534,7 +3667,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3542,7 +3675,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3602,7 +3735,7 @@ msgstr ""
"membuat masukan baru; dan \"Selesai\" membawa Anda ke tahap instalasi\n"
"berikutnya."
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3624,7 +3757,7 @@ msgstr ""
"Anda dapat menghapus entrinya. Tapi untuk bisa masuk ke sistem operasi tsb.\n"
"Anda perlu bootdisk nantinya."
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3637,29 +3770,28 @@ msgstr ""
"\n"
"Kalau Anda kurang tahu, pilih saja \"Sektor pertama di drive (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3693,7 +3825,7 @@ msgstr ""
"gunakan lprNG. Jika tidak, pilihlah CUPS sebab lebih mudah dan bekerja baik\n"
"di network."
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3718,7 +3850,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"DrakX sedang mendeteksi perangkat IDE komputer Anda, juga men-scan kartu\n"
@@ -3743,7 +3875,7 @@ msgstr ""
"dari dokumentasi hardware, website pabrik (jika Anda punya akses Internet)\n"
"atau wicrosoft mindows (jika Anda memakai hardware ini di windows)."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3753,9 +3885,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3767,7 +3898,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" 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"
@@ -3833,7 +3964,7 @@ msgstr ""
"prompt yaboot. Entri ini juga akan ditandai \"*\" jika Anda menekan [Tab]\n"
"untuk melihat pilihan boot."
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3860,9 +3991,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -3896,10 +4026,10 @@ msgstr ""
" * OS Standar: Anda dapat memilih OS yang akan diboot secara default saat\n"
"delay Open Firmware terlampaui."
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3907,12 +4037,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3951,7 +4080,7 @@ msgstr ""
" * \"Kartu ISDN\": kartu ISDN yg terdeteksi di sistem Anda akan ditampilkan\n"
"di sini. Anda dapat meng-klik tombol utk mengubah parameternya."
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -3961,7 +4090,7 @@ msgstr ""
"Linux Mandrake. Hati-hati, semua data di situ akan hilang dan\n"
"tak dapat dikembalikan seperti semula!"
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3978,7 +4107,7 @@ msgstr ""
"Pilih \"Batal\" utk membatalkan aksi ini tanpa kehilangan data dan partisi\n"
"yang ada dalam hard drive ini."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3989,12 +4118,12 @@ msgstr ""
"berarti bahwa disket boot Anda tak sinkron dengan media instalasi (buatlah "
"disket boot baru"
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr "Anda harus juga memformat %s"
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4016,20 +4145,20 @@ msgstr ""
"\n"
"Jadi instal server ini?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "Tanpa domain NIS, broadcast tak dapat dipakai"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Masukkan disket yang sudah diformat dengan tipe FAT di drive %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
-msgstr "Disketnya belum diformat dengan sistem FAT"
+msgstr "Disket ini tak diformat dengan sistem FAT"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4037,7 +4166,7 @@ msgstr ""
"Untuk menggunakan pilihan paket yang sudah disimpan sebelumnya, bootlah "
"instalasi dengan pilihan ''linux defcfg=floppy''"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Error saat membaca file %s"
@@ -4048,7 +4177,7 @@ msgid ""
"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
"You can find some information about them at: %s"
msgstr ""
-"Ada hardwaare di komputer ini yang membutuhkan driver ``proprietary''.\n"
+"Ada hardware di komputer ini yang membutuhkan driver ``proprietary''.\n"
"Anda bisa mencari informasinya di: %s"
#: ../../install_interactive.pm_.c:58
@@ -4067,7 +4196,7 @@ msgstr "Anda harus buat partisi swap"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -4075,59 +4204,59 @@ msgstr ""
"\n"
"Jalan terus?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Anda harus punya partisi FAT termount pada /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Pakai ruang kosong"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Tidak ada cukup ruangan untuk mengalokasikan partisi baru"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Pakai partisi yang sudah ada"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Tidak ada partisi yang bisa digunakan"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Gunakan partisi windows untuk loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Partisi mana yang hendak dipakai oleh Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Pilih ukurannya"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Ukuran partisi root dalam MB: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Ukuran partisi swap dalam MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Pakai ruang kosong pada partisi windows"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "partisi mana yang mau Anda ubah ukurannya?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
-msgstr "Sedang menghitung bound filesystem windows"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
+msgstr "Sedang menghitung bound sistem file Mindows"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4136,12 +4265,15 @@ msgstr ""
"Saya tidak dapat mengubah ukuran partisi FAT ini,\n"
"Ada error ini yang terjadi: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
-msgstr "Partisi windows Anda terlalu terfragmen, jalankan ``defrag'' dulu"
-
#: ../../install_interactive.pm_.c:137
msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
+msgstr "Partisi Mindows Anda terlalu terfragmen, jalankan ``defrag'' dulu"
+
+#: ../../install_interactive.pm_.c:138
+msgid ""
"WARNING!\n"
"\n"
"DrakX will now resize your Windows partition. Be careful:\n"
@@ -4159,120 +4291,120 @@ msgstr ""
"jalankan scandisk (dan defrag juga) di partisi ini lalu backup datanya.\n"
"Setelah yakin, tekan Ok."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
-msgstr "Tentukan ukuran untuk menyimpan windows"
-
#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
+msgstr "Tentukan ukuran untuk menyimpan Mindows"
+
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "Partisi %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Resize FAT gagal: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Tidak ada partisi FAT untuk diubah ukurannya atau untuk digunakan sebagai "
"loopback (atau tidak ada cukup ruangan)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Hapus seluruh disk"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
-msgstr "Buang windows"
+msgstr "Buang Mindows"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Anda punya beberapa harddisk, yang mana yang ingin di-instal linux?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "SEMUA partisi yang ada beserta data pada drive %s akan hilang"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Lakukan partisi disk secara custom"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "gunakan fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, don't forget to save using `w'"
msgstr ""
-"Anda bisa buat partisi %s \n"
-"Habis itu, jangan lupa simpan dengan menekan tombol `w'"
+"Anda kini dapat membuat partisi %s. \n"
+"Ketika selesai jangan lupa simpan dengan menekan tombol `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
-msgstr "Eh, Anda tak punya cukup ruangan pada partisi windows!"
+msgstr "Anda tak punya cukup ruangan pada partisi Mindows!"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
-msgstr "Aduh, ruangannya tak cukup nih untuk menginstall"
+msgstr "Tiada ruang untuk instalasi"
#: ../../install_interactive.pm_.c:246
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Wizard partisi DrakX menemukan solusi berikut:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Proses partisi gagal: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
-msgstr "Up-kan Jaringan"
+msgstr "Aktifkan jaringan"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
-msgstr "Matikan Jaringan"
+msgstr "Matikan jaringan"
#: ../../install_steps.pm_.c:76
msgid ""
"An error occurred, but I don't know how to handle it nicely.\n"
"Continue at your own risk."
msgstr ""
-"Ada error nih, tapi aku tak tahu cara mengatasinya.\n"
-"Lanjutkan saja, tapi resiko tanggung sendiri yah."
+"Ada error, tapi cara mengatasinya tak diketahui.\n"
+"Jalan terus tapi resiko tanggung sendiri."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Lokasi mount %s ada dua"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
"\"\n"
msgstr ""
-"Ada paket yang penting tak benar diinstalnya.\n"
-"Mungkin saja drive cdrom atau cdromnya yang rusak.\n"
-"Cek dulu cdromnya di komputer yang sudah terinstall Linux dengan\n"
-"perintah \"rpm -qpl Mandrake/RPMS/*.rpm\" dulu gih\n"
+"Ada paket penting yang tak benar diinstal.\n"
+"Mungkin drive cdrom atau cdromnya yang rusak.\n"
+"Cek dulu cdromnya di komputer yang sudah terinstal Linux dengan\n"
+"perintah \"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Selamat Datang di %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
-msgstr "Wah maaf nih, tak ada floppy drive yah ?"
+msgstr "Tidak ada floppy drive"
#: ../../install_steps_auto_install.pm_.c:76
#: ../../install_steps_stdio.pm_.c:22
@@ -4280,9 +4412,9 @@ msgstr "Wah maaf nih, tak ada floppy drive yah ?"
msgid "Entering step `%s'\n"
msgstr "Memulai langkah `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4291,200 +4423,152 @@ msgstr ""
"Linux-Mandrake. Cobalah instalasi text. Untuk hal ini silakan\n"
"tekan `F1' saat booting pada CDROM, lalu ketikkan `text'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
-msgstr "Kelas Instal"
+msgstr "Kelas Instalasi"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr "Pilihlah kelas instalasi berikut:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Ukuran total grup yang dipilih kira-kira %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Kalau Anda mau nginstall dengan ukuran yang lebih kecil dari ini,\n"
-"pilih dulu persentase paket yang hendak diinstall.\n"
-"\n"
-"Persentasi kecil berarti akan install paket yang penting-penting saja;\n"
-"dan sebaliknya persentase 100%% akan install semua paket yang tadi sudah\n"
-"dipilih"
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Anda punya hard disk cuma cukup untuk sekitar %d%% dari seluruh paketini.\n"
-"\n"
-"Kalau Anda mau nginstall dengan ukuran yang lebih kecil dari ini,\n"
-"pilih dulu persentase paket yang hendak diinstall.\n"
-"Persentasi kecil berarti akan install paket yang penting-penting saja;\n"
-"dan sebaliknya persentase %d%% akan install paket yang tadi sudah\n"
-"dipilih sebanyak-banyaknya"
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Anda akan bisa memilih dengan lebih lengkap nanti"
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Persentase paket yang akan diinstall"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Pilihan Grup Paket"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Pilih paket sendiri"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ukuran total: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
-msgstr "Paket Error"
+msgstr "Paket buruk"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Nama: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Versi: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Ukuran: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
-msgstr "Derajat: %s\n"
+msgstr "Derajat kepentingan: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
-msgstr ""
-"Anda tak bisa pilih paket ini sebab tak ada ruang kosong untuk menginstallnya"
+msgstr "Paket ini tak dapat dipilih sebab tak ada ruang untuk menginstalnya"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
-msgstr "Paket ini yang akan diinstall"
+msgstr "Paket berikut akan diinstal"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
-msgstr "Paket berikut adalah yang akan dihapus"
+msgstr "Paket berikut akan dihapus"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Anda tak bisa pilih/buang paket ini"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
-msgstr "Paket ini harus diinstall, tak bisa dibuang"
+msgstr "Paket ini harus diinstal, tak bisa dibuang"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
-msgstr "Anda tak bisa buang paket ini, sebab dia sudah diinstall"
+msgstr "Anda tak bisa buang paket ini, sebab dia sudah diinstal"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Paket ini mesti diupgrade\n"
"Benar tak mau dipilih?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Anda tak bisa buang paket ini. dia mesti diupgrade"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Tunjukkan paket yang sudah dipilih secara otomatis"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Instal"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Muat/Simpan di floppy"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "Update pilihan paket"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "Instalasi minimal"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Pilih paket yang akan diinstal"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Instalasi"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Perkiraan"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
-msgstr "Sisa waktu "
+msgstr "Sisa waktu"
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
-msgstr "Tunggu ya, saya sedang menyiapkan instalasi"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
+msgstr "Tunggu, instalasi sedang disiapkan..."
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d paket"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
-msgstr "Sedang instal paket %s"
+msgstr "Instalasi paket %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Terima"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Tolak"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4493,25 +4577,24 @@ msgid ""
"done.\n"
"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
-"Ganti CDROM!\n"
+"Ganti Cd-Rom!\n"
"\n"
-"Silakan masukkan CDROM berlabel \"%s\" di drive Anda dan tekan OK\n"
-"Kalau Anda tak punya CDROM ini, tekan Batal aja untuk membatalkan instalasi "
-"dari CD ini."
+"Masukkan Cd-Rom berlabel \"%s\" ke drive dan tekan Ok. Jika Anda tak punya,\n"
+"tekan Batal untuk menghindari instalasi dari Cd-Rom ini."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
-msgstr "Cuek aja?"
+msgstr "Jalan terus?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
-msgstr "Ada error mengurutkan paket"
+msgstr "Ada error mengurutkan paket:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
-msgstr "Ada error saat menginstall paket"
+msgstr "Ada error saat instalasi paket:"
#: ../../install_steps_interactive.pm_.c:10
msgid ""
@@ -4587,11 +4670,11 @@ msgstr "Ada error"
msgid "Do you really want to leave the installation?"
msgstr "Anda ingin tinggalkan instalasi?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Persetujuan Lisensi"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4606,7 +4689,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -4724,7 +4807,7 @@ msgstr ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -4829,121 +4912,125 @@ msgstr ""
"Paris - France.\n"
"For any question on this document, please contact MandrakeSoft S.A. \n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr "Benarkah Anda menolak lisensi?"
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Keyboard"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "Pilih layout keyboard Anda"
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Ini adalah daftar keyboard yang tersedia"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Kelas instalasi yang anda diinginkan?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Instal/Update"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Akan instal atau update?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Disarankan"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Ahli"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "Upgrade"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "Hanya upgrade paket"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Pilihlah tipe mouse Anda."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Port Mouse"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Di serial port mana mouse Anda dicolokkan ?"
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Emulasi tombol"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
-msgstr "Emulasi 2 tombol"
+msgstr "Emulasi tombol 2"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Emulasi tombol 3"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Konfigurasikan card PCMCIA"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
-msgstr "konfigurasi IDE"
+msgstr "Konfigurasi IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "Tidak ada partisi"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Mendeteksi partisi untuk mencari lokasi mount"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Pilih lokasi mount"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
msgstr ""
-"Saya tak bisa baca tabel partisi, udah hancur lebur nih :(\n"
-"Aku akan coba hapus partisi yg jeleknya (SEMUA DATA akan HILANG).\n"
-"Solusi lainnya adalah jangan biarkan saya memodifikasi tabel partisi.\n"
+"Tabel partisi rusak tak terbaca :(\n"
+"Partisi buruk dapat dicoba dihapus (SEMUA DATA AKAN HILANG!).\n"
+"Solusi lainnya adalah melarang DrakX memodifikasi tabel partisi.\n"
"(pesan errornya adalah %s)\n"
"\n"
"Anda setuju untuk menghapus semua partisi?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4951,7 +5038,7 @@ msgstr ""
"DiskDrake gagal membaca tabel partisi Anda.\n"
"Lanjutkan tapi resiko tanggung sendiri!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -4959,73 +5046,74 @@ msgstr ""
"Tiada ruang 1MB utk bootstrap! Instal akan berlanjut, tetapi utk mem-boot "
"sistem, Anda perlu membuat partisi bootstrap di DiskDrake"
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
-msgstr "Tiada partisi root tertemukam utk upgrade"
+msgstr "Tiada partisi root ditemukam utk upgrade"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Partisi root"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Manakah partisi root (/) di sistem Anda?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
-msgstr "Anda harus reboot agar perubahan table partisi dapat berlaku"
+msgstr "Anda harus reboot agar perubahan tabel partisi dapat berlaku"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Pilih partisi yang akan diformat"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Periksa bad blok?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Melakukan format partisi"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Membuat dan memformat file %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr "Instalasi tidak bisa diteruskan karena swap kurang, tambahin dong"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
-msgstr "Sedang mencari paket yang tersedia"
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr "Instalasi tak dapat diteruskan karena swap kurang, tambahkan"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
-msgstr "Mencari paket untuk diupgrade"
+#: ../../install_steps_interactive.pm_.c:490
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Sedang mencari paket yg tersedia dan bangun ulang database rpm..."
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
-msgstr "Sistem ini tak punya cukup space untuk install atawa upgrade (%d > %d)"
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
+msgstr "Sedang mencari paket yang tersedia..."
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Lengkap (%dMB)"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
+msgstr "Mencari paket untuk diupgrade"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimum (%dMB)"
+#: ../../install_steps_interactive.pm_.c:498
+msgid "Looking at packages already installed..."
+msgstr "Mencari paket terinstal"
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Disarankan (%dMB)"
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
+msgstr "Tak cukup ruang untuk instalasi atau upgrade (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5033,35 +5121,35 @@ msgstr ""
"Pilih muat/simpan seleksi paket di floppy.\n"
"Formatnya sama dengan floppy buatan auto_install."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Muat dari floppy"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Memuat dari floppy"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Pilihan paket"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "Masukkan disket yg berisi seleksi paket"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Simpan di floppy"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Ukuran terpilih melebihi area yg ada"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr "Tipe instalasi"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5069,19 +5157,19 @@ msgstr ""
"Anda belum memilih grup paket.\n"
"Pilih instalasi minimal yang Anda ingin:"
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "Dengan X"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr "Dengan dokumentasi dasar (disarankan!)"
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr "Sungguh instalasi minimal (khususnya tanpa urpmi)"
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5091,41 +5179,41 @@ msgstr ""
"Kalau tak punya sama sekali, click Cancel.\n"
"Kalau cuma punya beberapa aja, pilih aja, trus klik Ok."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Label CD-ROM \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Sedang menyiapkan instalasi"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
"%d%%"
msgstr ""
-"Sedang instal paket %s\n"
+"Instalasi paket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
-msgstr "Konfigurasi Instalasi akhir"
+msgstr "Konfigurasi instalasi akhir"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Masukkan floppy boot ke drive %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Masukkan disket Update Modules ke drive %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5190,163 +5278,193 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-"Anda kini dapat men-download paket terupdate yg dirilis pasca distribusi.\n"
+"Anda kini dapat men-download paket terupdate yg dirilis pasca distribusi,\n"
+"mungkin berisi pembetulan keamanan/kutu.\n"
"\n"
-"Anda akan mendapat pembetulan keamanan/kutu, tapi Anda perlu punya koneksi\n"
-"Internet terkonfigurasi utk melanjutkan.\n"
+"Anda perlu koneksi Internet untuk men-download.\n"
"\n"
"Ingin instal update ?"
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Mandrake Linux sedang dihubungi untuk mengambil daftar mirror"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Pilih mirror tempat Anda ingin mengambil paket program"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Saya sedang mencek mirror untuk mengambil daftar paket yang tersedia"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
-msgstr "Pilih timezone Anda"
+msgstr "Pilih zonawaktu Anda"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Jam hardware diset ke GMT"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "sinkronisasi waktu otomatis (dg NTP)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "Server NTP"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
-msgstr "server CUPS remote"
+msgstr "Server CUPS remote"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Tidak ada printer"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
msgstr "Anda punya kartu suara ISA?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr "Jalankan \"sndconfig\" setelah instalasi untuk konfigurasi kartu suara"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Kartu suara tak terdeteksi. Coba \"harddrake\" setelah instalasi"
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Ringkasan"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Mouse"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
-msgstr "Timezone"
+msgstr "Zonawaktu"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Printer"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
-msgstr "kartu ISDN"
+msgstr "Kartu ISDN"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
-msgstr "Sound Card"
+msgstr "Kartu suara"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
-msgstr "TV Card"
+msgstr "Kartu TV"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+msgid "Windows PDC"
+msgstr "Mindows PDC"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "File lokal"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Set katasandi root"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
-msgstr "Tak berkatasandi"
+msgstr "Tiada katasandi"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr "Katasandinya terlalu mudah (harus paling tidak %d karakter)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
-msgstr "Autentikasi"
+msgstr "Otentikasi"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "Otentikasi LDAP"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "Basis dn LDAP"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "Server LDAP"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "Otentikasi NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "Domain NIS"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "Server NIS"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+msgid "Authentication Windows PDC"
+msgstr "Otentikasi Mindows PDC"
+
+#: ../../install_steps_interactive.pm_.c:1139
+msgid "Windows Domain"
+msgstr "Domain Mindows"
+
+#: ../../install_steps_interactive.pm_.c:1140
+msgid "PDC Server Name"
+msgstr "Nama Server PDC"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+"Agar dapat dijalankan di PDC W2K, Anda perlu minta admin melakukan: C:\\>net "
+"localgroup \"Pre-Windows 2000 Compatible Access\" everyone / add dan reboot "
+"server"
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -5364,27 +5482,26 @@ msgid ""
"drive and press \"Ok\"."
msgstr ""
"Bootdisk baru membantu Anda untuk melakukan boot sistem Linux tanpa\n"
-"tergantung pada bootloader. Kadang ini berguna bila Anda tidak mau install\n"
-"SILO di sistem Anda, atau saat sistem operasi lain menghapus SILO, atau "
-"SILO\n"
-"tidak bisa digunakan pada konfigurasi hardware Anda. Bootdisk ini juga bisa "
-"digunakan\n"
-"dengan image rescue Mandrake, yang memudahkan kita untuk merecover sistem\n"
-"dari kegagalan. Sekarang, saya mau tanya nih... mau bikin bootdisk nggak ?"
-
-#: ../../install_steps_interactive.pm_.c:1187
+"tergantung pada bootloader. Ini berguna bila Anda tidak mau menginstal\n"
+"SILO di sistem Anda, atau saat sistem operasi lain menghapus SILO, atau\n"
+"SILO tak bisa digunakan pada konfigurasi hardware Anda. Bootdisk ini juga\n"
+"bisa digunakan dengan image rescue Mandrake, yang memudahkan kita untuk\n"
+"merecover sistem dari kegagalan. Jika Anda mau bikin bootdisk, masukkan\n"
+"disket ke drive pertama dan tekan \"Ok\"."
+
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
-msgstr "Drive Disket Pertama"
+msgstr "Drive disket Pertama"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Drive disket kedua"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Lewatkan"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5400,16 +5517,14 @@ msgid ""
"%s"
msgstr ""
"Bootdisk baru membantu Anda untuk melakukan boot sistem Linux tanpa\n"
-"tergantung pada bootloader. Kadang ini berguna bila Anda tidak mau install\n"
-"lilo (ataw grub) di sistem Anda, atau saat sistem operasi lain menghapus "
-"lilo, atau lilo\n"
-"tidak bisa digunakan pada konfigurasi hardware Anda. Bootdisk ini juga bisa "
-"digunakan\n"
-"dengan image rescue Mandrake, yang memudahkan kita untuk merecover sistem\n"
-"dari kegagalan. Sekarang, saya mau tanya nih... mau bikin bootdisk nggak ?\n"
+"tergantung pada bootloader. Ini berguna bila Anda tidak mau menginstal\n"
+"lilo (atau grub) di sistem Anda, atau saat sistem operasi lain menghapus\n"
+"lilo, atau lilo tak bisa digunakan pada konfigurasi hardware Anda.\n"
+"Bootdisk ini juga bisa digunakan dengan image rescue Mandrake, yang\n"
+"memudahkan kita untuk merecover sistem dari kegagalan. Ingin buat bootdisk?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5423,28 +5538,28 @@ msgstr ""
"pembuatan bootdisk di disket 1.44 Mb mungkin gagal,\n"
"karena XFS perlu driver amat besar)."
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Tiada floppy drive tersedia"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Pilih drive floppy untuk membuat bootdisk"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
-msgstr "Masukkan disket di %s"
+msgstr "Masukkan disket ke %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Membuat bootdisk"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Membuat bootloader"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5456,11 +5571,11 @@ msgstr ""
"Instal akan berlanjut, tapi Anda perlu memakai\n"
"BootX utk mem-boot mesin Anda"
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Ingin pakai aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5468,15 +5583,15 @@ msgstr ""
"Ada error saat install aboot,\n"
"paksakan instalasi walau merusak partisi awal?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Instalasi bootloader"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Instalasi bootloader gagal. Ada kesalahan berikut:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5493,18 +5608,17 @@ msgstr ""
" kemudian: shut-down\n"
"Anda akan melihat prompt bootloader pada boot selanjutnya."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Masukkan disket kosong di drive %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Lagi buat disket auto install"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5514,7 +5628,8 @@ msgstr ""
"\n"
"Anda ingin keluar sekarang?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5525,7 +5640,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5539,17 +5654,22 @@ msgstr ""
"silakan lihat Errata di:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Informasi untuk konfigurasi sistem juga tersedia di \n"
"bab Instalasi akhir di Buku Petunjuk Resmi Linux Mandrake."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+#, fuzzy
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakesoft.com/sales/contact"
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Buat floppy instalasi otomatis"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5563,15 +5683,15 @@ msgstr ""
"\n"
"Mungkin Anda perlu mengulangi instalasinya.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Otomatis"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Ulang"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Simpan pilihan paket"
@@ -5598,44 +5718,24 @@ msgstr "consolehelper hilang"
msgid "Choose a file"
msgstr "Pilih file"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Tambahan"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr "Dasar"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Tunggulah"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Buka Tree"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Tutup Tree"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Togel tampilan rata dan terurut grupnya"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Pilihan salah, silakan ulangi\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Pilihan Anda? (default %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -5644,31 +5744,35 @@ msgstr ""
"Entri yang harus Anda penuhi:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Pilihan Anda? (0/1, default %s) "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "Tombol `%s': %s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+msgid "Do you want to click on this button?"
msgstr "Anda ingin meng-klik tombol ini? "
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr "ketikkan `void' untuk entri kosong"
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
-msgstr "Pilihan Anda? (default %s%s) "
+msgstr "Pilihan Anda? (default `%s'%s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Banyak yang dapat dipilih dari (%s).\n"
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -5678,7 +5782,7 @@ msgstr ""
"atau tekan Enter untuk melanjutkan.\n"
"Pilihan Anda? "
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -5687,327 +5791,327 @@ msgstr ""
"=> Catatan, label berubah:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr "Kirim ulang"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Ceko (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Jerman"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Spanyol"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finland"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Perancis"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norwegia"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Polandia"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Rusia"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Swedia"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Keyboard UK"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Keyboard US"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Albania"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armenia (lama)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armenia (mesintik)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armenia (fonetik)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbaijan (latin)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgia"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr "Bulagaria (fonetik)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "Bulgaria (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brazil (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Belarusia"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Swis (layout Jerman)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Swis (layout Prancis)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Ceko (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Jerman (tanpa dead key)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Denmark"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norwegia)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Swedia)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estonia"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgia (layout \"Rusia\")"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgia (layout \"Latin\")"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Yunani"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Hungaria"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Kroasia"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Ibrani"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Ibrani (fonetik)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iran"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islandia"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Itali"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Jepang 106 tombol"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Keyboard Korea"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Amerika Latin"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Lithuania AZERTY (lama)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Lithuania AZERTY (baru)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lithuania \"number row\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Lithuania \"phonetic\" QWERTY"
+msgstr "Lithuania \"fonetik\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "Latvia"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Macedonia"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Belanda"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Polandia (layout qwerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Polandia (layout qwertz)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugis"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Kanada (Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
-msgstr "Romanian (qwertz)"
+msgstr "Romania (qwertz)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
-msgstr "Romanian (qwerty)"
+msgstr "Romania (qwerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Rusia (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slovenia"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovakia (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovakia (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "Serbia (cyrillic)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr "Tamil"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Papanketik Muangthai"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Papanketik Tajik"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turki (model \"F\" tradisional)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turki (model \"Q\" modern)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukraina"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Keyboard US (internasional)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnam \"numeric row\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Yugoslavia (latin)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr "kunci Alt Kanan"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr "Kedua Shift bersamaan"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
-msgstr "Kunci Control dan Shift bersamaan"
+msgstr "Control dan Shift bersamaan"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
-msgstr "Kunci CapsLock"
+msgstr "CapsLock"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
-msgstr "Kunci Ctrl dan Alt bersamaan"
+msgstr "Ctrl dan Alt bersamaan"
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
-msgstr "Kunci Alt dan Shift bersamaan"
+msgstr "Alt dan Shift bersamaan"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr "Kunci \"Menu\""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr "Kunci \"Mindows\" kiri"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr "Kunci \"Mindows\" kanan"
@@ -6020,7 +6124,29 @@ msgstr "Mount melingkar %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Hapus dulu volume logiknya\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+msgid "a number"
+msgstr "nomor"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr "%d bilangan terpisah koma\""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr "%d string terpisah koma"
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr "bilangan terpisah koma"
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated strings"
+msgstr "string terpisah koma"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr "Support PCMCIA tak ada lagi utk kernel 2.2, pakailah kernel 2.4."
@@ -6061,13 +6187,9 @@ msgstr "1 tombol"
msgid "Generic 2 Button Mouse"
msgstr "Mouse Generik 2 Tombol"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Generik"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
-msgstr "wheel"
+msgstr "Wheel"
#: ../../mouse.pm_.c:49
msgid "serial"
@@ -6129,38 +6251,54 @@ msgstr "tiada"
msgid "No mouse"
msgstr "Tidak pakai mouse"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
-msgstr "Silakan di test mousenya"
+msgstr "Silakan tes mouse Anda"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Untuk mengaktifkan mouse,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
-msgstr "gerakan rodanya!"
+msgstr "gerakkan rodanya!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Selesai"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Lanjutkan ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Tahap sebelumnya"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Sudah sesuai?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Info"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Buka Tree"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Tutup Tree"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Togel tampilan rata dan terurut grupnya"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Hubungan ke Internet"
@@ -6205,9 +6343,9 @@ msgid ""
"I cannot set up this connection type."
msgstr ""
"Tidak ada adapter jaringan ethernet yang terdeteksi di sistem ini.\n"
-"Saya jadinya tidak dapat mengkonfigurasikan tipe koneksi ini deh."
+"Tipe koneksi ini tak dapat diset up."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Pilih interface jaringan"
@@ -6218,9 +6356,9 @@ msgstr "Pilih adapter jaringan yang akan digunakan untuk terhubung ke Internet"
#: ../../network/ethernet.pm_.c:178
msgid "no network card found"
-msgstr "Tidak ada card network ya?"
+msgstr "kartu jaringan tak ditemukan"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Konfigureasi jaringan"
@@ -6231,20 +6369,19 @@ msgid ""
"Your host name should be a fully-qualified host name,\n"
"such as ``mybox.mylab.myco.com''."
msgstr ""
-"Masukkan nama komputernya karena ada server DHCP yang mengharuskan adanya "
-"hostname ini.\n"
+"Masukkan hostname sebab ada server DHCP yg mengharuskan adanya hostname.\n"
"Hostname (nama komputer) sebaiknya merupakan nama host yg fully-qualified\n"
-"misalnya ``samson.ciawi.mdamt.net''."
+"misalnya ``mesinku.labku.kotaku.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Nama Host"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Wizard Konfigurasi Jaringan"
@@ -6254,7 +6391,7 @@ msgstr "Modem ISDN external"
#: ../../network/isdn.pm_.c:22
msgid "Internal ISDN card"
-msgstr "card ISDN Internal"
+msgstr "Kartu ISDN internal"
#: ../../network/isdn.pm_.c:22
msgid "What kind is your ISDN connection?"
@@ -6295,12 +6432,12 @@ msgstr "Konfigurasi lama (isdn4net)"
#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
#: ../../network/isdn.pm_.c:215
msgid "ISDN Configuration"
-msgstr "konfigurasi ISDN"
+msgstr "Konfigurasi ISDN"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Pilih provider Anda.\n"
"Bila tidak ada dalam daftar, pilih Tidak Terdaftar"
@@ -6319,14 +6456,14 @@ msgstr "Protokol lain"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Protokol lain \n"
" tanpa D-Channel (leased lines)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Protokol apa yang ingin Anda gunakan?"
#: ../../network/isdn.pm_.c:199
@@ -6350,7 +6487,8 @@ 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"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Bila Anda punya card ISA, konfigurasi pada layar berikut nanti harusnya "
@@ -6368,13 +6506,13 @@ msgid "Continue"
msgstr "Lanjut"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr "Manakah card ISDN Anda?"
+msgid "Which is your ISDN card?"
+msgstr "Manakah kartu ISDN Anda?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Saya mendeteksi adanya sebuah card ISDN PCI, tapi saya tidak tahu tipenya. "
"Silakan pilih card PCI tersebut pada layar berikutnya."
@@ -6391,47 +6529,47 @@ msgstr "Di serial port mana modem Anda terhubung?"
msgid "Dialup options"
msgstr "Parameter Dialup"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Nama koneksi"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Nomor telepon"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Login ID"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Script-based"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Terminal-based"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Nama domain"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
-msgstr "Server DNS Primary (boleh diisi/tidak)"
+msgstr "Server DNS Primer (boleh diisi/tidak)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
-msgstr "Server DNS Sekondari (boleh tidak diisi)"
+msgstr "Server DNS Sekunder (boleh tidak diisi)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6439,7 +6577,7 @@ msgstr ""
"\n"
"Anda bisa putuskan atau konfigurasi koneksi yang ada sekarang."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6447,11 +6585,11 @@ msgstr ""
"\n"
"Anda bisa mengkonfigurasikan ulang koneksi ini"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Sekarang Anda sedang terhubung ke Internet."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6459,32 +6597,32 @@ msgstr ""
"\n"
"Anda bisa sambungkan koneksi ke Internet atau mengkonfigurasikan ulang."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Anda sedang tidak terhubung ke Internet."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Tersambung"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Putus"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr "Konfigurasikan koneksi"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Koneksi dan konfigurasi Internet"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Kita akan mengkonfigurasi koneksi %s."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6503,12 +6641,12 @@ msgstr ""
"\n"
"Tekan OK utk mulai."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Konfigurasi Jaringan"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6519,9 +6657,9 @@ msgstr ""
"Silakan klik OK untuk rekonfigurasi ulang koneksi jaringan/internet ini, "
"atau batal jika Anda berubah pikiran.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"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"
@@ -6532,66 +6670,72 @@ msgstr ""
"Bila Anda tidak mau menggunakan deteksi otomatis, mohon untuk tidak memilih "
"checkbox.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Pilih profil yang hendak Anda konfigurasikan"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Gunakan deteksi otomatis"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Mode Ahli"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Mendeteksi alat..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Konfigurasi koneksi modem biasa "
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "dideteksi pada port %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "Konfigurasi koneksi ISDN"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "%s telah terdeteksi"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "Koneksi ADSL"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "telah dideteksi ada pada interface %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Konfigurasi jaringan kabel"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "Koneksi kabel terdeteksi"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "konfigurasi LAN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
-msgstr "ada ethernet card yang terdeteksi"
+msgstr "ada kartu ethernet terdeteksi"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Pilih koneksi yg hendak dikonfigurasi"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6601,34 +6745,34 @@ msgstr ""
"Pilih yg ingin Anda pakai.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Koneksi Internet"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Anda mau jalankan koneksi ini saat boot?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
-msgstr "Konfigurasi Jaringan"
+msgstr "Konfigurasi jaringan"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
-msgstr "Network perlu di-start ulang"
+msgstr "Jaringan perlu di-start ulang"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
"\n"
"%s"
msgstr ""
-"Problem terjadi saat restart netword:\n"
+"Problem terjadi saat restart jaringan:\n"
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6638,7 +6782,7 @@ msgstr ""
"\n"
"Konfigurasi akan diterapkan di sistem Anda.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6646,19 +6790,19 @@ msgstr ""
"Setelah itu, silakan restart X Anda agar bebas dari masalah pergantian\n"
"nama host."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
"Problem konfigurasi.\n"
"Tes koneksi Anda via net_monitor atau mcc. Jika koneksi tak berjalan, Anda "
"mungkin perlu jalankan konfigurasi dari awal lagi"
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"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."
@@ -6669,7 +6813,7 @@ msgstr ""
"Bila ingin menggantinya, silakan ganti isi pada kolom-kolom di konfigurasi "
"ini."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6679,219 +6823,228 @@ msgstr ""
"Tiap item harus diberikan sebagai alamat IP dalam notasi decimal\n"
"bertitik (misalnya 202.159.35.32)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Konfigurasi perangkat jaringan %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (driver %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "Alamat IP"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "IP otomatis"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+msgid "Start at boot"
+msgstr "Start saat boot"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "Alamat IP harus dalam format 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
"such as ``mybox.mylab.myco.com''.\n"
"You may also enter the IP address of the gateway if you have one"
msgstr ""
-"Masukkan nama komputernya.\n"
+"Masukkan nama host Anda.\n"
"Hostname (nama komputer) sebaiknya merupakan nama host yg fully-qualified\n"
-"misalnya ``mdamt.fdns.net''.\n"
-"Anda juga bisa masukkan alamat IP gatewaynya kalau ada"
+"misalnya ``mesin.lab.grup.com''.\n"
+"Anda juga bisa masukkan alamat IP gateway kalau ada"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "Server DNS"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (mis. %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
-msgstr "Device Gateway"
+msgstr "Device gateway"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Konfigurasi proxy"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Lacak ID kartu network (berguna di laptop)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Proxy biasanya http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Proxy biasanya ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Konfigurasi Internet"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Anda ingin tes koneksi Internet sekarang?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Tes koneksi Anda..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Sistem ini sekarang terhubung ke Internet."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
-msgstr "Untuk alasan keamanan, sekarang akan diputus koneksinya"
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
+msgstr "Untuk alasan keamanan, sekarang koneksi akan diputus"
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
msgstr ""
-"Sistem ini sepertinya tidak terhubung ke Internet deh.\n"
+"Sistem ini sepertinya tidak terhubung ke Internet.\n"
"Cobalah konfigurasikan ulang koneksinya."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Konfigurasi Koneksi"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Silakan isi atau cek kolom berikut"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
-msgstr "IRQ card"
+msgstr "IRQ kartu"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
-msgstr "Mem card (DMA)"
+msgstr "Mem kartu (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
-msgstr "IO Card"
+msgstr "IO kartu"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
-msgstr "IO_0 card"
+msgstr "IO_0 kartu"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
-msgstr "IO_1 card"
+msgstr "IO_1 kartu"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Nomor telepon Anda"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Nama provider (misalnya provider.net.id)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Nomor telepon provider"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "DNS Provider 1 (boleh diisi boleh tidak)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "DNS Provider 2 (boleh diisi boleh tidak)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Pilih negri Anda"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "mode dial"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Laju koneksi"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "Timeout koneksi (detik)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Login Account (username)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Katasandi Account"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr "Inggris"
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "gagal melakukan mount: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Partisi extended tak bisa dipakai di platform ini"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Anda punya tabel partisi tapi tidak bisa saya gunakan.\n"
"Satu-satunya cara adalah memindahkan partisi primary Anda ke partisi\n"
"extended selanjutnya"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Proses restore dari file %s gagal: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "File backup rusak"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Error pada saat menulis file %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6901,186 +7054,186 @@ msgstr ""
"hal ini saya ketahui saat gagal mengecek integritas data di situ.\n"
"Artinya, data apapun yang ditulis ke situ akan gagal."
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "harus ada"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "penting"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
-msgstr "bagus deh"
+msgstr "amat bagus"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "bagus"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "hmm.."
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Common Unix Printing System"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR New Generation"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Line Printer Daemon"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Printer lokal"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "printer remote"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Printer di server CUPS remote"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Printer di server lpd remote"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Printer jaringan (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Printer di server SMB/windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Printer di server NetWare"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Masukkan URI device printer"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "Pipe job ke perintah"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Model tak dikenal"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "Printer Lokal"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "Printer Remote"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr " di port paralel \\/*%s"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", printer USB \\/*%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", alat multifungsi di port paralel \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ", alat multifungsi di USB"
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ", alat multifungsi di HP JetDirect"
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ", alat multifungsi"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, c-format
msgid ", printing to %s"
msgstr ", cetak ke %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr "di server LPD \"%s\", printer \"%s\""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", host TCP/IP \"%s\", port %s"
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
-msgstr "di server Windows \"%s\", share \"%s\""
+msgstr "di server Mindows \"%s\", share \"%s\""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr "di server Novell \"%s\", printer \"%s\""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ", menggunakan perintah %s"
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr "Printer telanjang (tanpa driver)"
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(di %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(di mesin ini)"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Di server CUPS \"%s\""
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Default)"
@@ -7102,11 +7255,11 @@ msgstr ""
"Printer pada server CUPS remote tak perlu dikonfigurasikan di sini; printer "
"ini akan secara otomatis dideteksi."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
msgid "CUPS configuration"
msgstr "konfigurasi CUPS"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
msgid "Specify CUPS server"
msgstr "Tentukan server CUPS"
@@ -7147,7 +7300,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "Alamat IP harus seperti 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "Nomor port harus berupa bilangan bulat"
@@ -7155,7 +7308,7 @@ msgstr "Nomor port harus berupa bilangan bulat"
msgid "CUPS server IP"
msgstr "IP server CUPS"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Port"
@@ -7163,20 +7316,12 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Konfigurasi CUPS otomatis"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Pendeteksian alat..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Tes port"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr "Tambah printer baru"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7198,13 +7343,13 @@ msgstr ""
"Anda akses ke semua driver printer tersedia, opsi driver, dan tipe koneksi "
"printer."
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Printer Lokal"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7234,11 +7379,11 @@ msgstr ""
"otomatis. Pakailah \"Mode Ahli\" printerdrake bila Anda ingin set up "
"pencetakan di printer remote jika printerdrake tak otomatis menampilkannya."
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr "Printer deteksi otomatis"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7261,11 +7406,11 @@ msgstr ""
"ingin mengubah opsi standar setting (tray kertas, kualitas cetak, ...), "
"pilih \"Printer\" di bagian \"Perangkat Keras\" Pusat Kontrol Mandrake."
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr "Deteksi Otomatis Printer"
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7281,33 +7426,37 @@ msgstr ""
"\n"
"Anda ingin deteksi otomatis printer?"
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "Lakukan deteksi otomatis"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr "Setup printer secara manual"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Tes port"
+
+#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
msgstr "Terdeteksi %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Printer di port paralel \\/*%s"
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr "printer USB \\/*%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
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, ..., "
@@ -7319,11 +7468,11 @@ msgstr ""
"sebanding dg LPT1:, LPT2:, ..., printer USB pertama: /dev/usb/lp0, printer "
"USB kedua: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
msgstr "Masukkan nama alat atau file!"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
@@ -7331,7 +7480,7 @@ msgstr ""
"Tiada printer lokal ditemukan!\n"
"\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
@@ -7339,7 +7488,7 @@ msgstr ""
"Printer network hanya dapat diinstal setelah instalasi ini. Pilih \"Hardware"
"\" lalu \"Printer\" di Pusat Kontrol Mandrake."
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
@@ -7347,7 +7496,7 @@ msgstr ""
"Untuk menginstal printer network, klik \"Batal\", pindah ke \"Mode Ahli\", "
"dan klik \"Tambah printer baru\" lagi."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7355,7 +7504,7 @@ msgstr ""
"Printer berikut terdeteksi otomatis, jika bukan yang ingin dikonfigurasikan, "
"masukkan nama alat/file di baris masukan"
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7363,7 +7512,7 @@ msgstr ""
"Daftar printer terdeteksi otomatis. Pilihlah printer yang ingin diset up "
"atau masukkan nama alat/file di baris masukan"
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7374,7 +7523,7 @@ msgstr ""
"otomatis. Jika printer Anda tak terdeteksi dengan benar atau jika ingin Anda "
"konfigurasi sendiri, jalankan \"Konfigurasi manual\"."
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7386,7 +7535,7 @@ msgstr ""
"dengan benar atau jika ingin Anda konfigurasi sendiri, jalankan "
"\"Konfigurasi manual\"."
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7394,11 +7543,11 @@ msgstr ""
"Pilih port tempat printer Anda terhubung atau masukkan nama alat/file di "
"baris masukan"
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
msgstr "Pilihlah port tempat printer Anda terhubung."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7406,52 +7555,66 @@ msgstr ""
" (Port Paralel: /dev/lp0, /dev/lp1, ..., sebanding dengan LPT1:, LPT2:, ..., "
"printer USB pertama: /dev/usb/lp0, printer USB kedua: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
msgstr "Pilih/masukkan printer/alat!"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
msgstr "Konfigurasi manual"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
+#, fuzzy
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
"Apakah printer Anda adalah alat multifungsi dari HP (OfficeJet, PSC, "
-"PhotoSmart LaserJet 1100/1200/1220/3200/3300 dengan scanner)?"
+"LaserJet 1100/1200/1220/3200/3300 dengan scanner), HP PhotoSmart P100/1315 "
+"atau HP LaserJet 2200?"
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
msgstr "Instalasi paket HPOJ..."
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr "Sedang mencek alat dan mengkonfigurasi HPOJ ..."
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
msgstr "Instalasi paket SANE..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Instalasi paket..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr "Alat multifungsi HP sedang di-scan"
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+#, fuzzy
+msgid "Photo memory card access on your HP multi-function device"
+msgstr "Alat multifungsi HP sedang di-scan"
+
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr "Membuat port printer tersedia utk CUPS ..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr "Pembacaan database printer..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Pilihan printer lpd remote"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7459,27 +7622,27 @@ msgstr ""
"Untuk memakai printer lpd remote, berikan nama host\n"
"server printer dan nama printer di server tsb."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Nama host remote"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Nama printer remote"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "Nama host remote hilang!"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "Nama printer remote hilang!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Pilihan printer SMB (windows 95/NT)"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7491,35 +7654,35 @@ msgstr ""
"share printer yang ingin Anda akses, juga nama user, katasandi, dan info "
"workgroup."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "Host server SMB"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP server SMB"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Nama share"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Workgroup"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "Harus ada nama/IP server!"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "Nama share Samba hilang!"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
-msgstr ""
+msgstr "PERINGATAN KEAMANAN!"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7542,8 +7705,26 @@ msgid ""
"type in Printerdrake.\n"
"\n"
msgstr ""
+"Anda akan menset up pencetakan ke account Mindows dengan katasandi. "
+"Berhubung kesalahan arsitekture piranti lunak klien Samba, katakunci "
+"ditampilkan dalam teks di baris perintah klien Samba untuk mengirim job "
+"cetak ke server Mindows. Ini memungkinkan tiap user di mesin ini melihat "
+"katasandi di layar dengan perintah \"ps auxwww\".\n"
+"\n"
+"Kami anjurkan beberapa alternatif berikut (pada semua kasus Anda harus yakin "
+"bahwa hanya mesin di jaringan lokal Anda yang dapat mengakses server Mindows "
+"Anda, misalnya dengan adanya firewall):\n"
+"\n"
+"Pakailah account tanpa-katasandi di server Mindows Anda, sebagai account "
+"\"GUEST\" atau account khusus untuk pencetakan. Jangan hapus proteksi "
+"katakunci account pribadi atau administrator.\n"
+"\n"
+"Set up server Mindows Anda agar printer dapat dipakai dengan protokol LPD. "
+"Laluset up pencetakan dari mesin ini dengan tipe koneksi \"%s\" di "
+"Printerdrake.\n"
+"\n"
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7551,20 +7732,26 @@ msgid ""
"type in Printerdrake.\n"
"\n"
msgstr ""
+"Set up server Windows Anda agar printer tersedia di protokol IPP dan set up "
+"pencetakan dari mesin ini dengan tipe koneksi \"%s\" di Printerdrake.\n"
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
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 ""
+"Hubungkan printer Anda ke server Linux server dan membuat mesin Mindows "
+"terhubung sebagai klien.\n"
+"\n"
+"Anda ingin lanjutkan set up printer ini seperti yang Anda lakukan sekarang?"
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Pilihan printer NetWare"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
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 "
@@ -7575,27 +7762,27 @@ msgstr ""
"NetWare (tak selalu sama dengan nama TCP/IPnya) juga nama antrian printer "
"yang ingin digunakan beserta nama user dan katasandinya."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Server Printer"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Nama antrian printer"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "Nama server NCP hilang!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "Nama antrian NCP hilang!"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
msgstr "Opsi Printer TCP/Soket"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -7606,19 +7793,19 @@ msgstr ""
"portnya). Nomor port server HP JetDirect biasanya 9100, server lain "
"bervariasi. Lihat manual perangkat keras Anda."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Nama host printer"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "Nama host printer hilang!"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Device Printer URI"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
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 "
@@ -7628,11 +7815,11 @@ msgstr ""
"spesifikasi CUPS/Foomatic. Ingat, tak semua tipe URI di-support oleh semua "
"spooler."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "Harus diisi URI valid!"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -7640,27 +7827,23 @@ msgstr ""
"Tiap printer perlu nama (misalnya \"printer\"). Kolom Penjelasan / Lokasi "
"tak harus terisi. Itu komentar utk user."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Nama Printer"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Keterangan"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Lokasi"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr "Persiapan database printer ..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
msgid "Your printer model"
msgstr "Model printer Anda"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7685,24 +7868,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
msgid "The model is correct"
msgstr "Model sudah benar"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
msgid "Select model manually"
msgstr "Pilih model secara manual"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Seleksi model printer"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Anda punya model printer mana?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7716,7 +7899,7 @@ msgstr ""
"benar. Cari model yang benar di daftar jika kursor menunjukkan model yang "
"salah atau di \"Printer telanjang\"."
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -7724,11 +7907,11 @@ msgstr ""
"Jika printer Anda tak terdaftar, pilih yang kompatibel (lihat manual) atau "
"yang mirip."
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "Konfigurasi winprinter OKI"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7744,11 +7927,11 @@ msgstr ""
"cetak. Jika tidak, printer takkan bekerja. Setting tipe koneksi Anda akan "
"diabaikan oleh driver."
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "Konfigurasi Lexmark inkjet"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7759,7 +7942,7 @@ msgstr ""
"bukan printer di mesin remote atau kotak server cetak. Hubungkan printer "
"Anda ke port lokal atau konfigurasikan di mesin yang terhubung dengannya."
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7780,7 +7963,7 @@ msgstr ""
"halaman printhead alignment dg \"lexmarkmaintain\" dan cocokkan setting head "
"alignmentdd dg program ini."
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7795,22 +7978,22 @@ msgstr ""
"perangkat keras printer laser (memori, unit duplex, tray extra). Ingat, "
"pencetakan dg kualitas tinggi berjalan amat lambat."
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Opsi %s harus berupa integer!"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "Opsi %s harus berupa bilangan!"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "Opsi %s keluar batas!"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7819,11 +8002,11 @@ msgstr ""
"Ingin menset printer ini (\"%s\")\n"
"sbg printer standar?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "Halaman tes"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7834,39 +8017,39 @@ msgstr ""
"Ingat: halaman tes photo perlu waktu lama untuk dicetak. Di printer laser "
"bermemori rendah itu bahkan takkan muncul. Umumnya cukup halaman tes standar."
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "Tiada halaman tes"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Cetak"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "Halaman tes standar"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr "Halaman tes alternatif (Letter)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "Halaman tes alternatif (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "Halaman tes foto"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
msgstr "Jangan cetak halaman tes"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Pencetakan halaman tes..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7875,13 +8058,13 @@ msgid ""
"%s\n"
"\n"
msgstr ""
-"Halaman test telah dikirim ke printer.\n"
+"Halaman tes telah dikirim ke printer.\n"
"Akan butuh waktu sebentar untuk mulai mencetak.\n"
"Status cetak:\n"
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -7889,15 +8072,15 @@ msgstr ""
"Halaman test telah dikirim ke printer.\n"
"Akan butuh waktu sebentar untuk mulai mencetak.\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr "Bekerja dg baik?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr "Printer telanjang"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7910,7 +8093,7 @@ msgstr ""
"<file>\". Alat grafis memungkinkan Anda memilih printer dan memodifikasi "
"setting dengan mudah.\n"
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
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 "
@@ -7920,8 +8103,8 @@ msgstr ""
"banyak aplikasi, tapi jangan berikan nama file di sini karena file yang "
"dicetak akan diberikan oleh aplikasi.\n"
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7933,18 +8116,18 @@ msgstr ""
"Komando \"%s\" juga memungkinkan modifikasi setting job cetak tertentu. "
"Tambahkan setting yang diinginkan ke baris perintah, mis. \"%s <file>\". "
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#, fuzzy, 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\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
"Untuk mengetahui opsi printer bacalah daftar di bawah atau klik tombol "
"\"Daftar opsi cetak\".%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -7952,7 +8135,7 @@ msgstr ""
"Daftar opsi cetak tersedia untuk printer ini:\n"
"\n"
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -7961,8 +8144,8 @@ msgstr ""
"Utk mencetak file dari baris komando (window terminal) gunakan perintah \"%s "
"<file>\".\n"
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -7972,13 +8155,13 @@ msgstr ""
"aplikasi. Tapi jangan berikan nama file di sini karena file yg dicetak akan "
"diberikan oleh aplikasi.\n"
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr "Untuk mendapat daftar opsi printer klik \"Daftar opsi cetak\"."
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -7987,7 +8170,7 @@ msgstr ""
"Utk mencetak file dari baris komando (jendela terminal) gunakan komando \"%s "
"<file>\" atau \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8002,7 +8185,7 @@ msgstr ""
"di desktop, berlabel \"STOP Printer!\", yang menghentikan semua job cetak "
"seketika bila Anda tekan. Ini berguna contohnya saat kertas macet.\n"
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -8015,38 +8198,49 @@ msgstr ""
"cetak tertentu. Tambahkan setting yg diinginkan ke baris perintah, misalnya "
"\"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Tutup"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Cetak/Scan di \"%s\""
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Cetak/Scan di \"%s\""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Cetak/Scan di \"%s\""
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Pencetakan di printer \"%s\""
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Tutup"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "Daftar opsi cetak"
-#: ../../printerdrake.pm_.c:1766
-#, c-format
+#: ../../printerdrake.pm_.c:1802
+#, fuzzy, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
@@ -8060,37 +8254,30 @@ msgstr ""
"\n"
"Jangan pakai \"scannerdrake\" utk alat ini!"
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-"Alat multifungsi HP Anda terkonfigurasi otomatis agar dapat men-scan. Kini "
-"Anda dapat men-scan dari baris perintah dg \"ptal-hp %s scan ...\". Scan via "
-"antarmuka grafis atau GIMP saat ini belum di-support. Info lanjutada di \"/"
-"usr/share/doc/hpoj-0.8/ptal-hp-scan.html\". Jika Anda punya HP LaserJet 1100 "
-"atau 1200 Anda hanya dapat men-scan jika opsi scanner terinstal.\n"
-"\n"
-"Jangan pakai \"scannerdrake\" utk alat ini!"
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr "Pembacaan data printer..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "Transfer konfigurasi printer"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8105,7 +8292,7 @@ msgstr ""
"ditransfer. \n"
"Tak semua antrian dapat ditransfer karena alasan berikut:\n"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8113,17 +8300,17 @@ msgstr ""
"CUPS tak men-support printer server Novell atau printer yg mengirim data ke "
"perintah format-bebas.\n"
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr "PDQ hanya men-support printer lokal, LPD remote, dan Soket/TCP.\n"
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD and LPRng tak men-support printer IPP.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8131,7 +8318,7 @@ msgstr ""
"Antrian tak dibuat oleh program ini atau \"foomatic-configure\" tak dapat "
"ditransfer."
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8141,7 +8328,7 @@ msgstr ""
"Juga printer yg terkonfigurasi dengan file PPD dari pabrik atau driver CUPS "
"asli tak dapat ditransfer."
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8150,15 +8337,15 @@ msgstr ""
"\n"
"Tandai printer yg ingin Anda transfer lalu klik\"Transfer\"."
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr "Jangan transfer printer"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr "Transfer"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8169,27 +8356,27 @@ msgstr ""
"Klik \"Transfer\" untuk menindihnya.\n"
"Anda juga dapat menuliskan nama baru atau melewatkan printer ini."
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Nama printer harus hanya berupa huruf, angka, atau garisbawah"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr "Sudah ada printer \"%s\", Anda benar ingin menindih konfigurasinya?"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Nama printer baru"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr "Pemindahan %s ..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8198,29 +8385,29 @@ msgstr ""
"Anda telah men-transfer printer standar lama Anda (\"%s\"), Akankah ia juga "
"dijadikan printer default pada sistem cetak baru %s?"
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr "Penyegaran data printer..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr "Konfigurasi printer remote"
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "Pemulaian network..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr "Konfigurasikan jaringan sekarang"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "Fungsi network tak dikonfigurasi"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8232,11 +8419,11 @@ msgstr ""
"tanpa konfigurasi network, Anda takkan dapat menggunakan printer yang Anda "
"konfigurasikan sekarang. Bagaimana Anda mau teruskan?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr "Jalan tanpa konfigurasi jaringan"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8251,7 +8438,7 @@ msgstr ""
"\"Koneksi\", lalu set printer juga dg Pusat Kontrol Mandrake, bagian "
"\"Hardware\"/\"Printer\""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
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 "
@@ -8260,24 +8447,24 @@ msgstr ""
"Akses network tak jalan dan tak dapat dimulai. Cek konfigurasi dan hardware "
"Anda, lalu coba konfigurasikan printer remote Anda lagi."
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr "Mulai ulang sistem cetak ..."
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "tinggi"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr "pengecut"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Instalasi sistem cetak dalam level keamanan %s"
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8300,11 +8487,11 @@ msgstr ""
"\n"
"Benarkah Anda ingin mengkonfigurasikan printer di mesin ini?"
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr "Inisiasi sistem cetak pada saat boot"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8324,63 +8511,63 @@ msgstr ""
"\n"
"Anda ingin auto-start sistem cetak dinyalakan lagi?"
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr "Pemeriksaan perangkat lunak terinstal"
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr "Hapus LPRng..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr "Hapus LPD..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "Pilih spooler printer"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "Sistem (spooler) printer mana yang ingin digunakan?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Konfigurasi printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
+msgstr "Konfigurasikan printer \"%s\"..."
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
msgstr "Instalasi Foomatic ..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Opsi printer"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr "Persiapan PrinterDrake ..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
msgid "Configuring applications..."
msgstr "Konfigurasi aplikasi..."
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "Ingin konfigurasi printer?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr "Sistem cetak: "
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -8392,7 +8579,7 @@ msgstr ""
"membuat printer di server CUPS remote dapat dipakai oleh Star Office/"
"OpenOffice.org."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -8401,28 +8588,32 @@ msgstr ""
"Printer berikut telah dikonfigurasikan. Klik-dobel printer utk memodifikasi "
"setting; membuatnya printer default; atau melihat info tentangnya."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr "Penyegaran daftar printer (utk menampilkan semua printer CUPS remote)"
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
msgid "Change the printing system"
msgstr "Ubah sistem cetak"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Modus Normal"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Keluar"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr "Ingin konfigurasikan printer lain?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "Modifikasi konfigurasi printer"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, c-format
msgid ""
"Printer %s\n"
@@ -8431,103 +8622,103 @@ msgstr ""
"Printer %s\n"
"Apa yg Anda inginkan utk modifikasi printer ini?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr "Kerjakan!"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "Tipe koneksi printer"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "Nama, penjelasan, lokasi printer"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr "Pembuat, model, driver printer"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr "Pembuat, model printer"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr "Set printer ini sebagai standar"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr "Tambah printer ini ke Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr "Hapus printer ini dari Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr "Cetak halaman tes"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
msgstr "Cara penggunaan printer ini"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "Hapus printer"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "Menghapus printer lama \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
+msgstr "Menghapus printer lama \"%s\"..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Printer standar"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Printer \"%s\" kini diset sbg printer standar."
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr "Penambahan printer ke Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr "Printer \"%s\" sukses ditambahkan ke Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr "Gagal menambahkan printer \"%s\" ke Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr "Hapus printer dari Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr "Printer \"%s\" sukses dihapus dari Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr "Gagal menghapus printer \"%s\" dari Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Anda ingin menghapus printer \"%s\"?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Menghapus printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
+msgstr "Menghapus printer \"%s\"..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
#: ../../proxy.pm_.c:78
@@ -8606,24 +8797,60 @@ msgstr "Katasandi tak sama, coba lagi!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Tidak dapat menambah partisi ke RAID md%d yang terformat"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Tidak bisa menulis ke file %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid gagal"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid gagal (mungkin raidtoolsnya tak ada?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Partisi tidak cukup untuk level RAID %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Level ini harus hati-hati. Level ini akan membuat sistem Anda akan mudah\n"
+"digunakan, tapi sangat sensitif: mesin ini tidak boleh digunakan untuk\n"
+"mesin yang terhubung ke mesin lain atau ke ke Internet. Tidak akan ada\n"
+"akses katasandi."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+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 ""
+"Dengan level sekuriti ini, sistem akan dapat digunakan sebagai server.\n"
+"Sekuriti kini cukup tinggi untuk dapat melayani koneksi banyak klien.\n"
+"Jika mesin Anda hanya berfungsi sebagai klien, pilihlah level lebih rendah."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "Opsi Lanjutan"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Pilihan"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Luncurkan sistem suara ALSA (Advanced Linux Sound Architecture)"
@@ -8681,7 +8908,7 @@ msgstr ""
"HardDrake mendeteksi hardware, dan mengkonfigurasi yg baru/berubah bila "
"perlu."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8718,7 +8945,7 @@ msgid ""
msgstr ""
"Paket ini akan meload map keyboard yang dipilih di file\n"
"/etc/sysconfig/keyboard. Mapnya bisa dipilih dari utility kbdconfig.\n"
-"Mending Anda aktifkan aja deh ini."
+"Biarkan aktif!"
#: ../../services.pm_.c:38
msgid ""
@@ -8755,7 +8982,7 @@ msgstr ""
"Linux Virtual Server, digunakan utk membangun server dg performans dan\n"
"kapasitas tinggi."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -8815,10 +9042,9 @@ msgid ""
"have\n"
"it installed on machines that don't need it."
msgstr ""
-"PCMCIA digunakan untuk menjalankan perangkat semacam ethernet atau modem "
-"pada laptop.\n"
-"Dia tak bisa jalan kecuali dikonfigurasikan di sini, jadi tak apa-apa\n"
-"kalau tak diinstall di mesin yang tak perlu PCMCIA."
+"PCMCIA digunakan untuk menjalankan perangkat semacam ethernet atau modem\n"
+"pada laptop. Dia tak bisa jalan kecuali dikonfigurasikan di sini, jadi tak\n"
+"apa-apa kalau tak diinstal di mesin yang tak perlu PCMCIA."
#: ../../services.pm_.c:63
msgid ""
@@ -8831,7 +9057,7 @@ msgstr ""
"NFS dan NIS. Server portmap harus jalan di mesin yang bertindak sebagai\n"
"server untuk protokol yang menggunakan mekanisme RPC."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -8853,7 +9079,7 @@ msgid ""
"partitions), for the use of applications such as Oracle"
msgstr ""
"Tunjuk raw device ke block devices (misalnya partisi hard drive),\n"
-"utk digunakan oleg aplikasi semacam Oracle"
+"utk digunakan oleh aplikasi semacam Oracle"
#: ../../services.pm_.c:71
msgid ""
@@ -8899,7 +9125,7 @@ msgid ""
"to various system log files. It is a good idea to always run syslog."
msgstr ""
"Syslog adalah fasilitas yang digunakan para daemon untuk mencatat\n"
-"pesan log sistem di file. Hidupkan aja deh syslognya."
+"pesan log sistem di file. Sebaiknya syslog selalu hidup."
#: ../../services.pm_.c:83
msgid "Load the drivers for your usb devices."
@@ -8925,7 +9151,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Pemakaian file bersama"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "Sistem"
@@ -9053,6 +9279,7 @@ msgstr ""
"compiler gcc GNU, juga lingkungan development Sumber Bebas terbaik"
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
msgstr "Pusat Kontrol Mandrake"
@@ -9173,13 +9400,161 @@ msgstr "http://www.mandrakesoft.com/sales/contact"
msgid "Installing packages..."
msgstr "Instalasi paket..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Silakan log out dan tekan Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Silakan masuk lagi ke %s untuk mengaktifkan perubahan"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
msgstr ""
-"Saya tak bisa baca tabel partisi, udah hancur lebur nih :(\n"
-"Aku akan coba hapus partisi yg jeleknya"
+"Tabel partisi rusak tak terbaca :(\n"
+"Partisi buruk akan dicoba dihapus"
+
+#: ../../standalone/drakTermServ_.c:189
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Konfigurasi Server Terminal Mandrake"
+
+#: ../../standalone/drakTermServ_.c:204
+msgid "Enable Server"
+msgstr "Aktifkan Server"
+
+#: ../../standalone/drakTermServ_.c:211
+msgid "Disable Server"
+msgstr "Pasifkan Server"
+
+#: ../../standalone/drakTermServ_.c:219
+msgid "Start Server"
+msgstr "Jalankan Server"
+
+#: ../../standalone/drakTermServ_.c:226
+msgid "Stop Server"
+msgstr "Stop Server"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr "Floppy Etherboot/ISO"
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr "Image Boot Net"
+
+#: ../../standalone/drakTermServ_.c:240
+msgid "Add/Del Users"
+msgstr "Tambah/Hapus User"
+
+#: ../../standalone/drakTermServ_.c:242
+msgid "Add/Del Clients"
+msgstr "Tambah/Hapus Klien DHCP"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Pertolongan"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr "Disket boot"
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr "ISO boot"
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr "Bangun Seluruh Kernel -->"
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr "Butuh beberapa menit."
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr "Tiada kernel terpilih!"
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr "Bangun NIC Single -->"
+
+#: ../../standalone/drakTermServ_.c:533
+msgid "No nic selected!"
+msgstr "Tiada nic terpilih"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr "Bangun Semua Kernel -->"
+
+#: ../../standalone/drakTermServ_.c:550
+msgid "<-- Delete"
+msgstr "<-- Hapus"
+
+#: ../../standalone/drakTermServ_.c:557
+msgid "Delete All NBIs"
+msgstr "Hapus Semua NBI"
+
+#: ../../standalone/drakTermServ_.c:619
+msgid "Add User -->"
+msgstr "Tambah user -->"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr "<-- Hapus User"
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr "Tambah Klien -->"
+
+#: ../../standalone/drakTermServ_.c:733
+msgid "<-- Del Client"
+msgstr "<-- Hapus Klien"
+
+#: ../../standalone/drakTermServ_.c:739
+msgid "dhcpd Config..."
+msgstr "Konfig dhcpd..."
+
+#: ../../standalone/drakTermServ_.c:886
+msgid "Write Config"
+msgstr "Tulis konfigurasi"
+
+#: ../../standalone/drakTermServ_.c:944
+msgid "Please insert floppy disk:"
+msgstr "Masukkan floppy:"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr "Gagal akses ke floppy!"
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr "Disket dapat dilepas sekarang"
+
+#: ../../standalone/drakTermServ_.c:953
+msgid "No floppy drive available!"
+msgstr "Floppy drive tak tersedia"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr "Image ISO Etherboot adalah %s"
+
+#: ../../standalone/drakTermServ_.c:964
+#, fuzzy
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr "Ada yg salah!"
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr "Perlu bikin dulu /etc/dhcpd.conf first!"
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
@@ -9231,6 +9606,10 @@ msgid ""
msgstr ""
"Pada tiap tahapan pilih apakah instalasi akan diulang, atau akan manual"
+#: ../../standalone/drakautoinst_.c:83
+msgid "Creating auto install floppy"
+msgstr "Disket auto install sedang dibuat"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -9243,39 +9622,30 @@ msgstr ""
"\n"
"Parameter instalasi otomatis tersedia di bagian sebelah kiri"
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Selamat!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr "Floppy sukses dibuat. Instalasi bisa direplikasi."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr "Instalasi Otomatis"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr "Tambah item"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr "Hapus item terakhir"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
@@ -9285,7 +9655,7 @@ msgstr ""
" Laporan DrakBackup \n"
"\n"
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9297,19 +9667,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9321,62 +9679,85 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr "total kemajuan"
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr "Backup file sistem..."
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
msgstr "File Backup Hard Disk..."
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
msgstr "Backup file User..."
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr "Kemajuan Backup Hard Disk..."
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
msgstr "Backup file lain..."
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, fuzzy, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
"daftar file dikirim oleh FTP : %s\n"
" "
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
+#, fuzzy
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
"\n"
-"(!) problem koneksi FTP: Gagal mengirim file backup dengan FTP.\n"
+" problem koneksi FTP: Gagal mengirim file backup dengan FTP.\n"
+
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr "(!) Kesalahan saat pengiriman surat. \n"
+#: ../../standalone/drakbackup_.c:914
+msgid " Error during mail sending. \n"
+msgstr " Kesalahan saat pengiriman surat. \n"
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
msgstr "Pilihan File"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr "Pilih file atau direktori dan klik 'Tambah'"
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -9384,107 +9765,101 @@ msgstr ""
"\n"
"Periksa semua opsi yang Anda inginkan.\n"
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Opsi ini memungkinkan backup / simpan ulang semua file di direktori /etc.\n"
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr "Backup file System Anda. ( direktori /etc )"
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr "Pakai backup incremental (tidak menghapus backup lama)"
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Tidak memasukkan file penting (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr "Dengan opsi ini Anda dapat menyimpan ulang semua versi direktori /etc."
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
msgstr "Periksa semua user yang ingin Anda masukkan ke backup."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr "Jangan masukkan cache browser"
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Pakai Backup Incremental (tidak menghapus backup lama)"
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
msgstr "Hapus Pilihan"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
-msgstr "Windows (FAT32)"
+msgstr "Mindows (FAT32)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr "User"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
msgstr "Pakai koneksi FTP utk backup"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
msgstr "Masukkan nama host atau IP."
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
"Masukkan direktori utk\n"
" meletakkan backup di host ini."
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
msgstr "Masukkan login"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
msgstr "Masukkan katasandi"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
msgstr "Ingat katasandi ini"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "Koneksi FTP"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Koneksi Aman"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr "Pakai CD/DVDROM utk backup"
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
msgstr "Pilih ruang CD Anda"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
msgstr "Periksa apakah Anda menggunakan media CDRW"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr "Cek apakah Anda ingin menghapus CDRW sebelum"
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
@@ -9492,7 +9867,7 @@ msgstr ""
"Cek jika Anda ingin memasukkan\n"
" boot instalasi di CD Anda."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -9500,16 +9875,21 @@ msgstr ""
"Masukkan nama alat Penulis CD Anda\n"
" mis: 0,1,0"
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
msgstr "Gunakan pita utk backup"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr "Masukkan nama alat utk backup"
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Cek apakah Anda ingin menghapus CDRW sebelum"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -9517,127 +9897,129 @@ msgstr ""
"Masukkan ukuran maximum\n"
" yg diizinkan utk Drakbackup"
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
+#: ../../standalone/drakbackup_.c:1497
+#, fuzzy
+msgid "Please enter the directory to save to:"
msgstr "Masukkan direktori utk penyimpanan:"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
msgstr "Pakai quota utk file backup."
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
msgstr "Jaringan"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr "HardDrive / NFS"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Tipe"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr "perjam"
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr "harian"
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr "mingguan"
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr "bulanan"
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
msgstr "Pakai daemon"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Pilih interval waktu backup"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Pilih media backup."
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Pakai Hard Drive dg daemon"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "Pakai FTP dg daemon"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+#, fuzzy
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr "Pastikan daemon cron masuk dalam daftar servis."
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr "Kirim laporan mail setelah tiap backup ke :"
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "Apa"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "Mana"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "Kapan"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
msgstr "Opsi Tambahan"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
msgstr "Konfigurasi Drakbackup"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
msgstr "Pilih tempat backup"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr "di Hard Drive"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr "lewat Network"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
msgstr "Pilih apa yang akan di-backup"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
msgstr "Backup sistem"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr "Backup User"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr "Pilih user secara manual"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
@@ -9645,7 +10027,7 @@ msgstr ""
"\n"
"Sumber Backup: \n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
@@ -9653,7 +10035,7 @@ msgstr ""
"\n"
"- File Sistem:\n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
@@ -9661,7 +10043,7 @@ msgstr ""
"\n"
"- File User:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
@@ -9669,7 +10051,7 @@ msgstr ""
"\n"
"- File Lain:\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
@@ -9678,16 +10060,45 @@ msgstr ""
"\n"
"- Simpan di Hard drive di path : %s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Device Mouse: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"- Simpan di FTP di host : %s\n"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
"\n"
"- Simpan di FTP di host : %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -9696,7 +10107,7 @@ msgstr ""
"\t\t name user: %s\n"
"\t\t di path: %s \n"
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
@@ -9704,19 +10115,19 @@ msgstr ""
"\n"
"- Opsi:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr "\tJangan masukkan File Sistem\n"
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr "\tBackup dengan tar dan bzip2\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr "\tBackup dengan tar dan gzip\n"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
@@ -9725,27 +10136,41 @@ msgstr ""
"\n"
"- Cakupan daemon (%s) :\n"
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr "\t-Hard drive.\n"
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr "\t-Network dg FTP.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr "\t-Network dg SSH.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t-Network dg FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t-Network dg FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Tiada konfigurasi, mohon klik Dukun atau Lanjutan.\n"
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
@@ -9753,7 +10178,7 @@ msgstr ""
"Daftar data simpan ulang:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
@@ -9761,131 +10186,134 @@ msgstr ""
"Daftar data rusak:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
msgid "Please uncheck or remove it on next time."
msgstr "Mohon uncheck atau hapus nanti."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr "File backup rusak"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr " Semua data terpilih telah "
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr " Berhasil Disimpan Ulang di %s "
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
msgid " Restore Configuration "
msgstr " Simpan Ulang Konfigurasi "
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr "OK utk simpan ulang file lain."
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr "Daftar user simpan ulang (hanya tanggal terakhir per user yg penting)"
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
msgstr "Backup file sistem sebelum:"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
msgid "please choose the date to restore"
msgstr "pilih tanggal simpan ulang"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
msgstr "Pakai Hard Disk utk backup"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+msgid "Please enter the directory to save:"
+msgstr "Masukkan direktori utk penyimpanan:"
+
+#: ../../standalone/drakbackup_.c:2416
+msgid "FTP Connection"
+msgstr "Koneksi FTP"
+
+#: ../../standalone/drakbackup_.c:2424
+msgid "Secure Connection"
+msgstr "Koneksi Aman"
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
msgstr "Simpan ulang dari Hard Disk."
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr "Masukkan direktori tempat backup disimpan"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
msgstr "Pilih media lain utk disimpan ulang"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
msgid "Other Media"
msgstr "Media Lain"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
msgid "Restore system"
msgstr "Simpan ulang sistem"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
msgstr "Simpan ulang User"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
msgstr "Simpan ulang Lain-lain"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr "pilih path utk simpan ulang (selain / )"
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Lakukan backup baru sebelum simpan ulang (hanya utk backup incremental.)"
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr "Hapus direktori user sebelum simpan ulang."
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr "Simpan ulang semua backup"
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
msgid "Custom Restore"
msgstr "Simpan ulang pilihan sendiri"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Pertolongan"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "Sebelumnya"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "Simpan"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
msgstr "Bangun Backup"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
msgstr "Simpan ulang"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "Lanjut"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -9893,7 +10321,7 @@ msgstr ""
"Buatlah backup sebelum menyimpan ulang...\n"
" atau pastikan path utk menyimpan sudah benar."
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
@@ -9903,31 +10331,35 @@ msgstr ""
" surat laporan Anda tak terkirim\n"
" Mohon konfigurasikan sendmail"
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Daftar Paket yang akan diinstal"
+#: ../../standalone/drakbackup_.c:2933
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Paket berikut akan diinstal"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
+#, fuzzy
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
"Error saat pengiriman file via FTP.\n"
" Betulkan konfigurasi FTP Anda."
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
msgstr "Pilih data utk disimpan ulang..."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
msgstr "Pilih media backup..."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
msgstr "Pilih data backup..."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -9935,75 +10367,75 @@ msgstr ""
"Tiada file konfigurasi \n"
"Mohon klik Dukun atau Lanjutan"
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr "Sedang dibangun ... tunggu."
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
msgid "Backup system files"
msgstr "Backup file sistem"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
msgid "Backup user files"
msgstr "Backup file user"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
msgid "Backup other files"
msgstr "Backup file lain"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr "Total Kemajuan"
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr "file dikirim dg FTP"
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
msgid "Sending files..."
msgstr "Kirim file..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr "Daftar data utk dimasukkan ke CDROM."
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
msgid "Please enter the cd writer speed"
msgstr "Masukkan kecepatan penulis cd"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr "Masukkan nama alat Penulis CD (mis: 0,1,0)"
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
msgstr "Cek jika Anda ingin memasukkan boot instalasi ke CD"
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
msgid "Backup Now from configuration file"
msgstr "Backup Sekarang dari file konfigurasi"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
msgid "View Backup Configuration."
msgstr "Lihat Konfigurasi Backup."
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
msgid "Wizard Configuration"
msgstr "Konfigurasi Dukun"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
msgid "Advanced Configuration"
msgstr "Konfigurasi Lanjutan"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
msgstr "Backup Sekarang"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -10063,7 +10495,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10077,7 +10509,7 @@ msgstr ""
" myhostname atau mydomain di /etc/postfix/main.cf harus diset\n"
"\n"
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -10152,7 +10584,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -10202,13 +10634,18 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Haksalin (C) 2001 MandrakeSoft oleh DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10236,7 +10673,7 @@ msgstr ""
" ini; jika tidak, tulis ke the Free Software\n"
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -10312,7 +10749,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -10329,7 +10766,7 @@ msgstr ""
"membangun backup di harddrive Anda sebelum mengirimnya ke server.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10350,7 +10787,7 @@ msgstr ""
"akan kehilangan semua data. Hati-hati dan jangan mengubah\n"
"file data backup secara manual.\n"
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -10429,99 +10866,522 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Instalasi %s gagal. Ada kesalahan berikut:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr "Pelapor Kutu Mandrake"
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr "Dukun Kali Pertama"
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr "Sinkronisator"
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+msgid "Standalone Tools"
+msgstr "Alat Mandiri"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr "HardDrake"
+
+#: ../../standalone/drakbug_.c:54
+msgid "Mandrake Online"
+msgstr "Mandrake Online"
+
+#: ../../standalone/drakbug_.c:55
+msgid "Menudrake"
+msgstr "Menudrake"
+
+#: ../../standalone/drakbug_.c:56
+msgid "Msec"
+msgstr "Msec"
+
+#: ../../standalone/drakbug_.c:57
+msgid "Remote Control"
+msgstr "Kontrol Remote"
+
+#: ../../standalone/drakbug_.c:58
+msgid "Software Manager"
+msgstr "Manajer Software"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr "Urpmi"
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr "Alat Migrasi Mindows"
+
+#: ../../standalone/drakbug_.c:61
+msgid "Userdrake"
+msgstr "Userdrake"
+
+#: ../../standalone/drakbug_.c:62
+msgid "Configuration Wizards"
+msgstr "Dukun Konfigurasi"
+
+#: ../../standalone/drakbug_.c:71
+msgid "Application:"
+msgstr "Aplikasi:"
+
+#: ../../standalone/drakbug_.c:75
+msgid "Package: "
+msgstr "Paket: "
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr "Kernel:"
+
+#: ../../standalone/drakbug_.c:83
+msgid "Release: "
+msgstr "Release: "
+
+#: ../../standalone/drakbug_.c:87
+#, fuzzy
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+"\n"
+"\n"
+"Klik tombol utk mengirim laporan kutu.\n"
+"Ini Akan membuka window browser web di https://www.bugzilla.com\n"
+"dan akan Anda dapatkan formulir utk diisi. Info yang tampil di atas akan\n"
+"ditransfer ke server tsb\n"
+"\n"
+
+#: ../../standalone/drakbug_.c:101
+msgid "Not installed"
+msgstr "Tak terinstal"
+
+#: ../../standalone/drakbug_.c:110
+msgid "Report"
+msgstr "Laporan"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr "koneksi ke dukun Bugzilla ..."
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Browser tak tersedia! Installah satu"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Konfigurasi Jaringan (adapter %d)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profil: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Hapus profil..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Profil yang hendak dihapus:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Buat profil baru..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Nama profil yg akan dibuat (profil baru dibuat sbg salinan yg sekarang) :"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Nama Host: "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Akses Internet"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Tipe: "
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Gateway:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Interface: "
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Status: "
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "Tunggu"
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Konfigurasi Akses Internet..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "konfigurasi LAN"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Driver"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Interface"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protokol"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Status"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Konfigurasi Local Area Network..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "Klik di sini utk meluncurkan wizard ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Wizard..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Pasang"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Tunggu ya, sedang mengaktifkan konfigurasi"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Tersambung"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Tak tersambung"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Sambungkan..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Koneksi diputus"
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr "Awas, koneksi Internet lain terdeteksi, mungkin memakai jaringan Anda"
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Tiada interface terkonfigurasi.\n"
+"Konfigurasi dulu dg meng-klik 'Configure'"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "konfigurasi LAN"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Adapter %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Protokol Boot"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Dijalankan saat boot"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "Klien DHCP"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "aktifkan sekarang"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "non-aktifkan sekarang"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Antarmuka ini belum dikonfigurasikan.\n"
+"Luncurkan dukun konfigurasi di window utama"
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Tiada koneksi internet.\n"
+"Buat dulu dg meng-klik 'Configure'"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "konfigurasi koneksi Internet"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "konfigurasi koneksi Internet"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Tipe koneksi"
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parameter"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Gateway"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Kartu Ethernet"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "Klien DHCP"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "pemakaian: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Nama Modul"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Ukuran"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "pembuatan bootdisk"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "standar"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Error DrakFloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "versi kernel"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Umum"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Area Pakar"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "opsi argumen mkinitrd"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "tambah modul"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "paksa"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "jika perlu"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "abaikan modul SCSI"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "abaikan modul RAID"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Hapus modul"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Keluaran"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Buat disk"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Pastikan media ada di device %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"Media di device %s tidak ada atau write-protected.\n"
+"Masukkan satu."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Fork gagal: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Gagal tutup mkbootdisk dg baik: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr "Cari font terinstal"
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr "Lepas pilih font terinstal"
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr "baca semua font"
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
msgid "no fonts found"
msgstr "tiada font ditemukan"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "selesai"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr "tak ditemukan font di partisi termount"
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr "Pilih ulang font yg benar"
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr "gagal temukan font.\n"
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr "Cari font di daftar instalasi"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr "Copy font"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
msgid "True Type fonts installation"
msgstr "Instalasi font True Tupe"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr "tunggu saat ttmkfdir..."
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr "Instalasi True Type selesai"
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr "Konversi font"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr "bangun type1inst"
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr "referensi Ghostscript"
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr "konversi font ttf"
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr "konversi font pfm"
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr "Sembunyikan file temporer"
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr "Jalankan ulang XFS"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr "Sembunyikan File Font"
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
msgid "xfs restart"
msgstr "jalankan ulang xfs"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10535,107 +11395,107 @@ msgstr ""
"-Anda dapat menginstal font dengan cara normal. Terkadang, font palsu dapat "
"membuat server X Anda hang."
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
msgid "Fonts Importation"
msgstr "Impor Font"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr "Ambil Font Windows"
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr "Buang Font"
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Opsi Lanjutan"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
msgstr "Daftaf Font"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
msgid "Choose the applications that will support the fonts :"
msgstr "Pilih aplikasi yang mensupport font :"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
msgstr "Printer Generik"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr "Pilih file font atau direktori dan klik 'Tambah'"
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
msgstr "Daftar Instalasi"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr "klik di sini jika Anda yakin."
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr "di sini jika tidak."
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr "Semua tak dipilih"
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
msgid "Selected All"
msgstr "Semua Dipilih"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
msgstr "Hapus Daftar"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr "Tes Awal"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
msgstr "Salin font di sistem Anda"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr "Instal & konversikan Font"
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
msgid "Post Install"
msgstr "Instalasi Akhir"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
msgstr "Hapus font di sistem Anda"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
msgid "Post Uninstall"
msgstr "Un-Instalasi Akhir"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Pemakaian Bersama Koneksi Internet"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr "Maaf, support hanya untuk kernel 2.4"
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Pemakaian Bersama Koneksi Internet telah aktif"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10647,31 +11507,31 @@ msgstr ""
"\n"
"Apa yang ingin Anda lakukan?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "matikan"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "tutup"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "konfigurasi ulang"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Server-server sedang dimatikan"
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Internet Connection Sharing telah dimatikan"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Internet Connection Sharing masih dimatikan"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10683,19 +11543,19 @@ msgstr ""
"\n"
"Apa yang ingin Anda lakukan?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "aktifkan"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Server-server akan dinyalakan"
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Internet Connection Sharing sudah aktif"
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10711,32 +11571,32 @@ msgstr ""
"Perhatikan: Anda mesti punya adapter jaringan untuk mensetup Local Area "
"Network (LAN)."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interface %s (pakai module %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Antarmuka %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Tidak ada adaptor jaringan di sistem ini!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
"Tiada adapter jaringan ethernet terdeteksi. Jalankan konfigurator hardware."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Antarmuka jaringan"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10751,7 +11611,7 @@ msgstr ""
"\n"
"Apakah Anda mau melakukan setup Local Area Network untuk adapter itu?"
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -10759,11 +11619,11 @@ msgstr ""
"Silakan pilih adapter jaringan yang hendak disambung ke Local Area Network "
"Anda."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr "Antarmuka network telah dikonfigurasi"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10778,15 +11638,15 @@ msgstr ""
"\n"
"Anda dapat melakukannya secara manual tapi Anda perlu tahu yg Anda kerjakan."
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr "Konfigurasi ulang otomatis"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr "Tampilkan konfigurasi antarmuka"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10803,7 +11663,7 @@ msgstr ""
"Atribut IP: %s\n"
"Driver: %s"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
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 C-Class Network that "
@@ -10822,53 +11682,53 @@ msgstr ""
"Atau, antarmuka dan server DHCP dapat dikonfigurasikan (lagi).\n"
"\n"
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr "Jaringan Lokal Kelas-C"
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr "IP Server DHCP (Ini)"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr "Konfigurasi ulang antarmuka dan server DHCP"
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Jaringan Lokal tak berakhiran `.0', keluar."
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Ada potensi konflik alamat LAN pada konfigurasi %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Konfigurasi firewall terdeteksi!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
msgstr ""
-"Awas! Ada konfigurasi firewall yang sudah ada nih. Anda nanti perlu mengecek "
-"dan membetulkan dengan cara manual setelah instalasi."
+"Awas! Sudah ada konfigurasi firewall. Anda perlu mengecek dan membetulkan "
+"secara manual setelah instalasi."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Konfigurasi..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Mengkonfigurasikan skrip, menginstall software, menjalankan server..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Problem instalasi paket %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10879,23 +11739,23 @@ msgstr ""
"pada Local Area Network di tempat Anda, dengan menggunakan konfigurasi "
"jaringan otomatis (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "Konfigurasi telah seleasi.Namun sekarang masih dimatikan."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Konfigurasi telah selesai.Namun sekarang sudah aktif."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Internet Connection Sharing belum pernah dikonfigurasikan"
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Koneksi dan konfigurasi sharing Internet"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10910,213 +11770,6 @@ msgstr ""
"\n"
"Silakan pencet Konfigurasikan untuk mulai."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Konfigurasi Jaringan (adapter %d)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Hapus profil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Profil yang hendak dihapus:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Buat profil baru..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Nama profil yg akan dibuat (profil baru dibuat sbg salinan yg sekarang) :"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Nama Host: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Akses Internet"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tipe: "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Interface: "
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Status: "
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Tunggu"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Konfigurasi Akses Internet..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "konfigurasi LAN"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Driver"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interface"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokol"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Status"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Konfigurasi Local Area Network..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Klik di sini utk meluncurkan wizard ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Wizard..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Pasang"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Tunggu ya, sedang mengaktifkan konfigurasi"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Tersambung"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Tak tersambung"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Sambungkan..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Koneksi diputus"
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr "Awas, koneksi Internet lain terdeteksi, mungkin memakai jaringan Anda"
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Tiada interface terkonfigurasi.\n"
-"Konfigurasi dulu dg meng-klik 'Configure'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "konfigurasi LAN"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adapter %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Protokol Boot"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Dijalankan saat boot"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "Klien DHCP"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "aktifkan sekarang"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "non-aktifkan sekarang"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Antarmuka ini belum dikonfigurasikan.\n"
-"Luncurkan dukun konfigurasi di window utama"
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Tiada koneksi internet.\n"
-"Buat dulu dg meng-klik 'Configure'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "konfigurasi koneksi Internet"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "konfigurasi koneksi Internet"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Tipe koneksi"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parameter"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Card Ethernet"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "Klien DHCP"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Pilih tingkat keamanan"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Pusat Kontrol"
@@ -11125,63 +11778,91 @@ msgstr "Pusat Kontrol"
msgid "Choose the tool you want to use"
msgstr "Pilih tool yang hendak digunakan"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\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 ""
+"XawTV tak diinstal!\n"
+"\n"
+"\n"
+"Jika Anda punya kartu TV tapi DrakX tak dapat mendeteksinya (modul bttv\n"
+"tak terdapat di \"/etc/modules\") atau xawtv terinstal, mohon kirimkan\n"
+"hasil \"lspcidrake -v -f\" ke \"install\\@mandrakesoft.com\"\n"
+"dengan subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"Anda dapat menginstalnya dg menuliskan \"urpmi xawtv\" sbg root di konsol."
+
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
msgstr "Kanada (kabel)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr "AS (siaran)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr "AS (kabel)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr "AS (kabel-hrc)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr "Cina (siaran)"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr "Jepang (siaran)"
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr "Jepang (kabel)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
msgstr "Eropa Timur"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+msgid "France [SECAM]"
+msgstr "Perancis [SECAM]"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
msgstr "Irlandia"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
msgstr "Eropa Barat"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
msgstr "Australia"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr "Selandia Baru"
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr "Afrika Selatan"
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr "Argentina"
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
@@ -11189,27 +11870,43 @@ msgstr ""
"Tolong,\n"
"tuliskan standar dan daerah tv Anda"
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr "standar TV :"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr "Area :"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr "Kanal TV sedang di-scan ..."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr "Men-scan kanal TV"
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+msgid "There was an error while scanning for TV channels"
+msgstr "Ada error saat men-scan kanal TV"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr "XawTV tak diinstal"
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr "Daagh!"
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr "Kini Anda dapat menjalankan xawtv di Window X\n"
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
-msgstr ""
+msgstr "Kartu TV tak terdeteksi!"
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -11220,6 +11917,14 @@ msgid ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+"Kartu TV tak terdeteksi. Pastikan Kartu Video/TV yg disupport Linux "
+"terhubung dengan benar.\n"
+"\n"
+"\n"
+"Kunjungi database piranti keras di:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
@@ -11253,7 +11958,7 @@ msgstr "Gagal memulai upgrade live !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr "Perubahan telah dilakukan, Anda harus logout agar perubahan berlaku"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -11301,10 +12006,6 @@ msgstr "/_Pilihan"
msgid "/Options/Test"
msgstr "/Pilihan/Test"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Help"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr "/Help/_About..."
@@ -11365,7 +12066,7 @@ msgstr "Kalender"
msgid "Content of the file"
msgstr "Isi file"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr "Peringatan Mail/SMS"
@@ -11374,11 +12075,11 @@ msgstr "Peringatan Mail/SMS"
msgid "please wait, parsing file: %s"
msgstr "tunggu, sedang menelaah file: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
msgstr "Konfigurasi peringatan Mail/SMS"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
@@ -11388,63 +12089,94 @@ msgstr ""
"\n"
"Anda dapat mengeset sistem peringatan.\n"
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Nama domain"
#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
+#, fuzzy
+msgid "Ftp Server"
+msgstr "Stop Server"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Server mail Postfix, server news Inn"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "Jalankan Server"
#: ../../standalone/logdrake_.c:422
+#, fuzzy
+msgid "SSH Server"
+msgstr "Server NIS"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Servis"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Server Printer"
+
+#: ../../standalone/logdrake_.c:431
msgid "service setting"
msgstr "setting servis"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr "Anda akan menerima peringatan bila salah satu servis terpilih terhenti"
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
msgstr "setting muatan"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr "Anda akan diperingatkan jika muatan lebih tinggi daripada nilai ini"
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
msgstr "konfigurasi peringatan"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr "Konfigurasikan cara sistem memperingatkan Anda"
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Simpan di..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Tipe mouse yang anda punya?"
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "tiada serial_usb\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Emulasikan tombol ketiga?"
+#: ../../standalone/printerdrake_.c:49
+msgid "Reading printer data ..."
+msgstr "Pembacaan data printer ..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "Pendeteksian alat..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -11465,11 +12197,12 @@ msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
+"Scannerdrake gagal mendeteksi scanner %s Anda.\n"
+"Pilihlah device tempat scanner terhubung"
#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
msgid "choose device"
-msgstr "Device boot"
+msgstr "pilih device"
#: ../../standalone/scannerdrake_.c:102
#, c-format
@@ -11489,6 +12222,23 @@ msgid ""
"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
"applications menu."
msgstr ""
+"Scanner %s telah dikonfigurasikan.\n"
+"Anda dapat men-scan dokumen dengan ``XSane'' dari Multimedia/Grafik di menu "
+"aplikasi."
+
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr "Some devices in the \"%s\" hardware class were removed:\n"
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+"\n"
+"Bbrp device di kelas %s ditambahkan:\n"
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
@@ -11634,7 +12384,7 @@ msgid ""
msgstr ""
"Apakah Anda ingin webserver Anda juga dapat diakses dari Internet ??\n"
"Bila Anda ingin webserver Anda HANYA ingin diakses dari KOMPUTER INI SAJA\n"
-"maka jawab saja TIDAK di sini\n"
+"maka jawab saja TIDAK di sini.\n"
"\n"
#: ../../tinyfirewall.pm_.c:26
@@ -11672,8 +12422,8 @@ msgid ""
"telnet.\n"
msgstr ""
"Apakah Anda ingin membuka koneksi telnet?\n"
-"Tapi ini sangatlah tidak aman sebagaimana dijelaskan pada layar sebelumnya.\n"
-"Ayo deh jawab TIDAK dan gunakan SSH saja.\n"
+"Ini sangat tidak aman sebagaimana dijelaskan pada layar sebelumnya.\n"
+"Sebaiknya jawab TIDAK dan gunakan SSH.\n"
#: ../../tinyfirewall.pm_.c:41
msgid ""
@@ -11695,9 +12445,9 @@ msgid ""
"you probably are. Otherwise, you should firewall this off.\n"
"\n"
msgstr ""
-"Apakah Anda menjalankan server mail ? Bila Anda mengirimkan email\n"
-"dengan menggunakan pine, mutt, atau klien mail teks, maka sebaiknya iya.\n"
-"Selainnya, matikan saja deh.\n"
+"Apakah Anda menjalankan server mail ? Bila Anda mengirim email dengan\n"
+"menggunakan pine, mutt, atau klien mail teks, maka sebaiknya iya.\n"
+"Selainnya, matikan saja.\n"
"\n"
#: ../../tinyfirewall.pm_.c:51
@@ -11719,9 +12469,9 @@ msgid ""
"(dynamically assigned), we need to allow for this. Is\n"
"this the case?\n"
msgstr ""
-"Wah, Anda pakai kernel 2.2 yah... Bila IP jaringan Anda diset sendiri\n"
-"oleh komputer di kantor atau rumah (secara dinamis)\n"
-"maka kita harus jawab YA di sini. Benar tak demikian?\n"
+"Kelihatannya Anda memakai kernel 2.2. Bila IP jaringan Anda diset sendiri\n"
+"oleh komputer di kantor atau rumah (secara dinamis) maka kita harus jawab\n"
+"YA di sini. Benarkah demikian?\n"
#: ../../tinyfirewall.pm_.c:61
msgid ""
@@ -11734,9 +12484,8 @@ msgstr ""
"Apakah komputer Anda mendapatkan informasi jam dari komputer lain?\n"
"Biasanya, fasilitas ini digunakan oleh organisasi sedang/besar Unix/Linux\n"
"untuk sinkronisasi waktu untuk logging dan sebagainya. Bila Anda\n"
-"tidak tergabung dari kantor yang besar atau belum pernah dengar ini "
-"sebelumnya.\n"
-"jawab TIDAK deh"
+"tidak tergabung dari kantor yang besar atau belum pernah dengar ini\n"
+"sebelumnya, jawab TIDAK."
#: ../../tinyfirewall.pm_.c:66
msgid ""
@@ -11758,7 +12507,7 @@ msgstr "Tidak bisa buka %s: %s\n"
#: ../../tinyfirewall.pm_.c:84
#, c-format
msgid "Can't open %s for writing: %s\n"
-msgstr "error membuka file %s untuk ditulisi: %s\n"
+msgstr "Tak dapat membuka file %s untuk ditulisi: %s\n"
#: ../../tinyfirewall.pm_.c:180
msgid "No I don't need DHCP"
@@ -11888,17 +12637,13 @@ msgstr "Server database PostgreSQL atau MySQL"
#: ../../share/compssUsers:999
msgid "Tools to ease the configuration of your computer"
-msgstr "Tools untuk memudahkan konfigurasi komputer."
+msgstr "Alat untuk memudahkan konfigurasi komputer."
#: ../../share/compssUsers:999
msgid "Multimedia - Sound"
msgstr "Multimedia - Sound"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Peralatan"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Dokumentasi"
@@ -11920,7 +12665,7 @@ msgstr "Komputer Multimedia"
#: ../../share/compssUsers:999
msgid "Configuration"
-msgstr "konfigurasi"
+msgstr "Konfigurasi"
#: ../../share/compssUsers:999
msgid "More Graphical Desktops (Gnome, IceWM)"
@@ -12003,10 +12748,6 @@ msgstr ""
"tin..) dan untuk membrowse Web"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arsip, emulator, pemantauan"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Keuangan Pribadi"
@@ -12054,6 +12795,1647 @@ msgstr "Multimedia - CD Burning"
msgid "Scientific Workstation"
msgstr "Aplikasi Ilmu pengetahuan"
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "fsck gagal dg kode keluar %d / sinyal %d"
+
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Identifikasi kartu grafis: %s\n"
+
+#~ msgid "Choose options for server"
+#~ msgstr "Pilih opsi server"
+
+#~ msgid "Monitor not configured"
+#~ msgstr "Monitor tidak dikonfigurasi"
+
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Kartu grafis belum dikonfigurasi"
+
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Resolusi belum ditentukan"
+
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "coba ubah beberapa parameter"
+
+#~ msgid "An error occurred:"
+#~ msgstr "Ada error:"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Tinggalkan dalam %d detik"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Setting sudah benar?"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Ada kesalahan, coba ubah beberapa parameter"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "Server XFree86: %s"
+
+#~ msgid "Show all"
+#~ msgstr "Tampilkan seluruhnya"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Siap-siap konfigurasikan X "
+
+#~ msgid "What do you want to do?"
+#~ msgstr "Apa yang akan Anda mau?"
+
+#~ msgid "Change Monitor"
+#~ msgstr "Ubah Monitor"
+
+#~ msgid "Change Graphics card"
+#~ msgstr "Ubah kartu grafis"
+
+#~ msgid "Change Server options"
+#~ msgstr "Ubah Parameter Server"
+
+#~ msgid "Change Resolution"
+#~ msgstr "Ubah Resolusi"
+
+#~ msgid "Show information"
+#~ msgstr "Lihat info"
+
+#~ msgid "Test again"
+#~ msgstr "Tes lagi"
+
+#~ msgid ""
+#~ "Description of the fields:\n"
+#~ "\n"
+#~ "Bus: this is the physical bus on which the device is plugged (eg: PCI, "
+#~ "USB, ...)\n"
+#~ "\n"
+#~ "Bus identification: \n"
+#~ "- pci devices : this list the vendor, device, subvendor and subdevice PCI "
+#~ "ids\n"
+#~ "\n"
+#~ "Description: this field describe the device\n"
+#~ "\n"
+#~ "Location on the bus: \n"
+#~ "- pci devices: this gives the PCI slot, device and function of this card\n"
+#~ "- eide devices: the device is either a slave or a master device\n"
+#~ "- scsi devices: the scsi bus and the scsi device ids\n"
+#~ "\n"
+#~ "Media class: class of hardware device\n"
+#~ "\n"
+#~ "Module: the module of the GNU/Linux kernel that handle that device\n"
+#~ "\n"
+#~ "Vendor: the vendor name of the device\n"
+#~ msgstr ""
+#~ "Penjelasan Umum:\n"
+#~ "\n"
+#~ "Bus: bus fisik letak device (mis: PCI, USB, ...)\n"
+#~ "\n"
+#~ "Identifikasi bus:\n"
+#~ "- device pci : ID daftar pembuat, device, sub-pembuat dan subdevice PCI\n"
+#~ "\n"
+#~ "Penjelasan: penjelasan device\n"
+#~ "\n"
+#~ "Lokasi bus: \n"
+#~ "- device pci : slot dan device PCI, serta fungsi kartu\n"
+#~ "- device eide: device adalah slave atau master\n"
+#~ "- device scsi: bus scsi dan id device scsi\n"
+#~ "\n"
+#~ "Kelas media: kelas device hardware\n"
+#~ "\n"
+#~ "Modul: modul kernel GNU/Linux yang menghandle device tsb\n"
+#~ "\n"
+#~ "Vendor: nama pembuat device\n"
+
+#~ msgid ""
+#~ "Your HP multi-function device was configured automatically to be able to "
+#~ "scan. Now you can scan from the command line with \"ptal-hp %s scan ..."
+#~ "\". Scanning via a graphical interface or from the GIMP is not supported "
+#~ "yet for your device. More information you will find in the \"/usr/share/"
+#~ "doc/hpoj-0.8/ptal-hp-scan.html\" file on your system. If you have an HP "
+#~ "LaserJet 1100 or 1200 you can only scan when you have the scanner option "
+#~ "installed.\n"
+#~ "\n"
+#~ "Do not use \"scannerdrake\" for this device!"
+#~ msgstr ""
+#~ "Alat multifungsi HP Anda terkonfigurasi otomatis agar dapat men-scan. "
+#~ "Kini Anda dapat men-scan dari baris perintah dg \"ptal-hp %s scan ...\". "
+#~ "Scan via antarmuka grafis atau GIMP saat ini belum di-support. Info "
+#~ "lanjutada di \"/usr/share/doc/hpoj-0.8/ptal-hp-scan.html\". Jika Anda "
+#~ "punya HP LaserJet 1100 atau 1200 Anda hanya dapat men-scan jika opsi "
+#~ "scanner terinstal.\n"
+#~ "\n"
+#~ "Jangan pakai \"scannerdrake\" utk alat ini!"
+
+#~ msgid "Use Hard Drive with daemon"
+#~ msgstr "Pakai Hard Drive dg daemon"
+
+#~ msgid "Use FTP with daemon"
+#~ msgstr "Pakai FTP dg daemon"
+
+#~ msgid "Package List to Install"
+#~ msgstr "Daftar Paket yang akan diinstal"
+
+#~ msgid "proftpd"
+#~ msgstr "proftpd"
+
+#~ msgid "sshd"
+#~ msgstr "sshd"
+
+#~ msgid "webmin"
+#~ msgstr "webmin"
+
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
+
+#~ msgid ""
+#~ "GNU/Linux is a multiuser system, and this means that each user can have "
+#~ "his\n"
+#~ "own preferences, his own files and so on. You can read the ``User "
+#~ "Guide''\n"
+#~ "to learn more. But unlike \"root\", which is the administrator, the "
+#~ "users\n"
+#~ "you will add here will not be entitled to change anything except their "
+#~ "own\n"
+#~ "files and their own configuration. You will have to create at least one\n"
+#~ "regular user for yourself. That account is where you should log in for\n"
+#~ "routine use. Although it is very practical to log in as \"root\" "
+#~ "everyday,\n"
+#~ "it may also be very dangerous! The slightest mistake could mean that "
+#~ "your\n"
+#~ "system would not work any more. If you make a serious mistake as a "
+#~ "regular\n"
+#~ "user, you may only lose some information, but not the entire system.\n"
+#~ "\n"
+#~ "First, you have to enter your real name. This is not mandatory, of "
+#~ "course\n"
+#~ "as you can actually enter whatever you want. DrakX will then take the "
+#~ "first\n"
+#~ "word you have entered in the box and will bring it over to the \"User\n"
+#~ "name\". This is the name this particular user will use to log onto the\n"
+#~ "system. You can change it. You then have to enter a password here. A\n"
+#~ "non-privileged (regular) user's password is not as crucial as \"root\"' "
+#~ "one\n"
+#~ "from a security point of view, but that is no reason to neglect it: "
+#~ "after\n"
+#~ "all, your files are at risk.\n"
+#~ "\n"
+#~ "If you click on \"Accept user\", you can then add as many as you want. "
+#~ "Add\n"
+#~ "a user for each one of your friends: your father or your sister, for\n"
+#~ "example. When you finish adding all the users you want, select \"Done\".\n"
+#~ "\n"
+#~ "Clicking the \"Advanced\" button allows you to change the default \"shell"
+#~ "\"\n"
+#~ "for that user (bash by default)."
+#~ msgstr ""
+#~ "GNU/Linux adalah sistem multiuser, artinya tiap user bisa punya "
+#~ "kesukaan,\n"
+#~ "file dll sendiri. Anda bisa membaca ``User Guide'' utk belajar lebih "
+#~ "dalam.\n"
+#~ "Tapi tak seperti \"root\", sang administrator, user di sini tak berhak\n"
+#~ "mengubah apapun kecuali konfigurasi dan file mereka sendiri. Anda harus\n"
+#~ "membuat setidaknya satu user reguler utk Anda sendiri. Account ini Anda\n"
+#~ "pakai utk rutinitas. Meski Anda dapat login sbg \"root\" tiap hari, tapi\n"
+#~ "itu amat berbahaya! Kesalahan terkecil dapat menyebabkan sistem Anda tak\n"
+#~ "bekerja selamanya. Meski Anda melakukan kesalahan serius sbg user "
+#~ "normal,\n"
+#~ "Anda hanya akan kehilangan sebagian informasi, tidak seluruh sistem.\n"
+#~ "\n"
+#~ "Pertama, Anda harus mengisi nama. Ini tidak wajib, tentu saja - Anda "
+#~ "dapat\n"
+#~ "mengisinya sesuka Anda. DrakX akan mengambil kata pertama yg anda "
+#~ "masukkan\n"
+#~ "di kotak sbg \"Nama user\". Ini adalah nama user yg dipakai utk login ke\n"
+#~ "sistem. Anda bisa mengubahnya. Lalu Anda harus mengisi katasandi. "
+#~ "Katasandi\n"
+#~ "user non-privileged (reguler) tak sepenting katasandi \"root\" dari segi\n"
+#~ "keamanan, tapi tak ada alasan utk mengabaikannya - file Anda bisa "
+#~ "beresiko.\n"
+#~ "\n"
+#~ "Klik \"Buat user\", selanjutnya Anda dapat menambahkan user sebanyak "
+#~ "Anda\n"
+#~ "mau. Misalnya, tambahkan user utk teman, ayah, atau saudara Anda. Bila "
+#~ "Anda\n"
+#~ "selesai menambahkan semua user, pilih \"Selesai\".\n"
+#~ "\n"
+#~ "Klik \"Tambahan\" memungkinkan Anda mengubah \"shell\" standar utk user\n"
+#~ "terkait (standar: bash)."
+
+#~ msgid ""
+#~ "It is now time to specify which programs you wish to install on your\n"
+#~ "system. There are thousands of packages available for Mandrake Linux, "
+#~ "and\n"
+#~ "you are not supposed to know them all by heart.\n"
+#~ "\n"
+#~ "If you are performing a standard installation from a CD-ROM, you will "
+#~ "first\n"
+#~ "be asked to specify the CDs you currently have (in Expert mode only). "
+#~ "Check\n"
+#~ "the CD labels and highlight the boxes corresponding to the CDs you have\n"
+#~ "available for installation. Click \"OK\" when you are ready to continue.\n"
+#~ "\n"
+#~ "Packages are sorted in groups corresponding to a particular use of your\n"
+#~ "machine. The groups themselves are sorted into four sections:\n"
+#~ "\n"
+#~ " * \"Workstation\": if you plan to use your machine as a workstation, "
+#~ "select\n"
+#~ "one or more of the corresponding groups;\n"
+#~ "\n"
+#~ " * \"Development\": if your machine is to be used for programming, "
+#~ "choose\n"
+#~ "the desired group(s);\n"
+#~ "\n"
+#~ " * \"Server\": if your machine is intended to be a server, you will be "
+#~ "able\n"
+#~ "to select which of the most common services you wish to install on your\n"
+#~ "machine;\n"
+#~ "\n"
+#~ " * \"Graphical Environment\": finally, this is where you will choose "
+#~ "your\n"
+#~ "preferred graphical environment. At least one must be selected if you "
+#~ "want\n"
+#~ "to have a graphical workstation!\n"
+#~ "\n"
+#~ "Moving the mouse cursor over a group name will display a short "
+#~ "explanatory\n"
+#~ "text about that group. If you deselect all groups when performing a "
+#~ "regular\n"
+#~ "installation (by opposition to an upgrade), a dialog will pop up "
+#~ "proposing\n"
+#~ "different options for a minimal installation:\n"
+#~ "\n"
+#~ " * \"With X\": install the fewer packages possible to have a working\n"
+#~ "graphical desktop;\n"
+#~ "\n"
+#~ " * \"With basic documentation\": installs the base system plus basic\n"
+#~ "utilities and their documentation. This installation is suitable for\n"
+#~ "setting up a server;\n"
+#~ "\n"
+#~ " * \"Truly minimal install\": will install the strict minimum necessary "
+#~ "to\n"
+#~ "get a working Linux system, in command line only. This installation is\n"
+#~ "about 65Mb large.\n"
+#~ "\n"
+#~ "You can check the \"Individual package selection\" box, which is useful "
+#~ "if\n"
+#~ "you are familiar with the packages being offered or if you want to have\n"
+#~ "total control over what will be installed.\n"
+#~ "\n"
+#~ "If you started the installation in \"Upgrade\" mode, you can unselect "
+#~ "all\n"
+#~ "groups to avoid installing any new package. This is useful for repairing "
+#~ "or\n"
+#~ "updating an existing system."
+#~ msgstr ""
+#~ "Kini kita tentukan program yg akan diinstal di sistem Anda. Ribuan paket\n"
+#~ "tersedia di Mandrake Linux, Anda tak perlu mengenal semuanya.\n"
+#~ "\n"
+#~ "Jika Anda menjalankan instalasi standar dari CDROM, Anda akan diminta\n"
+#~ "menentukan CD yg Anda punya (hanya pd mode Ahli). Cek label CD dan\n"
+#~ "tandai kotak yg sesuai dg CD yg Anda miliki utk instalasi. Klik \"OK\" "
+#~ "jika\n"
+#~ "Anda siap melanjutkan.\n"
+#~ "\n"
+#~ "Paket disortir menurut grup sesuai kegunaan mesin Anda.\n"
+#~ "Grup diurutkan ke dalam empat bagian:\n"
+#~ "\n"
+#~ " * \"Workstation\": jika Anda ingin menggunakan mesin Anda sbg "
+#~ "workstation, pilih\n"
+#~ "satu/lebih grup yg sesuai.\n"
+#~ "\n"
+#~ " * \"Development\": jika mesin akan digunakan utk pemrograman, pilih "
+#~ "grup\n"
+#~ "yg diinginkan.\n"
+#~ "\n"
+#~ " * \"Server\": jika mesin diinginkan menjadi server, Anda dapat\n"
+#~ "memilih servis paling umum yg akan diinstal.\n"
+#~ "\n"
+#~ " * \"Lingkungan Grafis\": akhirnya, di sini Anda memilih lingkungan\n"
+#~ "grafis. Minimal Anda harus pilih satu jika ingin punya workstation "
+#~ "grafis!\n"
+#~ "\n"
+#~ "Untuk melihat penjelasan singkat, gerakkan kursor mouse ke atas nama "
+#~ "grup.\n"
+#~ "Jika Anda tak memilih satu grup pun saat melakukan instalasi normal "
+#~ "(bukan\n"
+#~ "upgrade) popup dialog akan muncul dengan menu instalasi minimal:\n"
+#~ "\n"
+#~ " * \"Dengan X\" Instal paket minimal yang memungkinkan kerja dengan "
+#~ "desktop\n"
+#~ "grafis;\n"
+#~ "\n"
+#~ " * \"Dengan dokumentasi dasar\" Instal sistem plus peralatan dasar dan\n"
+#~ "dokumentasinya. Instalasi ini cocok untuk setup server.\n"
+#~ "\n"
+#~ " * \"Instalasi minimal sungguh\" Hanya instal kebutuhan minimum sistem,\n"
+#~ "dalam baris perintah saja. Butuh sekitar 65Mb.\n"
+#~ "\n"
+#~ "Anda dapat memilih \"Pilih paket sendiri\", berguna jika Anda tahu baik\n"
+#~ "paket yg disediakan atau ingin mengontrol instalasi secara total.\n"
+#~ "\n"
+#~ "Jika Anda memulai instalasi dg mode \"Upgrade\", Anda dapat melepas "
+#~ "seleksi\n"
+#~ "semua group utk menghindari instalasi paket baru. Ini berguna utk "
+#~ "reparasi\n"
+#~ "atau update sistem yg ada."
+
+#~ msgid ""
+#~ "The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it "
+#~ "by\n"
+#~ "booting from the CD-ROM, press the >>F1<< key at boot and type "
+#~ ">>rescue<<\n"
+#~ "at the prompt. But in case your computer cannot boot from the CD-ROM, "
+#~ "you\n"
+#~ "should come back to this step for help in at least two situations:\n"
+#~ "\n"
+#~ " * when installing the bootloader, DrakX will rewrite the boot sector "
+#~ "(MBR)\n"
+#~ "of your main disk (unless you are using another boot manager), to allow "
+#~ "you\n"
+#~ "to start up with either Windows or GNU/Linux (assuming you have Windows "
+#~ "in\n"
+#~ "your system). If you need to reinstall Windows, the Microsoft install\n"
+#~ "process will rewrite the boot sector, and then you will not be able to\n"
+#~ "start GNU/Linux!\n"
+#~ "\n"
+#~ " * if a problem arises and you cannot start up GNU/Linux from the hard "
+#~ "disk,\n"
+#~ "this floppy disk will be the only means of starting up GNU/Linux. It\n"
+#~ "contains a fair number of system tools for restoring a system, which has\n"
+#~ "crashed due to a power failure, an unfortunate typing error, a typo in a\n"
+#~ "password, or any other reason.\n"
+#~ "\n"
+#~ "When you click on this step, you will be asked to enter a disk inside "
+#~ "the\n"
+#~ "drive. The floppy disk you will insert must be empty or contain data "
+#~ "which\n"
+#~ "you do not need. You will not have to format it since DrakX will rewrite\n"
+#~ "the whole disk."
+#~ msgstr ""
+#~ "CDROM Mandrake Linux punya mode pertolongan built-in, yg bisa diakses dg\n"
+#~ "mem-boot dari CDROM, tekan >>F1<< dan ketik >>rescue<< di prompt. Tapi "
+#~ "jika\n"
+#~ "komputer Anda tak dapat mem-boot dari CDROM, kembalilah ke tahap ini "
+#~ "untuk\n"
+#~ "pertolongan dalam setidaknya 2 situasi:\n"
+#~ "\n"
+#~ " * saat instalasi bootloader, DrakX akan menulis ulang sektor boot (MBR)\n"
+#~ "disk utama Anda (kecuali jika Anda memakai manajer boot lain) sehingga "
+#~ "Anda\n"
+#~ "dapat menjalankan GNU/Linux atau Mindows (jika Anda punya Mindows di "
+#~ "sistem\n"
+#~ "Anda). Jika Anda menginstal Mindows lagi, proses instal micro$oft akan\n"
+#~ "menulis ulang sektor boot, dan Anda takkan dapat menjalankan GNU/Linux!\n"
+#~ "\n"
+#~ " * jika ada masalah sehingga Anda tak dapat menjalankan GNU/Linux dari "
+#~ "hard\n"
+#~ "disk, disket ini adalah jalan satu-satunya utk menjalankan GNU/Linux. "
+#~ "Ini\n"
+#~ "berisi sejumlah alat utk mereparasi sistem yg rusak karena kegagalan "
+#~ "power,\n"
+#~ "salah ketik, alpa kata sandi, dan lain-lain.\n"
+#~ "\n"
+#~ "Bila step ini diklik, Anda akan diminta memasukkan disket ke drive. "
+#~ "Disket\n"
+#~ "harus kosong / berisi data yg tak Anda perlukan. Tak perlu diformat "
+#~ "sebab\n"
+#~ "DrakX akan menulis ulang seluruh disket."
+
+#~ msgid ""
+#~ "At this point, you need to choose 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"
+#~ "need to partition it. Basically, partitioning a hard drive consists of\n"
+#~ "logically dividing it to create space to install your new Mandrake Linux\n"
+#~ "system.\n"
+#~ "\n"
+#~ "Because the partitioning process' effects are usually irreversible,\n"
+#~ "partitioning can be intimidating and stressful if you are an "
+#~ "inexperienced\n"
+#~ "user. Fortunately, there is a wizard which simplifies this process. "
+#~ "Before\n"
+#~ "beginning, please consult the manual and take your time.\n"
+#~ "\n"
+#~ "If you are running the installation in Expert mode, you will enter\n"
+#~ "DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
+#~ "fine-tune your partitions. See the DiskDrake section in the ``User "
+#~ "Guide''.\n"
+#~ "From the installation interface, you can use the wizards as described "
+#~ "here\n"
+#~ "by clicking the dialog's \"Wizard\" button.\n"
+#~ "\n"
+#~ "If partitions have already been defined, either from a previous\n"
+#~ "installation or from another partitioning tool, simply select those to\n"
+#~ "install your Linux system.\n"
+#~ "\n"
+#~ "If partitions are not defined, you will need to create them using the\n"
+#~ "wizard. Depending on your hard drive configuration, several options are\n"
+#~ "available:\n"
+#~ "\n"
+#~ " * \"Use free space\": this option will simply lead to an automatic\n"
+#~ "partitioning of your blank drive(s). You will not be prompted further;\n"
+#~ "\n"
+#~ " * \"Use existing partition\": the wizard has detected one or more "
+#~ "existing\n"
+#~ "Linux partitions on your hard drive. If you want to use them, choose "
+#~ "this\n"
+#~ "option;\n"
+#~ "\n"
+#~ " * \"Use the free space on the Windows; partition\": if MicrosoftWindows "
+#~ "is\n"
+#~ "installed on your hard drive and takes all the space available on it, "
+#~ "you\n"
+#~ "have to create free space for Linux data. To do so, you can delete your\n"
+#~ "MicrosoftWindows partition and data (see ``Erase entire disk'' or "
+#~ "``Expert\n"
+#~ "mode'' solutions) or resize your MicrosoftWindows partition. Resizing "
+#~ "can\n"
+#~ "be performed without the loss of any data, provided you previously\n"
+#~ "defragment the Windows partition. Backing up your data won't hurt "
+#~ "either..\n"
+#~ "This solution is recommended if you want to use both Mandrake Linux and\n"
+#~ "MicrosoftWindows on the same computer.\n"
+#~ "\n"
+#~ " Before choosing this option, please understand that after this "
+#~ "procedure,\n"
+#~ "the size of your MicrosoftWindows partition will be smaller than at the\n"
+#~ "present time. You will have less free space under MicrosoftWindows to "
+#~ "store\n"
+#~ "your data or to install new software;\n"
+#~ "\n"
+#~ " * \"Erase entire disk\": if you want to delete all data and all "
+#~ "partitions\n"
+#~ "present on your hard drive and replace them with your new Mandrake Linux\n"
+#~ "system, choose this option. Be careful with this solution because you "
+#~ "will\n"
+#~ "not be able to revert your choice after you confirm;\n"
+#~ "\n"
+#~ " !! If you choose this option, all data on your disk will be lost. !!\n"
+#~ "\n"
+#~ " * \"Remove Windows\": this will simply erase everything on the drive "
+#~ "and\n"
+#~ "begin fresh, partitioning everything from scratch. All data on your disk\n"
+#~ "will be lost;\n"
+#~ "\n"
+#~ " !! If you choose this option, all data on your disk will be lost. !!\n"
+#~ "\n"
+#~ " * \"Expert mode\": choose this option if you want to manually partition\n"
+#~ "your hard drive. Be careful it is a powerful but dangerous choice. You "
+#~ "can\n"
+#~ "very easily lose all your data. Hence, do not choose this unless you "
+#~ "know\n"
+#~ "what you are doing."
+#~ msgstr ""
+#~ "Pada tahap ini, pilihlah tempat Mandrake Linux akan diinstal di "
+#~ "harddisk.\n"
+#~ "Bila harddisk masih kosong / ada sistem operasi lain yg mengisi "
+#~ "seluruhnya,\n"
+#~ "Anda perlu melakukan proses partisi. Pada dasarnya, proses partisi "
+#~ "harddisk\n"
+#~ "adalah membagi harddisk, dg membuat ruang kosong utk instalasi sistem\n"
+#~ "Mandrake Linux.\n"
+#~ "\n"
+#~ "Karena bersifat satu arah (tak dapat dikembalikan ke keadaan awal), "
+#~ "proses\n"
+#~ "partisi dapat membuat stres dan pusing kepala, apalagi jika Anda belum\n"
+#~ "berpengalaman. Untungnya, ada wizard yang mempermudah proses ini.\n"
+#~ "Sebelum mulai, baca dan pelajari dulu buku manual dengan baik.\n"
+#~ "\n"
+#~ "Jika Anda menggunakan mode Ahli, Anda akan masuk DiskDrake, alat partisi\n"
+#~ "Mandrake Linux, yg memungkinkan fine-tuning partisi Anda. Lihat manual "
+#~ "bab\n"
+#~ "DiskDrake. Dari antarmuka instalasi, Anda dapat menggunakan wizard "
+#~ "seperti\n"
+#~ "dijelaskan di sini dg meng-klik tombol \"Wizard\".\n"
+#~ "\n"
+#~ "Bila partisi-partisi tsb sudah ada sebelumnya (hasil instal sebelumnya\n"
+#~ "atau hasil program partisi lain), pilihlah partisi tsb utk tempat "
+#~ "instalasi\n"
+#~ "sistem Linux Anda.\n"
+#~ "\n"
+#~ "Jika belum ada partisi, Anda perlu membuatnya dengan program wizard. Ada\n"
+#~ "bbrp opsi tergantung konfigurasi harddisk Anda:\n"
+#~ "\n"
+#~ " * \"Pakai ruang kosong\": opsi ini akan secara otomatis mem-partisi "
+#~ "drive\n"
+#~ "kosong Anda. Anda takkan ditanya lebih jauh.\n"
+#~ "\n"
+#~ " * \"Pakai partisi yang sudah ada\": wizard mendeteksi satu/lebih "
+#~ "partisi\n"
+#~ "Linux di hard drive Anda. Jika Anda ingin menggunakannya, pilih opsi "
+#~ "ini.\n"
+#~ "\n"
+#~ " * \"Pakai ruang kosong pada partisi Mindows\": jika wicrosoft mindows\n"
+#~ "terinstal dan menghabiskan seluruh kapasitas disk, Anda perlu membuat "
+#~ "ruang\n"
+#~ "kosong untuk data Linux dg menghapus partisi dan data wicrosoft mindows\n"
+#~ "(lihat solusi \"Hapus seluruh disk\" atau mode \"Ahli\") atau dapat juga\n"
+#~ "mengubah ukuran partisi wicrosoft mindows. Cara ini dapat digunakan "
+#~ "tanpa\n"
+#~ "harus kehilangan data. Cara ini disarankan bila Anda ingin memakai Linux\n"
+#~ "Mandrake dan wicrosoft mindows dlm satu komputer.\n"
+#~ "\n"
+#~ " Sebelum memilih cara ini, mohon maklum bahwa partisi wicrosoft "
+#~ "mindows\n"
+#~ "sekarang berukuran lebih kecil. Ruang dlm wicrosoft mindows utk "
+#~ "menyimpan\n"
+#~ "data / menginstall software baru menjadi kecil.\n"
+#~ "\n"
+#~ " * \"Hapus seluruh disk\": jika Anda ingin hapus semua data dan partisi "
+#~ "di\n"
+#~ "harddisk Anda utk kemudian digantikan semuanya oleh sistem Mandrake "
+#~ "Linux,\n"
+#~ "pilih opsi ini. Hati-hati, Anda tak dapat kembali setelah konfirmasi.\n"
+#~ "\n"
+#~ " !! Jika Anda pilih opsi ini semua data di disk Anda akan hilang. !!\n"
+#~ "\n"
+#~ " * \"Buang Mindows\": ini akan menghapus semua di drive dan mulai proses\n"
+#~ "partisi dari nol. Semua data di disk akan hilang.\n"
+#~ "\n"
+#~ " !! Jika Anda pilih opsi ini semua data di disk Anda akan hilang. !!\n"
+#~ "\n"
+#~ " * \"Mode ahli\": pilih jika Anda ingin secara manual mempartisi "
+#~ "harddisk.\n"
+#~ "Awas! Cara ini amat perkasa tapi juga berbahaya. Anda bisa kehilangan "
+#~ "data\n"
+#~ "dg mudah. Jangan pilih kecuali Anda tahu yg Anda lakukan."
+
+#~ msgid ""
+#~ "There you are. Installation is now complete and your GNU/Linux system is\n"
+#~ "ready to use. Just click \"OK\" to reboot the system. You can start\n"
+#~ "GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
+#~ "soon as the computer has booted up again.\n"
+#~ "\n"
+#~ "The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+#~ "\n"
+#~ " * \"generate auto-install floppy\": to create an installation floppy "
+#~ "disk\n"
+#~ "which will automatically perform a whole installation without the help "
+#~ "of\n"
+#~ "an operator, similar to the installation you just configured.\n"
+#~ "\n"
+#~ " Note that two different options are available after clicking the "
+#~ "button:\n"
+#~ "\n"
+#~ " * \"Replay\". This is a partially automated installation as the\n"
+#~ "partitioning step (and only this one) remains interactive;\n"
+#~ "\n"
+#~ " * \"Automated\". Fully automated installation: the hard disk is "
+#~ "completely\n"
+#~ "rewritten, all data is lost.\n"
+#~ "\n"
+#~ " This feature is very handy when installing a great number of similar\n"
+#~ "machines. See the Auto install section on our web site;\n"
+#~ "\n"
+#~ " * \"Save packages selection\"(*): saves the package selection as done\n"
+#~ "previously. Then, when doing another installation, insert the floppy "
+#~ "inside\n"
+#~ "the drive and run the installation going to the help screen by pressing "
+#~ "on\n"
+#~ "the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
+#~ "\n"
+#~ "(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
+#~ "\"mformat a:\")"
+#~ msgstr ""
+#~ "Oke, instalasi kini selesai dan sistem GNU/Linux Anda siap dipakai. Klik\n"
+#~ "\"OK\" utk reboot sistem. Anda dapat menjalankan GNU/Linux atau Windows,\n"
+#~ "tergantung pilihan Anda (jika Anda memakai dual-boot).\n"
+#~ "\n"
+#~ "Tombol \"Tambahan\" (hanya di mode Ahli) menampilkan 2 tombol utk:\n"
+#~ "\n"
+#~ " * \"Membuat floppy instalasi otomatis\": utk membuat disket instalasi "
+#~ "yang\n"
+#~ "akan secara otomatis melakukan instalasi tanpa bantuan operator, sama dg\n"
+#~ "instalasi yang baru Anda konfigurasikan.\n"
+#~ "\n"
+#~ " Ada dua opsi setelah tombol di-klik:\n"
+#~ "\n"
+#~ " * \"Ulang\". Instalasi semi-otomatis, hanya proses partisi yang "
+#~ "tetap\n"
+#~ "interaktif.\n"
+#~ "\n"
+#~ " * \"Otomatis\". Instalasi otomatis penuh: harddisk ditulis ulang\n"
+#~ "seluruhnya, semua data hilang.\n"
+#~ "\n"
+#~ " Fitur ini amat praktis utk instalasi banyak mesin dg spesifikasi "
+#~ "sama.\n"
+#~ "Lihat pasal Auto install di website kami.\n"
+#~ "\n"
+#~ " * \"Menyimpan pilihan paket\"(*): simpan pilihan paket seperti yang "
+#~ "dibuat\n"
+#~ "sebelumnya. Lalu saat mengerjakan instalasi lain, masukkan floppy ke "
+#~ "driver\n"
+#~ "dan arahkan instalasi ke layar pertolongan dg menekan kunci [F1] lalu "
+#~ "ketik\n"
+#~ ">>linux defcfg=\"floppy\"<<.\n"
+#~ "\n"
+#~ "(*) Anda perlu floppy berformat FAT (utk membuatnya di GNU/Linux, "
+#~ "jalankan\n"
+#~ "\"mformat a:\")"
+
+#~ msgid ""
+#~ "At this point, you need to choose which partition(s) will be used for "
+#~ "the\n"
+#~ "installation of your Mandrake Linux system. If partitions have already "
+#~ "been\n"
+#~ "defined, either from a previous installation of GNU/Linux or from "
+#~ "another\n"
+#~ "partitioning tool, you can use existing partitions. Otherwise, hard "
+#~ "drive\n"
+#~ "partitions must be defined.\n"
+#~ "\n"
+#~ "To create partitions, you must first select a hard drive. You can select\n"
+#~ "the disk for partitioning by clicking on ``hda'' for the first IDE "
+#~ "drive,\n"
+#~ "``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+#~ "\n"
+#~ "To partition the selected hard drive, you can use these options:\n"
+#~ "\n"
+#~ " * \"Clear all\": this option deletes all partitions on the selected "
+#~ "hard\n"
+#~ "drive;\n"
+#~ "\n"
+#~ " * \"Auto allocate\": this option enables to automatically create \"Ext2"
+#~ "\"\n"
+#~ "and swap partitions in free space of your hard drive;\n"
+#~ "\n"
+#~ " * \"More\": gives access to additional features:\n"
+#~ "\n"
+#~ " * \"Save partition table\": saves the partition table to a floppy. "
+#~ "Useful\n"
+#~ "for later partition-table recovery if necessary. It is strongly "
+#~ "recommended\n"
+#~ "to perform this step;\n"
+#~ "\n"
+#~ " * \"Restore partition table\": allows to restore a previously saved\n"
+#~ "partition table from floppy disk;\n"
+#~ "\n"
+#~ " * \"Rescue partition table\": if your partition table is damaged, you "
+#~ "can\n"
+#~ "try to recover it using this option. Please be careful and remember that "
+#~ "it\n"
+#~ "can fail;\n"
+#~ "\n"
+#~ " * \"Reload partition table\": discards all changes and loads your "
+#~ "initial\n"
+#~ "partition table;\n"
+#~ "\n"
+#~ " * \"Removable media automounting\": unchecking this option will force "
+#~ "users\n"
+#~ "to manually mount and unmount removable medias such as floppies and\n"
+#~ "CD-ROMs.\n"
+#~ "\n"
+#~ " * \"Wizard\": use this option if you wish to use a wizard to partition "
+#~ "your\n"
+#~ "hard drive. This is recommended if you do not have a good knowledge of\n"
+#~ "partitioning;\n"
+#~ "\n"
+#~ " * \"Undo\": use this option to cancel your changes;\n"
+#~ "\n"
+#~ " * \"Toggle to normal/expert mode\": allows additional actions on "
+#~ "partitions\n"
+#~ "(type, options, format) and gives more information;\n"
+#~ "\n"
+#~ " * \"Done\": when you are finished partitioning your hard drive, this "
+#~ "will\n"
+#~ "save your changes back to disk.\n"
+#~ "\n"
+#~ "Note: you can reach any option using the keyboard. Navigate through the\n"
+#~ "partitions using [Tab] and [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 filesystem 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 ""
+#~ "Kini Anda perlu menentukan partisi yg akan dipakai utk instalasi sistem\n"
+#~ "Mandrake Linux. Jika partisi telah didefinisikan, pada instalasi\n"
+#~ "GNU/Linux sebelumnya atau dg alat partisi lain, Anda dapat memakai "
+#~ "partisi\n"
+#~ "yang ada. Jika tidak, partisi harddisk harus didefinisikan.\n"
+#~ "\n"
+#~ "Utk membuat partisi, pertama pilihlah harddisk. Anda dapat memilih disk "
+#~ "utk\n"
+#~ "dipartisi dg mengklik \"hda\" utk harddisk IDE pertama, \"hdb\" utk disk\n"
+#~ "kedua, \"sda\" untuk drive SCSI pertama dst.\n"
+#~ "\n"
+#~ "Untuk mempartisi harddisk terpilih, opsi berikut dapat digunakan:\n"
+#~ "\n"
+#~ " * \"Hapus semua\": opsi ini menghapus semua partisi pd harddisk "
+#~ "terpilih.\n"
+#~ "\n"
+#~ " * \"Alokasi otomatis\": opsi ini memungkinkan Anda secara otomatis "
+#~ "membuat\n"
+#~ "partisi Ext2 dan swap di ruang kosong hard drive Anda.\n"
+#~ "\n"
+#~ " * \"Tambahan\": akses ke fitur tambahan:\n"
+#~ "\n"
+#~ " * \"Simpan tabel partisi\": simpan tabel partisi ke floppy. Berguna\n"
+#~ "untuk pemulihan tabel-partisi di kemudian hari bila perlu. Amat "
+#~ "disarankan.\n"
+#~ "\n"
+#~ " * \"Pulihkan tabel partisi\": mengembalikan tabel partisi yg "
+#~ "disimpan\n"
+#~ "sebelumnya dari floppy.\n"
+#~ "\n"
+#~ " * \"Selamatkan tabel partisi\": jika tabel partisi Anda rusak, "
+#~ "cobalah\n"
+#~ "mengembalikannya dg opsi ini. Hati-hati dan ingat bhw ini bisa gagal.\n"
+#~ "\n"
+#~ " * \"Muat ulang tabel partisi\": buang semua perubahan dan muat tabel\n"
+#~ "partisi semula.\n"
+#~ "\n"
+#~ " * \"Mount otomatis media lepas\": Jika opsi ini dilepas, user harus\n"
+#~ "secara manual me-mount/unmount media lepas seperti disket dan CD-ROM.\n"
+#~ "\n"
+#~ " * \"Wizard\": pilih ini jika ingin memakai wizard utk mempartisi "
+#~ "harddisk.\n"
+#~ "Disarankan jika Anda tak faham ttg partisi.\n"
+#~ "\n"
+#~ " * \"Kembali\": untuk membatalkan perubahan.\n"
+#~ "\n"
+#~ " * \"Ubah ke mode normal/ahli\": aksi tambahan proses partisi (tipe, "
+#~ "opsi,\n"
+#~ "format) dan informasi lebih.\n"
+#~ "\n"
+#~ " * \"Selesai\": simpan perubahan ke harddisk bila Anda selesai "
+#~ "mempartisi.\n"
+#~ "\n"
+#~ "Catatan: Anda dapat meraih semua opsi dg memakai keyboard. Gunakan [Tab]\n"
+#~ "dan panah [Up/Down].\n"
+#~ "\n"
+#~ "Saat partisi dipilih, Anda dapat menggunakan:\n"
+#~ "\n"
+#~ " * Ctrl-c utk membuat partisi baru (bila partisi kosong dipilih);\n"
+#~ "\n"
+#~ " * Ctrl-d utk menghapus partisi;\n"
+#~ "\n"
+#~ " * Ctrl-m utk menset titik mount\n"
+#~ "\n"
+#~ "Jika Anda menginstal mesin PPC Anda perlu membuat partisi \"bootstrap\" "
+#~ "HFS\n"
+#~ "kecil setidaknya 1MB yg akan dipakai oleh bootloader yaboot. Jika dibuat\n"
+#~ "lebih besar, katakan 50MB, Anda bisa memanfaatkannya utk menyimpan "
+#~ "kernel\n"
+#~ "cadangan dan image ramdisk utk situasi boot darurat."
+
+#~ msgid ""
+#~ "DrakX now needs to know if you want to perform a default (\"Recommended"
+#~ "\")\n"
+#~ "installation or if you want to have greater control (\"Expert\"). You "
+#~ "can\n"
+#~ "also choose to do a new install or an upgrade of an existing Mandrake "
+#~ "Linux\n"
+#~ "system:\n"
+#~ "\n"
+#~ " * \"Install\": completely wipes out the old system. In fact, depending "
+#~ "on\n"
+#~ "what currently holds your machine, you will be able to keep some old "
+#~ "(Linux\n"
+#~ "or other) partitions unchanged;\n"
+#~ "\n"
+#~ " * \"Upgrade\": this installation class allows to simply update the "
+#~ "packages\n"
+#~ "currently installed on your Mandrake Linux system. It keeps the current\n"
+#~ "partitions of your hard drives as well as user configurations. All other\n"
+#~ "configuration steps remain available with respect to plain installation;\n"
+#~ "\n"
+#~ " * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
+#~ "existing Mandrake Linux system while keeping all system configurations\n"
+#~ "unchanged. Adding new packages to the current installation is also\n"
+#~ "possible.\n"
+#~ "\n"
+#~ "Upgrades should work fine for Mandrake Linux systems starting from \"8.1"
+#~ "\"\n"
+#~ "release.\n"
+#~ "\n"
+#~ "Depending on your knowledge of GNU/Linux, select one of the following\n"
+#~ "choices:\n"
+#~ "\n"
+#~ " * Recommended: choose this if you have never installed a GNU/Linux\n"
+#~ "operating system. The installation will be very easy and you will only "
+#~ "be\n"
+#~ "asked a few questions;\n"
+#~ "\n"
+#~ " * Expert: if you have a good knowledge of GNU/Linux, you can choose "
+#~ "this\n"
+#~ "installation class. The expert installation will allow you to perform a\n"
+#~ "highly-customized installation. Answering some of the questions can be\n"
+#~ "difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
+#~ "choose this unless you know what you are doing."
+#~ msgstr ""
+#~ "DrakX kini perlu tahu Anda ingin instalasi standar (\"Disarankan\") atau\n"
+#~ "ingin punya kontrol lebih besar (\"Ahli\"). Anda juga punya pilihan utk\n"
+#~ "melakukan instalasi baru atau upgrade sistem Mandrake Linux yg ada:\n"
+#~ "\n"
+#~ " * \"Instal\" Hapus total sistem lama. Tergantung isi mesin Anda saat "
+#~ "ini,\n"
+#~ "Anda dapat mempertahankan partisi lama (Linux atau lainnya).\n"
+#~ "\n"
+#~ " * \"Upgrade\" Kelas instalasi ini memungkinkan update paket yang "
+#~ "terinstal\n"
+#~ "di sistem Mandrake Linux Anda. Partisi dan konfigurasi user yang ada "
+#~ "tetap\n"
+#~ "dipertahankan. Semua tahapan konfigurasi lain tetap ada seperti layaknya\n"
+#~ "instalasi biasa.\n"
+#~ "\n"
+#~ " * \"Upgrade Paket Saja\" Kelas instalasi baru yang memungkinkan upgrade\n"
+#~ "sistem Mandrake Linux tanpa mengubah konfigurasi sistem. Penambahan "
+#~ "paket\n"
+#~ "juga dimungkinkan.\n"
+#~ "\n"
+#~ "Upgrade dapat dilakukan terhadap sistem Mandrake Linux mulai versi \"8.1"
+#~ "\".\n"
+#~ "\n"
+#~ "Pilihlah opsi berikut sesuai pengetahuan Anda ttg GNU/Linux:\n"
+#~ "\n"
+#~ " * Disarankan: pilih ini bila Anda belum pernah menginstal OS GNU/Linux.\n"
+#~ "Proses instalasi amat mudah dan Anda hanya ditanya sedikit pertanyaan.\n"
+#~ "\n"
+#~ " * Ahli: Anda dapat memiilih kelas instalasi ini jika tahu banyak "
+#~ "tentang\n"
+#~ "GNU/Linux. Instalasi ahli memungkinkan Anda melakukan instalasi bebas.\n"
+#~ "Bbrp pertanyaan sulit dijawab jika Anda tak berpengetahuan kuat tentang\n"
+#~ "GNU/Linux. Jangan pilih kelas ini kecuali Anda tahu apa yang Anda lakukan."
+
+#~ msgid ""
+#~ "This is the most crucial decision point for the security of your GNU/"
+#~ "Linux\n"
+#~ "system: you have to enter the \"root\" password. \"root\" is the system\n"
+#~ "administrator and is the only one authorized to make updates, add users,\n"
+#~ "change the overall system configuration, and so on. In short, \"root\" "
+#~ "can\n"
+#~ "do everything! That is why you must choose a password that is difficult "
+#~ "to\n"
+#~ "guess DrakX will tell you if it is too easy. As you can see, you can "
+#~ "choose\n"
+#~ "not to enter a password, but we strongly advise you against this if only\n"
+#~ "for one reason: do not think that because you booted GNU/Linux that your\n"
+#~ "other operating systems are safe from mistakes. Since \"root\" can "
+#~ "overcome\n"
+#~ "all limitations and unintentionally erase all data on partitions by\n"
+#~ "carelessly accessing the partitions themselves, it is important for it "
+#~ "to\n"
+#~ "be difficult to become \"root\".\n"
+#~ "\n"
+#~ "The password should be a mixture of alphanumeric characters and at least "
+#~ "8\n"
+#~ "characters long. Never write down the \"root\" password it makes it too\n"
+#~ "easy to compromise a system.\n"
+#~ "\n"
+#~ "However, please do not make the password too long or complicated because\n"
+#~ "you must be able to remember it without too much effort.\n"
+#~ "\n"
+#~ "The password will not be displayed on screen as you type it in. Hence, "
+#~ "you\n"
+#~ "will have to type the password twice to reduce the chance of a typing\n"
+#~ "error. If you do happen to make the same typing error twice, this\n"
+#~ "``incorrect'' password will have to be used the first time you connect.\n"
+#~ "\n"
+#~ "In Expert mode, you will be asked if you will be connecting to an\n"
+#~ "authentication server, like NIS or LDAP.\n"
+#~ "\n"
+#~ "If your network uses the LDAP (or NIS) protocol for authentication, "
+#~ "select\n"
+#~ "\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
+#~ "network administrator.\n"
+#~ "\n"
+#~ "If your computer is not connected to any administrated network, you will\n"
+#~ "want to choose \"Local files\" for authentication."
+#~ msgstr ""
+#~ "Ini adalah poin terpenting penentuan sekuriti sistem GNU/Linux Anda: "
+#~ "Anda\n"
+#~ "harus mengisi katasandi \"root\". \"root\" adalah administrator sistem "
+#~ "dan\n"
+#~ "hanya dia yg berhak melakukan update, menambah user, mengubah "
+#~ "konfigurasi\n"
+#~ "sistem, dll. Singkatnya, \"root\" dapat melakukan apapun! Karena itu "
+#~ "Anda\n"
+#~ "harus memilih katasandi yang sulit ditebak - DrakX akan memberitahu jika\n"
+#~ "terlalu mudah. Seperti Anda lihat, Anda dapat memilih utk tak memasukkan\n"
+#~ "katasandi, tapi amat kami anjurkan tidak melakukannya jika alasannya "
+#~ "hanya:\n"
+#~ "tidak mengira bhw jika GNU/Linux di-boot, sistem operasi lain aman dari\n"
+#~ "kesalahan. Karena \"root\" dapat melampaui semua batasan dan secara "
+#~ "tidak\n"
+#~ "sengaja menghapus semua data di partisi, menjadi \"root\" harus "
+#~ "dipersulit.\n"
+#~ "\n"
+#~ "Katasandi harus berupa campuran nomor dan huruf minimal 8 karakter. "
+#~ "Jangan\n"
+#~ "pernah mencatat katasandi \"root\" - itu membuat sistem mudah dibajak.\n"
+#~ "\n"
+#~ "Tapi katasandi juga jangan terlalu panjang/rumit karena Anda harus ingat\n"
+#~ "tanpa banyak usaha.\n"
+#~ "\n"
+#~ "Katasandi takkan muncul di layar seperti yg diketikkan. Anda harus dua "
+#~ "kali\n"
+#~ "mengisi katasandi utk mengurangi kemungkinan salah ketik. Jika Anda 2 "
+#~ "kali\n"
+#~ "melakukan kesalahan yg sama, katasandi \"salah\" ini akan dipakai "
+#~ "pertama\n"
+#~ "kali anda login.\n"
+#~ "\n"
+#~ "Pada mode ahli, Anda akan ditanya apakah akan berhubungan dengan server\n"
+#~ "otentikasi seperti NIS atau LDAP.\n"
+#~ "\n"
+#~ "Jika jaringan Anda memakai protokol otentikasi LDAP/NIS, pilih \"LDAP\"\n"
+#~ "(atau \"NIS\") utk otentikasi. Tanyalah admin jaringan Anda jika tak "
+#~ "tahu.\n"
+#~ "\n"
+#~ "Jika komputer Anda tak terhubung dengan jaringan terkelola, pilihlah\n"
+#~ "\"File lokal\" untuk otentikasi."
+
+#~ msgid ""
+#~ "LILO and grub are GNU/Linux bootloaders. This stage, normally, is "
+#~ "totally\n"
+#~ "automated. In fact, DrakX analyzes the disk boot sector and acts\n"
+#~ "accordingly, depending on what it finds here:\n"
+#~ "\n"
+#~ " * if a Windows boot sector is found, it will replace it with a grub/"
+#~ "LILO\n"
+#~ "boot sector. Hence, you will be able to load either GNU/Linux or another\n"
+#~ "OS;\n"
+#~ "\n"
+#~ " * if a grub or LILO boot sector is found, it will replace it with a new\n"
+#~ "one.\n"
+#~ "\n"
+#~ "If in doubt, DrakX will display a dialog with various options.\n"
+#~ "\n"
+#~ " * \"Bootloader to use\": you have three choices:\n"
+#~ "\n"
+#~ " * \"GRUB\": if you prefer grub (text menu).\n"
+#~ "\n"
+#~ " * \"LILO with graphical menu\": if you prefer LILO with its "
+#~ "graphical\n"
+#~ "interface.\n"
+#~ "\n"
+#~ " * \"LILO with text menu\": if you prefer LILO with its text menu "
+#~ "interface.\n"
+#~ "\n"
+#~ " * \"Boot device\": in most cases, you will not change the default\n"
+#~ "(\"/dev/hda\"), but if you prefer, the bootloader can be installed on "
+#~ "the\n"
+#~ "second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0"
+#~ "\");\n"
+#~ "\n"
+#~ " * \"Delay before booting the default image\": when rebooting the "
+#~ "computer,\n"
+#~ "this is the delay granted to the user to choose in the bootloader menu,\n"
+#~ "another boot entry than the default one.\n"
+#~ "\n"
+#~ "!! Beware that if you choose not to install a bootloader (by selecting\n"
+#~ "\"Cancel\" here), you must ensure that you have a way to boot your "
+#~ "Mandrake\n"
+#~ "Linux system! Also, be sure you know what you do before changing any of "
+#~ "the\n"
+#~ "options. !!\n"
+#~ "\n"
+#~ "Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
+#~ "options, which are reserved to the expert user.\n"
+#~ "\n"
+#~ "After you have configured the general bootloader parameters, the list of\n"
+#~ "boot options which will be available at boot time will be displayed.\n"
+#~ "\n"
+#~ "If there is another operating system installed on your machine, it will\n"
+#~ "automatically be added to the boot menu. Here, you can choose to fine-"
+#~ "tune\n"
+#~ "the existing options. Select an entry and click \"Modify\" to modify or\n"
+#~ "remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
+#~ "installation step."
+#~ msgstr ""
+#~ "LILO/GRUB adalah pemuat boot GNU/Linux. Step ini biasanya otomatis "
+#~ "penuh.\n"
+#~ "DrakX menganalisa sektor boot disk dan beraksi menurut apa yg ditemukan:\n"
+#~ "\n"
+#~ " * jika sektor boot Mindows ditemukan, ia akan menggantinya dg sektor "
+#~ "boot\n"
+#~ "GRUB/LILO. Jadi Anda akan dapat memuat baik GNU/Linux maupun OS lain;\n"
+#~ "\n"
+#~ " * jika sektor boot GRUB/LILO ditemukan, ia akan menggantinya dg yg "
+#~ "baru;\n"
+#~ "\n"
+#~ "Jika ragu, DrakX akan menampilkan dialog dengan opsi bervariasi.\n"
+#~ "\n"
+#~ " * \"Pemuat boot yang digunakan\": ada tiga pilihan:\n"
+#~ "\n"
+#~ " * \"GRUB\": jika Anda suka GRUB (menu teks).\n"
+#~ "\n"
+#~ " * \"LILO dengan menu grafis\": jika Anda suka LILO dg antarmuka "
+#~ "grafis.\n"
+#~ "\n"
+#~ " * \"LILO dengan menu teks\": jika suka LILO dengan antarmuka menu "
+#~ "teks.\n"
+#~ "\n"
+#~ " * \"Device boot\": Umumnya Anda takkan mengubah standar (\"/dev/hda\"),\n"
+#~ "tapi jika suka, bootloader dapat diinstal di harddisk kedua (\"/dev/hdb"
+#~ "\"),\n"
+#~ "ataupun disket (\"/dev/fd0\").\n"
+#~ "\n"
+#~ " * \"Delay sebelum boot ke image default\": delay yang diberikan di menu\n"
+#~ "pemuat boot kepada user saat me-reboot komputer untuk memilih entri.\n"
+#~ "\n"
+#~ "!! Awas, jika pemuat boot tak diinstal (dg memilih \"Cancel\" di sini),\n"
+#~ "pastikan Anda punya jalan memboot sistem Mandrake Linux Anda! Juga "
+#~ "pastikan\n"
+#~ "bahwa Anda tahu apa yang Anda lakukan sebelum mengubah opsi. !!\n"
+#~ "\n"
+#~ "Klik \"Tambahan\" untuk menampilkan opsi lain, yg disediakan utk user "
+#~ "ahli.\n"
+#~ "\n"
+#~ "Setelah parameter pemuat-boot dikonfigurasikan, ditampilkan daftar opsi\n"
+#~ "boot yang akan muncul saat boot.\n"
+#~ "\n"
+#~ "Jika ada OS lain terinstal di mesin Anda, itu akan otomatis ditambahkan "
+#~ "ke\n"
+#~ "menu boot. Di sini Anda dapat memperbaiki opsi yang ada. Pilih entri dan\n"
+#~ "klik \"Modifikasi\" untuk mengubah atau menghapusnya; \"Tambah\"\n"
+#~ "membuat masukan baru; dan \"Selesai\" membawa Anda ke tahap instalasi\n"
+#~ "berikutnya."
+
+#~ msgid ""
+#~ "Here, we select a printing system for your computer. Other OSs may offer\n"
+#~ "you one, but Mandrake Linux offers three.\n"
+#~ "\n"
+#~ " * \"pdq\" which means ``print, don't queue'', is the choice if you have "
+#~ "a\n"
+#~ "direct connection to your printer and you want to be able to panic out "
+#~ "of\n"
+#~ "printer jams, and you do not have networked printers. It will handle "
+#~ "only\n"
+#~ "very simple network cases and is somewhat slow for networks. Pick \"pdq"
+#~ "\"\n"
+#~ "if this is your maiden voyage to GNU/Linux. You can change your choices\n"
+#~ "after installation by running PrinterDrake from the Mandrake Control "
+#~ "Center\n"
+#~ "and clicking the expert button.\n"
+#~ "\n"
+#~ " * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
+#~ "your\n"
+#~ "local printer and also halfway-around the planet. It is simple and can "
+#~ "act\n"
+#~ "as a server or a client for the ancient \"lpd\" printing system. Hence, "
+#~ "it\n"
+#~ "is compatible with the systems that went before. It can do many tricks, "
+#~ "but\n"
+#~ "the basic setup is almost as easy as \"pdq\". If you need this to "
+#~ "emulate\n"
+#~ "an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+#~ "graphical front-ends for printing or choosing printer options.\n"
+#~ "\n"
+#~ " * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+#~ "approximately the same things the others can do, but it will print to\n"
+#~ "printers mounted on a Novell Network, because it supports the IPX "
+#~ "protocol,\n"
+#~ "and it can print directly to shell commands. If you have need of Novell "
+#~ "or\n"
+#~ "printing to commands without using a separate pipe construct, use lprNG.\n"
+#~ "Otherwise, CUPS is preferable as it is simpler and better at working "
+#~ "over\n"
+#~ "networks."
+#~ msgstr ""
+#~ "Kini kita pilih sistem cetak komputer Anda. OS lain mungkin punya satu,\n"
+#~ "Mandrake menyediakan tiga.\n"
+#~ "\n"
+#~ " * \"pdq\" - artinya ``print, djangan nqantri'', adalah pilihan jika "
+#~ "Anda\n"
+#~ "punya koneksi langsung ke printer Anda dan ingin bebas dari panik "
+#~ "kemacetan\n"
+#~ "printer, serta tak punya printer jaringan. Ia akan meng-handle hanya "
+#~ "kasus\n"
+#~ "jaringan yg amat mudah dan agak lambat utk network. Ambil \"pdq\" jika "
+#~ "ini\n"
+#~ "kali pertama Anda mengenal GNU/Linux. Anda dapat mengubah pilihan "
+#~ "setelah\n"
+#~ "instalasi dg menjalankan PrinterDrake dari Pusat Kontrol Mandrake dan\n"
+#~ "meng-klik tombol expert/ahli.\n"
+#~ "\n"
+#~ " * \"CUPS\"``Sistem Cetak Unix Umum'' canggih untuk mencetak ke printer\n"
+#~ "lokal dan juga separuh planet. Mudah dan berfungsi spt server/klien utk\n"
+#~ "sistem cetak kuno \"lpd\" jadi kompatibel dg sistem lama. Banyak trik "
+#~ "dapat\n"
+#~ "dilakukan, tapi setup awalnya hampir semudah \"pdq\". Jika Anda perlu "
+#~ "ini\n"
+#~ "utk emulasi server \"lpd\", Anda harus menyalakan daemon \"cups-lpd\".\n"
+#~ "Front-end grafis disediakan utk pencetakan/pemilihan opsi printer.\n"
+#~ "\n"
+#~ " * \"lprNG\"``daemon printer baris Generasi Baru''. Sistem ini dapat\n"
+#~ "melakukan hal yg mirip dg yg bisa dilakukan sistem lain, hanya saja ia "
+#~ "akan\n"
+#~ "mencetak ke printer yang terhubung dengan network Novell, karena "
+#~ "mensupport\n"
+#~ "protokol IPX, dan bisa mencetak langsung ke perintah shell. Jika Anda "
+#~ "perlu\n"
+#~ "Novell atau mencetak ke perintah tanpa memakai konstruksi pipa terpisah,\n"
+#~ "gunakan lprNG. Jika tidak, pilihlah CUPS sebab lebih mudah dan bekerja "
+#~ "baik\n"
+#~ "di network."
+
+#~ msgid ""
+#~ "DrakX now detects any IDE device present in your computer. It will also\n"
+#~ "scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+#~ "found, DrakX will automatically install the appropriate driver.\n"
+#~ "\n"
+#~ "Because hardware detection does not always detect a piece of hardware,\n"
+#~ "DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes"
+#~ "\"\n"
+#~ "if you know that there is a SCSI card installed in your machine. You "
+#~ "will\n"
+#~ "be presented a list of SCSI cards to choose from. Click \"No\" if you "
+#~ "have\n"
+#~ "no SCSI hardware. If you are unsure, you can check the list of hardware\n"
+#~ "detected in your machine by selecting \"See hardware info\" and clicking\n"
+#~ "\"OK\". Examine the list of hardware and then click on the \"OK\" button "
+#~ "to\n"
+#~ "return to the SCSI interface question.\n"
+#~ "\n"
+#~ "If you have to manually specify your adapter, DrakX will ask if you want "
+#~ "to\n"
+#~ "specify options for it. You should allow DrakX to probe the hardware for\n"
+#~ "the card-specific options which the hardware needs to initialize. This\n"
+#~ "usually works well.\n"
+#~ "\n"
+#~ "If DrakX is not able to probe for the options which need to be passed, "
+#~ "you\n"
+#~ "will need to provide options to the driver manually. Please review the\n"
+#~ "``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
+#~ "Hardware'' section) for hints on retrieving the parameters required from\n"
+#~ "hardware documentation, from the manufacturer's web site (if you have\n"
+#~ "Internet access) or from MicrosoftWindows (if you used this hardware "
+#~ "with\n"
+#~ "Windows on your system)."
+#~ msgstr ""
+#~ "DrakX sedang mendeteksi perangkat IDE komputer Anda, juga men-scan kartu\n"
+#~ "SCSI PCI di sistem Anda. Jika kartu SCSI ditemukan DrakX akan otomatis\n"
+#~ "meng-instal driver yang sesuai.\n"
+#~ "\n"
+#~ "Karena perangkat keras terkadang tak terdeteksi, DrakX akan bertanya "
+#~ "apakah\n"
+#~ "ada kartu SCSI PCI. Klik \"Ya\" jika Anda tahu ada kartu SCSI terinstal "
+#~ "di\n"
+#~ "mesin Anda. Akan disajikan list kartu SCSI utk dipilih. Klik \"Tidak\" "
+#~ "jika\n"
+#~ "tak ada hardware SCSI. Jika Anda tak yakin, periksa daftar perangkat "
+#~ "keras\n"
+#~ "yang terdeteksi di mesin Anda dg memilih \"Lihat info hardware\" lalu "
+#~ "klik\n"
+#~ "\"OK\". Periksa daftar hardware lalu klik \"OK\" utk kembali.\n"
+#~ "\n"
+#~ "Jika Anda harus menunjuk adaptor secara manual, DrakX akan bertanya "
+#~ "apakah\n"
+#~ "Anda ingin menunjuk opsi untuknya. Anda harus mengizinkan DrakX mem-"
+#~ "probe\n"
+#~ "hardware utk opsi spesifik-kartu yg diperlukan hardware utk inisiasi. "
+#~ "Ini\n"
+#~ "biasanya bekerja baik.\n"
+#~ "\n"
+#~ "Jika DrakX gagal mem-probe opsi yang harus diberikan, Anda perlu "
+#~ "memberikan\n"
+#~ "opsi ke driver secara manual. Baca ``User Guide'' (bab 3, bag. "
+#~ "\"Collecting\n"
+#~ "information on your hardware\") utk trik mendapat parameter yg "
+#~ "dibutuhkan\n"
+#~ "dari dokumentasi hardware, website pabrik (jika Anda punya akses "
+#~ "Internet)\n"
+#~ "atau wicrosoft mindows (jika Anda memakai hardware ini di windows)."
+
+#~ msgid ""
+#~ "You can add additional entries for yaboot, either for other operating\n"
+#~ "systems, 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 simply the name you will have to type at the yaboot "
+#~ "prompt\n"
+#~ "to select this boot option;\n"
+#~ "\n"
+#~ " * Image: this would be the name of the kernel to boot. Typically, "
+#~ "vmlinux\n"
+#~ "or a variation of vmlinux with an extension;\n"
+#~ "\n"
+#~ " * Root: the \"root\" device or ``/'' for your Linux installation;\n"
+#~ "\n"
+#~ " * Append: on Apple hardware, the kernel append option is used quite "
+#~ "often\n"
+#~ "to assist in initializing video hardware, or to enable keyboard mouse\n"
+#~ "button emulation for the often lacking 2nd and 3rd mouse buttons on a "
+#~ "stock\n"
+#~ "Apple mouse. The following are some examples:\n"
+#~ "\n"
+#~ " video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+#~ "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 4,096 bytes. If "
+#~ "you\n"
+#~ "need to allocate a large ramdisk, this option can be used;\n"
+#~ "\n"
+#~ " * Read-write: normally the \"root\" partition is initially brought up "
+#~ "in\n"
+#~ "read-only, to allow a file system check before the system becomes "
+#~ "``live''.\n"
+#~ "Here, you can override 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 just pressing ENTER at the yaboot prompt. This entry will\n"
+#~ "also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
+#~ "selections."
+#~ msgstr ""
+#~ "Anda dapat menambahkan entri yaboot, baik untuk OS lain, kernel lain, "
+#~ "atau\n"
+#~ "untuk image boot darurat.\n"
+#~ "\n"
+#~ "Untuk OS lain, entri hanya berisi label dan partisi root.\n"
+#~ "\n"
+#~ "Untuk Linux, ada beberapa pilihan:\n"
+#~ "\n"
+#~ " * Label: nama yg harus diketik di prompt yaboot utk memilih opsi boot "
+#~ "ini.\n"
+#~ "\n"
+#~ " * Image: nama kernel untuk diboot. Biasanya bernama vmlinux atau nama "
+#~ "lain\n"
+#~ "yang mirip dengan vmlinux atau ditambahkan ekstensi lain.\n"
+#~ "\n"
+#~ " * Root: device \"root\" atau \"/\" untuk instalasi Linux Anda.\n"
+#~ "\n"
+#~ " * Append: pada hardware Apple, opsi append kernel sering digunakan "
+#~ "untuk\n"
+#~ "menolong inisialisasi hardware video, atau pengaktifan emulasi tombol "
+#~ "mouse\n"
+#~ "pada keyboard utk mouse Apple yang tidak memiliki tombol kedua dan "
+#~ "ketiga.\n"
+#~ "Berikut adalah beberapa contohnya:\n"
+#~ "\n"
+#~ " video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+#~ "hda=autotune\n"
+#~ "\n"
+#~ " video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
+#~ "\n"
+#~ " * Initrd: opsi ini bisa dipakai utk memuat modul awal sebelum device "
+#~ "boot\n"
+#~ "tersedia, atau untuk memuat image ramdisk untuk situasi boot darurat.\n"
+#~ "\n"
+#~ " * Initrd-size: standar ukuran ramdisk biasanya 4096 byte. Jika Anda "
+#~ "perlu\n"
+#~ "mengalokasikan ramdisk yang lebih besar, gunakan opsi ini.\n"
+#~ "\n"
+#~ " * Read-write: umumnya partisi \"root\" diberikan secara readonly agar "
+#~ "bisa\n"
+#~ "dilakukan pengecekan filesystem sebelum sistem \"hidup\". Di sini Anda "
+#~ "bisa\n"
+#~ "mengubah kelakuan aslinya.\n"
+#~ "\n"
+#~ " * NoVideo: Jika hardware video Apple problematis, Anda dapat memakai "
+#~ "opsi\n"
+#~ "ini utk mem-boot dalam mode \"novideo\", dengan support framebuffer "
+#~ "native.\n"
+#~ "\n"
+#~ " * Default: opsi standar Linux, dapat dipilih hanya dg menekan ENTER "
+#~ "pada\n"
+#~ "prompt yaboot. Entri ini juga akan ditandai \"*\" jika Anda menekan "
+#~ "[Tab]\n"
+#~ "untuk melihat pilihan boot."
+
+#~ msgid ""
+#~ "Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to "
+#~ "boot\n"
+#~ "either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
+#~ "these other operating systems are correctly detected and installed. If "
+#~ "this\n"
+#~ "is not the case, you can add an entry by hand in this screen. Be careful "
+#~ "to\n"
+#~ "choose the correct parameters.\n"
+#~ "\n"
+#~ "Yaboot's main options are:\n"
+#~ "\n"
+#~ " * Init Message: a simple text message displayed before the boot prompt;\n"
+#~ "\n"
+#~ " * Boot Device: indicates where you want to place the information "
+#~ "required\n"
+#~ "to boot to GNU/Linux. Generally, you set up a bootstrap partition "
+#~ "earlier\n"
+#~ "to hold this information;\n"
+#~ "\n"
+#~ " * Open Firmware Delay: unlike LILO, there are two delays available with\n"
+#~ "yaboot. The first delay is measured in seconds and at this point, you "
+#~ "can\n"
+#~ "choose between CD, OF boot, MacOS or Linux;\n"
+#~ "\n"
+#~ " * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
+#~ "After selecting Linux, you will have this delay in 0.1 second before "
+#~ "your\n"
+#~ "default kernel description is selected;\n"
+#~ "\n"
+#~ " * Enable CD Boot?: checking this option allows you to choose ``C'' for "
+#~ "CD\n"
+#~ "at the first boot prompt;\n"
+#~ "\n"
+#~ " * Enable OF Boot?: checking this option allows you to choose ``N'' for "
+#~ "Open\n"
+#~ "Firmware at the first boot prompt;\n"
+#~ "\n"
+#~ " * Default OS: you can select which OS will boot by default when the "
+#~ "Open\n"
+#~ "Firmware Delay expires."
+#~ msgstr ""
+#~ "Yaboot adalah pemuat boot utk hardware NewWorld MacIntosh. Ia mampu "
+#~ "memboot\n"
+#~ "GNU/Linux, MacOS maupun MacOSX jika terdapat di komputer Anda. Biasanya,\n"
+#~ "OS lain ini terdeteksi dan terinstal dengan benar. Jika tidak, Anda "
+#~ "dapat\n"
+#~ "menambahkan entry secara manual di layar ini. Hati-hati memilih "
+#~ "parameter.\n"
+#~ "\n"
+#~ "Opsi utama yaboot adalah:\n"
+#~ "\n"
+#~ " * Pesan Awal: pesan teks yang ditampilkan sebelum prompt boot.\n"
+#~ "\n"
+#~ " * Device Boot: menunjukkan tempat Anda ingin meletakkan info yg "
+#~ "diperlukan\n"
+#~ "utk memboot GNU/LInux. Biasanya Anda men-setup partisi bootstrap lebih "
+#~ "dulu\n"
+#~ "untuk menyimpan informasi ini.\n"
+#~ "\n"
+#~ " * Delay Open Firmware: tak seperti LILO, ada dua macam delay tersedia "
+#~ "di\n"
+#~ "yaboot. Delay pertama diukur dalam detik dan di sini Anda bisa memilih "
+#~ "CD,\n"
+#~ "boot OF, MacOS, atau Linux.\n"
+#~ "\n"
+#~ " * Timeout Boot Kernel: timeout ini mirip delay boot LILO. Setelah "
+#~ "memilih\n"
+#~ "Linux, akan ada delay 0.1 detik sebelum kernel default Anda dipilih.\n"
+#~ "\n"
+#~ " * Aktifkan boot CD?: opsi ini memungkinkan Anda memilih \"C\" (CD) pada\n"
+#~ "prompt boot pertama.\n"
+#~ "\n"
+#~ " * Aktifkan boot OF?: dg opsi ini Anda bisa memilih \"N\" (Open "
+#~ "Firmware)\n"
+#~ "saat prompt boot pertama.\n"
+#~ "\n"
+#~ " * OS Standar: Anda dapat memilih OS yang akan diboot secara default "
+#~ "saat\n"
+#~ "delay Open Firmware terlampaui."
+
+#~ msgid ""
+#~ "Here are presented various parameters concerning your machine. Depending "
+#~ "on\n"
+#~ "your installed hardware, you may or not, see the following entries:\n"
+#~ "\n"
+#~ " * \"Mouse\": check the current mouse configuration and click on the "
+#~ "button\n"
+#~ "to change it if necessary;\n"
+#~ "\n"
+#~ " * \"Keyboard\": check the current keyboard map configuration and click "
+#~ "on\n"
+#~ "the button to change that if necessary;\n"
+#~ "\n"
+#~ " * \"Timezone\": DrakX, by default, guesses your time zone from the "
+#~ "language\n"
+#~ "you have chosen. But here again, as for the choice of a keyboard, you "
+#~ "may\n"
+#~ "not be in the country for which the chosen language should correspond.\n"
+#~ "Hence, you may need to click on the \"Timezone\" button in order to\n"
+#~ "configure the clock according to the time zone you are in;\n"
+#~ "\n"
+#~ " * \"Printer\": clicking on the \"No Printer\" button will open the "
+#~ "printer\n"
+#~ "configuration wizard;\n"
+#~ "\n"
+#~ " * \"Sound card\": if a sound card is detected on your system, it is\n"
+#~ "displayed here. No modification possible at installation time;\n"
+#~ "\n"
+#~ " * \"TV card\": if a TV card is detected on your system, it is displayed\n"
+#~ "here. No modification possible at installation time;\n"
+#~ "\n"
+#~ " * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
+#~ "displayed here. You can click on the button to change the parameters\n"
+#~ "associated with it."
+#~ msgstr ""
+#~ "Di sini disajikan macam-macam parameter mesin Anda. Tergantung hardware "
+#~ "yg\n"
+#~ "ter-instal, Anda dapat - atau tidak, melihat entri berikut:\n"
+#~ "\n"
+#~ " * \"Mouse\": cek konfigurasi mouse, klik tombol utk mengubahnya bila "
+#~ "perlu\n"
+#~ "\n"
+#~ " * \"Keyboard\": cek konfigurasi map keyboard, klik tombol utk "
+#~ "mengubahnya\n"
+#~ "bila perlu.\n"
+#~ "\n"
+#~ " * \"Zona waktu\": DrakX menerka zona waktu Anda dari bahasa yg Anda "
+#~ "pilih.\n"
+#~ "Tapi sekali lagi seperti pilihan keyboard, Anda mungkin tak berada di "
+#~ "negri\n"
+#~ "yang selaras dg bahasa terpilih. Jadi Anda mungkin perlu menekan tombol\n"
+#~ "\"Zona waktu\" utk mengkonfigurasikan jam sesuai zona waktu tempat Anda.\n"
+#~ "\n"
+#~ " * \"Printer\": klik \"No Printer\" utk membuka dukun konfigurasi "
+#~ "printer.\n"
+#~ "\n"
+#~ " * \"Kartu suara\": kartu suara terdeteksi di sistem Anda akan "
+#~ "ditampilkan\n"
+#~ "di sini. Tiada modifikasi yg dapat dilakukan saat instalasi.\n"
+#~ "\n"
+#~ " * \"Kartu TV\": kartu TV yg terdeteksi di sistem Anda akan ditampilkan "
+#~ "di\n"
+#~ "sini. Tiada modifikasi yg dapat dilakukan saat instalasi.\n"
+#~ "\n"
+#~ " * \"Kartu ISDN\": kartu ISDN yg terdeteksi di sistem Anda akan "
+#~ "ditampilkan\n"
+#~ "di sini. Anda dapat meng-klik tombol utk mengubah parameternya."
+
+#~ msgid "Setting security level"
+#~ msgstr "Pilih tingkat keamanan"
+
+#~ msgid "Graphics card"
+#~ msgstr "Kartu grafis"
+
+#~ msgid "Select a graphics card"
+#~ msgstr "Pilih kartu grafis"
+
+#~ msgid "Choose a X driver"
+#~ msgstr "Pilih driver X"
+
+#~ msgid "X driver"
+#~ msgstr "Driver X"
+
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "Awas: tes kartu grafis ini dapat membekukan komputer Anda"
+
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "VGA Standar, 640x480 pada 60 Hz"
+
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "VGA Super, 800x600 pada 56 Hz"
+
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514 Kompatibel, 1024x768 pada 87 Hz interlaced (no 800x600)"
+
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "VGA Super, 1024x768 pada 87 Hz interlaced, 800x600 pada 56 hz"
+
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Extended Super VGA, 800x600 pada 60 Hz, 640x480 pada 72 Hz"
+
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Non-Interlaced SVGA, 1024x768 pada 60 Hz, 800x600 pada 72 Hz"
+
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "SVGA Frequensi Tinggi, 1024x768 pada 70 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Multi-frequency yang dapat mencapai 1280x1024 pada 60 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Multi-frequency yang dapat mencapai 1280x1024 pada 74 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Multi-frequency yang dapat mencapai 1280x1024 pada 76 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Monitor yang dapat mencapai 1600x1200 pada 70 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Monitor yang dapat mencapai 1600x1200 pada 76 Hz"
+
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Ukuran total grup yang dipilih kira-kira %d MB.\n"
+
+#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
+#~ msgstr ""
+#~ "Kalau Anda mau nginstall dengan ukuran yang lebih kecil dari ini,\n"
+#~ "pilih dulu persentase paket yang hendak diinstall.\n"
+#~ "\n"
+#~ "Persentasi kecil berarti akan install paket yang penting-penting saja;\n"
+#~ "dan sebaliknya persentase 100%% akan install semua paket yang tadi sudah\n"
+#~ "dipilih"
+
+#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
+#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
+#~ msgstr ""
+#~ "Anda punya hard disk cuma cukup untuk sekitar %d%% dari seluruh "
+#~ "paketini.\n"
+#~ "\n"
+#~ "Kalau Anda mau nginstall dengan ukuran yang lebih kecil dari ini,\n"
+#~ "pilih dulu persentase paket yang hendak diinstall.\n"
+#~ "Persentasi kecil berarti akan install paket yang penting-penting saja;\n"
+#~ "dan sebaliknya persentase %d%% akan install paket yang tadi sudah\n"
+#~ "dipilih sebanyak-banyaknya"
+
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Anda akan bisa memilih dengan lebih lengkap nanti."
+
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Persentase paket yang akan diinstall"
+
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Pilih Tingkat Security"
+
+#~ msgid "Complete (%dMB)"
+#~ msgstr "Lengkap (%dMB)"
+
+#~ msgid "Minimum (%dMB)"
+#~ msgstr "Minimum (%dMB)"
+
+#~ msgid "Recommended (%dMB)"
+#~ msgstr "Disarankan (%dMB)"
+
+#~ msgid ""
+#~ "Is your printer a multi-function device from HP (OfficeJet, PSC, "
+#~ "PhotoSmart, LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+#~ msgstr ""
+#~ "Apakah printer Anda adalah alat multifungsi dari HP (OfficeJet, PSC, "
+#~ "PhotoSmart LaserJet 1100/1200/1220/3200/3300 dengan scanner)?"
+
+#~ msgid ""
+#~ "***********************************************************************\n"
+#~ "\n"
+#~ msgstr ""
+#~ "***********************************************************************\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "\n"
+#~ "\n"
+#~ "***********************************************************************\n"
+#~ "\n"
+#~ msgstr ""
+#~ "\n"
+#~ "\n"
+#~ "***********************************************************************\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "\n"
+#~ "(!) FTP connexion problem: It was not possible to send your backup files "
+#~ "by FTP.\n"
+#~ msgstr ""
+#~ "\n"
+#~ "(!) problem koneksi FTP: Gagal mengirim file backup dengan FTP.\n"
+
+#~ msgid "(!) Error during mail sending. \n"
+#~ msgstr "(!) Kesalahan saat pengiriman surat. \n"
+
+#~ msgid "USA (bcast)"
+#~ msgstr "AS (siaran)"
+
+#~ msgid "China (bcast)"
+#~ msgstr "Cina (siaran)"
+
+#~ msgid "Japan (bcast)"
+#~ msgstr "Jepang (siaran)"
+
+#~ msgid "Utilities"
+#~ msgstr "Peralatan"
+
+#~ msgid "Archiving, emulators, monitoring"
+#~ msgstr "Arsip, emulator, pemantauan"
+
#~ msgid "About"
#~ msgstr "Keterangan"
@@ -12090,7 +14472,7 @@ msgstr "Aplikasi Ilmu pengetahuan"
#~ msgid "Apply/Re-read printers"
#~ msgstr "Terapkan/Baca-ulang printer"
-#~ msgid "You may now provide its options to module %s."
+#~ msgid "You may now provide options to module %s."
#~ msgstr "Sekarang Anda boleh berikan parameter untuk module %s."
#~ msgid "Low"
@@ -12110,9 +14492,6 @@ msgstr "Aplikasi Ilmu pengetahuan"
#~ msgid "mount failed"
#~ msgstr "gagal melakukan mount"
-#~ msgid "Boot mode"
-#~ msgstr "Mode boot"
-
#~ msgid "Export"
#~ msgstr "Ekspor"
@@ -12181,9 +14560,6 @@ msgstr "Aplikasi Ilmu pengetahuan"
#~ msgid "Configure network connection (LAN or Internet)"
#~ msgstr "Konfigureasikan koneksi jaringan (LAN atau Internet)"
-#~ msgid "authentification"
-#~ msgstr "otentifikasi"
-
#~ msgid "Scanning available nfs shared resource"
#~ msgstr "Men-scan sumberdaya umum nfs yg tersedia"
@@ -13572,9 +15948,6 @@ msgstr "Aplikasi Ilmu pengetahuan"
#~ msgid "cannot fork: "
#~ msgstr "tidak bisa fork: "
-#~ msgid "Configure..."
-#~ msgstr "Konfigurasikan..."
-
#~ msgid "Selected size %d%s"
#~ msgstr "Ukuran yang dipilih %d%s"
diff --git a/perl-install/share/po/is.po b/perl-install/share/po/is.po
index 03cddfd32..5f590785c 100644
--- a/perl-install/share/po/is.po
+++ b/perl-install/share/po/is.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
"PO-Revision-Date: 2000-01-05 18:53-0500\n"
"Last-Translator: Thorarinn Einarsson <teinarsson@nc.rr.com>\n"
"Language-Team: Icelandic\n"
@@ -16,98 +16,118 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
-#: ../../Xconfigurator.pm_.c:249
-#, fuzzy
-msgid "Multi-head configuration"
-msgstr "Les uppsetningarskrá"
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
-#: ../../Xconfigurator.pm_.c:250
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Skjákort"
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Veldu skjákort"
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB eđa meira"
-#: ../../Xconfigurator.pm_.c:286
+#: ../../Xconfig/card.pm_.c:201
msgid "Choose a X server"
msgstr "Veldu X ţjón"
-#: ../../Xconfigurator.pm_.c:286
+#: ../../Xconfig/card.pm_.c:201
msgid "X server"
msgstr "X ţjónn"
-#: ../../Xconfigurator.pm_.c:293
+#: ../../Xconfig/card.pm_.c:225
#, fuzzy
-msgid "Choose a X driver"
-msgstr "Veldu X ţjón"
+msgid "Multi-head configuration"
+msgstr "Les uppsetningarskrá"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X ţjónn"
+#: ../../Xconfig/card.pm_.c:226
+msgid ""
+"Your system support multiple head configuration.\n"
+"What do you want to do?"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Veldu minnisstćrđ skjákortsins"
+
+#: ../../Xconfig/card.pm_.c:341
+#, fuzzy
+msgid "XFree configuration"
+msgstr "Lokauppsetning"
-#: ../../Xconfigurator.pm_.c:363
+#: ../../Xconfig/card.pm_.c:343
#, fuzzy
msgid "Which configuration of XFree do you want to have?"
msgstr "Hverju viltu bćta viđ?"
-#: ../../Xconfigurator.pm_.c:374
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
-"Your card is supported by XFree %s which may have a better support in 2D."
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
msgstr ""
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
msgstr ""
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Netstillingar"
+
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s"
+msgstr "XFree %s"
+
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr ""
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
+#, c-format
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr ""
+
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr ""
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -115,32 +135,53 @@ msgid ""
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
-#: ../../Xconfigurator.pm_.c:421
-#, fuzzy
-msgid "XFree configuration"
-msgstr "Lokauppsetning"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Veldu minnisstćrđ skjákortsins"
+#: ../../Xconfig/card.pm_.c:445
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Veldu valmöguleika fyrir ţjón"
+#: ../../Xconfig/main.pm_.c:60
+#, fuzzy, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr "Halda núverandi IP stillingum"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Veldu skjá"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Skjár"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+#, fuzzy
+msgid "Custom"
+msgstr "Sérlagađa"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Endurheimta"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -160,521 +201,333 @@ msgstr ""
"ţađ er MJÖG MIKILVĆGT ađ velja ekki of hátt tíđnisviđ fyrir skjáinn. Hafir\n"
"ţú einhverjar efasemdir, veldu ţá lćgri stillingar."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Lárétt tíđni"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Lóđrétt tíđni"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Skjár ekki skilgreindur"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Skjákort ekki skilgreint enn"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Upplausn ekki valin enn"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Viltu prófa skilgreininguna"
-
-#: ../../Xconfigurator.pm_.c:650
-#, fuzzy
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Ađvörun: Prófanir eru varasamar međ ţetta skjákort"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Prófunar skilgreining"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 litir (8 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"prófađu ađ breyta stillingum"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 ţúsund litir (15 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Villa átti sér stađ"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 ţúsund litir (16 bits)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Hćtti eftir %d sekúndur"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 miljón litir (24 bits)"
-#: ../../Xconfigurator.pm_.c:742
-#, fuzzy
-msgid "Is this the correct setting?"
-msgstr "Er ţetta rétt?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 miljarđar lita (32 bits)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Villa kom upp, reyndu ađ breyta fćribreytum"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Upplausnir"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Upplausn"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Veldu upplausn og fjölda lita"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Skjákort: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 ţjónn: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-#, fuzzy
-msgid "More"
-msgstr "Fćra"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Hćtta viđ"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Í lagi"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-#, fuzzy
-msgid "Expert Mode"
-msgstr "F. snillinga"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Sýna alla"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Viltu prófa skilgreininguna"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Upplausnir"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Prófunar skilgreining"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Tegund lyklaborđs: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Tegund músar: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Mús: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Skjár: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Lárétt tíđni skjás: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Lóđrétt tíđni skjás: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Skjákort: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Skjákort: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Skjákortsminni: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, fuzzy, c-format
msgid "Color depth: %s\n"
msgstr "Stillingar á litadýpt"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, fuzzy, c-format
msgid "Resolution: %s\n"
msgstr "Upplausnir"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 ţjónn: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, fuzzy, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 ţjónn: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Undirbý X-Window skilgreiningu"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Hvađ viltu gera?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Skipta um skjá"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Skipta um skjákort"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Breyta ţjóns möguleikum"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Breyta upplausn"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Sýna upplýsingar"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Prófa aftur"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Hćtta"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, fuzzy, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr "Halda núverandi IP stillingum"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X í rćsingu"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Ég get stillt tölvuna ţína til ađ kveikja sjálfvirkt á X viđ rćsingu\n"
"Vilt ţú kveikja á X viđ endurrćsingu?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Stimplađu ţig aftur inn í %s til ađ virkja breytingarnar"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Stimplađu ţig út og sláđu á Ctrl-Alt-Backspace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 litir (8 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 ţúsund litir (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 ţúsund litir (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 miljón litir (24 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 miljarđar lita (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-#, fuzzy
-msgid "16 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-#, fuzzy
-msgid "32 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-#, fuzzy
-msgid "64 MB or more"
-msgstr "16 MB eđa meira"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Stađlađ VGA, 640x480 @ 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 @ 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 Samhćft, 1024x768 @ 87 Hz samtvinnađ (ekkert 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 @ 87 Hz samtvinnađ, 800x600 @ 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Extended Super VGA, 800x600 @ 60 Hz, 640x480 @ 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Ósamtvinnađ SVGA, 1024x768 @ 60 Hz, 800x600 @ 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Hátíđni SVGA, 1024x768 @ 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Skjár sem rćđur viđ 1280x1024 @ 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Skjár sem rćđur viđ 1280x1024 @ 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Skjár sem rćđur viđ 1280x1024 @ 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Skjár sem rćđur viđ 1600x1200 @ 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Skjár sem rćđur viđ 1600x1200 @ 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Á fyrsta geira rćsidisksneiđar"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Í rćsifćrsluna (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
#, fuzzy
msgid "SILO Installation"
msgstr "Uppsetning LILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Hvert viltu setja rćsistjórann?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
#, fuzzy
msgid "LILO/grub Installation"
msgstr "Uppsetning LILO"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr ""
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr ""
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr ""
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr ""
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr ""
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
#, fuzzy
msgid "Yaboot"
msgstr "Rót"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
#, fuzzy
msgid "Bootloader main options"
msgstr "Stillingar LILO"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
#, fuzzy
msgid "Bootloader to use"
msgstr "Stillingar LILO"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
#, fuzzy
msgid "Bootloader installation"
msgstr "Stillingar LILO"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Rćsitćki"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr ""
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Samţjappađ"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "samţjappađ"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Skjáhamur"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Töf áđur en sjálfgefin rćsing byrjar"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Lykilorđ"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Lykilorđ (aftur)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Takmarka alla rofa á skipanlínu"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "takmarka"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr ""
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Nákvćm stćrđ vinnsluminnis (fann %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr ""
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Sláđu inn vinnsluminni í MB"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Valkosturinn ``Takmarka alla rofa á skipanalínu'' gerir ekkert án lykilorđs"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Reyndu aftur"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Mismunandi lykilorđ"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr ""
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr ""
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr ""
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr ""
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr ""
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
#, fuzzy
msgid "Default OS?"
msgstr "Sjálfgefiđ"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -683,85 +536,85 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
#, fuzzy
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Hérna eru núverandi stillingar LILO .\n"
"Ţú getur bćtt viđ fleirum eđa breytt ţessum."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Bćta viđ"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Búiđ"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
#, fuzzy
msgid "Modify"
msgstr "Breyta RAID"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Hverju viltu bćta viđ?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Öđru stýrikerfi (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Öđru stýrikerfi (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Öđru stýrikerfi (Windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Rćsikjarna"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Rót"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Bćta aftan viđ"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Les-skrif"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tafla"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Óöruggt"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Nafn"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Sjálfgefiđ"
@@ -796,53 +649,76 @@ msgstr "Ţú verđur ađ hafa diskminni"
msgid "This label is already used"
msgstr "Ţetta nafn er nú ţegar í notkun."
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Fann %s %s tengi"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Er kannski eitt enn í vélinni?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Eru einhver %s tengi í tölvunni?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Nei"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Já"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Skođađu vélbúnađarupplýsingar"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Set inn rekil fyrir %s kortiđ %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(eining %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+# ## skrytid
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Ţú getur núna gefiđ upp viđföng fyrir eininguna %s.\n"
+"Viđföng eru gefin upp sem ``viđfang=gildi viđfang2=gildi2 ...''.\n"
+"Til dćmis: ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Stillingar kjarnaeininga:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Hvađa %s rekil viltu prófa?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -859,38 +735,15 @@ msgstr ""
" hann ţarf? Stundum frystir sjálfvirk stilling vélina en ţađ ćtti ekki\n"
"ađ skemma neitt."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Stilla sjálfvirkt"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Stilla handvirkt"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-# ## skrytid
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Ţú getur núna gefiđ upp viđföng fyrir eininguna %s.\n"
-"Viđföng eru gefin upp sem ``viđfang=gildi viđfang2=gildi2 ...''.\n"
-"Til dćmis: ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Stillingar kjarnaeininga:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -899,49 +752,54 @@ msgstr ""
"Innsetning á einingu %s mistókst.\n"
"Viltu prófa aftur međ ólík viđföng?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(%s er nú ţegar til)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Ţetta lykilorđ er of einfalt"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Vinsamlega sláđu inn notandanafn"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Notandanafniđ má bara innihalda litla stafi, tölustafi, `-' og `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Ţetta notandanafn er nú ţegar til"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Ţetta notandanafn er nú ţegar til"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Bćta viđ notanda"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -950,32 +808,32 @@ msgstr ""
"Sláđu inn notanda\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Samţykkja notanda"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Nafn notanda"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Notandanafn:"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Skel"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr ""
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr ""
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -984,137 +842,116 @@ msgstr ""
"Ég get stillt tölvuna ţína til ađ kveikja sjálfvirkt á X viđ rćsingu\n"
"Vilt ţú kveikja á X viđ endurrćsingu?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
#, fuzzy
msgid "Choose the default user:"
msgstr "Veldu nýja stćrđ"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
#, fuzzy
msgid "Choose the window manager to run:"
msgstr "Veldu forritiđ sem ţú vilt nota"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr "Hvernig mús ertu međ?"
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr ""
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr ""
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr "Bćta viđ notanda"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-#, fuzzy
-msgid "Custom"
-msgstr "Sérlagađa"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr "Stađbundinn prentari"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Hvađa pakka viltu setja inn"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Hćtta viđ"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Velkomin(n) í tölvuţrjótinn"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Lélegt"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr ""
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Hátt"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Hátt"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Taugaveiklađ"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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 ""
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1123,60 +960,61 @@ msgstr ""
"Ţetta er hiđ hefđbundna öryggi sem mćlt er međ fyrir tölvu sem verđur notuđ\n"
"til ađ tengja viđ netiđ sem biđill. Öryggisathuganir eru núna í gangi. "
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Á ţessu öryggisstigi er orđiđ mögulegt ađ nota tölvuna sem ţjón.\n"
"Öryggiđ er nógu nógu mikiđ til ađ taka viđ fyrirspurnum frá\n"
"mörgum biđlum. "
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Kerfiđ er komiđ á 4. stig og er nú alveg lokađ.\n"
"Öryggiđ er á hćsta stigi."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Veldu öryggisstig"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
#, fuzzy
msgid "Security level"
msgstr "Stilli öryggisţrep"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Veldu valmöguleika fyrir ţjón"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, fuzzy, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1203,52 +1041,52 @@ 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_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
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_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
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_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
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_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
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_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr ""
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr ""
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr ""
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr ""
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Hvert viltu setja rćsistjórann?"
@@ -1262,16 +1100,20 @@ msgstr ""
msgid "Boot Style Configuration"
msgstr "Lokauppsetning"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
#, fuzzy
msgid "/_File"
msgstr "Skrár:\n"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr ""
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr ""
@@ -1310,12 +1152,12 @@ msgstr "Rćsitćki"
#: ../../bootlook.pm_.c:104
#, fuzzy, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr "Veldu prenttengingu"
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
#, fuzzy
msgid "Configure"
@@ -1326,7 +1168,7 @@ msgid "System mode"
msgstr ""
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr ""
#: ../../bootlook.pm_.c:148
@@ -1337,14 +1179,16 @@ msgstr ""
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr ""
@@ -1393,7 +1237,7 @@ msgstr "Get ekki bćtt viđ disksneiđum"
msgid "Screenshots will be available after install in %s"
msgstr ""
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
#, fuzzy
msgid "France"
msgstr "Hćtta viđ"
@@ -1402,7 +1246,7 @@ msgstr "Hćtta viđ"
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Belgískt"
@@ -1431,11 +1275,12 @@ msgstr "Norkst"
msgid "Sweden"
msgstr "Skođa"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr "Ítalskt"
@@ -1445,7 +1290,7 @@ msgstr "Ítalskt"
msgid "Austria"
msgstr "rađtengd"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1453,8 +1298,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr "Vinsamlega taktu fyrst afrit af öllum gögnum"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Lestu vandlega!"
@@ -1465,11 +1310,12 @@ msgid ""
"at the beginning of the disk"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Villa"
@@ -1477,11 +1323,11 @@ msgstr "Villa"
msgid "Wizard"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Veldu ađgerđ"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
#, fuzzy
msgid ""
"You have one big FAT partition\n"
@@ -1494,149 +1340,155 @@ msgstr ""
"Ég legg til ađ ţú endursníđir hana\n"
"(smelltu á hana, síđan á \"Endursníđa\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Smelltu á disksneiđ"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Ítarleg atriđi"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
#, fuzzy
msgid "Journalised FS"
msgstr "tókst ekki ađ tengja"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Diskminni"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Tóm"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Annađ"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Tegundir skráakerfa:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Búa til"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tegund"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Nota ``%s'' í stađinn"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Eyđa"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Nota ``Aftengja'' fyrst"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, fuzzy, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "öll gögn á ţessari disksneiđ tapast"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose a partition"
msgstr "Veldu ađgerđ"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose another partition"
msgstr "Búa til nýja disksneiđ"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Fćra í snillingsham"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Fara í venjulegan ham"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Endurheimta"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Halda samt áfram?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Hćtta án ţess ađ vista"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Hćtta án ţess ađ skrifa sneiđatöfluna?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Viltu prófa skilgreininguna"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Ráđstafa skjálfkrafa"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Hreinsa allt"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+#, fuzzy
+msgid "More"
+msgstr "Fćra"
+
+#: ../../diskdrake/interactive.pm_.c:263
#, fuzzy
msgid "Hard drive information"
msgstr "Sýna upplýsingar"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Öll ađal skráarsniđ eru í notkun"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Get ekki bćtt viđ disksneiđum"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1644,36 +1496,36 @@ msgstr ""
"Til ađ fá fleiri disksneiđar, vinsamlega eyddu einni til ađ búa til "
"viđbótarsneiđ"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr "Skrifa sneiđatöflu"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr "Bjarga sneiđatöflunni"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Bjarga sneiđatöflunni"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr "Bjarga sneiđatöflunni"
# ## skrytid
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Removable media automounting"
msgstr "Sjálfvirk tenging aukatćkja"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Veljiđ skrá"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1681,11 +1533,11 @@ msgstr ""
"Disksneiđin sem var tekin sem afrit er ekki af sömu stćrđ\n"
"Halda áfram?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Ađvörun"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1693,257 +1545,269 @@ msgstr ""
"Settu diskling í drifiđ\n"
"Öll gögn á ţessum diskling tapast"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Reyni ađ endurheimta disksneiđatöfluna"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
#, fuzzy
msgid "Detailed information"
msgstr "Sýna upplýsingar"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Tengipunktur"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
#, fuzzy
msgid "Options"
msgstr "Upplýsingar"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Endurstćkka"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Fćra"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Forsníđa"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Tengipunktur"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Bćta viđ RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Bćta viđ LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Aftengja"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Taka úr RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Taka úr LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Breyta RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Búa til nýja disksneiđ"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Byrjunar geiri"
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Stćrđ í MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Tegund skráakerfis:"
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Tengipunktur: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Valkostur:"
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+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/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Forsníđ disksneiđ %s"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Breyta tegund sneiđar"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
#, fuzzy
msgid "Which filesystem do you want?"
msgstr "Hvađa sneiđtegund viltu?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, fuzzy, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Hvar viltu tengja tćki %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Hvar viltu tengja tćki %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Reikna takmarkanir FAT skráarkerfis..."
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Endursníđ"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
#, fuzzy
msgid "This partition is not resizeable"
msgstr "Hvađa sneiđtegund viltu?"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
#, fuzzy
msgid "All data on this partition should be backed-up"
msgstr "öll gögn á ţessari disksneiđ tapast"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, fuzzy, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "öll gögn á ţessari disksneiđ tapast"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Veldu nýja stćrđ"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
#, fuzzy
msgid "New size in MB: "
msgstr "Stćrđ í MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Hvađa disk viltu fćra til?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Geiri"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Hvađa geira viltu fćra gögn til?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Fćri"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Fćri disksneiđ..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Veldu RAID sem til er fyrir til ađ bćta viđ"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "ný"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Veldu LVM sem til er fyrir til ađ bćta viđ"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr "Nafn notanda"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
#, fuzzy
msgid "File already exists. Use it?"
msgstr "Nafniđ %s er ţegar í notkun"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
#, fuzzy
msgid "Mount options"
msgstr "Stillingar kjarnaeininga:"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "tćki"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "stig"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "stćrđ hlutar"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
#, fuzzy
msgid "What type of partitioning?"
msgstr "Hvernig prentara ertu međ?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Hvađa pakka viltu setja inn"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1955,7 +1819,7 @@ msgstr ""
"Annađhvort notar ţú LILO og ţađ mun ekki virka, eđa ţú notar ekki LILO og "
"sleppir ţví ađ hafa /boot"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1966,143 +1830,143 @@ msgstr ""
"1024. sívalnings á harđa disknum og ţú hefur enga /boot sneiđ.\n"
"Ef ţú ćtlar ađ nota LILO rćsistjórann skaltu muna ađ bćta viđ /boot sneiđ"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"So be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Disksneiđatafla drifs %s mun verđa skrifuđ á disk!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Ţú ţarft ađ endurrćsa áđur en breytingar taka gildi"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, fuzzy, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "öll gögn á ţessari disksneiđ tapast"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Forsníđing"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, fuzzy, c-format
msgid "Formatting loopback file %s"
msgstr "Forsníđ disksneiđ %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Forsníđ disksneiđ %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr "Búa til nýja disksneiđ"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Búa til nýja disksneiđ"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Upplausnir"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Tćki: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS drifstafur: %s (bara ágiskun)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Tegund: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Byrja: geiri %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Stćrđ: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s geirar"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Sívalningur %d til %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Forsniđinn\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Ekki forsniđinn\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Tengdur\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2110,27 +1974,27 @@ msgstr ""
"Sjálfgefin disksneiđ rćst\n"
" (fyrir MS-DOS rćsingu, ekki fyrir LILO)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Stig %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Hlunkastćrđ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-diskar %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2138,7 +2002,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2146,64 +2010,64 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Stćrđ: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Skilgreining: %s sívalningar, %s hausar, %s geirar\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Upplýsingar: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-diskar %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, fuzzy, c-format
msgid "Partition table type: %s\n"
msgstr "Rótardisksneiđ"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "á gagnabraut %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, fuzzy, c-format
msgid "Options: %s"
msgstr "Rótardisksneiđ"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Tegund skráakerfis:"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Ţetta lykilorđ er of einfalt (verđur ađ vera minnst %d stafa langt)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Mismunandi lykilorđ"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2214,36 +2078,66 @@ msgstr "Breyta tegund sneiđar"
#: ../../diskdrake/removable_gtk.pm_.c:28
#, fuzzy
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Smelltu á disksneiđ"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Auđkenning"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Endursníđ..."
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Notandanafn:"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Notandanafn:"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS lén"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "Nafnamiđlari"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, fuzzy, c-format
msgid "%s formatting of %s failed"
msgstr "gat ekki forsniđiđ %s"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "kann ekki ađ forsníđa %s af tegundinni %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "villa viđ ađ aftengja %s: %s"
@@ -2261,66 +2155,317 @@ msgstr ""
msgid "server"
msgstr "netţjónn"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Heiti tengipunkta verđa ađ byrja á /."
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, fuzzy, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Ţađ er ţegar disksneiđ međ tengipunktinn %s"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr ""
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr ""
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Villa viđ ađ opna %s til skriftar: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Ţađ kom upp villa. Engin tćki fundust sem unnt er ađ búa til ný skráakerfi "
"á. Vinsamlegast athugađu vélbúnađinn í leit ađ orsök vandamálsins."
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Ţú hefur ekki neinar disksneiđar"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Viđföng fyrir fjartengda lpd prentara"
+
+#: ../../harddrake/bttv.pm_.c:64
+msgid "Unknown|Generic"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+msgid "Card model :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "forsníđ"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Breyta tegund sneiđar"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Hćtta"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+#, fuzzy
+msgid "/_Help"
+msgstr "Hjálp"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "Hjálp"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "Tengipunktur"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "USB mús"
+
+#: ../../harddrake/ui.pm_.c:22
+msgid "hard disk model"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Hćtta viđ"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "USB mús"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+#, fuzzy
+msgid "Description"
+msgstr "Stilla handvirkt"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Auđkenning"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Veljiđ skrá"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Gátt (tćkiđ)"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+msgid "Number of buttons"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Nota fínstillingar á hörđum disk(um)"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Skođađu vélbúnađarupplýsingar"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Sýna upplýsingar"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Tilgreindu mús"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "%s tengipunktur er nú ţegar til"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Augnablik..."
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "Hćtti eftir %d sekúndur"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Viđföng fyrir fjartengda lpd prentara"
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Stilla sjálfvirkt"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2334,7 +2479,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2405,9 +2550,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2589,7 +2733,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2601,9 +2745,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2649,21 +2792,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2679,9 +2821,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
#: ../../help.pm_.c:347
@@ -2702,9 +2844,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -2814,38 +2955,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -2919,11 +3054,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -2947,7 +3082,7 @@ msgid ""
"choose this unless you know what you are doing."
msgstr ""
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -2962,7 +3097,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -2977,7 +3112,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -2993,7 +3128,7 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
#, fuzzy
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
@@ -3002,23 +3137,23 @@ msgstr ""
"Veldu tengiđ sem ţú vilt nota. Tengiđ COM1 í MS Windows er kallađ\n"
"ttyS0 í Linux, COM2 er ttyS1, o.s.frv."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3040,7 +3175,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3062,7 +3197,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3070,7 +3205,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3091,7 +3226,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3104,7 +3239,7 @@ msgid ""
"you will need a boot disk in order to boot those other operating systems!"
msgstr ""
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
#, fuzzy
msgid ""
"You must indicate where you wish to place the information required to boot\n"
@@ -3120,29 +3255,28 @@ msgstr ""
"Veldu \"Í rćsifćrsluna (MBR)\" nema ţú vitir nákvćmlega\n"
"hvađ ţú ert ađ gera."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3151,7 +3285,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3176,11 +3310,11 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3190,9 +3324,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3204,7 +3337,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" 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"
@@ -3230,7 +3363,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3257,18 +3390,17 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3276,12 +3408,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3297,14 +3428,14 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3315,7 +3446,7 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3323,12 +3454,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3343,26 +3474,26 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "Get ekki notađ útsendingu án NIS léns"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Settu tóman diskling í drif %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "villa viđ lestur úr skránni %s"
@@ -3390,7 +3521,7 @@ msgstr "Ţú verđur ađ hafa diskminni"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -3398,80 +3529,83 @@ msgstr ""
"\n"
"Halda samt áfram?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Ţú verđur ađ hafa diskminni"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
#, fuzzy
msgid "Use free space"
msgstr "Notandanafn:"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr ""
-#: ../../install_interactive.pm_.c:100
+#: ../../install_interactive.pm_.c:101
#, fuzzy
-msgid "Use existing partition"
+msgid "Use existing partitions"
msgstr "Forsníđ disksneiđ %s"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
#, fuzzy
msgid "There is no existing partition to use"
msgstr "Reyni ađ endurheimta disksneiđatöfluna"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr ""
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
#, fuzzy
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Hvađa disksneiđ vilt ţú nota sem rótardisksneiđ"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
#, fuzzy
msgid "Choose the sizes"
msgstr "Veldu nýja stćrđ"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
#, fuzzy
msgid "Root partition size in MB: "
msgstr "Rótardisksneiđ"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
#, fuzzy
msgid "Swap partition size in MB: "
msgstr "Stćrđ í MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr ""
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
#, fuzzy
msgid "Which partition do you want to resize?"
msgstr "Hvađa sneiđtegund viltu?"
-#: ../../install_interactive.pm_.c:130
+#: ../../install_interactive.pm_.c:131
#, fuzzy
-msgid "Computing Windows filesystem bounds"
+msgid "Resizing Windows partition"
msgstr "Reikna takmarkanir FAT skráarkerfis..."
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
"the following error occured: %s"
msgstr ""
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -3494,12 +3628,12 @@ msgstr ""
"gögnunum ţínum.\n"
"Sláđu á 'Í lagi' til ađ halda áfram."
-#: ../../install_interactive.pm_.c:147
+#: ../../install_interactive.pm_.c:148
#, fuzzy
-msgid "Which size do you want to keep for windows on"
+msgid "Which size do you want to keep for Windows on"
msgstr "Hvađa geira viltu fćra gögn til?"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, fuzzy, c-format
msgid "partition %s"
msgstr "Rótardisksneiđ"
@@ -3509,56 +3643,56 @@ msgstr "Rótardisksneiđ"
# *** ATH: Ţađ er sumt eftir fyrir ofan ***
# ******************************************
#
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, fuzzy, c-format
msgid "FAT resizing failed: %s"
msgstr "Sjálfvirk endurstćkkun brást"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr ""
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr ""
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, fuzzy, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "öll gögn á ţessari disksneiđ tapast"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
#, fuzzy
msgid "Custom disk partitioning"
msgstr "Forsníđ disksneiđ %s"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr ""
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, don't forget to save using `w'"
msgstr ""
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
#, fuzzy
msgid "You don't have enough free space on your Windows partition"
msgstr "Ţú hefur ekki neinar disksneiđar"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
#, fuzzy
msgid "I can't find any room for installing"
msgstr "Get ekki bćtt viđ disksneiđum"
@@ -3567,16 +3701,16 @@ msgstr "Get ekki bćtt viđ disksneiđum"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, fuzzy, c-format
msgid "Partitioning failed: %s"
msgstr "Rótardisksneiđ"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Keyri upp netiđ"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
#, fuzzy
msgid "Bringing down the network"
msgstr "Keyri upp netiđ"
@@ -3589,12 +3723,12 @@ msgstr ""
"Óţekkt villa kom upp sem ekki er hćgt ađ međhöndla.\n"
"Haltu áfram á eigin ábyrgđ."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "%s tengipunktur er nú ţegar til"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3602,12 +3736,12 @@ msgid ""
"\"\n"
msgstr ""
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, fuzzy, c-format
msgid "Welcome to %s"
msgstr "Velkomin(n) í tölvuţrjótinn"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Ekkert disklingadrif ađgengilegt"
@@ -3617,204 +3751,168 @@ msgstr "Ekkert disklingadrif ađgengilegt"
msgid "Entering step `%s'\n"
msgstr "Hef skref `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Innsetningarađferđ"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Vinsamlega tilgreindu eftirfarandi"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:241
-#, fuzzy
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Ţú munt geta valiđ af meiri nákvćmni í nćsta skrefi"
-
-#: ../../install_steps_gtk.pm_.c:243
-#, fuzzy
-msgid "Percentage of packages to install"
-msgstr "Veldu pakka til ađ setja inn"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Val á pakkahóp"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
#, fuzzy
msgid "Individual package selection"
msgstr "Val á pakkahóp"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, fuzzy, c-format
msgid "Total size: %d / %d MB"
msgstr "Heildarstćrđ: "
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Skemmdur pakki"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Útgáfa: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Stćrđ: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
#, fuzzy
msgid "The following packages are going to be installed"
msgstr "Eftirfarandi pakkar verđa fjarlćgđir"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
#, fuzzy
msgid "The following packages are going to be removed"
msgstr "Eftirfarandi pakkar verđa fjarlćgđir"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Innsetning"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Vista á diskling"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
#, fuzzy
msgid "Updating package selection"
msgstr "Val á pakkahóp"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
#, fuzzy
msgid "Minimal install"
msgstr "Fjarlćgja"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Veldu pakkana sem ţú vilt setja inn"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Set inn"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Áćtla"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Tími eftir "
-#: ../../install_steps_gtk.pm_.c:528
+#: ../../install_steps_gtk.pm_.c:474
#, fuzzy
-msgid "Please wait, preparing installation"
+msgid "Please wait, preparing installation..."
msgstr "Undirbý innsetningu"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d pakkar"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Set inn pakka %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
#, fuzzy
msgid "Accept"
msgstr "Samţykkja notanda"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#, fuzzy
msgid "Refuse"
msgstr "Endurstćkka"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -3824,17 +3922,17 @@ msgid ""
"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Viltu samt halda áfram?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Ţađ kom upp villa viđ ađ rađa pökkum:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
#, fuzzy
msgid "There was an error installing packages:"
msgstr "Ţađ kom upp villa viđ ađ rađa pökkum:"
@@ -3880,11 +3978,11 @@ msgstr "Villa kom upp"
msgid "Do you really want to leave the installation?"
msgstr "Viltu prófa skilgreininguna"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -3899,7 +3997,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -4005,118 +4103,122 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Lyklaborđ"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Hvađa lyklaborđsuppsetningu viltu?"
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
#, fuzzy
msgid "Which installation class do you want?"
msgstr "Hverskonar innsetningarađferđ viltu?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
#, fuzzy
msgid "Install/Update"
msgstr "Innsetning/Uppfćrsla"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
#, fuzzy
msgid "Is this an install or an update?"
msgstr "Er ţetta innsetning eđa uppfćrsla?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Auđvelda"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "F. snillinga"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade"
msgstr "Uppfćrsla"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr "Val á pakkahóp"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Hvernig mús ertu međ?"
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Músartengi"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
#, fuzzy
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Viđ hvađa rađtengi er músin ţín tengd?"
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Stilli PCMCIA kort..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
#, fuzzy
msgid "Configuring IDE"
msgstr "Uppsetning"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "engar reiđubúnar disksneiđar"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Veldu tengipunktana"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, fuzzy, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4124,7 +4226,7 @@ msgstr ""
"Ég get ekki lesiđ disksneiđatöflu ţína, hún er of skemmd fyrir mig :-(\n"
"Ég mun reyna ađ halda áfram međ ţví ađ hreinsa skemmdar disksneiđar"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4132,156 +4234,159 @@ msgstr ""
"DiskDrake gat ekki lesiđ sneiđatöfluna.\n"
"Haltu áfram á eigin ábyrgđ!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Engin rótarsneiđ fannst"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Rótardisksneiđ"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Hver er rótardisksneiđ (/) kerfisins?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Ţú verđur ađ rćsa tölvuna aftur svo breytingar á sneiđatöflunni taki gildi"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Veldu ţćr disksneiđar sem á ađ forsníđa"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Athuga skemmdar blokkir?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
#, fuzzy
msgid "Formatting partitions"
msgstr "Forsníđ disksneiđ %s"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Ekki nćgjanlegt diskminni fyrir innsetningu. Bćttu viđ ţađ"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Leita ađ fáanlegum pökkum"
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "Leita ađ fáanlegum pökkum"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Leita ađ pökkum til ađ uppfćra"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Eftirfarandi pakkar verđa fjarlćgđir"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:515
-#, fuzzy, c-format
-msgid "Complete (%dMB)"
-msgstr "Venjulega"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, fuzzy, c-format
-msgid "Minimum (%dMB)"
-msgstr "(%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, fuzzy, c-format
-msgid "Recommended (%dMB)"
-msgstr "Auđvelda"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
#, fuzzy
msgid "Load from floppy"
msgstr "Endurheimta frá diskling"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Loading from floppy"
msgstr "Endurheimta frá diskling"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Package selection"
msgstr "Val á pakkahóp"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Settu tóman diskling í drif %s"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Vista á diskling"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
#, fuzzy
msgid "Type of install"
msgstr "Veldu pakka til ađ setja inn"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
#, fuzzy
msgid "With X"
msgstr "Augnablik"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
"If only some CDs are missing, unselect them, then click Ok."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr ""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Undirbý innsetningu"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4290,24 +4395,24 @@ msgstr ""
"Set inn pakka %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Lokauppsetning"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Settu tóman diskling í drif %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Settu tóman diskling í drif %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
#, fuzzy
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -4387,170 +4492,200 @@ msgstr ""
"Altadena, California, 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Hef samband viđ vélina til ađ sćkja lista yfir fáanlega pakka"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Veldu spegilvélina ţađan sem á ađ sćkja pakkanna"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Hef samband viđ vélina til ađ sćkja lista yfir fáanlega pakka"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
#, fuzzy
msgid "Which is your timezone?"
msgstr "Á hvađa tímasvćđi ertu?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Veltu stilla tölvuklukkuna á GMT?"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
#, fuzzy
msgid "NTP Server"
msgstr "NIS ţjónn"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
#, fuzzy
msgid "Remote CUPS server"
msgstr "Fjartengd prentröđ"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
#, fuzzy
msgid "No printer"
msgstr "Stađbundinn prentari"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Er kannski eitt enn í vélinni?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
#, fuzzy
msgid "Mouse"
msgstr "USB mús"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Prentari"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "NIS"
msgstr "Nota NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+msgid "Windows PDC"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Local files"
msgstr "Stađbundinn prentari"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Ákveđa rótarlykilorđ"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Ekkert lykilorđ"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr "Ţetta lykilorđ er of einfalt (verđur ađ vera minnst %d stafa langt)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Auđkenning"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
#, fuzzy
msgid "Authentication LDAP"
msgstr "Auđkenning"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "LDAP Server"
msgstr "netţjónn"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
#, fuzzy
msgid "Authentication NIS"
msgstr "Auđkenning NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS lén"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS ţjónn"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Auđkenning"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Upplýsingar"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NIS ţjónn"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
#, fuzzy
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4579,21 +4714,21 @@ msgstr ""
" vélinni ef alvarleg vandamál koma upp.\n"
"Viltu búa til rćsidiskling fyrir vélina ţína?"
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
#, fuzzy
msgid "First floppy drive"
msgstr "Fyrsta drif"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
#, fuzzy
msgid "Second floppy drive"
msgstr "Annađ drif"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Sleppa"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, fuzzy, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4620,7 +4755,7 @@ msgstr ""
"Viltu búa til rćsidiskling fyrir vélina ţína?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -4629,28 +4764,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Ekkert disklingadrif til stađar"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Veldu disklingadrifiđ sem ţú vilt nota til ađ gera rćsidisk"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Settu tóman diskling í drif %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Bý til rćsidiskling..."
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Set upp rćsistjórann..."
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4658,28 +4793,28 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
#, fuzzy
msgid "Do you want to use aboot?"
msgstr "Viltu nota SILO?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
#, fuzzy
msgid "Installing bootloader"
msgstr "Setja inn rćsihlađara"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
#, fuzzy
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Innsetning LILO brást sökum eftirfarandi villu:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4690,19 +4825,18 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, fuzzy, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Settu tóman diskling í drif %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
+#: ../../install_steps_interactive.pm_.c:1310
#, fuzzy
-msgid "Creating auto install floppy"
+msgid "Creating auto install floppy..."
msgstr "Undirbý innsetningu"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -4712,7 +4846,8 @@ msgstr ""
"\n"
"Viltu virkilega hćtta núna?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, fuzzy, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -4723,7 +4858,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -4741,12 +4876,16 @@ msgstr ""
"Frekari upplýsingar um hvernig á ađ stilla vélina eftir innsetninguna er ađ\n"
"finna í viđeigandi kafla í Official Mandrake Linux User's Guide bókinni."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
#, fuzzy
msgid "Generate auto install floppy"
msgstr "Undirbý innsetningu"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4755,17 +4894,17 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
#, fuzzy
msgid "Automated"
msgstr "Sjálfvirkt IP"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
#, fuzzy
msgid "Replay"
msgstr "Endurhlađa"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
#, fuzzy
msgid "Save packages selection"
msgstr "Val á pakkahóp"
@@ -4794,433 +4933,417 @@ msgstr ""
msgid "Choose a file"
msgstr "Veldu ađgerđ"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr ""
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Augnablik..."
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Upplýsingar"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Opna tré"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Loka tré"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Slćm hugmynd, reyndu aftur\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Ţitt val? (sjálfgefiđ %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Ţitt val? (sjálfgefiđ %s) "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Rótardisksneiđ"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr "Viltu nota SILO?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Ţitt val? (sjálfgefiđ %s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Tékkneskt (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Ţýskt"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Spćnskt"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finnskt"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Franskt"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norkst"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Pólskt"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Rússneskt"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Sćnskt"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Breskt lyklaborđ"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Bandarískt lyklaborđ"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Albanian"
msgstr "Úkraínkst"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
#, fuzzy
msgid "Armenian (old)"
msgstr "Armenískt"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
#, fuzzy
msgid "Armenian (typewriter)"
msgstr "Armenískt (hljóđfrćđilegt)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armenískt (hljóđfrćđilegt)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr ""
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgískt"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armenískt (hljóđfrćđilegt)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Búlgarskt"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brasilískt"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
#, fuzzy
msgid "Belarusian"
msgstr "Búlgarskt"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Svissneskt (ţýsk uppsetn.)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Svissneskt (frönsk uppsetn.)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Tékkneskt (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr ""
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Danskt"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
#, fuzzy
msgid "Dvorak (US)"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
#, fuzzy
msgid "Dvorak (Norwegian)"
msgstr "Norkst"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Eistlenskt"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgískt (\"Rússneskt\")"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgískt (\"Latínu\")"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Grískt"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Ungverskt"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr ""
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Ísraelískt"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Ísraelískt (hljóđfr.)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
#, fuzzy
msgid "Iranian"
msgstr "Úkraínkst"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Íslenskt"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Ítalskt"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr ""
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
#, fuzzy
msgid "Korean keyboard"
msgstr "Breskt lyklaborđ"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Suđur amerískt"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
#, fuzzy
msgid "Lithuanian AZERTY (old)"
msgstr "Litháenískt AZERTY"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
#, fuzzy
msgid "Lithuanian AZERTY (new)"
msgstr "Litháenískt AZERTY"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litháenískt \"töluröđ\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litháenískt \"hljóđfrćđilegt\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
#, fuzzy
msgid "Latvian"
msgstr "Upplýsingar"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr ""
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Hollenskt"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
#, fuzzy
msgid "Polish (qwerty layout)"
msgstr "Svissneskt (ţýsk uppsetn.)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
#, fuzzy
msgid "Polish (qwertz layout)"
msgstr "Svissneskt (ţýsk uppsetn.)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portúgískt"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Kanadískt (Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Rússneskt (Yawerty)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Rússneskt (Yawerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Rússneskt (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slóvenskt"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slóvakískt (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slóvakískt (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Júgoslavneskt (Latínu upps.)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Tafla"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thćlenskt lyklaborđ"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Thćlenskt lyklaborđ"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Tyrkneskt (hefđbundiđ \"F\" módel)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Tyrkneskt (nútíma \"Q\" módel)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Úkraínkst"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Bandarískt (alţjóđlegt)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
#, fuzzy
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Litháenískt \"töluröđ\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Júgoslavneskt (Latínu upps.)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5233,7 +5356,31 @@ msgstr ""
msgid "Remove the logical volumes first\n"
msgstr ""
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Símanúmer"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Forsníđa disksneiđar"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5276,10 +5423,6 @@ msgstr ""
msgid "Generic 2 Button Mouse"
msgstr ""
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr ""
-
#: ../../mouse.pm_.c:46
#, fuzzy
msgid "Wheel"
@@ -5347,41 +5490,57 @@ msgstr "Búiđ"
msgid "No mouse"
msgstr "Engin mús"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
#, fuzzy
msgid "Please test the mouse"
msgstr "Hvernig mús ertu međ?"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
#, fuzzy
msgid "To activate the mouse,"
msgstr "Hvernig mús ertu međ?"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr ""
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
#, fuzzy
msgid "Finish"
msgstr "Finnskt"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr ""
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr ""
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Er ţetta rétt?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Upplýsingar"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Opna tré"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Loka tré"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr ""
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
#, fuzzy
msgid "Connect to the Internet"
@@ -5423,7 +5582,7 @@ msgid ""
"I cannot set up this connection type."
msgstr ""
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
#, fuzzy
msgid "Choose the network interface"
msgstr "Veldu nýja stćrđ"
@@ -5438,7 +5597,7 @@ msgstr "Viđ hvađa rađtengi er músin ţín tengd?"
msgid "no network card found"
msgstr "ekkert netkort fannst"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Stilli stađarnetstenginu"
@@ -5455,16 +5614,16 @@ msgstr ""
"vistfang gáttarinnar ef ţú veist hvađ ţađ vistfang er.\n"
"Gáttin gefur ţér ađgang út úr stađarnetinu (t.d. á Internetiđ)."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
#, fuzzy
msgid "Host name"
msgstr "Vélarheiti:"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
#, fuzzy
msgid "Network Configuration Wizard"
msgstr "Netstillingar"
@@ -5516,7 +5675,7 @@ msgstr "Uppsetning"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
#: ../../network/isdn.pm_.c:183
@@ -5534,13 +5693,13 @@ msgstr "Prófunar skilgreining"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
#: ../../network/isdn.pm_.c:189
#, fuzzy
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Hvađa sneiđtegund viltu?"
#: ../../network/isdn.pm_.c:199
@@ -5567,7 +5726,8 @@ 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"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
#: ../../network/isdn.pm_.c:210
@@ -5581,13 +5741,13 @@ msgstr "Halda samt áfram?"
#: ../../network/isdn.pm_.c:216
#, fuzzy
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Á hvađa tímasvćđi ertu?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
#: ../../network/isdn.pm_.c:244
@@ -5603,105 +5763,105 @@ msgstr "Hvađa rađtengi er mótaldiđ tengt viđ?"
msgid "Dialup options"
msgstr "Innhringistillingar"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Nafn tengingar"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
#, fuzzy
msgid "Phone number"
msgstr "Símanúmer"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Notendanafn"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Međ skriftu"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Međ skjáhermi"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Nafn léns"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
#, fuzzy
msgid "First DNS Server (optional)"
msgstr "Ađal nafnamiđlari"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
#, fuzzy
msgid "Second DNS Server (optional)"
msgstr "Vara nafnamiđlari"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
#, fuzzy
msgid ""
"\n"
"You can reconfigure your connection."
msgstr "Stilla nettengingu"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
#, fuzzy
msgid "You are currently connected to internet."
msgstr "Hvađa disk viltu fćra til?"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
msgstr "Nafn tengingar"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid "You are not currently connected to Internet."
msgstr "Hvađa disk viltu fćra til?"
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Connect"
msgstr "Nafn tengingar"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
#, fuzzy
msgid "Disconnect"
msgstr "Veldu prenttengingu"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "Stilla nettengingu"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
#, fuzzy
msgid "Internet connection & configuration"
msgstr "Veldu prenttengingu"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr "Stilla nettengingu"
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, fuzzy, c-format
msgid ""
"\n"
@@ -5713,12 +5873,12 @@ msgid ""
"Press OK to continue."
msgstr "Stilla nettengingu"
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Netstillingar"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -5726,108 +5886,115 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"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 ""
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
#, fuzzy
msgid "Choose the profile to configure"
msgstr "Veldu nýja stćrđ"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+#, fuzzy
+msgid "Expert Mode"
+msgstr "F. snillinga"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Leita ađ tćkjum..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, fuzzy
msgid "Normal modem connection"
msgstr "Stilla nettengingu"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, fuzzy, c-format
msgid "detected on port %s"
msgstr "%s tengipunktur er nú ţegar til"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, fuzzy
msgid "ISDN connection"
msgstr "Veldu prenttengingu"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy
msgid "ADSL connection"
msgstr "Veldu prenttengingu"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "Cable connection"
msgstr "Veldu prenttengingu"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "cable connection detected"
msgstr "Veldu prenttengingu"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
#, fuzzy
msgid "LAN connection"
msgstr "Veldu prenttengingu"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Veldu forritiđ sem ţú vilt nota"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
#, fuzzy
msgid "Internet connection"
msgstr "Veldu prenttengingu"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
#, fuzzy
msgid "Do you want to start the connection at boot?"
msgstr "Viltu nota aboot?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
#, fuzzy
msgid "Network configuration"
msgstr "Netstillingar"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -5835,35 +6002,35 @@ msgid ""
"%s"
msgstr "Viltu prófa skilgreininguna"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"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 ""
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -5873,40 +6040,45 @@ msgstr ""
"á ađ vera IP tala rituđ međ punkt á milli.\n"
"(dćmi 192.168.1.13)"
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Stilli nettćki %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, fuzzy, c-format
msgid " (driver %s)"
msgstr "XFree86 ţjónn: %s\n"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
#, fuzzy
msgid "IP address"
msgstr "IP vistfang:"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
#, fuzzy
msgid "Netmask"
msgstr "Netsía:"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Sjálfvirkt IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Búa til rćsidiskling"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP vistfang á ađ vera á sniđinu 192.168.1.10"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -5918,387 +6090,392 @@ msgstr ""
"vistfang gáttarinnar ef ţú veist hvađ ţađ vistfang er.\n"
"Gáttin gefur ţér ađgang út úr stađarnetinu (t.d. á Internetiđ)."
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "Nafnamiđlari"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Gátt (tćkiđ)"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
#, fuzzy
msgid "Proxies configuration"
msgstr "Lokauppsetning"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP sel:"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP Sel:"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Sel á ađ vera http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Sel á ađ vera ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
#, fuzzy
msgid "Internet configuration"
msgstr "Sel stillingar"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
#, fuzzy
msgid "Do you want to try to connect to the Internet now?"
msgstr "Viltu prófa skilgreininguna"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
#, fuzzy
msgid "Testing your connection..."
msgstr "Stilla nettengingu"
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
#, fuzzy
msgid "The system is now connected to Internet."
msgstr "Hvađa disk viltu fćra til?"
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr ""
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
#, fuzzy
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
msgstr "Nafn tengingar"
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
#, fuzzy
msgid "Connection Configuration"
msgstr "Sel stillingar"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr ""
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr ""
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr ""
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr ""
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr ""
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr ""
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr ""
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr ""
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
#, fuzzy
msgid "Provider phone number"
msgstr "Símanúmer"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
#, fuzzy
msgid "Provider dns 1 (optional)"
msgstr "Stillingar á prentara"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
#, fuzzy
msgid "Provider dns 2 (optional)"
msgstr "Stillingar á prentara"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
#, fuzzy
msgid "Choose your country"
msgstr "Veldu lyklaborđ"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
#, fuzzy
msgid "Dialing mode"
msgstr "Hringja inn međ mótaldi"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection speed"
msgstr "Nafn tengingar"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Nafn tengingar"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
#, fuzzy
msgid "Account Login (user name)"
msgstr "Tengipunktur"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
#, fuzzy
msgid "Account Password"
msgstr "Lykilorđ"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "tókst ekki ađ tengja: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr ""
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Ţađ er gat í sneiđatöflunni ţinni sem ekki er hćgt ađ nota.\n"
"Eina lausnins er ađ fćra ađalsneiđar svo ađ gatiđ verđi viđ hliđina á "
"viđbótasneiđ"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Villa viđ lestur úr skránni %s: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Skemmd afritsskrá"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Villa viđ ađ skrifa í skrána %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
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 trash"
msgstr ""
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr ""
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr ""
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr ""
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
#, fuzzy
msgid "nice"
msgstr "tćki"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
#, fuzzy
msgid "maybe"
msgstr "Rćsikjarna"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr ""
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr ""
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Stađbundinn prentari"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
#, fuzzy
msgid "Remote printer"
msgstr "Viđföng fyrir fjartengda lpd prentara"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "Fjartengd prentröđ"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Fjartengdur"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
#, fuzzy
msgid "Network printer (TCP/Socket)"
msgstr "Viđföng NetWare prentara"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Prentţjónn"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Prenttćki:"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr "Stađbundinn prentari"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr "Viđföng fyrir fjartengda lpd prentara"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Villa viđ ađ skrifa í skrána %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(eining %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "Vistfang SMB ţjóns"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Sjálfgefiđ)"
@@ -6317,12 +6494,12 @@ msgid ""
"printers will be automatically detected."
msgstr ""
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "Uppsetning"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "Fjartengd prentröđ"
@@ -6353,7 +6530,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP vistfang á ađ vera á sniđinu 192.168.1.10"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr ""
@@ -6362,7 +6539,7 @@ msgstr ""
msgid "CUPS server IP"
msgstr "Vistfang SMB ţjóns"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
#, fuzzy
msgid "Port"
msgstr "Lélegt"
@@ -6372,22 +6549,13 @@ msgstr "Lélegt"
msgid "Automatic CUPS configuration"
msgstr "Lokauppsetning"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "Leita ađ tćkjum..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Prófa tengi"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "Stađbundinn prentari"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6400,14 +6568,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr "Stađbundinn prentari"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6425,12 +6593,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "Viđföng fyrir fjartengda lpd prentara"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6444,11 +6612,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6458,35 +6626,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "Viđföng fyrir fjartengda lpd prentara"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "Viđföng fyrir fjartengda lpd prentara"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Prófa tengi"
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "%s tengipunktur er nú ţegar til"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
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, ..., "
@@ -6494,42 +6666,42 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
msgstr ""
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr "Stađbundinn prentari"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6537,7 +6709,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6545,71 +6717,81 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Hvađa rađtengi er mótaldiđ tengt viđ?"
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Prenttćki:"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "Uppsetning"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "Set inn pakka %s"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing SANE packages..."
msgstr "Set inn pakka %s"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Set inn pakka %s"
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr ""
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Viđföng fyrir fjartengda lpd prentara"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -6619,31 +6801,31 @@ msgstr ""
"upp vélarheiti prentţjónsins og prentröđina á ţeim sem\n"
"ţú vilt senda prentverkin í."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
#, fuzzy
msgid "Remote host name"
msgstr "Prentţjónn:"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
#, fuzzy
msgid "Remote printer name"
msgstr "Viđföng fyrir fjartengda lpd prentara"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
#, fuzzy
msgid "Remote host name missing!"
msgstr "Prentţjónn:"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Prentţjónn:"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB/Windows 9x/NT prentviđföng"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -6657,35 +6839,35 @@ msgstr ""
"ásamt samnýtingarheiti prentarans, notandaheiti, lykilorđi og\n"
"vinnuhópsupplýsingum fyrir prentarann."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "Heiti SMB ţjóns"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "Vistfang SMB ţjóns"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Samnýtingarheiti"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Vinnuhópur"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -6709,7 +6891,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -6718,7 +6900,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -6726,11 +6908,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Viđföng NetWare prentara"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -6743,28 +6925,28 @@ msgstr ""
"ásamt heiti prentarađar, notandaheiti og lykilorđi fyrir\n"
"prentarann."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Prentţjónn"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Heiti prentrađar"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Viđföng stađbundinna prentara"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -6772,63 +6954,58 @@ msgid ""
"hardware."
msgstr ""
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
#, fuzzy
msgid "Printer host name"
msgstr "Stillingar á prentara"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
#, fuzzy
msgid "Printer host name missing!"
msgstr "Stillingar á prentara"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
#, fuzzy
msgid "Printer Device URI"
msgstr "Prenttćki:"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
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 ""
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
#, fuzzy
msgid "Name of printer"
msgstr "Stađbundinn prentari"
-#: ../../printerdrake.pm_.c:1006
-#, fuzzy
-msgid "Description"
-msgstr "Stilla handvirkt"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
#, fuzzy
msgid "Location"
msgstr "Upplýsingar"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr ""
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "Viđföng fyrir fjartengda lpd prentara"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -6843,28 +7020,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "Er ţetta rétt?"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "Viđföng fyrir fjartengda lpd prentara"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
#, fuzzy
msgid "Printer model selection"
msgstr "Veldu prenttengingu"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Hvernig prentara ertu međ?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -6873,18 +7050,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Sel stillingar"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -6894,12 +7071,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Sel stillingar"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -6907,7 +7084,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -6920,7 +7097,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -6930,34 +7107,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Viltu prenta út prufublađsíđu?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
#, fuzzy
msgid "Test pages"
msgstr "Prófa tengi"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -6965,45 +7142,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
#, fuzzy
msgid "No test pages"
msgstr "Já, prenta báđar prufusíđur"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
#, fuzzy
msgid "Print"
msgstr "Prentari"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
#, fuzzy
msgid "Standard test page"
msgstr "Forritun"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Prenta út prufublađsíđu(r)..."
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
#, fuzzy
msgid "Photo test page"
msgstr "Prenta út prufublađsíđu(r)..."
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "Prenta út prufublađsíđu(r)..."
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Prenta út prufublađsíđu(r)..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7013,22 +7190,22 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "Stađbundinn prentari"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7037,15 +7214,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
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 ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7054,49 +7231,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, 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\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7106,7 +7283,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7115,31 +7292,42 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-#, fuzzy
-msgid "Close"
-msgstr "USB mús"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Keyri upp netiđ"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Keyri upp netiđ"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Keyri upp netiđ"
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Keyri upp netiđ"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+#, fuzzy
+msgid "Close"
+msgstr "USB mús"
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "Stillingar á prentara"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7147,37 +7335,37 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Sel stillingar"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7187,51 +7375,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7239,61 +7427,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid "New printer name"
msgstr "Stađbundinn prentari"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, 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 ""
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Stilla prentara"
-#: ../../printerdrake.pm_.c:1896
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
-msgid "Starting network ..."
+msgid "Starting network..."
msgstr "Stilla nettengingu"
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr "Stilla nettengingu"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "Skjár ekki skilgreindur"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7301,12 +7489,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Stilli stađarnetstenginu"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7316,34 +7504,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
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 ""
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
-msgid "Restarting printing system ..."
+msgid "Restarting printing system..."
msgstr "Hvađa sneiđtegund viltu?"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "Hátt"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "Taugaveiklađ"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7358,12 +7546,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Hvađa sneiđtegund viltu?"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7377,69 +7565,69 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Veldu prenttengingu"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Hvađa sneiđtegund viltu?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Setja upp prentara"
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr "Set inn pakka %s"
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Stillingar á prentara"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr ""
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Setja upp prentara"
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Viltu setja upp prentara?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "Printerdrake"
msgstr "Prentari"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -7447,147 +7635,151 @@ msgid ""
"OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
"it."
msgstr ""
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Stilla nettengingu"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
#, fuzzy
msgid "Normal Mode"
msgstr "Venjulega"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Hćtta"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Viltu prófa skilgreininguna"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
#, fuzzy
msgid "Modify printer configuration"
msgstr "Sel stillingar"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Viltu prófa skilgreininguna"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
#, fuzzy
msgid "Printer connection type"
msgstr "Veldu prenttengingu"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
#, fuzzy
msgid "Printer name, description, location"
msgstr "Veldu prenttengingu"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
#, fuzzy
msgid "Print test pages"
msgstr "Prenta út prufublađsíđu(r)..."
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "Viltu prófa skilgreininguna"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
#, fuzzy
msgid "Remove printer"
msgstr "Viđföng fyrir fjartengda lpd prentara"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
msgstr "Viđföng fyrir fjartengda lpd prentara"
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
#, fuzzy
msgid "Default printer"
msgstr "Stađbundinn prentari"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Viltu prófa skilgreininguna"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr "Viđföng fyrir fjartengda lpd prentara"
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -7670,24 +7862,56 @@ msgstr "Mismunandi lykilorđ"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr ""
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, fuzzy, c-format
msgid "Can't write file %s"
msgstr "Villa viđ ađ skrifa í skrána %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr ""
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr ""
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ekki nógu margar disksneiđar fyrir RAID %d\n"
+#: ../../security/msec.pm_.c:144
+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 ""
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+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 ""
+"Á ţessu öryggisstigi er orđiđ mögulegt ađ nota tölvuna sem ţjón.\n"
+"Öryggiđ er nógu nógu mikiđ til ađ taka viđ fyrirspurnum frá\n"
+"mörgum biđlum. "
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Uppsetning"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Upplýsingar"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -7730,7 +7954,7 @@ msgid ""
"new/changed hardware."
msgstr ""
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -7786,7 +8010,7 @@ msgid ""
"available server."
msgstr ""
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -7843,7 +8067,7 @@ msgid ""
"which act as servers for protocols which make use of the RPC mechanism."
msgstr ""
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -7922,7 +8146,7 @@ msgstr "Endursníđ..."
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "Mouse Systems"
@@ -8047,6 +8271,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Nafn tengingar"
@@ -8151,6 +8376,15 @@ msgstr ""
msgid "Installing packages..."
msgstr "Set inn pakka %s"
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Stimplađu ţig út og sláđu á Ctrl-Alt-Backspace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Stimplađu ţig aftur inn í %s til ađ virkja breytingarnar"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8159,6 +8393,160 @@ msgstr ""
"Ég get ekki lesiđ disksneiđatöflu ţína, hún er of skemmd fyrir mig :-(\n"
"Ég mun reyna ađ halda áfram međ ţví ađ hreinsa skemmdar disksneiđar"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Sel stillingar"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Prentţjónn"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Prentţjónn"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS ţjónn"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS ţjónn"
+
+#: ../../standalone/drakTermServ_.c:234
+#, fuzzy
+msgid "Etherboot Floppy/ISO"
+msgstr "Búa til rćsidiskling"
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Bćta viđ notanda"
+
+#: ../../standalone/drakTermServ_.c:242
+msgid "Add/Del Clients"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#, fuzzy
+msgid "Help"
+msgstr "Hjálp"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Veldu prenttengingu"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Eyđa"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Veljiđ skrá"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Bćta viđ notanda"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+msgid "<-- Del Client"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Uppsetning"
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "Stilla X"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Settu tóman diskling í drif %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Ekkert disklingadrif ađgengilegt"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
#, fuzzy
msgid "Error!"
@@ -8200,6 +8588,11 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Undirbý innsetningu"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -8208,47 +8601,40 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Til hamingju!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "Innsetning"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "Bćta viđ notanda"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "Forsníđ disksneiđ %s"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8256,15 +8642,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8272,695 +8650,759 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Skemmd afritsskrá"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "Skemmd afritsskrá"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "Skemmd afritsskrá"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#, c-format
+msgid ""
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "Villa viđ lestur skráarinnar $f"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "Val á pakkahóp"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
msgstr ""
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "Fjartengd prentröđ"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr ""
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Veldu prenttengingu"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Hvernig mús ertu međ?"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "Reyndu aftur"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "Hvernig mús ertu međ?"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "Ákveđa rótarlykilorđ"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Veldu prenttengingu"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Veldu prenttengingu"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Hvađa lyklaborđsuppsetningu viltu?"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Smelltu á disksneiđ"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr "Veldu pakkana sem ţú vilt setja inn"
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Veldu pakkana sem ţú vilt setja inn"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "Hvernig mús ertu međ?"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "Skemmd afritsskrá"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "Geiri"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Tegund"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "Notandanafn:"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Hvernig mús ertu međ?"
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Nota fínstillingar á hörđum disk(um)"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
#, fuzzy
msgid "What"
msgstr "Augnablik"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr "stig"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr "stig"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "Stillingar kjarnaeininga:"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Uppsetning"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Veldu pakkana sem ţú vilt setja inn"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Veldu pakkana sem ţú vilt setja inn"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "Setja upp skráarkerfi"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Mús: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1983
+#, c-format
+msgid ""
+"\n"
+"- Save via %s on host : %s\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Upplýsingar"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Hvađa rađtengi er mótaldiđ tengt viđ?"
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "Netstillingar"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "Hvernig mús ertu međ?"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Hvernig mús ertu međ?"
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "Veldu prenttengingu"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Veldu prenttengingu"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Endurheimta frá skrá"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
msgstr ""
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "Annađ"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "Setja kerfiđ inn"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "Endurheimta frá skrá"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "Endurheimta frá skrá"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "Sérlagađa"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "Hjálp"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr ""
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr "netţjónn"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr "Endurstćkka"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr "Texta"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "Veldu pakka til ađ setja inn"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Eftirfarandi pakkar verđa fjarlćgđir"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
msgstr ""
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
msgstr ""
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
msgstr ""
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "Skemmd afritsskrá"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "Skemmd afritsskrá"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "Skemmd afritsskrá"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "Vista í skrá"
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "Hvernig mús ertu međ?"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr "Veldu pakkana sem ţú vilt setja inn"
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Netstillingar"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "Netstillingar"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "Uppsetning"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "Uppsetning"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -8992,7 +9434,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9001,7 +9443,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9042,7 +9484,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9070,12 +9512,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -9092,7 +9539,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9132,7 +9579,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9143,7 +9590,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9156,7 +9603,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9200,104 +9647,553 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Innsetning %s brást sökum eftirfarandi villu:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Sel stillingar"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "Nafn tengingar"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "snillingur"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "USB mús"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Viđföng fyrir fjartengda lpd prentara"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Samnýtingarheiti"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+#, fuzzy
+msgid "Windows Migration tool"
+msgstr "Upplýsingar"
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Prentari"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Netstillingar"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Auđkenning"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Pakka"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Augnablik..."
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Hćtta innsetningu"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "Lélegt"
+
+#: ../../standalone/drakbug_.c:123
+#, fuzzy
+msgid "connecting to Bugzilla wizard ..."
+msgstr "Uppsetning"
+
+#: ../../standalone/drakbug_.c:129
+msgid "No browser available! Please install one"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:80
+#, fuzzy, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Netstillingar"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#, fuzzy
+msgid "Profile: "
+msgstr "tókst ekki ađ tengja: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+#, fuzzy
+msgid "Hostname: "
+msgstr "Vélarheiti:"
+
+#: ../../standalone/drakconnect_.c:168
+#, fuzzy
+msgid "Internet access"
+msgstr "Endursníđ..."
+
+#: ../../standalone/drakconnect_.c:181
+#, fuzzy
+msgid "Type:"
+msgstr "Tegund: "
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Gátt:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#, fuzzy
+msgid "Interface:"
+msgstr "Endursníđ..."
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+#, fuzzy
+msgid "Configure Internet Access..."
+msgstr "Setja upp prentara"
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#, fuzzy
+msgid "LAN configuration"
+msgstr "Uppsetning"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "Driver"
+msgstr "Sem ţjón"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "Interface"
+msgstr "Endursníđ..."
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:244
+#, fuzzy
+msgid "Configure Local Area Network..."
+msgstr "Stilla nettengingu"
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:302
+#, fuzzy
+msgid "Please Wait... Applying the configuration"
+msgstr "Prófunar skilgreining"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#, fuzzy
+msgid "Connected"
+msgstr "Nafn tengingar"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#, fuzzy
+msgid "Not connected"
+msgstr "Veldu prenttengingu"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:453
+#, fuzzy
+msgid "LAN Configuration"
+msgstr "Uppsetning"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "activate now"
+msgstr "Virk"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "deactivate now"
+msgstr "Virk"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:584
+#, fuzzy
+msgid "Internet connection configuration"
+msgstr "Veldu prenttengingu"
+
+#: ../../standalone/drakconnect_.c:588
+#, fuzzy
+msgid "Internet Connection Configuration"
+msgstr "Veldu prenttengingu"
+
+#: ../../standalone/drakconnect_.c:597
+#, fuzzy
+msgid "Connection type: "
+msgstr "Nafn tengingar"
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Gátt"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:69
+#, fuzzy
+msgid "Module name"
+msgstr "Stillingar kjarnaeininga:"
+
+#: ../../standalone/drakfloppy_.c:69
+#, fuzzy
+msgid "Size"
+msgstr "Stćrđ: %s"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+#, fuzzy
+msgid "drakfloppy"
+msgstr "Endurheimta frá diskling"
+
+#: ../../standalone/drakfloppy_.c:91
+#, fuzzy
+msgid "boot disk creation"
+msgstr "Lokauppsetning"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+#, fuzzy
+msgid "default"
+msgstr "Sjálfgefiđ"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:126
+#, fuzzy
+msgid "kernel version"
+msgstr "Sel stillingar"
+
+#: ../../standalone/drakfloppy_.c:132
+#, fuzzy
+msgid "General"
+msgstr "Ţýskt"
+
+#: ../../standalone/drakfloppy_.c:137
+#, fuzzy
+msgid "Expert Area"
+msgstr "F. snillinga"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:141
+#, fuzzy
+msgid "Add a module"
+msgstr "Bćta viđ notanda"
+
+#: ../../standalone/drakfloppy_.c:161
+#, fuzzy
+msgid "force"
+msgstr "Fćra"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:163
+#, fuzzy
+msgid "omit scsi modules"
+msgstr "Hringja inn međ mótaldi"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr ""
+
+# ## skrytid
+#: ../../standalone/drakfloppy_.c:200
+#, fuzzy
+msgid "Remove a module"
+msgstr "Sjálfvirk tenging aukatćkja"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:427
+#, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:429
+#, fuzzy, c-format
+msgid "Unable to fork: %s"
+msgstr "Stilla nettengingu"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "%s fannst ekki"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr "Búiđ"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
#, fuzzy
msgid "Fonts copy"
msgstr "Forsníđ"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "Undirbý innsetningu"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr ""
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "takmarka"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -9306,120 +10202,119 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "Forsníđa disksneiđar"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
#, fuzzy
msgid "Uninstall Fonts"
msgstr "Fjarlćgji RPM pakkana"
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Uppsetning"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr "Tengipunktur"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Veldu ţćr disksneiđar sem á ađ forsníđa"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "tćki"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr ""
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr "Prentari"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "Setja kerfiđ inn"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "Veljiđ skrá"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "Viđföng fyrir fjartengda lpd prentara"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr ""
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
msgstr ""
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "Innsetning"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
msgstr ""
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "Hćtta innsetningu"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
#, fuzzy
msgid "Internet Connection Sharing"
msgstr "Veldu prenttengingu"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr ""
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -9427,35 +10322,35 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
#, fuzzy
msgid "disable"
msgstr "Tafla"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr ""
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
#, fuzzy
msgid "reconfigure"
msgstr "Stilla X"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
#, fuzzy
msgid "Disabling servers..."
msgstr "Leita ađ tćkjum..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
#, fuzzy
msgid "Internet connection sharing is now disabled."
msgstr "Veldu prenttengingu"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr ""
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -9463,21 +10358,21 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
#, fuzzy
msgid "enable"
msgstr "Tafla"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
#, fuzzy
msgid "Internet connection sharing is now enabled."
msgstr "Veldu prenttengingu"
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -9487,31 +10382,31 @@ msgid ""
"(LAN)."
msgstr ""
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr ""
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, fuzzy, c-format
msgid "Interface %s"
msgstr "Endursníđ..."
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr ""
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr ""
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -9521,18 +10416,18 @@ msgid ""
"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "Skjár ekki skilgreindur"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -9542,17 +10437,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Lokauppsetning"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "Sel stillingar"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -9563,7 +10458,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
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 C-Class Network that "
@@ -9575,79 +10470,79 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "Vistfang SMB ţjóns"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
#, fuzzy
msgid "Firewalling configuration detected!"
msgstr "Les uppsetningarskrá"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
msgstr ""
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
#, fuzzy
msgid "Configuring..."
msgstr "Uppsetning"
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, fuzzy, c-format
msgid "Problems installing package %s"
msgstr "Set inn pakka %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
#, fuzzy
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Veldu prenttengingu"
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
#, fuzzy
msgid "Internet connection sharing configuration"
msgstr "Veldu prenttengingu"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, fuzzy, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -9657,225 +10552,6 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Veldu prenttengingu"
-#: ../../standalone/draknet_.c:80
-#, fuzzy, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Netstillingar"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-#, fuzzy
-msgid "Profile: "
-msgstr "tókst ekki ađ tengja: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-#, fuzzy
-msgid "Hostname: "
-msgstr "Vélarheiti:"
-
-#: ../../standalone/draknet_.c:168
-#, fuzzy
-msgid "Internet access"
-msgstr "Endursníđ..."
-
-#: ../../standalone/draknet_.c:181
-#, fuzzy
-msgid "Type:"
-msgstr "Tegund: "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gátt:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-#, fuzzy
-msgid "Interface:"
-msgstr "Endursníđ..."
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-#, fuzzy
-msgid "Configure Internet Access..."
-msgstr "Setja upp prentara"
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-#, fuzzy
-msgid "LAN configuration"
-msgstr "Uppsetning"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "Driver"
-msgstr "Sem ţjón"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "Interface"
-msgstr "Endursníđ..."
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr ""
-
-#: ../../standalone/draknet_.c:244
-#, fuzzy
-msgid "Configure Local Area Network..."
-msgstr "Stilla nettengingu"
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr ""
-
-#: ../../standalone/draknet_.c:302
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr "Prófunar skilgreining"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Connected"
-msgstr "Nafn tengingar"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Not connected"
-msgstr "Veldu prenttengingu"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-#, fuzzy
-msgid "LAN Configuration"
-msgstr "Uppsetning"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr ""
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr ""
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr ""
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Virk"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Virk"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-#, fuzzy
-msgid "Internet connection configuration"
-msgstr "Veldu prenttengingu"
-
-#: ../../standalone/draknet_.c:588
-#, fuzzy
-msgid "Internet Connection Configuration"
-msgstr "Veldu prenttengingu"
-
-#: ../../standalone/draknet_.c:597
-#, fuzzy
-msgid "Connection type: "
-msgstr "Nafn tengingar"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr ""
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gátt"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr ""
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr ""
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Stilli öryggisţrep"
-
#: ../../standalone/drakxconf_.c:47
#, fuzzy
msgid "Control Center"
@@ -9885,92 +10561,128 @@ msgstr "Nafn tengingar"
msgid "Choose the tool you want to use"
msgstr "Veldu forritiđ sem ţú vilt nota"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\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 ""
+
+#: ../../standalone/drakxtv_.c:72
#, fuzzy
msgid "Canada (cable)"
msgstr "Kanadískt (Quebec)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Hćtta viđ"
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr "Íslenskt"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
msgstr ""
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr "rađtengd"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Ţađ kom upp villa viđ ađ rađa pökkum:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10014,7 +10726,7 @@ msgstr ""
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr ""
@@ -10066,11 +10778,6 @@ msgstr "Upplýsingar"
msgid "/Options/Test"
msgstr "Upplýsingar"
-#: ../../standalone/logdrake_.c:110
-#, fuzzy
-msgid "/_Help"
-msgstr "Hjálp"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr ""
@@ -10137,7 +10844,7 @@ msgstr ""
msgid "Content of the file"
msgstr "Nafn tengingar"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -10146,82 +10853,113 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr "Undirbý innsetningu"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "Uppsetning"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr ""
-
#: ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid "sshd"
-msgstr "skuggi"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Nafn léns"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "Ext2"
+msgid "Ftp Server"
+msgstr "NIS ţjónn"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Prentţjónn"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS ţjónn"
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "NIS ţjónn"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "tćki"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Prentţjónn"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "Endursníđ..."
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "forsníđ"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "Uppsetning"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
#, fuzzy
msgid "Save as.."
msgstr "netţjónn"
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
#, fuzzy
msgid "Please, choose the type of your mouse."
msgstr "Hvernig mús ertu međ?"
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "ekkert serial_usb fannst\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Herma eftir ţriđja hnapp?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Viđföng fyrir fjartengda lpd prentara"
+
+#: ../../standalone/scannerdrake_.c:42
+#, fuzzy
+msgid "Detecting devices ..."
+msgstr "Leita ađ tćkjum..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -10265,6 +11003,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
#, fuzzy
msgid "Firewalling Configuration"
@@ -10618,10 +11368,6 @@ msgid "Multimedia - Sound"
msgstr "Margmiđlun"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr ""
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Leiđbeiningar"
@@ -10730,10 +11476,6 @@ msgid ""
msgstr ""
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr ""
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr ""
@@ -10782,26 +11524,110 @@ msgstr "Margmiđlun"
msgid "Scientific Workstation"
msgstr "Upplýsingar"
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Tengipunktur"
+#~ msgid "Choose options for server"
+#~ msgstr "Veldu valmöguleika fyrir ţjón"
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
+#~ msgid "Monitor not configured"
+#~ msgstr "Skjár ekki skilgreindur"
-#, fuzzy
-#~ msgid "None"
-#~ msgstr "Búiđ"
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Skjákort ekki skilgreint enn"
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Veldu nýja stćrđ"
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Upplausn ekki valin enn"
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Viđföng fyrir fjartengda lpd prentara"
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "prófađu ađ breyta stillingum"
+
+#~ msgid "An error occurred:"
+#~ msgstr "Villa átti sér stađ"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Hćtti eftir %d sekúndur"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Villa kom upp, reyndu ađ breyta fćribreytum"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 ţjónn: %s"
-#~ msgid "You may now provide its options to module %s."
+#~ msgid "Show all"
+#~ msgstr "Sýna alla"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Undirbý X-Window skilgreiningu"
+
+#~ msgid "What do you want to do?"
+#~ msgstr "Hvađ viltu gera?"
+
+#~ msgid "Change Monitor"
+#~ msgstr "Skipta um skjá"
+
+#~ msgid "Change Graphics card"
+#~ msgstr "Skipta um skjákort"
+
+#~ msgid "Change Server options"
+#~ msgstr "Breyta ţjóns möguleikum"
+
+#~ msgid "Change Resolution"
+#~ msgstr "Breyta upplausn"
+
+#~ msgid "Show information"
+#~ msgstr "Sýna upplýsingar"
+
+#~ msgid "Test again"
+#~ msgstr "Prófa aftur"
+
+#~ msgid "Setting security level"
+#~ msgstr "Stilli öryggisţrep"
+
+#~ msgid "Graphics card"
+#~ msgstr "Skjákort"
+
+#~ msgid "Select a graphics card"
+#~ msgstr "Veldu skjákort"
+
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Stađlađ VGA, 640x480 @ 60 Hz"
+
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 @ 56 Hz"
+
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514 Samhćft, 1024x768 @ 87 Hz samtvinnađ (ekkert 800x600)"
+
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 @ 87 Hz samtvinnađ, 800x600 @ 56 Hz"
+
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Extended Super VGA, 800x600 @ 60 Hz, 640x480 @ 72 Hz"
+
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Ósamtvinnađ SVGA, 1024x768 @ 60 Hz, 800x600 @ 72 Hz"
+
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "Hátíđni SVGA, 1024x768 @ 70 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Skjár sem rćđur viđ 1280x1024 @ 60 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Skjár sem rćđur viđ 1280x1024 @ 74 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Skjár sem rćđur viđ 1280x1024 @ 76 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Skjár sem rćđur viđ 1600x1200 @ 70 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Skjár sem rćđur viđ 1600x1200 @ 76 Hz"
+
+#~ msgid "You may now provide options to module %s."
#~ msgstr "Ţú getur núna gefiđ upp viđföng fyrir %s eininguna."
#~ msgid "Low"
@@ -10820,87 +11646,15 @@ msgstr "Upplýsingar"
#~ msgid "mount failed"
#~ msgstr "tókst ekki ađ tengja"
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr "Margmiđlun"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "F. snillinga"
-
-#, fuzzy
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "Hérna velur ţú tímasvćđiđ sem gildir ţar sem ţú býrđ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Linux notar GMT eđa \"Greenwich Mean Time\" og breytir ţeim tíma\n"
-#~ "síđan í stađartíma samkvćmt ţví tímasvćđi sem ţú velur."
-
-#, fuzzy
-#~ msgid "Connect to Internet"
-#~ msgstr "Nafn tengingar"
-
-#, fuzzy
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Nafn tengingar"
-
-#, fuzzy
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Stilla nettengingu"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Hvađa disk viltu fćra til?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Veldu pakkana sem ţú vilt setja inn"
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Upplýsingar"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Upplýsingar"
-
-#, fuzzy
-#~ msgid "authentification"
-#~ msgstr "Auđkenning"
-
-# ## skrytid
-#, fuzzy
-#~ msgid "Removable media"
-#~ msgstr "Sjálfvirk tenging aukatćkja"
-
#~ msgid "Active"
#~ msgstr "Virk"
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "Nei"
-
#~ msgid "A printer, model \"%s\", has been detected on "
#~ msgstr "Prentari af gerđinni \"%s\" fannst á "
#~ msgid "Local Printer Device"
#~ msgstr "Stađbundiđ prenttćki"
-#, fuzzy
-#~ msgid "Printer Device"
-#~ msgstr "Prenttćki:"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Fjartengd prentröđ"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "Fjartengd prentröđ"
-
#~ msgid "Choose the size you want to install"
#~ msgstr "Veldu ţá stćrđ sem ţú vilt setja inn"
@@ -10916,43 +11670,9 @@ msgstr "Upplýsingar"
#~ msgid "Use existing configuration for X11?"
#~ msgstr "Nota ţá X uppsetningu sem er til?"
-#, fuzzy
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
-#~ msgstr ""
-#~ "Viđ hvađa tćki er prentarinn ţinn tengdur\n"
-#~ " (Athugađu ađ /dev/lp0 er ţađ sama og LPT1:)?\n"
-
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#, fuzzy
-#~ msgid "Starting your connection..."
-#~ msgstr "Stilla nettengingu"
-
-#, fuzzy
-#~ msgid "Closing your connection..."
-#~ msgstr "Stilla nettengingu"
-
-#, fuzzy
-#~ msgid "The system is now disconnected."
-#~ msgstr "Hvađa disk viltu fćra til?"
-
#~ msgid "New"
#~ msgstr "Ný"
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "Fjarlćgja"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Smelltu á disksneiđ"
-
#~ msgid "Ambiguity (%s), be more precise\n"
#~ msgstr "Óljóst (%s), vertu nákvćmari\n"
@@ -10962,144 +11682,9 @@ msgstr "Upplýsingar"
#~ msgid "Your choice? (default %s enter `none' for none) "
#~ msgstr "Ţitt val? (sjálfgefiđ %s sláđu inn `none' fyrir engan) "
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Ef um algengar ađstćđur er ađ rćđa ţá er rétt svar \"/dev/hda\"\n"
-#~ "(ađal diskurinn á ađal IDE rásinni)."
-
-#, fuzzy
-#~ msgid "Do you want to restart the network"
-#~ msgstr "Viltu prófa skilgreininguna"
-
-#, fuzzy
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Viltu prófa skilgreininguna"
-
-#, fuzzy
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "Viltu prófa skilgreininguna"
-
-#, fuzzy
-#~ msgid ""
-#~ "The following printers are configured.\n"
-#~ "You can add some more or modify the existing ones."
-#~ msgstr ""
-#~ "Hérna eru núverandi stillingar LILO .\n"
-#~ "Ţú getur bćtt viđ fleirum eđa breytt ţessum."
-
-#, fuzzy
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "Nafn tengingar"
-
-#, fuzzy
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Veldu nýja stćrđ"
-
-#, fuzzy
-#~ msgid "Test the mouse here."
-#~ msgstr "Hvernig mús ertu međ?"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr "Veldu tungumál til ađ nota viđ innsetningu og kerfisnotkun."
-
#~ msgid "Choose the layout corresponding to your keyboard from the list above"
#~ msgstr "Veldu sniđ sem passar viđ lyklaborđiđ ţitt frá listanum ađ ofan"
-#, fuzzy
-#~ msgid ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!"
-#~ msgstr ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Eftir óskum: Ef ţú hefur ţó nokkra reynslu međiar with Linux, you "
-#~ "will be able to \n"
-#~ "select the usage for the installed system between normal, development or\n"
-#~ "server. Choose \"Normal\" for a general purpose installation of your\n"
-#~ "computer. You may choose \"Development\" if you will be using the "
-#~ "computer\n"
-#~ "primarily for software development, or choose \"Server\" if you wish to\n"
-#~ "install a general purpose server (for mail, printing...).\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: If you are fluent with GNU/Linux and want to perform\n"
-#~ "a highly customized installation, this Install Class is for you. You "
-#~ "will\n"
-#~ "be able to select the usage of your installed system as for \"Customized"
-#~ "\".\n"
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, the correct informations can "
-#~ "be\n"
-#~ "obtained from your Internet Service Provider."
-#~ msgstr ""
-#~ "Hérna geturđu stillt innhringitengingu. Ef ţú ert ekki viss um hvađ ţú "
-#~ "ţarft,\n"
-#~ "hafđu ţá samband viđ ţjónustuveituna til ađ fá ţćr upplýsingar."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Sláđu inn:\n"
-#~ "\n"
-#~ " - IP vistfang: Ef ţú veist ekki hvađ ţađ er, spurđu ţá kerfisstjóra eđa "
-#~ "fulltrúa hjá ţjónustuveitu.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Netsía: \"255.255.255.0\" er mjög algeng sía. Ef ţú ert ekki viss "
-#~ "hvađa\n"
-#~ "síu skal nota, spurđu ţá kerfisstjóra eđa fulltrúa ţjónustuveitu.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Sjálfvirkt vistfang: Ef ţú ert á neti sem notar bootp eđa dhcp "
-#~ "reglurnar, veldu \n"
-#~ "ţá ţennan kost. Í slíkum tilfellum ţarf ekki ađ gefa upp neitt \"IP "
-#~ "vistfang\". Eins \n"
-#~ "og međ ađrar stillingar, ţá vćri ekki slćm hugmynd ađ hafa samband viđ "
-#~ "kerfisstjóra.\n"
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, ask your network administrator."
-#~ msgstr ""
-#~ "Ef NIS er notađ á netinu sem ţú ert á, veldu ţá \"Nota NIS\". Ef ţú ert "
-#~ "ekki\n"
-#~ "viss hvort ţađ sé notađ, spurđu ţá kerfisstjóra netsins."
-
#~ msgid ""
#~ "You may now enter dialup options. If you're not sure what to enter, the\n"
#~ "correct information can be obtained from your ISP."
@@ -11117,66 +11702,6 @@ msgstr "Upplýsingar"
#~ "hvort ţú ţarft ađ still ţau, hafđu ţá samband viđ kerfisstjóra eđa "
#~ "ţjónustuveitu."
-#, fuzzy
-#~ msgid ""
-#~ "You can install cryptographic package if your internet connection has "
-#~ "been\n"
-#~ "set up correctly. First choose a mirror where you wish to download "
-#~ "packages and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "Ţú getur núna náđ í dulritunarhugbúnađ ef Internet tengingin ţín er rétt\n"
-#~ "upp sett. Fyrst velur ţú ţá spegilvél ţađan sem ţú vilt sćkja "
-#~ "hugbúnađinn\n"
-#~ "og síđan velur ţú ţá pakka sem ţú vilt sćkja og setja inn.\n"
-#~ "\n"
-#~ "Athugađu ađ velja spegilvél og dulritunarhugbúnađ samkvćmt ţví sem lög "
-#~ "leyfa\n"
-#~ "á Íslandi eđa hvar sem ţú ert núna ađ nota tölvuna."
-
-#, fuzzy
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "Hérna býrđu til rótarlykilorđ fyrir Mandrake Linux kerfiđ (lykilorđ\n"
-#~ "ofurpaursins :-). Ţú verđur ađ slá lykilorđiđ inn tvisvar til ađ \n"
-#~ "stađfesta ţađ (svo ţađ verđi örugglega ţađ lykilorđ sem ţú ćtlast til).\n"
-#~ "\n"
-#~ "\n"
-#~ "Rótin (root) er stjórnandi kerfisins (kerfisstjóri) og eini notandinn\n"
-#~ "sem breytt getur stýriskrám. Veldu lykilorđiđ ţví vandlega. Óheimil\n"
-#~ "notkun á rótarađgangi ađ kerfinu getur orđiđ mjög skađleg uppsetningu\n"
-#~ "og gögnum í kerfinu ásamt öđrum tölvum sem eru tengdar viđ ţessa.\n"
-#~ "Lykilorđiđ ćtti ađ vera hćfileg blanda af bókstöfum og tölustöfum og\n"
-#~ "minnst 8 stafa langt. Ţú ćttir *ekki* ađ skrifa ţađ niđur og ćttir\n"
-#~ "ţví ekki ađ hafa ţađ of langt eđa of flókiđ ţví ţá eykst hćttan á\n"
-#~ "á ţví ađ ţú gleymir ţví. Ţú ţarft ađ geta munađ hvađa lykilorđ\n"
-#~ "gefur rótarađgang til ađ geta breytt uppsetningu og stillingum."
-
# ## skrytid
#~ msgid ""
#~ "You may now create one or more \"regular\" user account(s), as\n"
@@ -11221,158 +11746,6 @@ msgstr "Upplýsingar"
#~ "you will have created here, and login as root only for administration\n"
#~ "and maintenance purposes."
-# ## skrytid
-#, fuzzy
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <number>: use the corresponding text mode.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories\n"
-#~ "stored in \"/tmp\" when you boot your system, select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the\n"
-#~ "BIOS about the amount of RAM present in your computer. As consequence, "
-#~ "Linux may\n"
-#~ "fail to detect your amount of RAM correctly. If this is the case, you "
-#~ "can\n"
-#~ "specify the correct amount or RAM here. Please note that a difference of "
-#~ "2 or 4\n"
-#~ "MB between detected memory and memory present in your system is normal."
-#~ msgstr ""
-#~ "LILO main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Linear: Generate linear sector addresses instead of\n"
-#~ "sector/head/cylinder addresses. Linear addresses are translated at run\n"
-#~ "time and do not depend on disk geometry. Note that boot disks may not be\n"
-#~ "portable if \"linear\" is used, because the BIOS service to determine "
-#~ "the\n"
-#~ "disk geometry does not work reliably for floppy disks. When using\n"
-#~ "\"linear\" with large disks, /sbin/lilo may generate references to\n"
-#~ "inaccessible disk areas, because 3D sector addresses are not known\n"
-#~ "before boot time.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Compact: Tries to merge read requests for adjacent sectors into a\n"
-#~ "single read request. This drastically reduces load time and keeps the\n"
-#~ "map smaller. Using \"compact\" is especially recommended when booting "
-#~ "from\n"
-#~ "a floppy disk.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ " * <number>: use the corresponding text mode."
-
-# ## skrytid
-#, fuzzy
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ "LILO main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Linear: Generate linear sector addresses instead of\n"
-#~ "sector/head/cylinder addresses. Linear addresses are translated at run\n"
-#~ "time and do not depend on disk geometry. Note that boot disks may not be\n"
-#~ "portable if \"linear\" is used, because the BIOS service to determine "
-#~ "the\n"
-#~ "disk geometry does not work reliably for floppy disks. When using\n"
-#~ "\"linear\" with large disks, /sbin/lilo may generate references to\n"
-#~ "inaccessible disk areas, because 3D sector addresses are not known\n"
-#~ "before boot time.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Compact: Tries to merge read requests for adjacent sectors into a\n"
-#~ "single read request. This drastically reduces load time and keeps the\n"
-#~ "map smaller. Using \"compact\" is especially recommended when booting "
-#~ "from\n"
-#~ "a floppy disk.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ " * <number>: use the corresponding text mode."
-
-#, fuzzy
-#~ msgid ""
-#~ "Now it's time to configure the X Window System, which is the\n"
-#~ "core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "Nú er kominn tími til ađ stilla X, sem er undirstađa Linux notenda- \n"
-#~ "viđmótsins (GUI). Til ađ X virki, ţá ţarf ađ stilla skjákortiđ\n"
-#~ "og velja viđkomandi skjá. Ţessi atriđi er ţó oftast stillt\n"
-#~ "sjálfkrafa ţannig ađ ţú gćtir ađeins ţurft ađ stađfesta ţađ\n"
-#~ "sem Mandrake Linux vill gera :)\n"
-#~ "\n"
-#~ "\n"
-#~ "Ţegar uppsetningu X er lokiđ ţá verđur X ţjónninn rćstur (nema\n"
-#~ "ţú biđjir DrakX ađ gera ţađ ekki) svo ţú getir stađfest ađ\n"
-#~ "stillingarnar séu viđunnandi. Ef ţú ert ekki sátt(ur) viđ ţćr X\n"
-#~ "stillingar sem eru valdar, ţá getur ţú breytt ţeim ađ eigin vild."
-
#~ msgid ""
#~ "If something is wrong in X configuration, use these options to correctly\n"
#~ "configure the X Window System."
@@ -11419,87 +11792,12 @@ msgstr "Upplýsingar"
#~ msgid "Reload"
#~ msgstr "Endurhlađa"
-#~ msgid "Error reading file $f"
-#~ msgstr "Villa viđ lestur skráarinnar $f"
-
-#, fuzzy
-#~ msgid "ADSL configuration"
-#~ msgstr "Uppsetning"
-
#~ msgid "Remote queue"
#~ msgstr "Fjartengd prentröđ"
-#, fuzzy
-#~ msgid "Remote queue name missing!"
-#~ msgstr "Fjartengd prentröđ"
-
-#, fuzzy
-#~ msgid "Command line"
-#~ msgstr "Nafn léns"
-
-#, fuzzy
-#~ msgid "Modify printer"
-#~ msgstr "Stađbundinn prentari"
-
-#, fuzzy
-#~ msgid "Network Monitoring"
-#~ msgstr "Netstillingar"
-
-#, fuzzy
-#~ msgid "Profile "
-#~ msgstr "tókst ekki ađ tengja: "
-
-#, fuzzy
-#~ msgid "Connection Time: "
-#~ msgstr "Nafn tengingar"
-
-#, fuzzy
-#~ msgid "Connecting to Internet "
-#~ msgstr "Nafn tengingar"
-
-#, fuzzy
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "Nafn tengingar"
-
-#, fuzzy
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "Nafn tengingar"
-
-#, fuzzy
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "Nafn tengingar"
-
-#, fuzzy
-#~ msgid "Connection complete."
-#~ msgstr "Nafn tengingar"
-
-#, fuzzy
-#~ msgid "Default Runlevel"
-#~ msgstr "Sjálfgefiđ"
-
#~ msgid "NetWare"
#~ msgstr "NetWare"
-#, fuzzy
-#~ msgid "Adapter"
-#~ msgstr "Uppfćrsla"
-
-#, fuzzy
-#~ msgid "Disable network"
-#~ msgstr "Stilla nettengingu"
-
-#, fuzzy
-#~ msgid "Enable network"
-#~ msgstr "Stilla nettengingu"
-
-#, fuzzy
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "Stilla nettengingu"
-
-#, fuzzy
-#~ msgid "Choose"
-#~ msgstr "USB mús"
-
#~ msgid "Yes, print ASCII test page"
#~ msgstr "Já, prenta ASCII prufusíđu"
@@ -11521,44 +11819,6 @@ msgstr "Upplýsingar"
#~ msgid "Fix stair-stepping text?"
#~ msgstr "Afstalla texta (tröppurnar)?"
-#, fuzzy
-#~ msgid ""
-#~ "Every printer need a name (for example lp).\n"
-#~ "Other parameters such as the description of the printer or its location\n"
-#~ "can be defined. What name should be used for this printer and\n"
-#~ "how is the printer connected?"
-#~ msgstr ""
-#~ "Allar prentrađir (sem taka viđ prentverkum) ţurfa heiti\n"
-#~ "(oft bara lp) og möppu. Hvađa heiti og möppu viltu nota fyrir\n"
-#~ "ţessa prentröđ?"
-
-#, fuzzy
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a\n"
-#~ "name (often lp) and a spool directory associated with it. What\n"
-#~ "name and directory should be used for this queue and how is the printer "
-#~ "connected?"
-#~ msgstr ""
-#~ "Allar prentrađir (sem taka viđ prentverkum) ţurfa heiti\n"
-#~ "(oft bara lp) og möppu. Hvađa heiti og möppu viltu nota fyrir\n"
-#~ "ţessa prentröđ?"
-
-#, fuzzy
-#~ msgid "Name of queue"
-#~ msgstr "Heiti prentrađar:"
-
-#, fuzzy
-#~ msgid "Spool directory"
-#~ msgstr "Mappa prentrađar:"
-
-#, fuzzy
-#~ msgid "Disable"
-#~ msgstr "Tafla"
-
-#, fuzzy
-#~ msgid "Enable"
-#~ msgstr "Tafla"
-
#~ msgid ""
#~ "To enable a more secure system, you should select \"Use shadow file\" "
#~ "and\n"
@@ -11580,231 +11840,36 @@ msgstr "Upplýsingar"
#~ msgid "yellow pages"
#~ msgstr "Gular síđur (yp)"
-#, fuzzy
-#~ msgid "Light configuration"
-#~ msgstr "Uppsetning"
-
-#, fuzzy
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr "Hvađa disk viltu fćra til?"
-
-#, fuzzy
-#~ msgid "Configure..."
-#~ msgstr "Uppsetning"
-
-#, fuzzy
-#~ msgid "Selected size %d%s"
-#~ msgstr "Veljiđ skrá"
-
-#, fuzzy
-#~ msgid "Opening your connection..."
-#~ msgstr "Stilla nettengingu"
-
-#, fuzzy
-#~ msgid "Configuration de Lilo/Grub"
-#~ msgstr "Uppsetning: Bćta slóđ viđ"
-
-#, fuzzy
-#~ msgid "Boot style configuration"
-#~ msgstr "Lokauppsetning"
-
-#, fuzzy
-#~ msgid "Automatic dependencies"
-#~ msgstr "Athuga tengsli milli pakka"
-
-#, fuzzy
-#~ msgid "Configure LILO/GRUB"
-#~ msgstr "Stilla X"
-
-#, fuzzy
-#~ msgid "Create a boot floppy"
-#~ msgstr "Búa til rćsidiskling"
-
-#, fuzzy
-#~ msgid "Choice"
-#~ msgstr "tćki"
-
-#, fuzzy
-#~ msgid "gMonitor"
-#~ msgstr "Skjár"
-
-# ## skrytid
-#, fuzzy
-#~ msgid ""
-#~ "You can now select some miscellaneous options for your system.\n"
-#~ "\n"
-#~ "* Use hard drive optimizations: this option can improve hard disk "
-#~ "performance but is only for advanced users. Some buggy\n"
-#~ " chipsets can ruin your data, so beware. Note that the kernel has a "
-#~ "builtin blacklist of drives and chipsets, but if\n"
-#~ " you want to avoid bad surprises, leave this option unset.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Choose security level: you can choose a security level for your system. "
-#~ "Please refer to the manual for complete\n"
-#~ " information. Basically, if you don't know what to choose, keep the "
-#~ "default option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the BIOS about the amount of RAM present in\n"
-#~ " your computer. As consequence, Linux may fail to detect your amount of "
-#~ "RAM correctly. If this is the case, you can\n"
-#~ " specify the correct amount or RAM here. Please note that a difference "
-#~ "of 2 or 4 MB between detected memory and memory\n"
-#~ " present in your system is normal.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Removable media automounting: if you would prefer not to manually mount "
-#~ "removable media (CD-Rom, floppy, Zip, etc.) by\n"
-#~ " typing \"mount\" and \"umount\", select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories stored in \"/tmp\" when you boot your system,\n"
-#~ " select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Enable num lock at startup: if you want NumLock key enabled after "
-#~ "booting, select this option. Please note that you\n"
-#~ " should not enable this option on laptops and that NumLock may or may "
-#~ "not work under X."
-#~ msgstr ""
-#~ "You can now select some miscellaneous options for your system.\n"
-#~ "\n"
-#~ " - Use hard drive optimizations: This option can improve hard disk\n"
-#~ "accesses but is only for advanced users, it can ruin your hard drive if\n"
-#~ "used incorrectly. Use it only if you know how.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Choose security level: You can choose a security level for your\n"
-#~ "system.\n"
-#~ " Please refer to the manual for more information.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM size if needed: In some cases, Linux is unable to\n"
-#~ "correctly detect all the installed RAM on some systems. If this is the\n"
-#~ "case, specify the correct quantity. Note: a difference of 2 or 4 Mb is\n"
-#~ "normal.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Removable media automounting: If you would prefer not to manually\n"
-#~ "mount removable drives (CD-ROM, Floppy, Zip) by typing \"mount\" and\n"
-#~ "\"umount\", select this option. \n"
-#~ "\n"
-#~ "\n"
-#~ " - Enable Num Lock at startup: If you want Number Lock enabled after\n"
-#~ "booting, select this option (Note: Num Lock will still not work under\n"
-#~ "X)."
-
-#, fuzzy
-#~ msgid "Internet/Network access"
-#~ msgstr "Endursníđ..."
-
#~ msgid "Miscellaneous"
#~ msgstr "Ýmislegt"
#~ msgid "Miscellaneous questions"
#~ msgstr "Ýmsar spurningar:"
-#, fuzzy
-#~ msgid "Can't use supermount in high security level"
-#~ msgstr "Stilli öryggisţrep"
-
-#, fuzzy
-#~ msgid "toot"
-#~ msgstr "Rót"
-
#~ msgid "First DNS Server"
#~ msgstr "Ađal nafnamiđlari"
#~ msgid "Second DNS Server"
#~ msgstr "Vara nafnamiđlari"
-#, fuzzy
-#~ msgid "using module"
-#~ msgstr "Hringja inn međ mótaldi"
-
-#, fuzzy
-#~ msgid "Development, Database"
-#~ msgstr "Forritun"
-
-#, fuzzy
-#~ msgid "Which bootloader(s) do you want to use?"
-#~ msgstr "Hverju viltu bćta viđ?"
-
#~ msgid "Try to find a modem?"
#~ msgstr "Reyna ađ finna mótald?"
-#, fuzzy
-#~ msgid "Configure an ISDN connection"
-#~ msgstr "Stilla nettengingu"
-
-#, fuzzy
-#~ msgid "Disable Internet Connection"
-#~ msgstr "Stilla nettengingu"
-
-#, fuzzy
-#~ msgid "Configure local network"
-#~ msgstr "Stilla nettengingu"
-
-#, fuzzy
-#~ msgid "Configure the Internet connection / Configure local Network"
-#~ msgstr "Nafn tengingar"
-
-#, fuzzy
-#~ msgid ""
-#~ "Local networking has already been configured.\n"
-#~ "Do you want to:"
-#~ msgstr "LAN netuppsetning er ţegar til stađar. Hvađ viltu gera?"
-
-#, fuzzy
-#~ msgid "Reconfigure using wizard..."
-#~ msgstr "Uppsetning"
-
-#, fuzzy
-#~ msgid "Internet Tools"
-#~ msgstr "Sel stillingar"
-
-#, fuzzy
-#~ msgid "Development C/C++"
-#~ msgstr "Forritun"
-
#~ msgid "Configure timezone"
#~ msgstr "Tilgreina tímasvćđi"
-#, fuzzy
-#~ msgid "Network adaptater 1 (eth0):"
-#~ msgstr "Viđföng NetWare prentara"
-
#~ msgid "(may cause data corruption)"
#~ msgstr "(getur skađađ vistuđ gögn)"
#~ msgid "Enable num lock at startup"
#~ msgstr "Kveikja á NUMLOCK viđ eftir rćsingu"
-#, fuzzy
-#~ msgid "Confirm Password"
-#~ msgstr "Lykilorđ"
-
#~ msgid "DNS server:"
#~ msgstr "Nafnamiđlari:"
#~ msgid "Gateway device:"
#~ msgstr "Gátt (tćkiđ):"
-#, fuzzy
-#~ msgid "default"
-#~ msgstr "Sjálfgefiđ"
-
-#, fuzzy
-#~ msgid "What is your system used for?"
-#~ msgstr "Á hvađa tímasvćđi ertu?"
-
-#, fuzzy
-#~ msgid "Select the size you want to install"
-#~ msgstr "Veldu ţá stćrđ sem ţú vilt setja inn"
-
#~ msgid "Customized"
#~ msgstr "Sérlagađa"
@@ -11817,9 +11882,6 @@ msgstr "Upplýsingar"
#~ msgid "Use MD5 passwords"
#~ msgstr "Nota MD5 lykilorđ"
-#~ msgid "Package"
-#~ msgstr "Pakka"
-
#~ msgid "Tree"
#~ msgstr "Tré"
@@ -11927,10 +11989,6 @@ msgstr "Upplýsingar"
#~ msgid "Finding leaves takes some time"
#~ msgstr "Ţessi leit mun taka dálítinn tíma"
-#, fuzzy
-#~ msgid "ECI modem"
-#~ msgstr "F. snillinga"
-
#~ msgid "Which serial port is your mouse connected to?"
#~ msgstr "Viđ hvađa rađtengi er músin ţín tengd?"
@@ -11940,97 +11998,9 @@ msgstr "Upplýsingar"
#~ msgid "Slovakian"
#~ msgstr "Slóvakískt"
-#, fuzzy
-#~ msgid "Reconfigure local network"
-#~ msgstr "Endurstilla netstillingar núna"
-
-#, fuzzy
-#~ msgid "Connect to Internet with a normal modem"
-#~ msgstr "Nafn tengingar"
-
-#, fuzzy
-#~ msgid "Connect to Internet using ISDN"
-#~ msgstr "Nafn tengingar"
-
-#, fuzzy
-#~ msgid "Connect to Internet using DSL (or ADSL)"
-#~ msgstr "Nafn tengingar"
-
-#, fuzzy
-#~ msgid "Connect to Internet using Cable"
-#~ msgstr "Nafn tengingar"
-
-#, fuzzy
-#~ msgid "Germany (1TR6)"
-#~ msgstr "Ţýskt"
-
-#, fuzzy
-#~ msgid "What do you wish to do?"
-#~ msgstr "Hvađ viltu gera?"
-
-#, fuzzy
-#~ msgid "Install/Rescue"
-#~ msgstr "Innsetning"
-
-#, fuzzy
-#~ msgid "Rescue"
-#~ msgstr "Endurstćkka"
-
#~ msgid "Which partition type do you want?"
#~ msgstr "Hvađa sneiđtegund viltu?"
-#, fuzzy
-#~ msgid ""
-#~ "Choose \"Install\" if there are no previous versions of GNU/Linux\n"
-#~ "installed, or if you wish to use multiple distributions or versions.\n"
-#~ "\n"
-#~ "Choose \"Rescue\" if you wish to rescue a version of Mandrake Linux "
-#~ "already installed.\n"
-#~ "\n"
-#~ "\n"
-#~ "Select:\n"
-#~ "\n"
-#~ " - Recommended: If you have never installed GNU/Linux before, choose "
-#~ "this.\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!\n"
-#~ msgstr ""
-#~ "Veldu \"Innsetning\" ef ţađ eru engar fyrri útgáfur af Linux á tölvunni\n"
-#~ "eđa ef ţú vilt nota fleiri en eina dreifingu af Linux.\n"
-#~ "\n"
-#~ "Veldu \"Uppfćrsla\" ef ţú vilt uppfćra fyrri innsetningu af Linux "
-#~ "Mandrake:\n"
-#~ "%s eđa %s.\n"
-#~ "\n"
-#~ "\n"
-#~ "Select:\n"
-#~ "\n"
-#~ " - Ráđlagt: Ef ţú hefur aldrei sett Linux inn áđur.\n"
-#~ "\n"
-#~ " - Eftir óskum: Ef ţú hefur ţó nokkra reynslu međiar with Linux, you "
-#~ "will be able to \n"
-#~ "select the usage for the installed system between normal, development or\n"
-#~ "server. Choose \"Normal\" for a general purpose installation of your\n"
-#~ "computer. You may choose \"Development\" if you will be using the "
-#~ "computer\n"
-#~ "primarily for software development, or choose \"Server\" if you wish to\n"
-#~ "install a general purpose server (for mail, printing...).\n"
-#~ "\n"
-#~ " - Expert: If you are fluent with GNU/Linux and want to perform\n"
-#~ "a highly customized installation, this Install Class is for you. You "
-#~ "will\n"
-#~ "be able to select the usage of your installed system as for \"Customized"
-#~ "\".\n"
-
# ***********************************************
# *** Hér fyrir neđan er ţýđingin mín, en ***
# *********** ég fór líka ađeins yfir ţađ sem var ************
@@ -12098,70 +12068,6 @@ msgstr "Upplýsingar"
#~ "ţá verđur ţú sjálf(ur) ađ velja rađtengiđ (COM port) sem mótaldiđ er\n"
#~ "tengt viđ."
-#, fuzzy
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these\n"
-#~ "types require a different setup. Note however that the print\n"
-#~ "spooler uses 'lp' as the default printer name; so you\n"
-#~ "must have one printer with such a name; but you can give\n"
-#~ "several names, separated by '|' characters, to a printer.\n"
-#~ "So, if you prefer to have a more meaningful name you just have\n"
-#~ "to put it first, eg: \"My Printer|lp\".\n"
-#~ "The printer having \"lp\" in its name(s) will be the default printer.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select\n"
-#~ "\"Local printer\". You will then have to tell which port your\n"
-#~ "printer is connected to, and select the appropriate filter.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine,\n"
-#~ "you will have to select \"Remote lpd\". In order to make\n"
-#~ "it work, no username or password is required, but you will need\n"
-#~ "to know the name of the printing queue on this server.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a SMB printer (which means, a printer located\n"
-#~ "on a remote Windows 9x/NT machine), you will have to specify its\n"
-#~ "SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
-#~ "plus the username, workgroup and password required in order to\n"
-#~ "access the printer, and of course the name of the printer. The same goes\n"
-#~ "for a NetWare printer, except that you need no workgroup information."
-#~ msgstr ""
-#~ "Linux getur notađ margar gerđir prentara. Prentararnir krefjast\n"
-#~ "mismunandi uppsetninga.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ef prentarinn ţinn er tengdur beint viđ tölvuna veldu ţá \n"
-#~ "\"Stađbundinn prentari\". Ţú ţarft síđan ađ tilgreina viđ\n"
-#~ "hvađa tengi prentarinn er tengdur og velja viđeigandi síu.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ef ţú vilt hafa ađgang ađ prentara sem tengdur er viđ fjarlćga UNIX vél\n"
-#~ "(eđa Windows NT međ LPD) ţá verđur ţú ađ velja \"Fjartengdur prentari\".\n"
-#~ "Ţú ţarft ekki ađ gefa upp notandanafn eđa lykilorđ en ţarft ađ vita \n"
-#~ "nafniđ á prentröđinni á ţeim ţjón.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ef ţú vilt hafa ađgang ađ SMB prentara (prentara sem er tengdur viđ\n"
-#~ "fjarlćga Windows 9x/NT vél), ţá ţarftu ađ gefa upp SMB nafn ţjónsins\n"
-#~ "sem oftast er sama og TCP/IP nafn (en ţarf ekki ađ vera). Einnig ţarftu\n"
-#~ "IP vistfang, notandanafn, lykilorđ, nafn vinnuhóps og auđvitađ sjálft\n"
-#~ "nafn prentarans. Sama gildir um NetWare prentara, nema ţú ţarft\n"
-#~ "ekkert vinnuhópsnafn."
-
-#, fuzzy
-#~ msgid ""
-#~ "It is strongly recommended that you answer \"Yes\" here. If you install\n"
-#~ "Microsoft Windows at a later date it will overwrite the boot sector.\n"
-#~ "Unless you have made a bootdisk as suggested, you will not be able to\n"
-#~ "boot into GNU/Linux any more."
-#~ msgstr ""
-#~ "Ţađ er stranglega mćlt međ ţví ađ ţú svarir \"Já\" hérna. Ef ţú setur\n"
-#~ "Microsoft Windows inn síđar ţá skrifar ţađ yfir rćsihluta disksins og\n"
-#~ "gerir ţér ţar međ ókleyft ađ rćsa Linux nema ţú hafir veriđ búin(n)\n"
-#~ "ađ útbúa rćsidiskling."
-
#~ msgid "Forget the changes?"
#~ msgstr "Eyđa breytingum?"
@@ -12199,30 +12105,6 @@ msgstr "Upplýsingar"
#~ msgid "Automatical resolutions search"
#~ msgstr "Sjálfvirk leit upplausna"
-#, fuzzy
-#~ msgid "Apple ADB Mouse"
-#~ msgstr "ATI brautarmús"
-
-#, fuzzy
-#~ msgid "Apple ADB Mouse (2 Buttons)"
-#~ msgstr "USB mús (3 eđa fleiri takkar)"
-
-#, fuzzy
-#~ msgid "Apple ADB Mouse (3+ Buttons)"
-#~ msgstr "USB mús (3 eđa fleiri takkar)"
-
-#, fuzzy
-#~ msgid "Apple USB Mouse"
-#~ msgstr "USB mús"
-
-#, fuzzy
-#~ msgid "Apple USB Mouse (2 Buttons)"
-#~ msgstr "USB mús (3 eđa fleiri takkar)"
-
-#, fuzzy
-#~ msgid "Apple USB Mouse (3+ Buttons)"
-#~ msgstr "USB mús (3 eđa fleiri takkar)"
-
#~ msgid "ASCII MieMouse"
#~ msgstr "ASCII MieMouse"
@@ -12262,10 +12144,6 @@ msgstr "Upplýsingar"
#~ msgid "Generic 3 Button Mouse (serial)"
#~ msgstr "Almenn ţriggja hnappa mús (rađtengd)"
-#, fuzzy
-#~ msgid "Kensington Thinking Mouse (serial)"
-#~ msgstr "Kensington Thinking Mouse"
-
#~ msgid "nfs mount failed"
#~ msgstr "tókst ekki ađ tengja nfs"
diff --git a/perl-install/share/po/it.po b/perl-install/share/po/it.po
index 72cc40b1b..9aba279c0 100644
--- a/perl-install/share/po/it.po
+++ b/perl-install/share/po/it.po
@@ -1,38 +1,70 @@
-# Italian Translation of DrakX
-# Copyright (C) 1999 Mandrakesoft
-# Paolo Lorenzin <pasusu@tin.it>, 1999-2000.
-# Roberto Rosselli Del Turco <rosselli@ling.unipi.it>, 2000-2002
-# 8.0 Tech/Lang proofreading by Roberto Rosselli Del Turco <rosselli@ling.unipi.it>
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX 0.1\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-09 18:54+0100\n"
-"Last-Translator: Roberto Rosselli Del Turco <rosselli@ling.unipi.it>\n"
-"Language-Team: Italian <it@li.org>\n"
+# italian transltion of drakflopy
+# Copyright (C) 2000, 2001 MandrakSoft S.A.
+# Paolo Lorenzin <pasusu@tin.it>, 2000.
+# Roberto Rosselli Del Turco <rosselli@ling.unipi.it>, 2001.
+# Simone Riccio <s.riccio@aeb-informatica.it>, 2002
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: drakfloppy 0.30\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2002-01-22 12:27GMT\n"
+"Last-Translator: Simone Riccio <s.riccio@aeb-informatica.it>\n"
+"Language-Team: Italian <IT@li.org>\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=iso-8859-1\n"
+"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 0.9.5\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Configura tutte le testine indipendentemente"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 Kb"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Usa l'estensione Xinerama"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 Kb"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Configura solo la scheda \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 Mb"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 Mb"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 Mb"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 Mb"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 Mb"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 Mb"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 Mb o piů"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Scegli un server X"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "Server X"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Configurazione multi-testine"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -40,41 +72,44 @@ msgstr ""
"Il tuo sistema supporta la configurazione di piů testine.\n"
"Cosa vuoi fare?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Scheda grafica"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Scegli la quantitŕ di memoria della tua scheda grafica"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Scegli una scheda grafica"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "Configurazione di XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Scegli un server X"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Che configurazione di XFree vuoi avere?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "Server X"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Configura tutte le testine indipendentemente"
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Scegli un driver X"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Usa l'estensione Xinerama"
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "Driver X"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Configura solo la scheda \"%s\" (%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Che configurazione di XFree vuoi avere?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s con accelerazione 3D hardware"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -84,34 +119,19 @@ msgstr ""
"La tua scheda č supportata da XFree %s che potrebbe avere un miglior "
"supporto in 2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"La tua scheda puň avere il supporto per l'accelerazione 3D hardware con "
"XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s con accelerazione 3D hardware"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"La tua scheda puň avere l'accelerazione 3D hardware con XFree %s,\n"
-"NOTA CHE Č UN SUPPORTO SPERIMENTALE E POTREBBE BLOCCARE IL TUO COMPUTER."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s con accelerazione 3D hardware SPERIMENTALE"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -123,31 +143,58 @@ msgstr ""
"La tua scheda č supportata da XFree %s che potrebbe avere un miglior "
"supporto in 2D."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"La tua scheda puň avere l'accelerazione 3D hardware con XFree %s,\n"
+"NOTA CHE Č UN SUPPORTO SPERIMENTALE E POTREBBE BLOCCARE IL TUO COMPUTER."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installazione driver video)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Configurazione di XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Scegli la quantitŕ di memoria della tua scheda grafica"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Scegli le opzioni per il server"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Mantieni le modifiche?\n"
+"La configurazione corrente č:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Scegli un monitor"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Condivisione personalizzata"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Generico"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Un passo indietro"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -171,512 +218,327 @@ msgstr ""
"danneggiarlo.\n"
"Se hai dubbi, scegli un settaggio prudente."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Frequenza di refresh orizzontale"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Frequenza di refresh verticale"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor non configurato"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Scheda grafica non ancora configurata"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Risoluzioni non ancora selezionate"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Vuoi provare la configurazione ?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Attenzione: il test di questa scheda video puň bloccare il computer"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Test della configurazione"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 colori (8 bit)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"prova a modificare alcuni parametri"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 mila colori (15 bit)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Si č verificato un errore:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 mila colori (16 bit)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Uscita in %d secondi"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 milioni di colori (24 bit)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Č il settaggio corretto?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 miliardi di colori (32 bit)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Si č verificato un errore, prova a modificare alcuni parametri"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Risoluzioni"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Risoluzione"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Seleziona risoluzione e profonditŕ di colore"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Scheda grafica: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Server XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Ancora"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Annulla"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Modo Esperto"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Mostra tutto"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Vuoi provare la configurazione ?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Risoluzioni"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Test della configurazione"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Tipo di tastiera: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Tipo di mouse: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Dispositivo del mouse: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Frequenza orizzontale del monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Refresh verticale del monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Scheda grafica: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Identificazione scheda grafica: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Memoria scheda grafica: %s KB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Profonditŕ di colore: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Risoluzione: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Server XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Driver XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Sto preparando la configurazione di X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Cosa vuoi fare?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Cambia monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Cambia scheda grafica"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Cambia opzioni server"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Cambia risoluzione"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Mostra informazioni"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Nuovo test"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Esci"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Mantieni le modifiche?\n"
-"La configurazione corrente č:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X all'avvio"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Posso configurare il tuo computer per eseguire X automaticamente all'avvio.\n"
"Vuoi che X venga eseguito quando riavvierai?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Per favore rientra come %s per attivare le modifiche"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Per favore esci e usa Ctrl-Alt-Backspace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 colori (8 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mila colori (15 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mila colori (16 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milioni di colori (24 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 miliardi di colori (32 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 Kb"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 Kb"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 Mb o piů"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "VGA standard, 640x480 a 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 a 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Compatibile 8514, 1024x768 a 87 Hz interlacciato (no 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 a 87 Hz interlacciato, 800x600 a 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Super VGA estesa, 800x600 a 60 Hz, 640x480 a 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "SVGA non-interlacciato, 1024x768 a 60 Hz, 800x600 a 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "SVGA alta frequenza, 1024x768 a 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frequenza che raggiunge 1280x1024 a 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frequenza che raggiunge 1280x1024 a 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frequenza che raggiunge 1280x1024 a 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor che raggiunge 1600x1200 a 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor che raggiunge 1600x1200 a 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Primo settore della partizione di boot"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Primo settore del disco rigido (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "Installazione di SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Dove vuoi installare il bootloader?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "Installazione di LILO/grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO con menu in modo testo"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO con menu grafico"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Avvia da DOS/Windows (usando loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Opzioni principali del bootloader"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Bootloader da usare"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Installazione del bootloader"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Dispositivo di boot"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (non funziona con vecchi BIOS)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Compatta"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "compatta"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Modo video"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Ritardo prima di avviare con l'immagine predefinita"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Password"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Password (ripeti)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Limita opzioni della linea di comando"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "limita"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Pulisci /tmp ad ogni avvio"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Precisa la dimensione RAM se necessario (trovati %d Mb)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Abilita profili multipli"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Specifica dimensione RAM in Mb"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"L'opzione ''Limita opzioni della linea di comando'' č inutile\n"
"senza una password"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Per favore prova di nuovo"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Le password non corrispondono"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Messaggio di init"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Attesa dell'Open Firmware"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Attesa per il boot del kernel"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Abilita l'avvio da CD-ROM?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Abilita boot OF?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Sistema operativo predefinito?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -691,83 +553,83 @@ msgstr ""
"\n"
"Da quale disco effettuate il boot?"
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Queste sono le voci attuali.\n"
"Puoi aggiungerne altre o cambiare quelle esistenti."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Aggiungi"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Fatto"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Modifica"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Che tipo di voce vuoi aggiungere"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Altro OS (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Altro OS (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Altro OS (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Immagine"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Aggiungi"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Lettura-scrittura"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabella"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Non sicuro"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Etichetta"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Predefinito"
@@ -799,53 +661,78 @@ msgstr "Devi specificare una partizione radice"
msgid "This label is already used"
msgstr "Questa etichetta č giŕ stata usata"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Trovate %s interfacce %s"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Ne hai un'altra?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Hai una qualsiasi interfaccia %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "No"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Sě"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Vedi informazioni hardware"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Installazione driver per scheda %s %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(modulo %s)"
+#: ../../any.pm_.c:697
+#, fuzzy, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+"Adesso potete fornire le sue opzioni al modulo %s.\n"
+"Si noti che ogni indirizzo dovrebbe essere inserito con il prefisso 0x (ad "
+"es. '0x123')."
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Adesso puoi passare le sue opzioni al modulo %s.\n"
+"Le opzioni sono in formato ''nome=valore nome2=valore2 ...''.\n"
+"Per esempio, ''io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Opzioni del modulo:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Quale driver %s dovrei provare?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -863,40 +750,15 @@ msgstr ""
"informazioni di cui ha bisogno? Occasionalmente, la ricerca bloccherŕ il\n"
"computer, ma non dovrebbe causare alcun danno."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Investgazione automatica"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Specifica opzioni"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"Adesso potete fornire le sue opzioni al modulo %s.\n"
-"Si noti che ogni indirizzo dovrebbe essere inserito con il prefisso 0x (ad "
-"es. '0x123')."
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Adesso puoi passare le sue opzioni al modulo %s.\n"
-"Le opzioni sono in formato ''nome=valore nome2=valore2 ...''.\n"
-"Per esempio, ''io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Opzioni del modulo:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -905,50 +767,55 @@ msgstr ""
"Caricamento del modulo %s fallito.\n"
"Vuoi riprovare con altri parametri?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "accesso ai programmi X"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "accesso agli strumenti RPM"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "permetti \"su\""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "accesso ai file di amministrazione del sistema"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(%s giŕ aggiunto)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Questa password č troppo semplice"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Per favore fornisci un nome utente"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Il nome utente deve contenere solo lettere minuscole, numeri, '-' e '_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Questo nome utente č giŕ stato aggiunto"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Questo nome utente č giŕ stato aggiunto"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Aggiungi utente"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -957,32 +824,32 @@ msgstr ""
"Inserisci un utente\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Accetta utente"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Vero nome"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Nome utente"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Icona"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -991,88 +858,68 @@ msgstr ""
"utente all'avvio.\n"
"Vuoi sfruttare questa caratteristica?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Scegli l'utente predefinito"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Scegli il window manager da eseguire:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Per favore, scegli la lingua da utilizzare."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr ""
"Potete scegliere altre lingue che saranno disponibili dopo l'installazione"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Tutto"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Permetti a tutti gli utenti"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Condivisione personalizzata"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "Nessuna condivisione"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Il pacchetto %s deve essere installato. Volete installarlo?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Potete esportare usando NFS o Samba. Quale desiderate"
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Il pacchetto obbligatorio %s č assente"
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Annulla"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr "Lancia userdrake"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -1080,31 +927,31 @@ msgstr ""
"La condivisione in base all'utente usa il gruppo \"fileshare\". \n"
"Potete utilizzare userdrake per aggiungere un utente a questo gruppo."
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Benvenuti cracker"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Scarso"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Normale"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Alto"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
msgstr "Piů alto"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoico"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1114,7 +961,7 @@ msgstr ""
"ma molto delicato: non deve essere usato per una macchina connessa ad altre\n"
"o a Internet. Non c'č nessun accesso con password."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1122,7 +969,7 @@ msgstr ""
"Ora le password sono abilitate, ma l'uso come computer di rete č comunque\n"
"ancora sconsigliato."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1131,7 +978,7 @@ msgstr ""
"usare per\n"
"connettersi a Internet come cliente."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1139,13 +986,14 @@ msgstr ""
"Esistono giŕ alcuni limiti, e ogni notte vengono eseguiti ulteriori "
"controlli automatici."
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Con questo livello di sicurezza, l'uso di questo sistema come server "
"diventa\n"
@@ -1156,35 +1004,35 @@ msgstr ""
"livello\n"
"piů basso."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Basato sul livello precedente, ma ora il sistema č completamente\n"
"chiuso. Le funzioni di sicurezza sono al massimo."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Scegli livello di sicurezza"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Livello di sicurezza"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Usa libsafe per i server"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Una libreria che difende il sistema da attacchi del tipo \"buffer overflow\" "
"e \"format string\"."
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1200,53 +1048,53 @@ 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_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Benvenuti su GRUB, il selezionatore di sistemi operativi!"
#. -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_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Usate i tasti %c e %c per evidenziare la voce che interessa."
#. -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_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr ""
"Premete Invio per avviare il sistema operativo selezionat, 'e' per modificare"
#. -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_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "i comandi prima del boot, o 'c' per avere una linea di comando."
#. -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_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "La voce evidenziata verrŕ avviata automaticamente in %d secondi."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "spazio insufficiente in /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Menu di avvio"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Non puoi installare il bootloader su una partizione %s\n"
@@ -1259,15 +1107,19 @@ msgstr "nessun aiuto presente (per ora).\n"
msgid "Boot Style Configuration"
msgstr "Configurazione stile di avvio"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_File"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/File/_Esci"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1303,14 +1155,14 @@ msgstr "Yaboot"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Al momento state usando %s come Boot Manager.\n"
"Cliccate su Configura per lanciare l'assistente di configurazione."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Configura"
@@ -1320,7 +1172,7 @@ msgid "System mode"
msgstr "Modo sistema"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Lancia il sistema X Window all'avvio"
#: ../../bootlook.pm_.c:148
@@ -1331,14 +1183,16 @@ msgstr "No, non voglio il login automatico"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Sě, voglio il login automatico con questo (utente, desktop)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "OK"
@@ -1386,7 +1240,7 @@ msgstr "Non posso fare degli screenshot prima del partizionamento"
msgid "Screenshots will be available after install in %s"
msgstr "Dopo 'installazione degli screenshot saranno disponibili in %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Francia"
@@ -1394,7 +1248,7 @@ msgstr "Francia"
msgid "Costa Rica"
msgstr "Costa Rica"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Belgio"
@@ -1418,11 +1272,12 @@ msgstr "Norvegia"
msgid "Sweden"
msgstr "Svezia"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Olanda"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "Italia"
@@ -1430,7 +1285,7 @@ msgstr "Italia"
msgid "Austria"
msgstr "Austria"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "Stati Uniti"
@@ -1438,8 +1293,8 @@ msgstr "Stati Uniti"
msgid "Please make a backup of your data first"
msgstr "Per favore prima fate un backup dei vostri dati"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Leggete con attenzione!"
@@ -1453,11 +1308,12 @@ msgstr ""
"(2048\n"
"settori sono sufficienti) all'inizio del disco"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Errore"
@@ -1465,11 +1321,11 @@ msgstr "Errore"
msgid "Wizard"
msgstr "Assistente"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Scegli un'azione"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1481,77 +1337,77 @@ msgstr ""
"Per prima cosa suggerisco di ridimensionare quella partizione\n"
"(clicca su di essa, poi clicca su \"Ridimensiona\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Per favore clicca su una partizione"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Dettagli"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "FS con journal"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Vuoto"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Altro"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Tipo di filesystem:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Crea"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tipo"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Usa ''%s'' invece"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Cancella"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Prima usa ''Unmount''"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1559,67 +1415,72 @@ msgstr ""
"Dopo aver cambiato tipo di partizione %s, tutti i dati su questa partizione "
"saranno persi"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Scegli una partizione"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Scegli un'altra partizione"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Esci"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Passa a modo Esperto"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Passa a modo Normale"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Un passo indietro"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Continuo comunque?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Esci senza salvare"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Esci senza scrivere la tabella delle partizioni?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "Vuoi salvare le modifiche a /etc/fstab?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Alloca automaticamente"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Azzera tutto"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Ancora"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "Informazioni sul disco fisso"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Tutte le partizioni primarie sono usate"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Non posso aggiungere altre partizioni"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1627,31 +1488,31 @@ msgstr ""
"Per avere piů partizioni, per favore eliminarne una per essere in grado di "
"crearne una estesa"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "Salva la tabella delle partizioni"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "Ripristina tabella delle partizioni"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Recupera tabella delle partizioni"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "Ricarica tabella delle partizioni"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "Automounting di media rimovibili"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Scegli file"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1659,11 +1520,11 @@ msgstr ""
"La copia di sicurezza della tabella delle partizioni non ha la stessa\n"
"dimensione. Continuo comunque?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Attenzione"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1671,122 +1532,129 @@ msgstr ""
"Inserisci un floppy nel drive\n"
"Tutti i dati su questo floppy saranno persi"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Provo a recuperare la tabella delle partizioni"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Informazioni dettagliate"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Punto di mount"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opzioni"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Ridimensiona"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Sposta"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formatta"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Esegui mount"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Aggiungi a RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Aggiungi a LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Esegui unmount"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Rimuovi da RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Rimuovi da LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Modifica RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Usa per loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Crea una nuova partizione"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Settore iniziale: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Dimensione in Mb: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Tipo di filesystem: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Punto di mount:"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Preferenza: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+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/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "Rimuovo il file di loopback?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Cambia il tipo di partizione"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Quale filesystem vuoi?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Passo da ext2 a ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Dove vuoi fare il mount del file loopback %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Dove vuoi fare il mount del dispositivo %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1794,127 +1662,132 @@ msgstr ""
"Non puoi deselezionare punti di mount perché questa partizione č usata\n"
"per il loopback. Prima rimuovi il loopback"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Calcolo dei vincoli del filesystem FAT"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Ridimensionamento"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Questa partizione non č ridimensionabile"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Dovresti eseguire il backup di tutti i dati su questa partizione"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Dopo aver ridimensionato la partizione %s, tutti i dati su questa partizione "
"saranno persi"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Scegli la nuova dimensione"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Nuova dimensione in Mb: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Su quale disco vuoi spostarlo?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Settore"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Su che settore vuoi spostarlo?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Spostamento"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Spostamento partizione..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Scegli un RAID esistente a cui effettuare l'aggiunta"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "nuovo"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Scegli un LVM esistente a cui effettuare l'aggiunta"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "Nome LVM?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Questa partizione non puň essere usata per il loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Nome file loopback: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Assegna un nome di file"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "File giŕ usato da un altro loopback, selezionane uno diverso"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Il file esiste giŕ. Lo uso?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Opzioni di mount"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Varie"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "dispositivo"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "livello"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "dimensione del blocco"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Fai attenzione: questa operazione č pericolosa."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Che tipo di partizionamento?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Il pacchetto %s deve essere installato. Volete installarlo?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1926,7 +1799,7 @@ msgstr ""
"Nel caso tu usassi LILO non funzionerebbe, o se non usassi LILO non ti "
"servirebbe /boot"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1938,7 +1811,7 @@ msgstr ""
"partizione /boot. Se hai intenzione di usare LILO come boot manager, "
"accertati di creare una partizione /boot"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1948,134 +1821,134 @@ msgstr ""
"Nessun bootloader puň gestirla senza una partizione /boot.\n"
"Perciň accertati di aggiungere una partizione /boot."
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr ""
"La tabella delle partizioni del disco %s sta per essere scritta su disco!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Sarŕ necessario riavviare il sistema prima che le modifiche diventino "
"effettive!"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Dopo aver formattato la partizione %s, tutti i dati su questa partizione "
"saranno persi"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Formattazione"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formattazione file di loopback %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Formattazione partizione %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Nascondi file"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Sposta i file sulla nuova partizione"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"La directory %s contiene giŕ dei dati\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "Sto spostando i file sulla nuova partizione"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Sto copiando %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Sto cancellando: %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "la partizione %s adesso č nota come %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Dispositivo: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Lettera di drive DOS: %s (solo una supposizione)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Tipo: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Nome: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Inizia: settore %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Dimensione: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s settori"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Da cilindro %d a %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Formattato\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Non formattato\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "In linea\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2084,7 +1957,7 @@ msgstr ""
"File di loopback:\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2092,27 +1965,27 @@ msgstr ""
"Partizione di boot predefinita\n"
" (per boot MS-DOS, non per lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Livello %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Dimensione del blocco %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "Dischi RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Nome file di loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2124,7 +1997,7 @@ msgstr ""
"una partizione Driver, č meglio\n"
"non toccarla.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2136,64 +2009,64 @@ msgstr ""
"viene utilizzata per effettuare\n"
"il dual-boot del tuo sistema.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Dimensione: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometria: %s cilindri, %s testine, %s settori\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "Dischi LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tipo tabella delle partizioni: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "su bus %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Opzioni: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "Chiave di crittazione del filesystem"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "Scegliete la chiave di crittazione del filesystem"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Questa chiave di crittazione č troppo semplice (deve essere lunga almeno %d "
"caratteri)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "Le chiavi di crittazione non corrispondono"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "Chiave di crittazione"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "Chiave di crittazione (di nuovo)"
@@ -2202,35 +2075,65 @@ msgid "Change type"
msgstr "Cambia tipo"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Per favore clicca su un supporto"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Autenticazione"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Internet"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Nome utente"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Nome utente"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "Dominio NIS"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "Ricerca server"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formattazione di %s fallita"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Non so come formattare %s in tipo %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "il mount della partizione %s sulla directory %s non č riuscito"
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck č fallito con codice di uscita %d o segnale %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "errore in fase di unmount di %s: %s"
@@ -2247,67 +2150,321 @@ msgstr "con /usr"
msgid "server"
msgstr "server"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Non puoi usare JFS per partizioni piů piccole di 16 Mb"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Non puoi usare ReiserFS per partizioni piů piccole di 32MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "I punti di mount devono iniziare con /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "C'č giŕ una partizione con il punto di mount %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Non puoi usare un Volume Logico LVM per il punto di mount %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Questa directory dovrebbe rimanere all'interno del filesystem root"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr "č un vero filesystem (ext2, reiserfs) per questa punto di mount\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Non puoi usare un filesystem crittato per il punto di mount %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "Non c'č abbastanza spazio libero per l'allocazione automatica"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr "Nulla da fare"
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Errore aprendo %s in scrittura: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Si č verificato un errore - non č stato trovata alcuna unitŕ valida su cui "
"creare nuovi filesystem. Per favore controlla il tuo hardware per stabilire "
"la causa di questo problema"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Non hai alcuna partizione!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Usa il riconoscimento automatico"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Generico"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Memoria della scheda (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "carica configurazione"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Cambia tipo"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Esci"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Guida"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Guida"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Guida/_Informazioni su..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Mouse"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Memoria della scheda (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Annulla"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Mouse"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Descrizione"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Autenticazione"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Scegli file"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Dispositivo di gateway"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 pulsanti"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Ricerca del disco fisso"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Vedi informazioni hardware"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Mostra informazioni"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Configura mouse"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "rilevato sulla porta: %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Attendere prego"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d secondi"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Sto rimuovendo la stampante \"%s\" ..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Investgazione automatica"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
#: ../../help.pm_.c:13
@@ -2323,7 +2480,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2466,9 +2623,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2528,9 +2684,9 @@ msgstr ""
" * \"Server\": se il computer sarŕ usato come server, qui potrete scegliere\n"
"i servizi piů comuni da installare.\n"
"\n"
-" * \"Ambiente grafico\": scegliete qui il vostro ambiente grafico "
-"preferito.\n"
-"Indicatene almeno uno se desiderate avere una workstation grafica!\n"
+" * \"Ambiente grafico\": scegliete qui il vostro ambiente grafico\n"
+"preferito. Indicatene almeno uno se desiderate avere una workstation\n"
+"grafica!\n"
"\n"
"Spostando il puntatore del mouse sul nome di un gruppo verrŕ mostrato un\n"
"breve testo di informazioni riguardo quest'ultimo. Se state effettuando\n"
@@ -2610,10 +2766,10 @@ msgstr ""
"devono essere installati e alla velocitŕ del vostro hardware, l'attesa\n"
"potrebbe anche essere lunga. Una stima del tempo richiesto per finire\n"
"l'installazione č visibile sullo schermo, in questo modo potrete sapere se\n"
-"avete tempo a sufficienza per godervi una tazza di caffé.\n"
+"avete tempo a sufficienza per godervi una tazza di caffe.\n"
"\n"
"!! Se avete selezionato un pacchetto che offre un servizio come server\n"
-"(intenzionalmente, oppure perché faceva parte di un gruppo), vi verrŕ\n"
+"(intenzionalmente, oppure perche faceva parte di un gruppo), vi verrŕ\n"
"chiesta conferma riguardo una sua effettiva installazione. Come opzione\n"
"predefinita, in Mandrake Linux tutti i servizi installati vengono avviati\n"
"automaticamente al momento del boot. Anche se si tratta di servizi sicuri\n"
@@ -2628,7 +2784,7 @@ msgstr ""
"disabilitare la finestra di dialogo che compare tutte le volte che il\n"
"programma di installazione seleziona automaticamente uno o piů pacchetti.\n"
"Il programma determina in modo automatico, infatti, quali sono i pacchetti\n"
-"che sono indispensabili a un dato pacchetto (''dipendenze'') perché\n"
+"che sono indispensabili a un dato pacchetto (''dipendenze'') perche\n"
"quest'ultimo possa essere installato con successo.\n"
"\n"
"Il piccolo dischetto floppy in fondo alla lista vi permette di caricare una\n"
@@ -2679,10 +2835,10 @@ msgstr ""
"amministratore di sistema.\n"
"\n"
"Per maggiori dettagli riguardo la configurazione della connessione a\n"
-"Internet potete consultare il relativo capitolo del ''User Guide''; in\n"
-"alternativa, potete attendere di aver portato a termine l'installazione e\n"
-"usare poi il programma descritto in tale capitolo per configurare la\n"
-"connessione.\n"
+"Internet potete consultare il relativo capitolo del ''Manuale\n"
+"dell'utente''; in alternativa, potete attendere di aver portato a termine\n"
+"l'installazione e usare poi il programma descritto in tale capitolo per\n"
+"configurare la connessione.\n"
"\n"
"Se desiderate configurare la rete dopo aver terminato l'installazione, o se\n"
"avete giŕ configurato la vostra rete, cliccate su \"Annulla\"."
@@ -2752,7 +2908,7 @@ msgstr ""
"\n"
"L'opzione \"Automatic time synchronization\" provvederŕ a gestire l'ora\n"
"grazie alla connessione con un server del tempo remoto via Internet.\n"
-"Scegliete un server vicino a voi nella lista che vi verrŕ mostrata. Perché\n"
+"Scegliete un server vicino a voi nella lista che vi verrŕ mostrata. Perche\n"
"questa opzione funzioni, naturalmente, dovete disporre di una connessione a\n"
"Internet funzionante. Sulla vostra macchina verrŕ installato un server del\n"
"tempo che potrŕ essere usato anche per altre macchine che si trovano sulla\n"
@@ -2850,7 +3006,7 @@ msgstr ""
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2862,9 +3018,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2936,21 +3091,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2966,9 +3120,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"A questo punto dovete scegliere dove installare il vostro sistema operativo\n"
"Mandrake Linux sul disco rigido. Se il vostro disco č vuoto, oppure se un\n"
@@ -3006,22 +3160,21 @@ msgstr ""
"partizioni Linux sul vostro disco rigido. Se desiderate usarle scegliete\n"
"questa opzione.\n"
"\n"
-" * \"Usa lo spazio libero nella partizione Windows\": se MicrosoftWindows č\n"
-"installato sul vostro disco rigido e occupa tutto lo spazio disponibile,\n"
+" * \"Usa lo spazio libero nella partizione Windows\": se Microsoft Windows\n"
+"č installato sul vostro disco rigido e occupa tutto lo spazio disponibile,\n"
"dovrete creare spazio libero per i dati relativi a Linux. Per farlo potete\n"
-"cancellare la vostra partizione MicrosoftWindows e i dati che contiene\n"
+"cancellare la vostra partizione Microsoft Windows e i dati che contiene\n"
"(usando le soluzioni \"Cancella l'intero disco\" o \"Modo Esperto\"),\n"
"oppure ridimensionarla. Il ridimensionamento puň essere effettuato evitando\n"
"la perdita di dati a patto che prima di procedere la partizione Windows sia\n"
"stata deframmentata. Vi raccomandiamo anche di fare un backup dei vostri\n"
"dati. Questa č la soluzione consigliata se desiderate usare sia Mandrake\n"
-"Linux sia MicrosoftWindows sullo stesso computer.\n"
+"Linux sia Microsoft Windows sullo stesso computer.\n"
"\n"
-" Prima di scegliere questa opzione, tenete presente che la dimensione "
-"della\n"
-"partizione su cui risiede MicrosoftWindows sarŕ ridotta rispetto a quella\n"
-"attuale. Significa che avrete meno spazio libero per archiviare i vostri\n"
-"dati o installare nuovo software su Windows.\n"
+" Prima di scegliere questa opzione, tenete presente che la dimensione\n"
+"della partizione su cui risiede Microsoft Windows sarŕ ridotta rispetto a\n"
+"quella attuale. Significa che avrete meno spazio libero per archiviare i\n"
+"vostri dati o installare nuovo software su Windows.\n"
"\n"
" * \"Cancella l'intero disco\": se desiderate cancellare tutti i dati e\n"
"tutte le partizioni presenti sul vostro disco rigido e rimpiazzarli con il\n"
@@ -3066,9 +3219,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3106,10 +3258,9 @@ msgstr ""
"disco rigido viene riscritto per intero, tutti tutti i dati che contiene\n"
"andranno persi.\n"
"\n"
-" Questa caratteristica č molto utile quando si deve installare il sistema "
-"su\n"
-"un gran numero di macchine dalle caratteristiche simili. Si veda la sezione\n"
-"Installazione automatica sul nostro sito web.\n"
+" Questa caratteristica č molto utile quando si deve installare il sistema\n"
+"su un gran numero di macchine dalle caratteristiche simili. Si veda la\n"
+"sezione Installazione automatica sul nostro sito web.\n"
"\n"
" * \"Salva scelta pacchetti\"(*): salva la selezione dei pacchetti\n"
"effettuata in precedenza. Al momento di effettuare un'altra installazione,\n"
@@ -3287,38 +3438,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3366,10 +3511,9 @@ msgstr ""
"\n"
" * \"Ancora\": permette di accedere a funzionalitŕ avanzate:\n"
"\n"
-" * \"Salva tabella delle partizioni\": salva la tabella delle partizioni "
-"su\n"
-"un floppy. Utile per recuperarla in un momento successivo, se necessario.\n"
-"Vi raccomandiamo caldamente di effettuare questa operazione.\n"
+" * \"Salva tabella delle partizioni\": salva la tabella delle partizioni\n"
+"su un floppy. Utile per recuperarla in un momento successivo, se\n"
+"necessario. Vi raccomandiamo caldamente di effettuare questa operazione.\n"
"\n"
" * \"Ripristina tabella delle partizioni\": permette di ripristinare una\n"
"tabella delle partizioni precedentemente salvata su floppy disk.\n"
@@ -3386,14 +3530,13 @@ msgstr ""
"utenti saranno costretti a montare e smontare manualmente i dispositivi\n"
"rimovibili come lettori floppy e CD-ROM.\n"
"\n"
-" * \"Assistente\": usate questa opzione se desiderate che il "
-"partizionamento\n"
-"del disco sia effettuato con l'aiuto di un assistente. Altamente\n"
-"raccomandata se non avete una buona conoscenza del partizionamento.\n"
+" * \"Assistente\": usate questa opzione se desiderate che il\n"
+"partizionamento del disco sia effettuato con l'aiuto di un assistente.\n"
+"Altamente raccomandata se non avete una buona conoscenza del\n"
+"partizionamento.\n"
"\n"
-" * \"Un passo indietro\": con questa opzione le modifiche apportate "
-"verranno\n"
-"annullate.\n"
+" * \"Un passo indietro\": con questa opzione le modifiche apportate\n"
+"verranno annullate.\n"
"\n"
" * \"Passa a modo Esperto\": permette di effettuare ulteriori azioni sulle\n"
"partizioni (tipo, opzioni, formattazione) e offre piů informazioni.\n"
@@ -3414,12 +3557,12 @@ msgstr ""
" * Ctrl-m per impostare il punto di mount.\n"
"\n"
"Per ottenere informazioni in merito ai diversi tipi di filesystem\n"
-"disponibili, consultate il capitolo ext2fs del ''Reference Manual''.\n"
+"disponibili, consultate il capitolo ext2fs del ''Manuale di riferimento''.\n"
"\n"
"Se state effettuando l'installazione su una macchina PPC, sarŕ necessario\n"
-"creare una piccola partizione HFS di almeno 11MB, che verrŕ utilizzata dal\n"
+"creare una piccola partizione HFS di almeno 11Mb, che verrŕ utilizzata dal\n"
"bootloader yaboot. Se decidete di creare una partizione piů grande, diciamo\n"
-"sui 50MB, potrebbe rappresentare un utile deposito dove conservare un\n"
+"sui 50Mb, potrebbe rappresentare un utile deposito dove conservare un\n"
"kernel di riserva e immagini di ''ramdisk'' da utilizzare in caso di\n"
"emergenza."
@@ -3457,10 +3600,9 @@ msgid ""
"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
"disk or partition is called \"C:\")."
msgstr ""
-"Sul vostro disco rigido č stata individuata piů di una partizione\n"
-"MicrosoftWindows. Per favore, scegliete quella che deve essere\n"
-"ridimensionata in modo da poter installare il vostro nuovo sistema\n"
-"operativo Mandrake Linux.\n"
+"Sul vostro disco rigido č stata individuata piů di una partizione Microsoft\n"
+"Windows. Per favore, scegliete quella che deve essere ridimensionata in\n"
+"modo da poter installare il vostro nuovo sistema operativo Mandrake Linux.\n"
"\n"
"Ogni partizione viene elencata come segue: \"nome Linux\", \"nome Windows\"\n"
"\"Capacitŕ\".\n"
@@ -3508,11 +3650,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3541,9 +3683,8 @@ msgstr ""
"una nuova installazione o un aggiornamento di un sistema Mandrake Linux\n"
"esistente:\n"
"\n"
-" * \"Installazione\" Cancella completamente il vecchio sistema. A seconda "
-"di\n"
-"come č strutturato il sistema preesistente potrete mantenere inalterate\n"
+" * \"Installazione\" Cancella completamente il vecchio sistema. A seconda\n"
+"di come č strutturato il sistema preesistente potrete mantenere inalterate\n"
"alcune delle vecchie partizioni (Linux e altre).\n"
"\n"
" * \"Aggiornamento\" Questo tipo di installazione vi permette di effettuare\n"
@@ -3553,9 +3694,8 @@ msgstr ""
"relativi alla configurazione verranno effettuati come per una installazione\n"
"da zero.\n"
"\n"
-" * \"Solo aggiornamento pacchetti\" Questa nuovissima opzione vi permette "
-"di\n"
-"aggiornare un sistema Mandrake Linux esistente lasciando intatta la\n"
+" * \"Solo aggiornamento pacchetti\" Questa nuovissima opzione vi permette\n"
+"di aggiornare un sistema Mandrake Linux esistente lasciando intatta la\n"
"configurazione globale del sistema. č anche possibile aggiungere nuovi\n"
"pacchetti all'installazione corrente.\n"
"\n"
@@ -3565,10 +3705,9 @@ msgstr ""
"Scegliete una delle seguenti modalitŕ di installazione, in base alla vostra\n"
"conoscenza di GNU/Linux:\n"
"\n"
-" * Raccomandata: se non avete mai installato il sistema operativo GNU/"
-"Linux,\n"
-"scegliete questa modalitŕ. L'installazione sarŕ molto semplice e vi\n"
-"verranno poste solo poche domande;\n"
+" * Raccomandata: se non avete mai installato il sistema operativo\n"
+"GNU/Linux, scegliete questa modalitŕ. L'installazione sarŕ molto semplice e\n"
+"vi verranno poste solo poche domande;\n"
"\n"
" * Esperto: se avete abbastanza familiaritŕ con GNU/Linux potete scegliere\n"
"questa modalitŕ, che vi permetterŕ di effettuare un'installazione altamente\n"
@@ -3579,7 +3718,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3598,7 +3737,7 @@ msgstr ""
"questo passo. Tuttavia, potreste avere una tastiera che non corrisponde\n"
"esattamente alla vostra lingua: se siete un francese che parla italiano, ad\n"
"esempio, potreste comunque preferire una tastiera francese. Oppure, se\n"
-"parlate italiano ma vivete nel Québec, potreste trovarvi nella stessa\n"
+"parlate italiano ma vivete nel Quebec, potreste trovarvi nella stessa\n"
"situazione. In entrambi i casi, dovrete tornare a questa fase\n"
"dell'installazione e selezionare una tastiera appropriata dalla lista.\n"
"\n"
@@ -3607,7 +3746,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3638,7 +3777,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3669,7 +3808,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3679,23 +3818,23 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3737,7 +3876,7 @@ msgstr ""
"estranei.\n"
"\n"
"Prestate attenzione, tuttavia, a non scegliere una password troppo lunga o\n"
-"complicata, perché dovete essere in grado di ricordarla senza troppo\n"
+"complicata, perche dovete essere in grado di ricordarla senza troppo\n"
"sforzo.\n"
"\n"
"La password non verrŕ mostrata mentre la digitate. Per questo motivo č\n"
@@ -3759,7 +3898,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3781,7 +3920,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3789,7 +3928,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3818,7 +3957,7 @@ msgstr ""
"boot di grub o LILO, in modo da permettervi di lanciare GNU/Linux o un\n"
"altro OS;\n"
"\n"
-" * se trova un settore di boot di grub o LILO, lo sostituisce con uno "
+" * se trova un settore di boot di grub o LILO, lo sostituisce con uno\n"
"nuovo.\n"
"\n"
"In caso di dubbio, DrakX mostrerŕ una finestra di dialogo con varie\n"
@@ -3831,14 +3970,12 @@ msgstr ""
" * \"LILO con menu grafico\": se preferite LILO con la sua interfaccia\n"
"grafica;\n"
"\n"
-" * \"LILO con menu in modo testo\": se preferite LILO nella sua versione "
-"con\n"
-"menu in modo testo.\n"
+" * \"LILO con menu in modo testo\": se preferite LILO nella sua versione\n"
+"con menu in modo testo.\n"
"\n"
-" * \"Dispositivo di boot\": nella maggior parte dei casi non sarŕ "
-"necessario\n"
-"cambiare le impostazioni predefinite (\"/dev/hda\"), ma, se lo preferite,\n"
-"il bootloader puň essere installato sul secondo disco rigido\n"
+" * \"Dispositivo di boot\": nella maggior parte dei casi non sarŕ\n"
+"necessario cambiare le impostazioni predefinite (\"/dev/hda\"), ma, se lo\n"
+"preferite, il bootloader puň essere installato sul secondo disco rigido\n"
"(\"/dev/hdb\"), o persino su un floppy (\"/dev/fd0\");\n"
"\n"
" * \"Ritardo prima di avviare con l'immagine predefinita\": č il tempo\n"
@@ -3867,7 +4004,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3879,7 +4016,7 @@ msgid ""
"anyone. In which case, you can delete the corresponding entries. But then,\n"
"you will need a boot disk in order to boot those other operating systems!"
msgstr ""
-"LILO (il LInux LOader) e GRUB sono bootloader: sono in grado di caricare\n"
+"LILO (il LInux LOader) e GRUB sono bootloader: sono in grado di caricare\n"
"indifferentemente GNU/Linux o altri sistemi operativi presenti sul vostro\n"
"computer. Normalmente, questi sistemi operativi sono correttamente rilevati\n"
"e installati. Se non avviene, potete aggiungere una voce a mano in questo\n"
@@ -3891,7 +4028,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3907,29 +4044,28 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3941,7 +4077,7 @@ msgstr ""
"Altri sistemi operativi possono offrirvene uno, ma Mandrake Linux ve ne\n"
"offre ben tre.\n"
"\n"
-" * \"pdq\" che sta per ''print, don't queue'' (''stampa, non mettere in\n"
+" * \"pdq\" - che sta per ''print, don't queue'' (''stampa, non mettere in\n"
"coda''), č una buona scelta se avete una connessione diretta con la\n"
"stampante e volete essere in grado di risolvere rapidamente eventuali\n"
"inceppamenti della carta, e inoltre non avete altre stampanti connesse via\n"
@@ -3951,29 +4087,29 @@ msgstr ""
"dopo aver terminato l'installazione lanciando PrinterDrake dal Centro di\n"
"controllo Mandrake e cliccando sul pulsante Esperto.\n"
"\n"
-" * \"CUPS\"''Common Unix Printing System'' (''Sistema di stampa unificato\n"
-"per Unix''), offre risultati eccellenti sia che dobbiate stampare sulla\n"
-"vostra stampante locale, sia nel caso che la stampa debba essere effettuata\n"
-"sull'altra faccia del pianeta. Č semplice da usare e puň agire come server\n"
-"o client per il vecchio sistema di stampa \"lpd\". Infatti č compatibile\n"
-"con i sistemi precedenti. Ha molte frecce al suo arco, ma la configurazione\n"
-"basica č quasi altrettanto semplice di quella per \"pdq\". Se avete bisogno\n"
-"di emulare un server \"lpd\" dovete attivare il demone \"cups-lpd\".\n"
-"Dispone di interfaccia grafica per la stampa e per la configurazione delle\n"
-"opzioni della stampante.\n"
-"\n"
-" * \"lprNG\"''line printer daemon New Generation'' (''demone di stampa di\n"
-"nuova generazione''. Questo sistema č approssimativamente equivalente agli\n"
-"altri, ma č anche in grado di stampare su dispositivi collegati per mezzo\n"
-"di una rete Novell, dato che supporta il protocollo IPX, e puň stampare\n"
-"direttamente in base a comandi via shell. Se avete bisogno di una\n"
+" * \"CUPS\" - ''Common Unix Printing System'' (''Sistema di stampa\n"
+"unificato per Unix''), offre risultati eccellenti sia che dobbiate stampare\n"
+"sulla vostra stampante locale, sia nel caso che la stampa debba essere\n"
+"effettuata sull'altra faccia del pianeta. Č semplice da usare e puň agire\n"
+"come server o client per il vecchio sistema di stampa \"lpd\". Infatti č\n"
+"compatibile con i sistemi precedenti. Ha molte frecce al suo arco, ma la\n"
+"configurazione basica č quasi altrettanto semplice di quella per \"pdq\".\n"
+"Se avete bisogno di emulare un server \"lpd\" dovete attivare il demone\n"
+"\"cups-lpd\". Dispone di interfaccia grafica per la stampa e per la\n"
+"configurazione delle opzioni della stampante.\n"
+"\n"
+" * \"lprNG\" - ''line printer daemon New Generation'' (''demone di stampa\n"
+"di nuova generazione''. Questo sistema č approssimativamente equivalente\n"
+"agli altri, ma č anche in grado di stampare su dispositivi collegati per\n"
+"mezzo di una rete Novell, dato che supporta il protocollo IPX, e puň\n"
+"stampare direttamente in base a comandi via shell. Se avete bisogno di una\n"
"connessione di tipo Novell, o di stampare senza fare uso di pipe,\n"
"utilizzate lprNG. In caso contrario, č preferibile usare CUPS dato che č\n"
"piů semplice e migliore nel gestire stampanti di rete."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3998,7 +4134,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"Ora DrakX procederŕ con il rilevamento di tutti i dischi rigidi e altri\n"
@@ -4031,10 +4167,10 @@ msgstr ""
"dell'utente'' (capitolo 3, paragrafo \"Ricerca di informazioni sul vostro\n"
"hardware\") per qualche suggerimento su come ottenerle dalla documentazione\n"
"dell'hardware, dal sito web del produttore (se disponete di un accesso a\n"
-"Internet) o da MicrosoftWindows (se avete utilizzato la stessa scheda con\n"
+"Internet) o da Microsoft Windows (se avete utilizzato la stessa scheda con\n"
"Windows sul vostro stesso sistema)."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -4044,9 +4180,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -4058,7 +4193,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" 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"
@@ -4084,7 +4219,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -4111,9 +4246,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -4165,10 +4299,10 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -4176,12 +4310,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -4212,9 +4345,8 @@ msgstr ""
"pulsante per poter configurare il fuso orario in base a quello dell'area\n"
"geografica in cui vivete;\n"
"\n"
-" * \"Stampante\": cliccando sul pulsante \"Nessuna stampante\" si "
-"richiamerŕ\n"
-"l'assistente di configurazione della stampante;\n"
+" * \"Stampante\": cliccando sul pulsante \"Nessuna stampante\" si\n"
+"richiamerŕ l'assistente di configurazione della stampante;\n"
"\n"
" * \"Scheda audio\": se sul vostro sistema č stata individuata una scheda\n"
"audio, verrŕ mostrata qui. Al momento dell'installazione non č possibile\n"
@@ -4230,7 +4362,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4242,7 +4374,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4260,7 +4392,7 @@ msgstr ""
"Cliccate su \"Annulla\" per annullare questa operazione senza che vengano\n"
"persi dati o partizioni presenti su questo disco rigido."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4272,12 +4404,12 @@ msgstr ""
"di boot non č aggiornato rispetto al supporto di installazione. Per favore "
"create un dischetto di boot aggiornato."
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr "Dovete formattare anche %s"
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4301,20 +4433,20 @@ msgstr ""
"\n"
"Vuoi davvero installare questi server?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "Non posso usare broadcast senza un dominio NIS"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Inserisci un floppy MS-DOS nel drive %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Questo floppy non č stato formattato usando MS DOS/Windows"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4322,7 +4454,7 @@ msgstr ""
"Per usare la selezione di pacchetti che avete salvato, dovete cominciare "
"l'installazione digitando ``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Errore leggendo il file %s"
@@ -4352,7 +4484,7 @@ msgstr "Devi avere una partizione di swap"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -4360,59 +4492,59 @@ msgstr ""
"\n"
"Continuo comunque?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Devi avere una partizione FAT montata su /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Usa lo spazio libero"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Non c'č abbastanza spazio libero per allocare nuove partizioni"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Usa partizione esistente"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Non c'č una partizione esistente da usare"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Usa la partizione Windows per loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Che partizione vuoi usare per Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Scegli le dimensioni"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Dimensione partizione radice in Mb: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Dimensione partizione di swap in Mb: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Usa lo spazio libero della partizione Windows"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Quale partizione vuoi ridimensionare?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Calcolo i confini del filesystem di Windows "
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4421,13 +4553,16 @@ msgstr ""
"Il ridimensionatore della FAT non riesce a gestire la tua partizione, \n"
"si č verificato il seguente errore: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"La tua partizione Windows č troppo frammentata, per favore prima\n"
"lancia ''defrag''"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -4448,55 +4583,55 @@ msgstr ""
"dati.\n"
"Quando sei sicuro, premi Ok."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Quanto spazio vuoi lasciare per Windows sulla"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "partizione %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Ridimensionamento FAT fallito: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Non c'č una partizione FAT da ridimensionare o da usare come loopback (o \n"
"non c'č abbastanza spazio su di essa)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Cancella l'intero disco"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Rimuovi Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Hai piů di un disco rigido, su quale vuoi installare linux?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"TUTTE le partizioni esistenti e i loro dati verranno persi sul disco %s"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Partizionamento personalizzato del disco"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Usa fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4505,11 +4640,11 @@ msgstr ""
"Adesso puoi partizionare %s\n"
"Quando hai finito, non dimenticare di salvare usando 'w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Non hai sufficiente spazio libero sulla partizione Windows"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Non trovo lo spazio per installare Mandrake Linux"
@@ -4518,16 +4653,16 @@ msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
"Il wizard di partizionamento di DrakX ha trovato le seguenti soluzioni:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Partizionamento fallito: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Sto attivando la rete"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Sto disattivando la rete"
@@ -4539,12 +4674,12 @@ msgstr ""
"C'č stato un errore, ma non so come gestirlo correttamente.\n"
"Continua a tuo rischio e pericolo."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Punto di mount doppio: %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4556,12 +4691,12 @@ msgstr ""
"Controlla il cdrom su un sistema giŕ installato digitando \"rpm -qpl "
"mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Benvenuto a %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Nessun drive floppy disponibile"
@@ -4571,9 +4706,9 @@ msgstr "Nessun drive floppy disponibile"
msgid "Entering step `%s'\n"
msgstr "Inizio fase '%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4582,199 +4717,154 @@ msgstr ""
"Mandrake Linux. In tal caso, in alternativa puoi provare un'installazione \n"
"testuale. Per questo, premi 'F1' all'avvio da CDROM, poi digita 'text'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Classe d'installazione"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr "Per favore, scegli una delle seguenti classi d'installazione:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr ""
-"La dimensione totale dei gruppi da te scelti č approssimativamente %d Mb.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Se desideri installare occupando una quantitŕ di spazio minore,\n"
-"scegli la percentuale dei pacchetti che vuoi installare.\n"
-"\n"
-"Una bassa percentuale installerŕ solo i pacchetti piů importanti;\n"
-"una percentuale del 100%% installerŕ tutti i pacchetti scelti."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Hai spazio sul tuo disco rigido solo per %d%% di questi pacchetti.\n"
-"\n"
-"Scegli una percentuale dei pacchetti che vuoi installare.\n"
-"Una bassa percentuale installerŕ solo i pacchetti piů importanti;\n"
-"una percentuale del %d%% installerŕ tutti i pacchetti possibili."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Potrai scegliere piů specificatamente nella prossima fase."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Percentuale dei pacchetti da installare"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Selezione Gruppi di Pacchetti"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Selezione individuale pacchetti"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Domensione totale: %d / %d Mb"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Pacchetto errato"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Nome: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Versione: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Dimensioni: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Importanza: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Non puoi selezionare questo pacchetto perchč non c'č abbastanza spazio \n"
"rimanente per installarlo"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "I seguenti pacchetti stanno per essere installati"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "I seguenti pacchetti satanno per essere rimossi"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Non puoi selezionare/deselezionare questo pacchetto"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Questo č un pacchetto obbligatorio, non puň essere deselezionato"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Non puoi deselezionare questo pacchetto. č giŕ installato"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Questo pacchetto deve essere aggiornato\n"
"Sei sicuro di volerlo deselezionare?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Non puoi deselezionare questo pacchetto. Deve essere aggiornato"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Mostra i pacchetti selezionati automaticamente"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Installa"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Carica/Salva su floppy"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "Aggiornamento scelta pacchetti"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "Installazione minima"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Scegli i pacchetti da installare"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Installazione"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Sto valutando"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Tempo restante "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Per favore attendi, sto preparando l'installazione"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d pacchetti"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Installazione del pacchetto %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Accetta"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Rifiuta"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4790,17 +4880,17 @@ msgstr ""
"pronto. Se non ce l'hai, premi Annulla per evitare l'installazione da questo "
"Cd-Rom."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Vado avanti comunque?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "C'č stato un errore ordinando i pacchetti:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "C'č stato un errore installando i pacchetti:"
@@ -4877,11 +4967,11 @@ msgstr "Si č verificato un errore"
msgid "Do you really want to leave the installation?"
msgstr "Vuoi davvero abbandonare l'installazione?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Accordo di licenza"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4896,7 +4986,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -5098,109 +5188,113 @@ msgstr ""
"all'attenzione del Tribunale competente di Parigi - Francia.Per qualsiasi "
"domanda riguardo questo documento, per favore contattate MandrakeSoft S.A.\n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Tastiera"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "Per favore, scegli la mappa della tastiera."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Ecco la lista completa delle tastiere disponibili"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Che classe di installazione preferisci?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Installa/Aggiorna"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Č un'installazione o un aggiornamento?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Raccomandata"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Esperto"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "Aggiorna"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "Solo aggiornamento pacchetti"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Per favore, scegli il tipo del tuo mouse."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Porta del mouse"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Per favore scegli a che porta seriale č connesso il mouse."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Emulazione pulsanti"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Emulazione pulsante 2"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Emulazione pulsante 3"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Configuro schede PCMCIA..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Sto configurando IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "nessuna partizione disponibile"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Controllo delle partizioni per trovare i punti di mount"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Scegli i punti di mount"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -5212,7 +5306,7 @@ msgstr ""
"\n"
"Ti va bene liberare tutte le partizioni?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -5220,7 +5314,7 @@ msgstr ""
"Diskdrake ha fallito la lettura della tabella delle partizioni.\n"
"Continua a tuo rischio e pericolo!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -5228,79 +5322,82 @@ msgstr ""
"Non c'č spazio libero per un bootstrap di 1MB! L'installazione continua, ma "
"per avviare il sistema dovrai creare la partizione di bootstrap con DiskDrake"
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr "Non ho trovato una partizione root da aggiornare"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Partizione radice"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Qual'č la partizione radice (/) del tuo sistema?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Devi resettare affinché le modifiche alla tabella delle partizioni\n"
"abbiano effetto"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Scegli le partizioni che vuoi formattare"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Controllo blocchi danneggiati?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Formattazione partizioni"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Sto creando e formattando il file %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Swap insufficiente per completare l'installazione. Per favore, aumentane le "
"dimensioni"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Sto cercando i pacchetti disponibili"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
+msgstr "Sto cercando i pacchetti disponibili"
+
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Sto cercando i pacchetti da aggiornare"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Non puoi deselezionare questo pacchetto. č giŕ installato"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Il tuo sistema non ha abbastanza spazio rimanente per l'installazione o\n"
"l'aggiornamento (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Completa (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minima (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Raccomandata (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5308,35 +5405,35 @@ msgstr ""
"Per favore scegli di caricare o salvare la selezione pacchetti su floppy.\n"
"Il formato č lo stesso dei floppy generati con auto_install."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Carica da floppy"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Caricamento da floppy"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Selezione pacchetti"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "Inserisci un floppy contenente la scelta dei pacchetti"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Salva su floppy"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Lo spazio indicato č maggiore dello spazio disponibile"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr "Tipo di installazione"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5344,19 +5441,19 @@ msgstr ""
"Non avete selezionato nessun gruppo di pacchetti.\n"
"Per favore scegliete il tipo di installazione minima desiderato:"
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "Con X"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr "Con la documentazione essenziale (raccomandata!)"
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr "Installazione veramente minima (in particolare niente urpmi)"
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5366,16 +5463,16 @@ msgstr ""
"Se non hai nessuno di questi CDs, clicca su Annulla.\n"
"Se mancano solo alcuni dei CD, deselezionali, e poi clicca Ok."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom chiamato \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Sto preparando l'installazione"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -5384,23 +5481,23 @@ msgstr ""
"Installazione del pacchetto %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Configurazione post installazione"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Per favore inserisci il floppy di avvio utilizzato nel drive %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Per favore inserisci il floppy di aggiornamento moduli nel drive %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5474,13 +5571,15 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
+#, fuzzy
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
@@ -5493,152 +5592,182 @@ msgstr ""
"\n"
"Volete installare gli aggiornamenti?"
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Connessione con il sito Mandrake Linux per avere la lista dei mirror "
"disponibili"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Scegli un mirror da cui prendere i pacchetti"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Conessione al mirror per avere la lista dei pacchetti disponibili"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Qual'č il tuo fuso orario?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "L'orologio del tuo hardware č settato su GMT"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Sincronizzazione automatica dell'ora (usando NTP)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "Server NTP"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Server CUPS remoto"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Nessuna stampante"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
msgstr "Hai una scheda audio ISA?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Lanciate \"sndconfig\" dopo l'installazione per configurare la vostra scheda "
"audio"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Non č stata rilevata nessuna scheda audio. Provate con \"harddrake\"\n"
"dopo l'installazione."
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Riepilogo"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Mouse"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Fuso orario"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Stampante"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "Scheda ISDN"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Scheda audio"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "Scheda TV"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Windows (FAT32)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "File locali"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Scegli password per root"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Nessuna Password"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr "Questa password č troppo semplice (deve essere almeno di %d caratteri)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autenticazione"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "Autenticazione LDAP"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "Server LDAP"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "Autenticazione NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "Dominio NIS"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "Server NIS"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Autenticazione LDAP"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Prendi i font di Windows"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "Server NTP"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -5667,19 +5796,19 @@ msgstr ""
"Se vuoi creare un disco di avvio per il tuo sistema, inserisci un floppy\n"
"nel primo drive e premi \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Primo drive floppy"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Secondo drive floppy"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Salta"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5705,7 +5834,7 @@ msgstr ""
"del sistema. Vuoi creare un disco di avvio per il tuo sistema?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5719,29 +5848,29 @@ msgstr ""
"molto probabilmente non sarŕ possibile creare un floppy di 1.44 Mb\n"
"perché XFS necessita di in driver molto grande)."
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Spiacente, nessun drive floppy disponibile"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Scegli il drive floppy che vuoi utilizzare per creare il disco di avvio"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
msgstr "Inserisci un floppy nel drive %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Creazione disco di avvio"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Preparazione del bootloader"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5753,11 +5882,11 @@ msgstr ""
"L'installazione continuerŕ, ma dovrai usare\n"
" BootX per avviare il tuo computer"
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Vuoi usare aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5765,16 +5894,16 @@ msgstr ""
"Errore installando aboot, \n"
"provo a forzare l'installazione anche se ciň distrugge la prima partizione?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Sto installando il bootloader"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"Installazione del bootloader fallita. Si č verificato il seguente errore:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5791,18 +5920,17 @@ msgstr ""
" Poi digitate: shut-down\n"
"Al boot successivo dovreste vedere il prompt del bootloader."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Inserisci un floppy vuoto nel drive %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Sto creando il floppy di auto installazione"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5812,7 +5940,8 @@ msgstr ""
"\n"
"Vuoi veramente interrompere adesso?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5823,7 +5952,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5837,18 +5966,22 @@ msgstr ""
"Mandrake, consulta l'Errata disponibile su\n"
"\n"
"\n"
-"http://www.mandrakelinux.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Informazioni su come configurare il tuo sistema sono disponibili nel "
"capitolo\n"
"sulla post-installazione della Guida Ufficiale dell'Utente Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Crea il floppy di auto installazione"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5862,15 +5995,15 @@ msgstr ""
"\n"
"Probabilmente preferirete ripetere l'installazione.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automatizzata"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Ripeti"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Salva scelta pacchetti"
@@ -5897,44 +6030,24 @@ msgstr "manca l'aiuto per la console"
msgid "Choose a file"
msgstr "Scegli un file"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Avanzato"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr "Di base"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Attendere prego"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Espandi struttura"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Raggruppa struttura"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Cambia tra ordinamento semplice o a gruppi"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Scelta errata, prova di nuovo\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "La tua scelta? (default %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -5943,31 +6056,35 @@ msgstr ""
"Entrate che dovrete riempire:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "La tua scelta? (0/1, default `%s') "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "Pulsante `%s': %s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+msgid "Do you want to click on this button?"
msgstr "Vuoi cliccare su questo pulsante?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "La tua scelta? (default `%s'%s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Ci sono molte cose fra cui scegliere (%s)\n"
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -5977,7 +6094,7 @@ msgstr ""
"modificare, oppure premete Invio per continuare.\n"
"La vostra scelta?"
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -5986,327 +6103,327 @@ msgstr ""
"=> Attenzione, un'etichetta č cambiata:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr "Riproporre"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Ceca (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Tedesca"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Spagnola"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finlandese"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Francese"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norvegese"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Polacca"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Russa"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Svedese"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Tastiera UK"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Tastiera US"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Albanese"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armena (vecchia)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armena (macchina da scrivere)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armena (fonetica)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidjana (latina)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belga"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr "Bulgara (fonetica)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "Bulgara (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brasiliana (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Bielorussa"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Svizzera (mappa tedesca)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Svizzera (mappa francese)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Ceca (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Tedesca (nessun tasto morto)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Danese"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norvegese)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Svedese)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estone"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgiana (mappa \"Russa\")"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgiana (mappa \"Latina\")"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Greca"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Ungherese"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Croata"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Israeliana"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Israeliana (Fonetica)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iraniana"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islandese"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Italiana"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Giapponese 106 tasti"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Tastiera Coreana"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latino Americana"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Lituana AZERTY (vecchia)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Lituana AZERTY (nuova)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituana \"numero riga\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituana \"fonetica\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "Lettone"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Macedone"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Olandese"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Polacca (mappa qwerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Polacca (mappa qwertz)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portoghese"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Canadese (Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Romena (qwertz)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Romena (qwerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Russa (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slovena"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovacca (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovacca (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "Serba (cirillica)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr "Tamil"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Tastiera Thai"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Tastiera Tajik"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turca (modulo \"F\" tradizionale)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turca (modello \"Q\" moderno)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ucraina"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Tastiera US (internazionale)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamita \"riga numerica\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Yugoslava (latino)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr "Tasto Alt di destra"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr "Entrambi i tasti Shift allo stesso tempo"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr "I tasti Ctrl e Shift allo stesso tempo"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr "Il tasto CapsLock"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr "Tasti Ctrl e Alt allo stesso tempo"
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr "I tasti Alt e Shift allo stesso tempo"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr "Tasto \"Menu\""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr "Tasto \"Windows\" di sinistra"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr "Tasto \"Windows\" di destra"
@@ -6319,7 +6436,31 @@ msgstr "Mount circolari %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Prima rimuovi i volumi logici\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Numero telefonico"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Formatta partizioni"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -6362,10 +6503,6 @@ msgstr "1 pulsante"
msgid "Generic 2 Button Mouse"
msgstr "Mouse generico a 2 Pulsanti"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Generico"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Ruota"
@@ -6430,38 +6567,54 @@ msgstr "nessuno"
msgid "No mouse"
msgstr "Nessun mouse"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Per favore prova il mouse"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Per attivare il mouse"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "MUOVI LA RUOTA!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Finisci"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Avanti ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Indietro"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Č corretto?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Info"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Espandi struttura"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Raggruppa struttura"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Cambia tra ordinamento semplice o a gruppi"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Connetti a Internet"
@@ -6508,7 +6661,7 @@ msgstr ""
"Nessun adattatore di rete ethernet č stato rilevato nel tuo sistema.\n"
"Non posso configurare questo tipo di connessione."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Scegli l'interfaccia di rete"
@@ -6523,7 +6676,7 @@ msgstr ""
msgid "no network card found"
msgstr "nessuna scheda di rete trovata"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Sto configurando la rete"
@@ -6539,15 +6692,15 @@ msgstr ""
"Il tuo nome host dovrebbe essere un nome pienamente qualificato,\n"
"come ''mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Nome host"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Wizard della configurazione di rete"
@@ -6603,7 +6756,7 @@ msgstr "Configurazione ISDN"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Scegli il tuo provider.\n"
" Se non č nella lista, scegli Fuori Lista"
@@ -6622,14 +6775,14 @@ msgstr "Protocollo per il resto del mondo"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Protocollo per il resto del mondo \n"
" no D-Channel (linee in affitto)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Quale protocollo vuoi usare?"
#: ../../network/isdn.pm_.c:199
@@ -6653,7 +6806,8 @@ 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"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Se hai una scheda ISA, i valori nella prossima schermata dovrebbero essere "
@@ -6670,13 +6824,13 @@ msgid "Continue"
msgstr "Continua"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Qual'č la tua scheda ISDN?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Ho trovato una scheda ISDN PCI, ma non so di che tipo. Per favore seleziona "
"una scheda PCI nella prossima schermata."
@@ -6695,47 +6849,47 @@ msgstr "Per favore scegli a che porta seriale č connesso il tuo modem."
msgid "Dialup options"
msgstr "Opzioni di chiamata"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Nome connessione"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Numero telefonico"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "ID di accesso"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Basata su script"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Basata su terminale"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Nome dominio"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Primo server DNS (opzionale)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Secondo server DNS (opzionale)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6743,7 +6897,7 @@ msgstr ""
"\n"
"Puoi disconnetterti o riconfigurare la tua connessione."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6751,11 +6905,11 @@ msgstr ""
"\n"
"Puoi configurare nuovamente la connessione."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Adesso sei connesso a Internet"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6763,32 +6917,32 @@ msgstr ""
"\n"
"Puoi connetterti a Internet o configurare nuovamente la connessione."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "In questo momento non sei connesso a Internet"
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Connetti"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Disconnetti"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr "Configura la connessione"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Connessione & configurazione Internet"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Adesso proseguiremo con la configurazione della connessione %s."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6807,12 +6961,12 @@ msgstr ""
"\n"
"Premi OK per cominciare."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Configurazione della rete"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6824,9 +6978,9 @@ msgstr ""
"Clicca su Ok per mantenere questa configurazione, o su Annulla per "
"riconfigurare la rete e la connessione a Internet.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"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"
@@ -6837,66 +6991,72 @@ msgstr ""
"Se non volete usare il riconoscimento automatico, deselezionate il \n"
"pulsante d'opzione.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Scegli il profilo da configurare"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Usa il riconoscimento automatico"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Modo Esperto"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Riconoscimento periferiche..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Connessione normale via modem"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "rilevato sulla porta: %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "Connessione ISDN"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "rilevato %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "Connessione ADSL"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "rilevato sull'interfaccia %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Connessione via cavo"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "Rilevata connessione via cavo"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "Connessione LAN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "rilevata scheda(e) ethernet"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Scegli il tipo di connessione che vuoi configurare"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6906,23 +7066,23 @@ msgstr ""
"Scegli quello che vuoi usare.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Connessione a Internet"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Vuoi effettuare la connessione all'avvio?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Configurazione della rete"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr "La rete dev'essere riavviata"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6933,7 +7093,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6943,7 +7103,7 @@ msgstr ""
"\n"
"Adesso questa configurazione verrŕ applicata al vostro sistema.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6951,19 +7111,19 @@ msgstr ""
"Dopo che questo sarŕ stato fatto, vi raccomandiamo di riavviare il\n"
"vostro ambiente X per evitare problemi relativi al cambio di hostname."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
"Si sono verificati dei problemi durante la configurazione.\n"
"Provate la connessione usando net_monitor o mcc. Se la connessione non "
"funziona, dovreste ripetere la configurazione."
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"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."
@@ -6973,7 +7133,7 @@ msgstr ""
"Devi solo cliccare su OK per mantenere la precedente configurazione.\n"
"Modifiche ai campi qui sotto cambieranno questa configurazione."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6983,38 +7143,43 @@ msgstr ""
"Ogni dato dovrebbe essere inserito come un indirizzo IP in notazione\n"
"decimale puntata (ad esempio 1.2.3.4.)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Sto configurando il dispositivo di rete %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (driver %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "Indirizzo IP"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "IP automatico"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Attivato/a al momento del boot"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "L'indirizzo IP deve essere in formato 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7026,64 +7191,64 @@ msgstr ""
"come ''mybox.mylab.myco.com''.\n"
"Puoi anche inserire l'indirizzo IP del gateway se ne hai uno."
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "Server DNS"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (es. %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Dispositivo di gateway"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Configurazione dei proxy"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Individua identitŕ della scheda audio (utile per i laptop)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Il proxy dovrebbe essere http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Il proxy dovrebbe essere ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Configurazione di internet"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Vuoi provare a connetterti a Internet adesso?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Sto provando la tua connessione ..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Adesso il sistema č connesso a Internet"
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Per ragioni di sicurezza, adesso verrŕ disconnesso."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -7091,111 +7256,116 @@ msgstr ""
"Il sistema non sembra essere connesso a Internet.\n"
"Prova a configurare nuovamente la connessione."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Configurazione della Connessione"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Per favore riempi o controlla il campo qui sotto"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ della scheda"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Memoria della scheda (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "IO della scheda"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "IO_0 della scheda"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "IO_1 della scheda"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Il tuo numero di telefono personale"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Nome del provider (es. provider.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Numero telefonico del provider"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Dns 1 del provider (opzionale)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Dns 2 del provider (opzionale)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Scegli la tua nazione"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Modalitŕ di chiamata"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Velocitŕ della connessione"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "Timeout della connessione (in secondi)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Login dell'account (nome utente)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Password dell'account"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "mount fallito: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Partizione estesa non supportata su questa piattaforma"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Hai un buco nella tua tabella delle partizioni, ma io non posso usarlo.\n"
"L'unica soluzione č di muovere le tue partizioni primarie per avere il buco "
"vicino alle partizioni estese"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Ripristino da file %s fallito: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "File di backup errato"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Errore scrivendo sul file %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7206,186 +7376,186 @@ msgstr ""
"Significa che scrivere qualsiasi cosa sul disco genererŕ solo spazzatura a "
"caso"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "da avere"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "importante"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "molto bello"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "bello"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "forse"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Common Unix Printing System"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR New Generation"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Line Printer Daemon"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Stampante locale"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Stampante remota"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Stampante su server CUPS remoto"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Stampante su server lpd remoto"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Stampante di rete (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Stampante su server SMB/Windows95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Stampante su server NetWare"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Indica l'URI di un dispositivo di stamp"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "Invia tramite pipe al comando"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Modello sconosciuto"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "Stampanti locali"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "Stampanti remote"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr " sulla porta parallela \\/*%s"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", stampante USB \\/*%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", dispositivo multifunzione sulla porta parallela \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ", dispositivo multifunzione su USB"
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ", dispositivo multifunzione su HP JetDirect"
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ", dispositivo multifunzione"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, c-format
msgid ", printing to %s"
msgstr ", sto stampando su %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr "sul server LPD \"%s\", stampante \"%s\""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", host TCP/IP \"%s\", porta %s"
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr "sul server Windows \"%s\", condivisione \"%s\""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr "sul server Novell \"%s\", stampante \"%s\""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ", uso il comando %s"
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr "Stampante di tipo raw (nessun driver)"
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(su %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(su questa macchina)"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Sul server CUPS \"%s\""
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Predefinito)"
@@ -7407,11 +7577,11 @@ msgstr ""
"Con un server remoto CUPS, non devi configurare alcuna stampante\n"
"adesso: le stampanti saranno individuate automaticamente."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
msgid "CUPS configuration"
msgstr "Configurazione di CUPS"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
msgid "Specify CUPS server"
msgstr "Indica il server CUPS"
@@ -7456,7 +7626,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "L'indirizzo IP deve essere in formato 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "Il numero della porta dovrebbe essere un numero intero!"
@@ -7464,7 +7634,7 @@ msgstr "Il numero della porta dovrebbe essere un numero intero!"
msgid "CUPS server IP"
msgstr "IP del server CUPS"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Porta"
@@ -7472,20 +7642,12 @@ msgstr "Porta"
msgid "Automatic CUPS configuration"
msgstr "Configurazione automatica di CUPS"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Riconoscimento periferiche ..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Test delle porte"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr "Aggiungi nuova stampante"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7507,13 +7669,13 @@ msgstr ""
"dandovi accesso a tutti i driver, opzioni dei driver e tipi di connessione "
"disponibili."
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Stampante locale"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7546,11 +7708,11 @@ msgstr ""
"quando volete configurare la stampa su una stampante remota se Printerdrake "
"non la include nell'elenco automaticamente."
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr "Riconoscimento automatico stampanti"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7574,11 +7736,11 @@ msgstr ""
"stampa, etc.), selezionate \"Stampante\" nella sezione \"Hardware\" del "
"Centro di controllo Mandrake."
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr "Riconoscimento automatico delle stampanti"
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7595,33 +7757,37 @@ msgstr ""
"\n"
"Volete davvero che le stampanti vengano riconosciute automaticamente?"
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "Usa il riconoscimento automatico"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr "Configurazione manuale della stampante"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Test delle porte"
+
+#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
msgstr "Rilevato %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Stasmpante sulla porta parallela \\/*%s"
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr "Stampante USB \\/*%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
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, ..., "
@@ -7634,17 +7800,17 @@ msgstr ""
"lp1, ..., equivalenti a LPT1:, LPT2:, ...; prima stampante USB: /dev/usb/"
"lp0, seconda: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
msgstr "Devi indicare il nome di un dispositivo o di un file!"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
msgstr "Non ho trovato nessuna stampante locale!\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
@@ -7653,7 +7819,7 @@ msgstr ""
"l'installazione. Scegliete \"Hardware\" e poi \"Stampante\" nel Centro di "
"controllo Mandrake."
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
@@ -7661,7 +7827,7 @@ msgstr ""
"Per installare stampanti di rete, cliccate su \"Annulla\", passate al \"Modo "
"esperto\" e cliccate su \"Aggiungi nuova stampante\"."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7670,7 +7836,7 @@ msgstr ""
"che desiderate configurare inserite un nome di dispositivo o di file nel "
"campo immissione testo"
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7680,7 +7846,7 @@ msgstr ""
"inserite il nome di un dispositivo o di un file nel campo di immissione "
"testo."
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7692,7 +7858,7 @@ msgstr ""
"vostra stampante non č stata riconosciuta in modo corretto, o se preferite "
"una configurazione personalizzata, cliccate su \"Configurazione manuale\"."
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7705,7 +7871,7 @@ msgstr ""
"vostra stampante non č stata riconosciuta correttamente, o se preferite una "
"configurazione personalizzata, cliccate su \"Configurazione manuale\"."
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7714,12 +7880,12 @@ msgstr ""
"oppure inserite il nome di un dispositivo o di un file nel campo di "
"immissione testo"
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
msgstr ""
"Per favore scegliete la porta alla quale č connessa la vostra stampante."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7727,52 +7893,65 @@ msgstr ""
" (Porte parallele: /dev/lp0, /dev/lp1, ..., equivalenti a LPT1:, LPT2:, ...; "
"prima stampante USB: /dev/usb/lp0, seconda: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
msgstr "Dovete scegliere/indicare una stampante/un dispositivo!"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
msgstr "Configurazione manuale"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
+#, fuzzy
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
"La vostra stampante č un dispositivo multifunzione prodotto da HP "
"(OfficeJet, PSC, PhotoSmart, LaserJet 1100/1200/1220/3200/3300 con scanner)?"
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
msgstr "Installazione del pacchetto HPOJ..."
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr "Controllo dispositivo e configuro HPOJ ..."
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
msgstr "Installazione del pacchetto SANE"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Installazione dei pacchetti ..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr "Effettuo una scansione con il vostro dispositivo multifunzione HP"
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+#, fuzzy
+msgid "Photo memory card access on your HP multi-function device"
+msgstr "Effettuo una scansione con il vostro dispositivo multifunzione HP"
+
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr "Rendo la porta della stampante disponibile per CUPS ..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr "Sto leggendo il database delle stampanti"
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Opzioni stampante lpd remota"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7781,27 +7960,27 @@ msgstr ""
"il nome dell'host del server della stampante e il nome della stampante\n"
"su quel server."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Nome host remoto"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Nome della stampante remota"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "Nome host remoto assente!"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "Nome della stampante remota assente!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Opzioni Stampante SMB (Windows9x/NT)"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7814,35 +7993,35 @@ msgstr ""
"pure il nome di condivisione per la stampante cui volete accedere e ogni\n"
"informazione utile riguardo nome dell'utente, password e gruppo di lavoro."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "Host del server SMB"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP del server SMB"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Nome di condivisione"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Gruppo di lavoro"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "Devi indicare il nome del server o il numero IP dello stesso!"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "Il nome della condivisione Samba č assente!"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7866,7 +8045,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7875,7 +8054,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7883,11 +8062,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Opzioni stampante NetWare"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
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 "
@@ -7899,27 +8078,27 @@ msgstr ""
"del suo host TCP/IP!) insieme al nome della coda di stampa per la\n"
"stampante cui volete accedere e ogni nome utente e password applicabili."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Server della stampante"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Nome della coda di stampa"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "Il nome del server NCP č assente"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "Il nome dellla coda NCP č assente!"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
msgstr "Opzioni della stampante TCP/Socket"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -7932,19 +8111,19 @@ msgstr ""
"altri server potrebbe essere diverso. Consultate il manuale del vostro\n"
"hardware."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Nome host della stampante"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "Nome host della stampante assente!"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "URI della stampante"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
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 "
@@ -7954,11 +8133,11 @@ msgstr ""
"essere conforme alle specifiche CUPS o Foomatic. Notate che non tutti i i "
"tipi di URI sono supportati da tutti gli spooler."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "Dev'essere inserito un'URI valido!"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -7967,27 +8146,23 @@ msgstr ""
"Non č indispensabile riempire i campi Descrizione e \n"
"Posizione. Si tratta di commenti per gli utenti."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Nome della stampante"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Descrizione"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Posizione"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr "Sto preparando il database delle stampanti ..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
msgid "Your printer model"
msgstr "Il modello della vostra stampante"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -8002,24 +8177,24 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
msgid "The model is correct"
msgstr "Il modello č corretto"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
msgid "Select model manually"
msgstr "Selezionate il modello manualmente"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Scelta del modello della stampante"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Che modello di stampante hai?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -8034,7 +8209,7 @@ msgstr ""
"un modello errato o su \"Stampante di tipo raw\", cercate quello corretto "
"nella lista."
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -8042,11 +8217,11 @@ msgstr ""
"Se la vostra stampante non č presente nella lista, cercate un modello "
"compatibile o simile (consultate il manuale della stampante)."
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "Configurazione di una stampante OKI winprinter"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -8056,11 +8231,11 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "Configurazione di una stampante Lexmark a getto d'inchiostro"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -8068,7 +8243,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -8081,7 +8256,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -8098,22 +8273,22 @@ msgstr ""
"impostati correttamente. Si noti che quando la qualitŕ/risoluzione di stampa "
"č molto alta, la durata della stampa puň diventare sensibilmente piů lenta."
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "L'opzione %s dev'essere un numero intero!"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "L'opzione %s dev'essere un numero!"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "Opzione %s fuori scala!"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8122,11 +8297,11 @@ msgstr ""
"Volete impostare questa stampante (\"%s)\n"
"come stampante predefinita?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "Pagine di prova"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8134,39 +8309,39 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "Nessuna pagina di prova"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Stampa"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "Pagina di prova standard"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "Pagina di prova alternativa (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "Pagina di prova fotografica"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
msgstr "Non stampare nessuna pagina di prova"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Stampa della(e) pagina(e) di prova..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8180,7 +8355,7 @@ msgstr ""
"Stato della stampa:\n"
"%s\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8188,15 +8363,15 @@ msgstr ""
"La pagina(e) di prova č stata inviata alla stampante.\n"
"potrebbe occorrere un po' di tempo prima che la stampa inizi.\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr "Stampante in modo raw"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8205,15 +8380,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
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 ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -8222,49 +8397,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, 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\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8274,7 +8449,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -8283,29 +8458,40 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Chiudi"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Stampa/Scansione in corso su \"%s\""
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Stampa/Scansione in corso su \"%s\""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Stampa/Scansione in corso su \"%s\""
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Sto stampando con la stampante \"%s\""
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Chiudi"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "Lista opzioni di stampa"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -8313,36 +8499,36 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr "Sto leggendo i dati della stampante..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "Configurazione della stampante a trasferimento"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8352,51 +8538,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8404,58 +8590,58 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"Il nome della stampante dovrebbe contenere solo lettere, numeri e il "
"trattino di sottolineatura"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Nuovo nome della stampante"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, 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 ""
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr "Sto aggiornando i dati della stampante ..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr "Configura di una stampante remota"
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "Sto attivando la connessione di rete ..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr "Configura la rete adesso"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "Funzionalitŕ di rete non configurate"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8463,11 +8649,11 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr "Vai avanti senza configurare la rete"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8477,31 +8663,31 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
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 ""
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr "Sto riavviando il sistema di stampa ..."
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "alto"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr "paranoico"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8516,11 +8702,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr "Avvio il sistema di stampa al momento del boot"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8534,63 +8720,63 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "Scegli il sistema di stampa"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "Che sistema di stampa (spooler) vuoi usare?"
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2310
+#, fuzzy, c-format
+msgid "Configuring printer \"%s\"..."
msgstr "Sto configurando la stampante \"%s\" ..."
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
msgstr "Installazione del pacchetto Foomatic"
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Opzioni stampante"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr "Sto preparando PrinterDrake"
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
msgid "Configuring applications..."
msgstr "Configurazione applicazioni ..."
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "Vorresti configurare la stampa?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "PrinterDrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -8598,35 +8784,39 @@ msgid ""
"OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
"it."
msgstr ""
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
msgid "Change the printing system"
msgstr "Cambia il sistema di stampa"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Modo Normale"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Esci"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr "Volete configurare un'altra stampante?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "Modifica configurazione stampante"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, c-format
msgid ""
"Printer %s\n"
@@ -8635,102 +8825,102 @@ msgstr ""
"Stampante %s\n"
"Cosa volete modificare riguardo questa stampante?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "Tipo di connessione della stampante"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "Nome, descrizione, collocazione della stampante"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr "Stampa della(e) pagina(e) di prova"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
msgstr "Sapere come usare questa stampante"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "Rimuovi stampante"
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2857
+#, fuzzy, c-format
+msgid "Removing old printer \"%s\"..."
msgstr "Sto rimuovendo la vecchia stampante \"%s\" ..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Stampante predefinita"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Volete davvero rimuovere la stampante \"%s\"?"
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2909
+#, fuzzy, c-format
+msgid "Removing printer \"%s\"..."
msgstr "Sto rimuovendo la stampante \"%s\" ..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -8815,24 +9005,64 @@ msgstr "Le password non corrispondono. Prova ancora!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Non posso aggiungere una partizione a _RAID_ formattato md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Non posso scrivere il file %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid fallito"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid fallito (forse manca raidtools?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Non ci sono abbastanza partizioni per RAID livello %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Questo livello va usato con cura. Rende il sistema piů facile da usare,\n"
+"ma molto delicato: non deve essere usato per una macchina connessa ad altre\n"
+"o a Internet. Non c'č nessun accesso con password."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+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 ""
+"Con questo livello di sicurezza, l'uso di questo sistema come server "
+"diventa\n"
+"possibile. La sicurezza č ora abbastanza alta per consentire l'utilizzo\n"
+"del sistema come server che accetta connessioni da molti clienti. Nota: se "
+"la vostra\n"
+"macchina č un semplice cliente su Internet, fareste meglio a scegliere un "
+"livello\n"
+"piů basso."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "Opzioni avanzate"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Opzioni"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Lancia il sistema audio ALSA (Advanced Linux Sound Architecture)"
@@ -8893,7 +9123,7 @@ msgstr ""
"HardDrake esegue un'indagine riguardo l'hardware, e opzionalmente\n"
"configura l'hardware nuovo/cambiato."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8968,7 +9198,7 @@ msgstr ""
"Linux Virtual Server, usato per impostare un server ad alte prestazioni\n"
"e alta disponibilitŕ."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -9046,7 +9276,7 @@ msgstr ""
"come NFS e NIS. Il server portmap deve essere in esecuzione su macchine che\n"
"agiscono come server per protocolli che fanno uso di meccanismi RPC."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -9141,7 +9371,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "Sistema"
@@ -9255,6 +9485,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
msgstr "Centro di Controllo Mandrake"
@@ -9353,6 +9584,15 @@ msgstr ""
msgid "Installing packages..."
msgstr "Installazione dei pacchetti ..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Per favore esci e usa Ctrl-Alt-Backspace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Per favore rientra come %s per attivare le modifiche"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -9361,6 +9601,160 @@ msgstr ""
"Non posso leggere la tua tabella delle partizioni, č troppo\n"
"corrotta per me :( . Proverň a cancellare le partizioni rovinate."
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Configurazione della stampante a trasferimento"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Server di database"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Server di database"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "Server NIS"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "Server NIS"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Aggiungi utente"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "Cliente DHCP"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Aiuto"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Non connesso"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Cancella"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Tutti selezionati"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Aggiungi utente"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "Cliente DHCP"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Sto configurando..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "riconfigura"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Per favore inserisci il floppy di avvio utilizzato nel drive %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Nessun drive floppy disponibile"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "Errore!"
@@ -9399,6 +9793,11 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Sto creando il floppy di auto installazione"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -9407,44 +9806,37 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Congratulazioni!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr "Installazione automatica"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr "Aggiungi una voce"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr "Rimuovi l'ultima voce"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr "***********************************************************************\n"
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9452,18 +9844,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9471,58 +9852,81 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr "progresso totale"
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr "Backup dei file di sistema..."
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
msgstr "File di backup su disco rigido..."
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
msgstr "Backup dei file dell'utente"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr "Progresso del backup del disco rigido..."
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
msgstr "Backup di altri file"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
-" "
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:880
+#, fuzzy, c-format
+msgid ""
+"file list sent by FTP : %s\n"
+" "
+msgstr "trasmissione file via FTP"
+
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "Errore leggendo il file %s"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
msgstr "Selezione file"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr "Selezionate i file e le directory e cliccate su 'Aggiungi'"
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -9530,7 +9934,7 @@ msgstr ""
"\n"
"Per favore abilitate tutte le opzioni necessarie\n"
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
@@ -9538,19 +9942,19 @@ msgstr ""
"nella\n"
"vostra directory /etc.\n"
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr "Backup dei vostri file di sistema (directory /etc)"
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr "Usa backup incrementali (non sostituire i vecchi backup)"
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Non includere file critici (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -9558,81 +9962,75 @@ msgstr ""
"Grazie a questa opzione sarete in grado di ripristinare ogni versione della\n"
"vostra directory /etc."
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
msgstr "Per favore scegli tutti gli utenti che vuoi includere nel backup"
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr "Non includere la cache del navigatore"
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Usa backup incrementali (non sostituire i vecchi backup)"
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
msgstr "Rimuovi quelli selezionati"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr "Utenti"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Usa unitŕ a nastro per effettuare il backup"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
msgstr "Per favore inserisci il nome dell'host o l'IP"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
-msgstr ""
+msgstr "Per favore, indicate la directory in cui sono archiviati i backup"
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
msgstr "Per favore inserisci il tuo nomei di login"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
msgstr "Per favore inserisci la tua password"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
msgstr "Ricorda questa password"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "Connessione FTP"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Connessione sicura"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
msgstr "Per favore, scegliete lo spazio su CD"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
msgstr "Per favore, accertatevi di usare supporti CD-RW"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
@@ -9640,7 +10038,7 @@ msgstr ""
"Per favore, controllate se volete includere\n"
"il boot di install sul CD"
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -9648,16 +10046,21 @@ msgstr ""
"Per favore, inserite il numero che identifica il vostro masterizzatore\n"
"ad esempio: 0,1,0"
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
msgstr "Usa unitŕ a nastro per effettuare il backup"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr "Per favore, inserite il nome del dispositivo da usare per il backup"
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Per favore scegli tutti gli utenti che vuoi includere nel backup"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -9665,51 +10068,57 @@ msgstr ""
"Per favore, indicate le dimensioni massime\n"
"concesse a Drakbackup"
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
+#: ../../standalone/drakbackup_.c:1497
+#, fuzzy
+msgid "Please enter the directory to save to:"
msgstr "Per favore inserisci la directory da salvare:"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
msgstr "Usa una quota per i file di backup."
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
msgstr "Rete"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
-msgstr "CDROM / DVDROM"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr "Disco rigido  / NFS"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Tipo"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr "ogni ora"
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr "ogni giorno"
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr "settimanale"
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr "ogni mese"
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
msgstr "Usa demone"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -9717,7 +10126,7 @@ msgstr ""
"Per favore, scegli la frequenza\n"
"del backup"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
@@ -9725,72 +10134,68 @@ msgstr ""
"Per favore, scegli il supporto\n"
"del backup"
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Usa disco rigido con il demone"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "Usa FTP con il demone"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+#, fuzzy
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
"Per favore, accertatevi che il demone cron sia incluso fra i servizi attivi"
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr "Dopo ogni backup invia una mail rapporto a:"
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "Cosa"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "Dove"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "Quando"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
msgstr "Altre opzioni"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
msgstr "Configurazione di Drakbackup"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
msgstr "Per favore scegliete dove volete effettuare il backup"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr "sul disco rigido"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr "sulla rete"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
msgstr "Per favore scegliete i pacchetti che volete installare."
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
msgstr "Sistema di backup"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr "Fai il backup degli utenti"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr "Seleziona l'utente manualmente"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
@@ -9798,7 +10203,7 @@ msgstr ""
"\n"
"Fonti del backup: \n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
@@ -9806,7 +10211,7 @@ msgstr ""
"\n"
"- File di sistema:\n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
@@ -9814,7 +10219,7 @@ msgstr ""
"\n"
"- File degli utenti:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
@@ -9822,7 +10227,7 @@ msgstr ""
"\n"
"- Altri file:\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
@@ -9831,16 +10236,45 @@ msgstr ""
"\n"
"- Salva su disco rigido seguendo il percorso: %s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Dispositivo del mouse: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"- Salva via FTP sull'host: %s\n"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
"\n"
"- Salva via FTP sull'host: %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -9849,7 +10283,7 @@ msgstr ""
"\t\t nome utente: %s\n"
"\t\t sul percorso: %s \n"
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
@@ -9857,186 +10291,203 @@ msgstr ""
"\n"
"-Opzioni:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr "\tNon includere file di sistema\n"
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr "\tEffettua backup usando tar e bzip2\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr "\tI backup fanno uso di tar e gzip\n"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr "\t-Disco rigido.\n"
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr "\t-Rete via FTP.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr "\t-Rete via SSH.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t-Rete via FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t-Rete via FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
"Nessun file di configurazione, per favore cliccate su Assistente o "
"Avanzato.\n"
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr "Lista di dati da ripristinare:\n"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr "Lista di dati corrotti:\n"
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
msgid "Please uncheck or remove it on next time."
msgstr "Per favore scegliete a che porta seriale č connesso il vostro modem."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr "I file di backup sono corrotti"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr "          Tutti i dati selezionati sono stati          "
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr "          Ripristinati con successo su %s       "
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
msgid " Restore Configuration "
msgstr "         Ripristina configurazione       "
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr "OK al ripristino degli altri file"
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Lista degli utenti da ripristinare (solo la data piů recente per utente č "
"importante)"
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
msgstr "Effettua il backup dei file di sistema prima di:"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
msgid "please choose the date to restore"
msgstr "Per favore, scegliete la data da ripristinare"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
msgstr "Usa il disco rigido per effettuare il backup"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+msgid "Please enter the directory to save:"
+msgstr "Per favore inserisci la directory da salvare:"
+
+#: ../../standalone/drakbackup_.c:2416
+msgid "FTP Connection"
+msgstr "Connessione FTP"
+
+#: ../../standalone/drakbackup_.c:2424
+msgid "Secure Connection"
+msgstr "Connessione sicura"
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
msgstr "Ripristina da disco rigido"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr "Per favore, indicate la directory in cui sono archiviati i backup"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
msgstr "Scegliete un altro supporto dal quale effettuare il ripristino"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
msgid "Other Media"
msgstr "Altri supporti"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
msgid "Restore system"
msgstr "Ripristina sistema"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
msgstr "Ripristina utenti"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
msgstr "Ripristina altro"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr "selezionate il percorso del ripristino (invece di / )"
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Effettua nuovo backup prima del ripristino (solo per backup incrementali)."
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr "Rimuovi le directory dell'utente prima del ripristino."
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr "Ripristina tutti i backup"
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
msgid "Custom Restore"
msgstr "Personalizza il ripristino"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Aiuto"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "Precedente"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "Salva"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
msgstr "Costruisci backup"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
msgstr "Ripristina"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "Successivo"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -10044,7 +10495,7 @@ msgstr ""
"Per favore fai un backup prima di ripristinarlo...\n"
" o verifica che il percorso alla directory di salvataggio č corretto."
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
@@ -10054,31 +10505,35 @@ msgstr ""
" la vostra mail di report non č stata inviata\n"
" Per favore configurate sendmail"
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Lista dei pacchetti da installare"
+#: ../../standalone/drakbackup_.c:2933
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "I seguenti pacchetti stanno per essere installati"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
+#, fuzzy
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
"Errore nella trasmissione del file via FTP.\n"
" Per favore, controllate la configurazione FTP."
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
msgstr "Per favore, scegliete il tipo del vostro mouse."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
msgstr "Per favore, scegliete il tipo del vostro mouse."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
msgstr "Per favore, scegliete il tipo del vostro mouse."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10086,77 +10541,77 @@ msgstr ""
"Nessun file di configurazione trovato\n"
"per favore cliccate su Assistente o Avanzato"
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr "Ancora in sviluppo ... attendere per favore."
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
msgid "Backup system files"
msgstr "Backup dei file di sistema"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
msgid "Backup user files"
msgstr "Backup dei file degli utenti"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
msgid "Backup other files"
msgstr "Backup di altri file"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr "Progresso totale"
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr "trasmissione file via FTP"
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
msgid "Sending files..."
msgstr "Sto inviando i file ..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr "Lista di dati da includere su CDROM."
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
msgid "Please enter the cd writer speed"
msgstr "Per favore, insersci la velocitŕ del masterizzatore"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
"Per favore inserite il numero che identifica il vostro masterizzatore (es.: "
"0,1,0)"
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
msgstr "Per favore scegliete i pacchetti che volete installare."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
msgid "Backup Now from configuration file"
msgstr "Effettua il backup adesso sulla base del file di configurazione"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
msgid "View Backup Configuration."
msgstr "Vedi la configurazione di backup"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
msgid "Wizard Configuration"
msgstr "Configurazione dell'assistente"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
msgid "Advanced Configuration"
msgstr "Configurazione avanzata"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
msgstr "Effettua il backup adesso"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -10188,7 +10643,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10201,7 +10656,7 @@ msgstr ""
"un'errata configurazione di postfix. Per risolvere il problema\n"
"dovete indicare ilmionomehost o ilmiodominio in /etc/postfix/main.cf\n"
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -10242,7 +10697,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -10270,13 +10725,18 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10293,7 +10753,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -10333,7 +10793,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -10344,7 +10804,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10357,7 +10817,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -10401,99 +10861,531 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Installazione di %s fallita. Si č verificato il seguente errore:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Programmi da linea di comando"
+
+#: ../../standalone/drakbug_.c:53
+#, fuzzy
+msgid "HardDrake"
+msgstr "sul disco rigido"
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "Centro di Controllo Mandrake"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "Tasto \"Menu\""
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Mouse"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Stampante remota"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Nome di condivisione"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "PrinterDrake"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Wizard della configurazione di rete"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Autenticazione"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Selezione pacchetti"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Attendere prego"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Post-disinstallazione"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "Porta"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Dopo 'installazione degli screenshot saranno disponibili in %s"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Configurazione della rete (%d adattatori)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profilo: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Cancella profilo..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Profilo da cancellare:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Nuovo profilo..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Nome del profile da creare (il nuovo profilo verrŕ creato come copia di "
+"quello attuale):"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Nome host: "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Accesso a Internet"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Tipo:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Gateway:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Interfaccia:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Status:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "Attendere per favore"
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Configura l'accesso a Internet"
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "Configurazione LAN (rete locale)"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Driver"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Interfaccia"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protocollo"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Stato"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Configura rete locale (LAN)"
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "Cliccate qui per lanciare l'assistente ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Assistente..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Applica"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Per favore attendi... sto applicando la configurazione"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Connesso"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Non connesso"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Connetti..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Disconnetti..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+"Attenzione, č stata individuata un'altra connessione a Internet, forse "
+"attraverso la vostra rete locale"
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Non disponi di nessuna interfaccia configurata.\n"
+"Per prima cosa configurale cliccando su 'Configura'"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "Configurazione rete locale (LAN)"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Adattatore %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Protocollo di boot"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Attivato/a al momento del boot"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "Cliente DHCP"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "attivare adesso"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "disattivare adesso"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Questa interfaccia non č stata ancora configurata.\n"
+"Lanciate l'assistente di configurazione nella finestra principale."
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Non disponi di una connessione a Internet.\n"
+"Creane una cliccando su 'Configura'"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Configurazione della connessione a Internet"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Configurazione della connessione a Internet"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Tipo di connessione: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parametri"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Gateway"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Scheda ethernet"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "Cliente DHCP"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "uso: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Nome modulo"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Dimensione"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "creazione disco di avvio"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "predefinito"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Errore DrakFloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "versione del kernel"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Generale"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Area per esperti"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "Argomenti opzionali per mkinitrd"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Aggiungi un modulo"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "forza"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "se necessario"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "ometti moduli scsi"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "ometti moduli raid"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Rimuovi un modulo"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Output"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Crea il disco"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Assicurati che un supporto sia inserito nel dispositivo %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"Il dispositivo %s č vuoto \n"
+"Inserisci un supporto."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Impssibile eseguire la chiamata fork: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Non č stato possibile chiudere normalmente mkbootdisk: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr "Cerca fonti installate"
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr "Deseleziona fonti installate"
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr "esamina tutti i font"
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
msgid "no fonts found"
msgstr "nessun font trovato"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "fatto"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr "non ho trovato nessun font nelle partizioni montate"
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr "Ri-selezionate i font corretti"
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr "non ho trovato nessun font.\n"
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr "Cerca font nella lista installati"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr "Copia i font"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
msgid "True Type fonts installation"
msgstr "Installazione di font True Type"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr "per favore attendere mentre eseguo ttmkfdir..."
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr "Installazione font True Type effettuata"
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr "Conversione font"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr "sto costruendo type1inst"
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr "conversione font ttf"
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr "conversione font pfm"
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr "Soppressione file temporanei"
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr "Riavvia XFS"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr "Soppressione file dei font"
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
msgid "xfs restart"
msgstr "riavvia xfs"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10507,107 +11399,107 @@ msgstr ""
"-Potete installare i font nel modo normale. In casi piuttosto rari, dei font "
"corrotti potrebbero bloccare il vostro server X."
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
msgid "Fonts Importation"
msgstr "Importazione font"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr "Prendi i font di Windows"
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr "Disintallazione font"
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Opzioni avanzate"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
msgstr "Lista font"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
msgid "Choose the applications that will support the fonts :"
msgstr "Scegliete le applicazioni che supporteranno i font:"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
msgstr "Stampanti generiche"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr "Selezionate il file o la directory del font e cliccate su 'Aggiungi'"
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
msgstr "Lista di installazione"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr "cliccate qui se ne siete sicuri."
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr "qui in caso contrario."
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr "Deseleziona tutto"
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
msgid "Selected All"
msgstr "Tutti selezionati"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
msgstr "Rimuovi lista"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr "Test iniziali"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
msgstr "Copia i font sul tuo sistema"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr "Installa e converti i font"
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
msgid "Post Install"
msgstr "Post-installazione"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
msgstr "Rimuovi i font dal tuo sistema"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
msgid "Post Uninstall"
msgstr "Post-disinstallazione"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Condivisione connessione Internet"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Condivisione della connessione a Internet attualmente abilitata"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10619,31 +11511,31 @@ msgstr ""
"\n"
"Cosa vorresti fare?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "disabilita"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "abbandona"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "riconfigura"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Sto disattivando i server..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "La condivisione della connessione a Internet ora č disabilitata."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Condivisione connessione Internet attualmente disabilitata"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10655,19 +11547,19 @@ msgstr ""
"\n"
"Cosa vorresti fare?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "abilita"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Sto attivando i server..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "La condivisione della connessione a Internet ora č abilitata."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10684,21 +11576,21 @@ msgstr ""
"Nota: č necessario un Adattatore di Rete dedicato per realizzare una\n"
"Rete di Area Locale (LAN)."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interfaccia %s (usa il modulo %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Interfaccia %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Nessun adattatore di rete nel tuo sistema!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10706,11 +11598,11 @@ msgstr ""
"Nessun adattatore di rete ethernet č stato rilevato nel tuo sistema. Per "
"favore lancia l'utilitŕ di configurazione hardware."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Interfaccia di rete"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10725,7 +11617,7 @@ msgstr ""
"\n"
"Sto per configurare la tua rete locale (LAN) usando quell'adattatore."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -10733,11 +11625,11 @@ msgstr ""
"Per favore scegliete quale adattatore di rete sarŕ connesso alla vostra rete "
"locale (LAN)."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr "Interfaccia di rete giŕ configurata"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10752,15 +11644,15 @@ msgstr ""
"\n"
"Potete farlo manualmente se sapete quello che state facendo."
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr "Riconfigurazione automatica"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr "Mostra la configurazione dell'interfaccia corrente"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10777,7 +11669,7 @@ msgstr ""
"Attribuzione IP: %s\n"
"Driver: %s"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
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 C-Class Network that "
@@ -10797,34 +11689,34 @@ msgstr ""
"In alternativa, posso riconfigurare la vostra interfaccia di rete e (ri)"
"configurare un server DHCP per voi.\n"
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr "Rete locale di classe C"
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr "IP di (questo) server DHCP"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr "Riconfigurazione dell'interfaccia di rete e del server DHCP"
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "La rete locale non terminava con `.0', rinuncio."
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Trovato conflitto potenziale dell'indirizzo LAN nella configurazione "
"corrente di %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Rilevata configurazione di Firewall!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10832,21 +11724,21 @@ msgstr ""
"Attenzione! Č stata rilevata una configurazione di firewall esistente. "
"Potrebbe avere bisogno di alcuni aggiustamenti manuali dopo l'installazione."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Sto configurando..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Sto configurando gli script, installando il software, avviando i server..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Problemi nell'installazione del pacchetto %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10856,24 +11748,24 @@ msgstr ""
"Ora puoi condividere la connessione a Internet con altri computers sulla tua "
"rete locale (LAN) usando la configurazione di rete automatica (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "Il setup č giŕ stato fatto, ma č attualmente disabilitato."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Il setup č giŕ stato fatto, ed č attualmente abilitato."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr ""
"Nessuna condivisione della connessione a Internet configurata in precedenza."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Configurazione della connessione a Internet"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10888,216 +11780,6 @@ msgstr ""
"\n"
"Cliccate su ``Configura'' se volete lanciare il Wizard di configurazione."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Configurazione della rete (%d adattatori)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profilo: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Cancella profilo..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Profilo da cancellare:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Nuovo profilo..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Nome del profile da creare (il nuovo profilo verrŕ creato come copia di "
-"quello attuale):"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Nome host: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Accesso a Internet"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tipo:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Interfaccia:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Attendere per favore"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Configura l'accesso a Internet"
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Configurazione LAN (rete locale)"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Driver"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interfaccia"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protocollo"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Stato"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Configura rete locale (LAN)"
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Cliccate qui per lanciare l'assistente ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Assistente..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Applica"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Per favore attendi... sto applicando la configurazione"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Connesso"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Non connesso"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Connetti..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Disconnetti..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Attenzione, č stata individuata un'altra connessione a Internet, forse "
-"attraverso la vostra rete locale"
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Non disponi di nessuna interfaccia configurata.\n"
-"Per prima cosa configurale cliccando su 'Configura'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Configurazione rete locale (LAN)"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adattatore %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Protocollo di boot"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Attivato/a al momento del boot"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "Cliente DHCP"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "attivare adesso"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "disattivare adesso"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Questa interfaccia non č stata ancora configurata.\n"
-"Lanciate l'assistente di configurazione nella finestra principale."
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Non disponi di una connessione a Internet.\n"
-"Creane una cliccando su 'Configura'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Configurazione della connessione a Internet"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Configurazione della connessione a Internet"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Tipo di connessione: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametri"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Scheda ethernet"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "Cliente DHCP"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Sto settando il livello di sicurezza"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Centro di Controllo"
@@ -11106,89 +11788,128 @@ msgstr "Centro di Controllo"
msgid "Choose the tool you want to use"
msgstr "Scegliete l'utilitŕ che volete usare"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\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 ""
+
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
msgstr "Canada (cavo)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+#, fuzzy
+msgid "USA (broadcast)"
msgstr "USA (bcast)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr "USA (cavo)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr "USA (cavo-hrc)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "China (broadcast)"
msgstr "Cina (bcast)"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "Japan (broadcast)"
msgstr "Giappone (bcast)"
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr "Giappone (cavo)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
msgstr "Europa Orientale"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Francia"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
msgstr "Irlanda"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
msgstr "Europa Occidentale"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
msgstr "Australia"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr "Nuova Zelanda"
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr "Sud Africa"
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr "Argentina"
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr "Per favore, digitate il vostro standard tv e la nazione"
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr "Standard TV:"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr "Area:"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr "Ricerca di canali TV in corso ..."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr "Sto cercando canali TV"
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "C'č stato un errore installando i pacchetti:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -11235,7 +11956,7 @@ msgstr ""
"Il cambiamento č stato applicato, ma perché diventi effettivo dovete uscire "
"dalla sessione"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -11269,7 +11990,7 @@ msgstr "<control>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
-msgstr "/File/Save _come"
+msgstr "/File/Salva_Come"
#: ../../standalone/logdrake_.c:106
msgid "/File/-"
@@ -11281,15 +12002,11 @@ msgstr "/_Opzioni"
#: ../../standalone/logdrake_.c:109
msgid "/Options/Test"
-msgstr "/Opzioni/Test"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Guida"
+msgstr "/Opzioni/Prova"
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
-msgstr "/Aiuto/_Riguardo..."
+msgstr "/Guida/_Informazioni su..."
#: ../../standalone/logdrake_.c:118
msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
@@ -11347,7 +12064,7 @@ msgstr "calendario"
msgid "Content of the file"
msgstr "Contenuto del file"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr "Notifica Mail/SMS"
@@ -11356,11 +12073,11 @@ msgstr "Notifica Mail/SMS"
msgid "please wait, parsing file: %s"
msgstr "aspetta, sto analizzando: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
msgstr "Configurazione di avvisi email/SMS"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
@@ -11370,64 +12087,96 @@ msgstr ""
"\n"
"Qui potrai configurare il sistema di avvisi.\n"
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "Proftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Nome dominio"
#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
+#, fuzzy
+msgid "Ftp Server"
+msgstr "Server NIS"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Server di posta Postfix, server di news Inn"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "Server NIS"
#: ../../standalone/logdrake_.c:422
+#, fuzzy
+msgid "SSH Server"
+msgstr "Server NIS"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Servizi"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Server della stampante"
+
+#: ../../standalone/logdrake_.c:431
msgid "service setting"
msgstr "configurazione servizio"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
"Verrete avvisati se uno dei servizi selezionati non č piů in esecuzione"
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
msgstr "carica configurazione"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr "Riceverete una notifica se il carico eccede questo valore"
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
msgstr "configurazione avvisi"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr "Configurazione del modo in cui il sistema vi avvertirŕ"
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Salva con nome..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Per favore, scegliete il tipo del vostro mouse."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "nessun serial_usb trovato\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Emula il terzo pulsante?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Sto leggendo i dati della stampante..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "Riconoscimento periferiche ..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -11473,6 +12222,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "Configurazione del firewall!"
@@ -11881,10 +12642,6 @@ msgid "Multimedia - Sound"
msgstr "Multimedia - Suono"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Programmi di utilitŕ"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Documentazione"
@@ -11989,10 +12746,6 @@ msgstr ""
"per navigare il Web"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Archiviazione, emulatori, monitoraggio"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Finanza Personale"
@@ -12039,3 +12792,187 @@ msgstr "Multimedia - Masterizzazione CD"
#: ../../share/compssUsers:999
msgid "Scientific Workstation"
msgstr "Workstation scientifica"
+
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "fsck č fallito con codice di uscita %d o segnale %d"
+
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Identificazione scheda grafica: %s\n"
+
+#~ msgid "Choose options for server"
+#~ msgstr "Scegli le opzioni per il server"
+
+#~ msgid "Monitor not configured"
+#~ msgstr "Monitor non configurato"
+
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Scheda grafica non ancora configurata"
+
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Risoluzioni non ancora selezionate"
+
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "prova a modificare alcuni parametri"
+
+#~ msgid "An error occurred:"
+#~ msgstr "Si č verificato un errore:"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Uscita in %d secondi"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Č il settaggio corretto?"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Si č verificato un errore, prova a modificare alcuni parametri"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "Server XFree86: %s"
+
+#~ msgid "Show all"
+#~ msgstr "Mostra tutto"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Sto preparando la configurazione di X-Window"
+
+#~ msgid "What do you want to do?"
+#~ msgstr "Cosa vuoi fare?"
+
+#~ msgid "Change Monitor"
+#~ msgstr "Cambia monitor"
+
+#~ msgid "Change Graphics card"
+#~ msgstr "Cambia scheda grafica"
+
+#~ msgid "Change Server options"
+#~ msgstr "Cambia opzioni server"
+
+#~ msgid "Change Resolution"
+#~ msgstr "Cambia risoluzione"
+
+#~ msgid "Show information"
+#~ msgstr "Mostra informazioni"
+
+#~ msgid "Test again"
+#~ msgstr "Nuovo test"
+
+#~ msgid "Use Hard Drive with daemon"
+#~ msgstr "Usa disco rigido con il demone"
+
+#~ msgid "Use FTP with daemon"
+#~ msgstr "Usa FTP con il demone"
+
+#~ msgid "Package List to Install"
+#~ msgstr "Lista dei pacchetti da installare"
+
+#~ msgid "proftpd"
+#~ msgstr "Proftpd"
+
+#~ msgid "sshd"
+#~ msgstr "sshd"
+
+#~ msgid "webmin"
+#~ msgstr "webmin"
+
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
+
+#~ msgid "Setting security level"
+#~ msgstr "Sto settando il livello di sicurezza"
+
+#~ msgid "Graphics card"
+#~ msgstr "Scheda grafica"
+
+#~ msgid "Select a graphics card"
+#~ msgstr "Scegli una scheda grafica"
+
+#~ msgid "Choose a X driver"
+#~ msgstr "Scegli un driver X"
+
+#~ msgid "X driver"
+#~ msgstr "Driver X"
+
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "Attenzione: il test di questa scheda video puň bloccare il computer"
+
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "VGA standard, 640x480 a 60 Hz"
+
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 a 56 Hz"
+
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "Compatibile 8514, 1024x768 a 87 Hz interlacciato (no 800x600)"
+
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 a 87 Hz interlacciato, 800x600 a 56 Hz"
+
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Super VGA estesa, 800x600 a 60 Hz, 640x480 a 72 Hz"
+
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "SVGA non-interlacciato, 1024x768 a 60 Hz, 800x600 a 72 Hz"
+
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "SVGA alta frequenza, 1024x768 a 70 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Multi-frequenza che raggiunge 1280x1024 a 60 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Multi-frequenza che raggiunge 1280x1024 a 74 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Multi-frequenza che raggiunge 1280x1024 a 76 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Monitor che raggiunge 1600x1200 a 70 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Monitor che raggiunge 1600x1200 a 76 Hz"
+
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr ""
+#~ "La dimensione totale dei gruppi da te scelti č approssimativamente %d "
+#~ "Mb.\n"
+
+#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
+#~ msgstr ""
+#~ "Se desideri installare occupando una quantitŕ di spazio minore,\n"
+#~ "scegli la percentuale dei pacchetti che vuoi installare.\n"
+#~ "\n"
+#~ "Una bassa percentuale installerŕ solo i pacchetti piů importanti;\n"
+#~ "una percentuale del 100%% installerŕ tutti i pacchetti scelti."
+
+#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
+#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
+#~ msgstr ""
+#~ "Hai spazio sul tuo disco rigido solo per %d%% di questi pacchetti.\n"
+#~ "\n"
+#~ "Scegli una percentuale dei pacchetti che vuoi installare.\n"
+#~ "Una bassa percentuale installerŕ solo i pacchetti piů importanti;\n"
+#~ "una percentuale del %d%% installerŕ tutti i pacchetti possibili."
+
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Potrai scegliere piů specificatamente nella prossima fase."
+
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Percentuale dei pacchetti da installare"
+
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Scegli livello di sicurezza"
diff --git a/perl-install/share/po/ja.po b/perl-install/share/po/ja.po
index 6a886fa7d..b2b71d575 100644
--- a/perl-install/share/po/ja.po
+++ b/perl-install/share/po/ja.po
@@ -1,45 +1,67 @@
-# DrakX Japanese Translation.
-# ĄÖĄ×ĄČĄÉ
-# for Japanese text use ĄÖ and Ą× instead of ugly \" and \"
-# for ascii text in the transltion you can also useĄČ and ĄÉ
-# also, even if the English text has no lineabreak ( \n ) at
-# all, you must add some if the Japanese text is too long,
-# because the current toolkits are unable to wordwrap Japanese
-# text due to the lack of word delimiters.
-#
-# Copyright (c) 1999 MandrakeSoft
-# Junichi Kimura <jun@kde.gr.jp>, 1999-2000
-# YAMAGATA Hiroo <hiyori13@alum.mit.edu>, 1999-2002
+# Drakbootdisk Japanese translation
+# Copyright (C) 2000 Free Software Foundation, Inc.
+# YAMAGATA Hiroo <hiyori13@alum.mit.edu>, 2000.
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 1999-12-10 16:27+0100\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2000-07-05 15:44+0200\n"
"Last-Translator: YAMAGATA Hiroo <hiyori13@alum.mit.edu>\n"
-"Language-Team: Japanese\n"
+"Language-Team: Japanese <ja@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=euc-jp\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "ĽŘĽĂĽÉ¤ň¤˝¤ě¤ž¤ěĆČΊ¤ËŔßÄę"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 KB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Xinerama łČÄĽ¤ňťČ¤Ś"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 KB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "°Ę˛ź¤ÎĽŤĄźĽÉ¤Ŕ¤ą¤ňŔßÄꥧ ĄČ%sĄÉ(%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB °Ęžĺ"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "X ĽľĄźĽĐ¤ňÁޤó¤Ç˛ź¤ľ¤¤"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X ĽľĄźĽĐ"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "ĽŢĽëĽÁĽŘĽĂĽÉŔßÄę"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -47,41 +69,44 @@ msgstr ""
"¤˘¤Ę¤ż¤ÎĽˇĽšĽĆĽŕ¤ĎĽŢĽëĽÁĽŘĽĂĽÉ¤ÎŔßÄꤏ¤Ç¤­¤Ţ¤šĄŁ\n"
"¤É¤Ś¤ˇ¤Ţ¤š¤ŤĄŠ"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Ľ°ĽéĽŐĽŁĽĂĽŻĽŤĄźĽÉ"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Ľ°ĽéĽŐĽŁĽĂĽŻĽŤĄźĽÉ¤ÎĽáĽâĽęĽľĽ¤Ľş¤ňÁŞÂň¤ˇ¤Ć˛ź¤ľ¤¤"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Ľ°ĽéĽŐĽŁĽĂĽŻĽŤĄźĽÉ¤ňÁŞÂň¤ˇ¤Ć˛ź¤ľ¤¤"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "XFree¤ÎŔßÄę"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "X ĽľĄźĽĐ¤ňÁޤó¤Ç˛ź¤ľ¤¤"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "¤É¤Îš˝ŔŽ¤ÎXFree ¤Ë¤ˇ¤Ţ¤š¤Ť"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X ĽľĄźĽĐ"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "ĽŘĽĂĽÉ¤ň¤˝¤ě¤ž¤ěĆČΊ¤ËŔßÄę"
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "X ĽÉĽéĽ¤ĽĐ¤ňÁޤó¤Ç˛ź¤ľ¤¤"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Xinerama łČÄĽ¤ňťČ¤Ś"
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "X ĽÉĽéĽ¤ĽĐ"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "°Ę˛ź¤ÎĽŤĄźĽÉ¤Ŕ¤ą¤ňŔßÄꥧ ĄČ%sĄÉ(%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "¤É¤Îš˝ŔŽ¤ÎXFree ¤Ë¤ˇ¤Ţ¤š¤Ť"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "ĽĎĄźĽÉĽŚĽ§Ľ˘3DĽ˘ĽŻĽťĽéĽěĄźĽˇĽçĽó¤Ä¤­¤ÎXFree %s"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -90,32 +115,17 @@ msgstr ""
"¤ł¤ÎĽŤĄźĽÉ¤ĎXFree %s ¤Ç¤Î¤ß3DĽ˘ĽŻĽťĽéĽěĄźĽˇĽçĽó˛ÄÇ˝¤Ç¤šĄŁ\n"
"XFree %s ¤Ç¤Î¤ł¤ÎĽŤĄźĽÉ¤ÎĽľĽÝĄźĽČ¤ĎĄ˘2D ¤Î¤Ű¤Ś¤Ź¤š¤°¤ě¤Ć¤¤¤Ţ¤šĄŁ"
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "¤ł¤ÎĽŤĄźĽÉ¤ĎXFree %s ¤Ç3DĽ˘ĽŻĽťĽéĽěĄźĽˇĽçĽó˛ÄÇ˝¤Ç¤šĄŁ"
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "ĽĎĄźĽÉĽŚĽ§Ľ˘3DĽ˘ĽŻĽťĽéĽěĄźĽˇĽçĽó¤Ä¤­¤ÎXFree %s"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"¤ł¤ÎĽŤĄźĽÉ¤ĎXFree %s ¤Ç3DĽ˘ĽŻĽťĽéĽěĄźĽˇĽçĽó˛ÄÇ˝¤Ç¤šĄŁ\n"
-"¤ż¤Ŕ¤ˇ¤˘¤Ż¤Ţ¤ÇĄ˘źÂ¸łĹŞ¤ĘĽľĽÝĄźĽČ¤ÇĄ˘ĽŢĽˇĽóĽŐĽęĄźĽş¤Î˛ÄÇ˝Ŕ­¤Ź¤˘¤ę¤Ţ¤šĄŁ"
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "źÂ¸łĂĘłŹ¤ÎĽĎĄźĽÉĽŚĽ§Ľ˘3DĽ˘ĽŻĽťĽéĽěĄźĽˇĽçĽó¤Ä¤­¤ÎXFree %s"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -126,31 +136,58 @@ msgstr ""
"¤ż¤Ŕ¤ˇ¤˘¤Ż¤Ţ¤ÇĄ˘źÂ¸łĹŞ¤ĘĽľĽÝĄźĽČ¤ÇĄ˘ĽŢĽˇĽóĽŐĽęĄźĽş¤Î˛ÄÇ˝Ŕ­¤Ź¤˘¤ę¤Ţ¤šĄŁ\n"
"XFree %s ¤Ç¤Î¤ł¤ÎĽŤĄźĽÉ¤ÎĽľĽÝĄźĽČ¤ĎĄ˘2D ¤Î¤Ű¤Ś¤Ź¤š¤°¤ě¤Ć¤¤¤Ţ¤šĄŁ"
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"¤ł¤ÎĽŤĄźĽÉ¤ĎXFree %s ¤Ç3DĽ˘ĽŻĽťĽéĽěĄźĽˇĽçĽó˛ÄÇ˝¤Ç¤šĄŁ\n"
+"¤ż¤Ŕ¤ˇ¤˘¤Ż¤Ţ¤ÇĄ˘źÂ¸łĹŞ¤ĘĽľĽÝĄźĽČ¤ÇĄ˘ĽŢĽˇĽóĽŐĽęĄźĽş¤Î˛ÄÇ˝Ŕ­¤Ź¤˘¤ę¤Ţ¤šĄŁ"
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (Ľ¤ĽóĽšĽČĄźĽëĽÇĽŁĽšĽ×ĽěĽ¤ĽÉĽéĽ¤ĽĐ)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree¤ÎŔßÄę"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Ľ°ĽéĽŐĽŁĽĂĽŻĽŤĄźĽÉ¤ÎĽáĽâĽęĽľĽ¤Ľş¤ňÁŞÂň¤ˇ¤Ć˛ź¤ľ¤¤"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "ĽľĄźĽĐ¤ÎĽŞĽ×ĽˇĽçĽó¤ňÁޤó¤Ç˛ź¤ľ¤¤"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"ĘŃšš¤ňĘݸ¤ˇ¤Ţ¤š¤Ť?\n"
+"¸˝şß¤ÎŔßÄę¤Ď°Ę˛ź¤ÎÄ̤ę¤Ç¤š:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "ĽâĽËĽż¤ňÁޤó¤Ç˛ź¤ľ¤¤"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "ĽâĽËĽż"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "ĽŤĽšĽżĽŕ"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "ČĆÍŃ"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "¤â¤Č¤ËĚᤚ"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -171,517 +208,331 @@ msgstr ""
"ĽâĽËĽż¤ŹĽŔĽáĄźĽ¸¤ňźő¤ą¤ë¤Ť¤âĂΤě¤Ţ¤ť¤óĄŁ\n"
"ĘŹ¤Ť¤é¤Ę¤¤žěšç¤Ď, Äă¤á¤ÎŔßÄę¤Ë¤ˇ¤Ć˛ź¤ľ¤¤ĄŁ"
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "żĺĘżĽęĽŐĽěĽĂĽˇĽĺĽěĄźĽČ"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "żâÄžĽęĽŐĽěĽĂĽˇĽĺĽěĄźĽČ"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "ĽâĽËĽż¤ŹŔßÄꤾ¤ě¤Ć¤Ţ¤ť¤ó"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Ľ°ĽéĽŐĽŁĽĂĽŻĽŤĄźĽÉ¤ŹŔßÄꤾ¤ě¤Ć¤Ţ¤ť¤ó"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "˛ňÁüĹ٤ŹÁŞÂň¤ľ¤ě¤Ć¤Ţ¤ť¤ó"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "¤ł¤ÎŔßÄę¤Çťî¤ˇ¤Ć¤ß¤Ţ¤š¤ŤĄŠ"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-"ˇŮšđĄ§¤ł¤ÎĽ°ĽéĽŐĽŁĽĂĽŻĽŤĄźĽÉ¤ňĽĆĽšĽČ¤š¤ë¤ČĽŢĽˇĽó¤ŹĽŐĽęĄźĽş¤š¤ë¤Ť¤â¤ˇ¤ě¤Ţ¤ť¤ó"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "ŔßÄę¤ňťî¤ˇ¤Ţ¤š"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 ż§(8 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"¤¤¤Ż¤Ä¤ŤĽŃĽéĽáĄźĽż¤ňĘѤ¨¤Ć¤ß¤Ć¤Ż¤Ŕ¤ľ¤¤"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "3Ëü2Ŕ鿧 (15 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Ľ¨ĽéĄźČŻŔ¸"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "6Ëü5Ŕ鿧 (16 bits)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "¤˘¤Č %d ÉäÇĚá¤ę¤Ţ¤š"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "1600Ëüż§ (24 bits)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "ŔßÄę¤Ď¤ł¤ě¤Ç¤¤¤¤¤Ç¤š¤ŤĄŠ"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "40˛Żż§ (32 bits)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Ľ¨ĽéĄźČŻŔ¸Ą¤¤¤¤Ż¤Ä¤Ť¤ÎĽŃĽéĽáĄźĽż¤ňĘѤ¨¤Ć¤ß¤Ć¤Ż¤Ŕ¤ľ¤¤"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "˛ňÁüĹŮ"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "˛ňÁüĹŮ"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "˛ňÁüĹ٤ȿ§żźĹŮ"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Ľ°ĽéĽŐĽŁĽĂĽŻĽŤĄźĽÉ: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 ĽľĄźĽĐ: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "źĄ"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Ľ­ĽăĽóĽťĽë"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "OK"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Ľ¨Ľ­ĽšĽŃĄźĽČĽâĄźĽÉ"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Á´¤Ć¤ňÉ˝ź¨"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "¤ł¤ÎŔßÄę¤Çťî¤ˇ¤Ć¤ß¤Ţ¤š¤ŤĄŠ"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "˛ňÁüĹŮ"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "ŔßÄę¤ňťî¤ˇ¤Ţ¤š"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Ľ­ĄźĽÜĄźĽÉĽěĽ¤Ľ˘ĽŚĽČ: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "ĽŢĽŚĽš¤ÎźďÎŕ: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "ĽŢĽŚĽšĽÇĽĐĽ¤Ľš: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "ĽâĽËĽż: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "ĽâĽËĽżżĺʿƹ´ü: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "ĽâĽËĽżżâÄžĽęĽŐĽěĽĂĽˇĽĺ: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Ľ°ĽéĽŐĽŁĽĂĽŻĽŤĄźĽÉ: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Ľ°ĽéĽŐĽŁĽĂĽŻĽŤĄźĽÉ id: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Ľ°ĽéĽŐĽŁĽĂĽŻĽáĽâĽę: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "ż§żźĹŮ: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "˛ňÁüĹŮ: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 ĽľĄźĽĐ: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 ĽÉĽéĽ¤ĽĐ: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "X Window System ¤ÎŔßÄę¤Î˝ŕČ÷"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "¤É¤Ś¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "ĽâĽËĽż¤ÎĘŃšš"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Ľ°ĽéĽŐĽŁĽĂĽŻĽŤĄźĽÉ¤ÎĘŃšš"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "ĽľĄźĽĐĽŞĽ×ĽˇĽçĽó¤ÎĘŃšš"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "˛ňÁüĹ٤ÎĘŃšš"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "žđĘó¤ňÉ˝ź¨"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "¤â¤Ś°ě˛óĽĆĽšĽČ"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "˝ŞÎť"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"ĘŃšš¤ňĘݸ¤ˇ¤Ţ¤š¤Ť?\n"
-"¸˝şß¤ÎŔßÄę¤Ď°Ę˛ź¤ÎÄ̤ę¤Ç¤š:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X ¤ÎľŻĆ°"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"ĽłĽóĽÔĽĺĄźĽż¤ňĽÖĄźĽČ¤ˇ¤żťţĄ¤źŤĆ°ĹŞ¤Ë X ¤ŹÎŠ¤Ážĺ¤Ź¤ëŔßÄę¤Ë¤Ç¤­¤Ţ¤šĄŁ\n"
"ĽęĽÖĄźĽČ¤ˇ¤żťţ X ¤ňΊ¤Ážĺ¤˛¤Ţ¤š¤ŤĄŠ"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "ĘŃšš¤ňÍ­¸ú¤Ë¤š¤ë¤Ë¤Ď %s ¤ËĽíĽ°Ľ¤Ľó¤ˇ¤Ę¤Ş¤ˇ¤Ć˛ź¤ľ¤¤"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "ĽíĽ°Ľ˘ĽŚĽČ¤ˇ¤żžĺ¤Ç Ctrl-Alt-BackSpace ¤ň˛Ą¤ˇ¤Ć˛ź¤ľ¤¤"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 ż§(8 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "3Ëü2Ŕ鿧 (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "6Ëü5Ŕ鿧 (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "1600Ëüż§ (24 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "40˛Żż§ (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 KB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 KB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB °Ęžĺ"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "ĽšĽżĽóĽŔĄźĽÉ VGA, 640x480 ¤Ç 60Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "ĽšĄźĽŃĄź VGA, 800x600 ¤Ç 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 ¸ß´š, 1024x768 at 87 Hz Ľ¤ĽóĽżĄźĽěĄźĽš (no 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "ĽšĄźĽŃĄź VGA, 1024x768 ¤Ç 87 Hz Ľ¤ĽóĽżĄźĽěĄźĽš, 800x600 ¤Ç 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "łČÄĽ ĽšĄźĽŃĄź VGA, 800x600 ¤Ç 60 Hz, 640x480 ¤Ç 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "1024x768 at 60 Hz, 800x600 at 72 Hz¤ÎĽÎĽóĽ¤ĽóĽżĄźĽěĽšSVGA"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "1280x1024 at 70 Hz¤ÎHigh Frequency SVGA"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "1280x1024 at 60 Hz¤Ź˛ÄÇ˝¤ĘĽŢĽëĽÁĽšĽ­ĽăĽóĽâĽËĽż"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "1280x1024 at 74 Hz¤Ź˛ÄÇ˝¤ĘĽŢĽëĽÁĽšĽ­ĽăĽóĽâĽËĽż"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "1280x1024 at 76 Hz¤Ź˛ÄÇ˝¤ĘĽŢĽëĽÁĽšĽ­ĽăĽóĽâĽËĽż"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "1600x1200 at 70 Hz ¤Ź˛ÄÇ˝¤ĘĽâĽËĽż"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "1600x1200 at 76 Hz ¤Ź˛ÄÇ˝¤ĘĽâĽËĽż"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "ĽÖĄźĽČĽŃĄźĽĆĽŁĽˇĽçĽó¤ÎşÇ˝é¤ÎĽťĽŻĽż"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "ĽÉĽéĽ¤ĽÖ¤ÎşÇ˝é¤ÎĽťĽŻĽż (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "SILO ¤ÎĽ¤ĽóĽšĽČĄźĽë"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "ĽÖĄźĽČĽíĄźĽŔ¤ň¤É¤ł¤ËĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ţ¤š¤ŤĄŠ"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "LILO/grub ¤ÎĽ¤ĽóĽšĽČĄźĽë"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "ĽĆĽ­ĽšĽČĽáĽËĽĺĄźČÇ LILO"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "Ľ°ĽéĽŐĽŁĽĂĽŻĽáĽËĽĺĄźČÇ LILO"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "DOS/Windows¤Ť¤éľŻĆ° (loadlin ťČÍŃ)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "ĽÖĄźĽČĽíĄźĽŔ¤ÎĽáĽ¤ĽóĽŞĽ×ĽˇĽçĽó"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "ťČÍѤš¤ëĽÖĄźĽČĽíĄźĽŔ"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "ĽÖĄźĽČĽíĄźĽŔ¤ÎĽ¤ĽóĽšĽČĄźĽë"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "ĽÖĄźĽČĽÇĽĐĽ¤Ľš"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (¸Ĺ¤¤ BIOS ¤Ç¤ĎĆ°¤Ť¤Ę¤¤)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "ĽłĽóĽŃĽŻĽČ"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "ĽłĽóĽŃĽŻĽČ"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "ĽÓĽÇĽŞĽâĄźĽÉ"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "ĽÇĽŐĽŠĽëĽČĽ¤ĽáĄźĽ¸ľŻĆ°¤ÎÂÔ¤Áťţ´Ö"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "ĽŃĽšĽďĄźĽÉ"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "ĽŃĽšĽďĄźĽÉ (¤â¤Ś°ěĹŮ)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "ĽłĽŢĽóĽÉĽéĽ¤ĽóĽŞĽ×ĽˇĽçĽó¤ÎŔŠ¸Â"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "ŔŠ¸Â"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "łĆĽÖĄźĽČťţ¤Ë /tmp °Ę˛ź¤ňžĂ¤š"
# added a \n to the translation to avoid that the dialog window
# in which it appears to be tooooo laaaaarge
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr ""
"ÉŹÍפʤéŔľłÎ¤ĘRAMĽľĽ¤Ľş¤ňĆţ¤ě¤Ć¤Ż¤Ŕ¤ľ¤¤\n"
"ĄĘ%d MB¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ˇ¤żĄË"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "ĽŢĽëĽÁĽ×ĽíĽŐĽĄĽ¤Ľë¤ňÍ­¸ú¤Ë"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "RamĽľĽ¤Ľş¤ňMB¤ÇĆţÎĎ"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"ĄČĽłĽŢĽóĽÉĽéĽ¤ĽóĽŞĽ×ĽˇĽçĽó¤ÎŔŠ¸ÂĄÉĽŞĽ×ĽˇĽçĽó¤ĎĽŃĽšĽďĄźĽÉ¤Ź¤Ę¤¤¤Č\n"
"Ěň¤Ë¤ż¤Á¤Ţ¤ť¤óĄŁ"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "¤â¤Ś°ěĹٝ¤Ć˛ź¤ľ¤¤"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "ĽŃĽšĽďĄźĽÉ¤Ź°ěĂפˇ¤Ţ¤ť¤ó"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "˝é´ü˛˝ĽáĽĂĽťĄźĽ¸"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "ĽŞĄźĽ×ĽóĽŐĽĄĄźĽŕĽŚĽ§Ľ˘¤ÎĽÇĽŁĽěĽ¤"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "ĽŤĄźĽÍĽëĽÖĄźĽČ¤ÎĽżĽ¤ĽŕĽ˘ĽŚĽČ"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "CD ¤Ť¤é¤ÎľŻĆ°¤ňÍ­¸ú¤Ë¤ˇ¤Ţ¤š¤ŤĄŠ"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "OF ¤Ť¤é¤ÎľŻĆ°¤ňÍ­¸ú¤Ë¤ˇ¤Ţ¤š¤ŤĄŠ"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "ĽÇĽŐĽŠĽëĽČ¤Î OS ¤ĎĄŠ"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -690,83 +541,83 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Ľ¨ĽóĽČĽę¤Ď°Ę˛ź¤Î¤Č¤Ş¤ę¤Ç¤šĄŁ\n"
"ÄɲåŚĘŃšš¤Ç¤­¤Ţ¤šĄŁ"
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
-msgstr "˛Ă¤¨¤ë"
+msgstr "ÄɲĂ"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "˝ŞÎť"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "ĘŃšš"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "¤É¤ÎĽżĽ¤Ľ×¤ňÄɲ䡤ޤš¤Ť"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "ž¤Î OS (SunOS¤Ę¤É...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "ž¤Î OS (MacOS¤Ę¤É...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "ž¤Î OS (ĽŚĽŁĽóĽÉĽŚĽş¤Ę¤É...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Ľ¤ĽáĄźĽ¸"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "ĽëĄźĽČ"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "ÄɲĂ"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Ćɤ߽ń¤­"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "ĽĆĄźĽÖĽë"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "´í¸ą"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "ĽéĽŮĽë"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "ĽÇĽŐĽŠĽëĽČ"
@@ -798,53 +649,77 @@ msgstr "rootĽŃĄźĽĆĽŁĽˇĽçĽó¤ĎÉŹ¤şťŘÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤"
msgid "This label is already used"
msgstr "¤ł¤ÎĽéĽŮĽë¤Ď¤š¤Ç¤ËťČ¤ď¤ě¤Ć¤¤¤Ţ¤š"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "%s %s Ľ¤ĽóĽżĄźĽŐĽ§ĄźĽš¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ˇ¤ż"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Ę̤Τâ¤Î¤Ď¤˘¤ę¤Ţ¤š¤ŤĄŠ"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "%s Ľ¤ĽóĽżĄźĽŐĽ§ĄźĽš¤Ď¤˘¤ę¤Ţ¤š¤ŤĄŠ"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "¤¤¤¤¤¨"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "¤Ď¤¤"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "ĽĎĄźĽÉĽŚĽ§Ľ˘¤ÎžđĘó¤ň¸Ť¤Ć˛ź¤ľ¤¤"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "%s ĽŤĄźĽÉ %s ¤ÎĽÉĽéĽ¤ĽĐĽ¤ĽóĽšĽČĄźĽëĂć"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(ĽâĽ¸ĽĺĄźĽë %s)"
+#: ../../any.pm_.c:697
+#, fuzzy, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+"¤Ç¤ĎĽâĽ¸ĽĺĄźĽë %s ¤ÎĽŞĽ×ĽˇĽçĽó¤ňťŘÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
+"¤Ę¤ŞĄ˘Ľ˘ĽÉĽěĽš¤Ď¤š¤Ů¤ĆĄ˘ĆŹ¤Ë 0x ¤ň¤Ä¤ą¤ĆĆţÎϤš¤ë¤ł¤ČĄŁÎ㥧 '0x123'"
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"ĽâĽ¸ĽĺĄźĽë %s ¤Ř¤ÎĽŞĽ×ĽˇĽçĽó¤ÎťŘÄꥣ\n"
+"ĽŞĽ×ĽˇĽçĽó¤ÎĽŐĽŠĄźĽŢĽĂĽČ¤ĎĄČĚžÁ°=ĂÍ ĚžÁ°2=ĂÍ2 ...ĄÉ¤Ç¤šĄŁ\n"
+"Îă: ĄČio=0x300 irq=7ĄÉ"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "ĽâĽ¸ĽĺĄźĽë¤ÎĽŞĽ×ĽˇĽçĽó"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "¤É¤Î %s ĽÉĽéĽ¤ĽĐ¤ňťî¤ˇ¤Ţ¤ˇ¤ç¤Ś¤ŤĄŠ"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -861,39 +736,15 @@ msgstr ""
"¤ľ¤ť¤Ć¤ß¤Ţ¤š¤ŤĄŠĄĄĽ×ĽíĄźĽÖĂć¤ËĽłĽóĽÔĽĺĄźĽż¤ŹÄäťß¤š¤ë¤Ť¤âĂΤě¤Ţ¤ť¤ó¤ŹĄ¤\n"
"ĽŢĽˇĽó¤Ź¤ł¤ď¤ě¤ż¤ę¤š¤ë¤ł¤Č¤Ď¤˘¤ę¤Ţ¤ť¤óĄŁ"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "ĽŞĄźĽČĽ×ĽíĄźĽÖ"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "ĽŞĽ×ĽˇĽçĽóťŘÄę"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"¤Ç¤ĎĽâĽ¸ĽĺĄźĽë %s ¤ÎĽŞĽ×ĽˇĽçĽó¤ňťŘÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"¤Ę¤ŞĄ˘Ľ˘ĽÉĽěĽš¤Ď¤š¤Ů¤ĆĄ˘ĆŹ¤Ë 0x ¤ň¤Ä¤ą¤ĆĆţÎϤš¤ë¤ł¤ČĄŁÎ㥧 '0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"ĽâĽ¸ĽĺĄźĽë %s ¤Ř¤ÎĽŞĽ×ĽˇĽçĽó¤ÎťŘÄꥣ\n"
-"ĽŞĽ×ĽˇĽçĽó¤ÎĽŐĽŠĄźĽŢĽĂĽČ¤ĎĄČĚžÁ°=ĂÍ ĚžÁ°2=ĂÍ2 ...ĄÉ¤Ç¤šĄŁ\n"
-"Îă: ĄČio=0x300 irq=7ĄÉ"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "ĽâĽ¸ĽĺĄźĽë¤ÎĽŞĽ×ĽˇĽçĽó"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -902,49 +753,54 @@ msgstr ""
"ĽâĽ¸ĽĺĄźĽë %s ¤ÎĽíĄźĽÉ¤Ź¤Ç¤­¤Ţ¤ť¤ó¤Ç¤ˇ¤żĄŁ\n"
"ĽŃĽéĽáĄźĽż¤ňĘѤ¨¤Ć¤ä¤ę¤Ę¤Ş¤ˇ¤Ć¤ß¤Ţ¤š¤ŤĄŠ"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "X Ľ×ĽíĽ°ĽéĽŕ¤Ř¤ÎĽ˘ĽŻĽťĽš"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "rpm ĽÄĄźĽë¤Ř¤ÎĽ˘ĽŻĽťĽš"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "ĄČsuĄÉ¤ňľö¤š"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "´ÉÍýĽŐĽĄĽ¤Ľë¤Ř¤ÎĽ˘ĽŻĽťĽš"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(%s ¤ĎÄɲúѤß)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "ĽŃĽšĽďĄźĽÉ¤Ź´ĘĂą¤š¤Ž¤Ţ¤š"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "ĽćĄźĽśĚž¤ňÍż¤¨¤Ć˛ź¤ľ¤¤"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "ĽćĄźĽśĚž¤Ë¤ĎąŃžŽĘ¸ťúĄ¤żôťúĄ˘ĄÖ-Ą×¤äĄÖ_Ą×¤ˇ¤ŤťČ¤¨¤Ţ¤ť¤óĄŁ"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "¤ł¤ÎĽćĄźĽśĚž¤Ď¤š¤Ç¤Ë¸şß¤ˇ¤Ţ¤š"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "¤ł¤ÎĽćĄźĽśĚž¤Ď¤š¤Ç¤Ë¸şß¤ˇ¤Ţ¤š"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "ĽćĄźĽś¤ňÄɲĂ"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -953,32 +809,32 @@ msgstr ""
"ĽćĄźĽśĚž¤ňĆţÎϤˇ¤Ć˛ź¤ľ¤¤\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "źő¤ąÉŐ¤ą¤ëĽćĄźĽś"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "źÂşÝ¤ÎťáĚž"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "ĽćĄźĽśĚž"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "ĽˇĽ§Ľë"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Ľ˘Ľ¤ĽłĽó"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "źŤĆ°ĽíĽ°Ľ¤Ľó"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -986,87 +842,67 @@ msgstr ""
"źŤĆ°ĹޤËĆĂÄęĽćĄźĽś¤ŹĽíĽ°ĽŞĽó¤š¤ë¤č¤Ś¤ËĽłĽóĽÔĽĺĄźĽż¤ňŔßÄę¤Ç¤­¤Ţ¤šĄŁ\n"
"¤ł¤ÎľĄÇ˝¤ňťČ¤¤¤Ţ¤š¤ŤĄŠ"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "ĽÇĽŐĽŠĽëĽČĽćĄźĽś¤ÎÁŞÂň:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "ťČ¤ŚĽŚĽŁĽóĽÉĽŚĽŢĽÍĄźĽ¸Ľă¤ňÁޤó¤Ç˛ź¤ľ¤¤Ą§"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "¤É¤Î¸Ŕ¸ě¤ňťČ¤Ś¤ŤÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤¤ÍĄŁ"
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr "Ľ¤ĽóĽšĽČĄźĽë¸ĺťČÍѲÄÇ˝¤Ë¤Ę¤ë¤Ű¤Ť¤Î¸Ŕ¸ě¤ňÁŞÂň¤Ç¤­¤Ţ¤š"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "¤ź¤ó¤Ö"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "¤š¤Ů¤Ć¤ÎĽćĄźĽś¤ňǧ¤á¤ë"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "ĽŤĽšĽżĽŕ"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "ĽŐĽĄĽ¤ĽëśŚÍ­¤ˇ¤Ę¤¤"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "ĽŃĽĂĽąĄźĽ¸ %s ¤ŹÉŹÍפǤšĄŁĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ţ¤š¤ŤĄŠ"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Ľ¨ĽŻĽšĽÝĄźĽČ¤Ë¤Ď NFS ¤Ť Samba ¤ŹťČ¤¨¤Ţ¤šĄŁ¤É¤Á¤é¤Ë¤ˇ¤Ţ¤š¤ŤĄŠ"
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "ÉŹÍ׼ѼüąĄźĽ¸ %s ¤Ź¤˘¤ę¤Ţ¤ť¤ó"
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Ľ­ĽăĽóĽťĽë"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr "userdrake ¤ňľŻĆ°"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -1074,31 +910,31 @@ msgstr ""
"ĽćĄźĽśËč¤ÎśŚÍ­¤ĎĄ˘ĄČfileshareĄÉĽ°ĽëĄźĽ×¤ňťČ¤¤¤Ţ¤šĄŁ\n"
"¤ł¤ÎĽ°ĽëĄźĽ×¤ËĽćĄźĽś¤ňÄɲ䚤ë¤Ë¤ĎĄ˘userdrake ¤ŹťČ¤¨¤Ţ¤š¤čĄŁ"
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "°­źÁ¤ĘĽŻĽéĽĂĽŤĄźÍͤ⿯Ćţ¤ˇ¤Ű¤Ś¤Ŕ¤¤"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "¤­¤ď¤á¤ĆÄ㤤"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "ɸ˝ŕ"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "šâ¤¤"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
msgstr "¤â¤Ă¤Čšâ¤¤"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "żŔˇĐźÁ¤Ę¤Ű¤Éšâżĺ˝ŕ"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1108,7 +944,7 @@ msgstr ""
"¤Ŕ¤ě¤Ë¤Ç¤âĽ˘ĽŻĽťĽš¤Ç¤­¤Ć¤ˇ¤Ţ¤¤¤Ţ¤šĄŁÂž¤ÎĽŢĽˇĽó¤äĽ¤ĽóĽżĄźĽÍĽĂĽČ\n"
"¤Ë¤Ä¤Ę¤Ź¤Ă¤żĽŢĽˇĽó¤Ç¤ĎťČ¤ď¤Ę¤¤¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁĽŃĽšĽďĄźĽÉŔŠ¸Â¤â¤˘¤ę¤Ţ¤ť¤óĄŁ"
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1116,7 +952,7 @@ msgstr ""
"ĽŃĽšĽďĄźĽÉ¤ŹÍ­¸ú¤Ë¤Ę¤ę¤Ţ¤ˇ¤ż¤ŹĄ˘ĽÍĽĂĽČĽďĄźĽŻ¤Ë¤Ä¤Ę¤°¤Î¤Ď¤Ţ¤Ŕ\n"
"¤ŞžŠ¤á¤Ç¤­¤Ţ¤ť¤óĄŁ"
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1124,57 +960,58 @@ msgstr ""
"¤ł¤ě¤Ďɸ˝ŕ¤ÎĽťĽ­ĽĺĽęĽĆĽŁ¤ÇĄ˘ĽŻĽéĽ¤Ľ˘ĽóĽČ¤Č¤ˇ¤ĆĽ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤š¤ëĽŢĽˇĽó¤Ç"
"¤ÎżäžŠĽěĽŮĽë¤Ç¤šĄŁ"
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr "¤š¤Ç¤ËŔŠ¸Â¤Ź¤Ť¤Ť¤Ă¤Ć¤¤¤ĆĄ˘¤ľ¤é¤ËËčČŐźŤĆ°ĽÁĽ§ĽĂĽŻ¤Ź¤â¤Ă¤Č¤Ť¤Ť¤ę¤Ţ¤šĄŁ"
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"¤ł¤ÎĽťĽ­ĽĺĽęĽĆĽŁĽěĽŮĽë¤Ŕ¤ČĄ˘ĽˇĽšĽĆĽŕ¤ňĽľĄźĽĐ¤Č¤ˇ¤ĆťČ¤¨¤ë¤č¤Ś¤Ë¤Ę¤ę¤Ţ¤šĄŁ\n"
"Âżżô¤ÎĽŻĽéĽ¤Ľ˘ĽóĽČ¤Ť¤éŔÜÂł¤ňźő¤ą¤ëĽľĄźĽĐ¤Č¤ˇ¤Ć¤âťČ¤¨¤ë¤Ŕ¤ą¤ÎĽťĽ­ĽĺĽęĽĆĽŁ\n"
"żĺ˝ŕ¤Ë¤Ę¤Ă¤Ć¤¤¤Ţ¤šĄŁĂ𥧤˘¤Ę¤ż¤ÎĽŢĽˇĽó¤ŹĽ¤ĽóĽżĄźĽÍĽĂĽČžĺ¤ÎĽŻĽéĽ¤Ľ˘ĽóĽČŔěÍѤĘ"
"¤éĄ˘¤â¤Ă¤ČÄ㤤ĽěĽŮĽë¤ňÁޤó¤Ŕ¤Ű¤Ś¤Ź¤¤¤¤¤Ç¤š¤čĄŁ"
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Á°¤ÎĽěĽŮĽë¤Ë´đ¤Ĺ¤¤¤Ć¤¤¤Ţ¤š¤ŹĄ˘¤ł¤ě¤ÇĽˇĽšĽĆĽŕ¤Ď´°Á´¤Ë¤Č¤¸¤żžőÂÖ\n"
"¤Ë¤Ę¤Ă¤Ć¤¤¤Ţ¤šĄŁĽťĽ­ĽĺĽęĽĆĽŁ¤ĎşÇÂç¤Ç¤šĄŁ"
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "ĽťĽ­ĽĺĽęĽĆĽŁ¤Îżĺ˝ŕ¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "ĽťĽ­ĽĺĽęĽĆĽŁżĺ˝ŕ"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "ĽľĄźĽĐ¤Ëlibsafe¤ňťČ¤Ś"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"ĽĐĽĂĽŐĽĄĽŞĄźĽĐĄźĽŐĽíĄź¤äĽŐĽŠĄźĽŢĽĂĽČĽšĽČĽęĽóĽ°šśˇâ¤ňËɸ椚¤ëĽéĽ¤ĽÖĽéĽęĄŁ"
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
# NOTE: this message will be displayed by SILO at boot time; that is
# only the ascii charset will be available
# so use only 7bit for this message
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1198,52 +1035,52 @@ 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_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "GRUB operating system chooser-he youkosou!"
#. -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_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "%c, %c key wo tukatte entry wo shitei shite kudasai."
#. -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_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Kono OS wo kidou suru nara Enter, Kidou mae no jikkou command"
#. -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_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "no henshuu niha 'e', command line nara 'c' wo oshi masu."
#. -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_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Sentaku shita OS ga %d byou de jidoutekini kidou shimasu."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "/boot ¤ÎÍĆÎĚÉÔ­¤Ç¤š"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "ĽÇĽšĽŻĽČĽĂĽ×"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "ĽšĽżĄźĽČĽáĽËĽĺĄź"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "ĽÖĄźĽČĽíĄźĽŔ¤Ď %s ĽŃĄźĽĆĽŁĽˇĽçĽó¤Ë¤ĎĽ¤ĽóĽšĽČĄźĽë¤Ç¤­¤Ţ¤ť¤ó\n"
@@ -1256,15 +1093,19 @@ msgstr "ĽŘĽëĽ×¤Ď¤Ţ¤ŔźÂÁő¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤óĄŁ\n"
msgid "Boot Style Configuration"
msgstr "ľŻĆ°Ęýź°¤ÎŔßÄę"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
-msgstr "/ĽŐĽĄĽ¤Ľë(F)"
+msgstr "/ĽŐĽĄĽ¤Ľë(_F)"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
-msgstr "/ĽŐĽĄĽ¤Ľë(F)/˝ŞÎť(Q)"
+msgstr "/ĽŐĽĄĽ¤Ľë(F)/˝ŞÎť(_Q)"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1299,14 +1140,14 @@ msgstr "Yaboot ĽâĄźĽÉ"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"¤¤¤ŢĄ˘ĽÖĄźĽČĽŢĽÍĄźĽ¸Ľă¤Ë¤Ď %s ¤ň¤ŞťČ¤¤¤Ç¤šĄŁ\n"
"ŔßÄ꼌ĽŁĽśĄźĽÉ¤ňľŻĆ°¤š¤ë¤Ë¤ĎĄÖŔßÄęĄ×¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ"
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "ŔßÄę"
@@ -1316,7 +1157,7 @@ msgid "System mode"
msgstr "ĽˇĽšĽĆĽŕĽâĄźĽÉ"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "ľŻĆ°ťţ¤Ë X ĽŚĽŁĽóĽÉĽŚ¤ňźÂšÔ"
#: ../../bootlook.pm_.c:148
@@ -1327,14 +1168,16 @@ msgstr "źŤĆ°ĽíĽ°Ľ¤Ľó¤Ď¤ˇ¤Ę¤¤"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "¤ł¤Î (ĽćĄźĽśĄ˘ĽÇĽšĽŻĽČĽĂĽ×ĄË¤ÇźŤĆ°ĽíĽ°Ľ¤Ľó¤š¤ë"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "OK"
@@ -1382,7 +1225,7 @@ msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽó¤ňÄɲ䚤ë¤Ţ¤ÇĽšĽŻĽęĄźĽóĽˇĽçĽĂĽČ¤ĎťŁ¤ě¤Ţ¤ť¤ó"
msgid "Screenshots will be available after install in %s"
msgstr "%s ¤ÎĽ¤ĽóĽšĽČĄźĽë¸ĺ¤ËĽšĽŻĽęĄźĽóĽˇĽçĽĂĽČ¤Ź˛ÄÇ˝¤Ç¤š"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "ĽŐĽéĽóĽš"
@@ -1390,7 +1233,7 @@ msgstr "ĽŐĽéĽóĽš"
msgid "Costa Rica"
msgstr "ĽłĽšĽżĽęĽŤ"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "ĽŮĽëĽŽĄź"
@@ -1414,11 +1257,12 @@ msgstr "ĽÎĽëĽŚĽ§Ąź"
msgid "Sweden"
msgstr "ĽšĽŚĽ§ĄźĽÇĽó"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "ĽŞĽéĽóĽŔ"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "Ľ¤ĽżĽęĽ˘"
@@ -1426,7 +1270,7 @@ msgstr "Ľ¤ĽżĽęĽ˘"
msgid "Austria"
msgstr "ĽŞĄźĽšĽČĽęĽ˘"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "Ľ˘ĽáĽęĽŤšç˝°šń"
@@ -1434,8 +1278,8 @@ msgstr "Ľ˘ĽáĽęĽŤšç˝°šń"
msgid "Please make a backup of your data first"
msgstr "ĽÇĄźĽż¤ÎĽĐĽĂĽŻĽ˘ĽĂĽ×¤ňźč¤Ă¤Ć˛ź¤ľ¤¤"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "¤č¤ŻĆɤó¤Ç˛ź¤ľ¤¤ĄŞ"
@@ -1448,11 +1292,12 @@ msgstr ""
"¤â¤ˇ aboot ¤ňťČ¤Ś¤Ä¤â¤ę¤Ę¤éĄ˘ĽÇĽŁĽšĽŻ¤ÎŔčĆŹ¤Ëśő¤­Îΰč (2048ĽťĽŻĽż¤Ż¤é¤¤)\n"
"¤ňťÄ¤š¤č¤Śľ¤¤ňÉŐ¤ą¤Ć˛ź¤ľ¤¤ĄŁ"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Ľ¨ĽéĄź"
@@ -1460,11 +1305,11 @@ msgstr "Ľ¨ĽéĄź"
msgid "Wizard"
msgstr "ĽŚĽŁĽśĄźĽÉ"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Ć°şî¤ňÁŞÂň"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1476,77 +1321,77 @@ msgstr ""
"¤Ţ¤ş¤Ď¤ł¤¤¤Ä¤ňĽęĽľĽ¤Ľş¤š¤ë¤Î¤Ź¤¤¤¤¤Ç¤ˇ¤ç¤Ś\n"
"ĄĘ¤˝¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤ňĽŻĽęĽĂĽŻ¤ˇ¤ĆĄ˘źĄ¤ËĄÖĽęĽľĽ¤ĽşĄ×¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ć˛ź¤ľ¤¤)"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "ĘŃšš¤š¤ëĽŃĄźĽĆĽŁĽˇĽçĽó¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "žÜşŮ"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "Ľ¸ĽăĄźĽĘĽęĽóĽ°ĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕ"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "ĽšĽďĽĂĽ×"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "śő"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "¤˝¤Îž"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "ĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕ ĽżĽ¤Ľ×:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "şîŔŽ"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "ĽżĽ¤Ľ×"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Âĺ¤ď¤ę¤ËĄČ%sĄÉ¤ňťČ¤Ă¤Ć˛ź¤ľ¤¤"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "şď˝ü"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "şÇ˝é¤ËĄÖĽ˘ĽóĽŢĽŚĽóĽČĄ×¤ňťČ¤Ă¤Ć˛ź¤ľ¤¤"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1554,67 +1399,72 @@ msgstr ""
"ĽŃĄźĽĆĽŁĽˇĽçĽó¤Îˇż¤ň %s ¤ËĘŃšš¤ˇ¤ż¸ĺĄ˘¤ł¤ÎĽŃĄźĽĆĽŁĽˇĽçĽóžĺ¤ÎĽÇĄźĽż¤Ďźş¤ď¤ě¤Ţ"
"¤š"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽó¤ňÁŞÂň"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Ę̤μѥźĽĆĽŁĽˇĽçĽó¤ňÁޤÖ"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "˝ŞÎť"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Ľ¨Ľ­ĽšĽŃĄźĽČĽâĄźĽÉ¤Ë°Ü¤ë"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "ĽÎĄźĽŢĽëĽâĄźĽÉ¤Ë°Ü¤ë"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "¤â¤Č¤ËĚᤚ"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "¤˝¤ě¤Ç¤âÂł¤ą¤Ţ¤š¤ŤĄŠ"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "ĽťĄźĽÖ¤ť¤ş˝ŞÎť"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽë¤ňššżˇ¤ť¤ş¤Ë˝ŞÎťĄŠ"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr " /etc/fstab ¤ÎĘŃšš¤ňĘݸ¤ˇ¤Ţ¤š¤ŤĄŠ"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "źŤĆ°łä¤ęĹö¤Ć"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Á´¤Ć¤ňĽŻĽęĽ˘"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "źĄ"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "ĽĎĄźĽÉĽÉĽéĽ¤ĽÖ¤ÎžđĘó"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Á´¤Ć¤ÎĽ×ĽéĽ¤ĽŢĽęĽŃĄźĽĆĽŁĽˇĽçĽó¤ŹťČ¤ď¤ě¤Ć¤¤¤Ţ¤š"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "¤ł¤ě°Ęžĺ¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤ĎÄɲäǤ­¤Ţ¤ť¤ó"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1622,31 +1472,31 @@ msgstr ""
"ĽŃĄźĽĆĽŁĽˇĽçĽó¤ňÁý¤ä¤ˇ¤ż¤¤¤Ę¤éĄ¤łČÄĽĽŃĄźĽĆĽŁĽˇĽçĽó¤Ź\n"
"şî¤ě¤ë¤č¤Ś¤Ë¤É¤ł¤Ť¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤ňžĂ¤ˇ¤Ć˛ź¤ľ¤¤ĄŁ"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽë¤ňĘݸ"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽë¤ňşĆŔ¸"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽë¤ňťÄ¤š"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽë¤ňşĆĆÉšţ"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "ĽęĽŕĄźĽĐĽÖĽëĽáĽÇĽŁĽ˘źŤĆ°şĆĽŢĽŚĽóĽČĂć"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "ĽŐĽĄĽ¤Ľë¤ňÁŞÂň"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1654,11 +1504,11 @@ msgstr ""
"ĽĐĽĂĽŻĽ˘ĽĂĽ×¤š¤ëĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽë¤ÎĽľĽ¤Ľş¤Ź°ă¤¤¤Ţ¤š\n"
"Âł¤ą¤Ţ¤š¤ŤĄŠ"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "ˇŮšđ"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1666,122 +1516,129 @@ msgstr ""
"ĽŐĽíĽĂĽÔĄź¤ňĽÉĽéĽ¤ĽÖ¤ËÁŢĆţ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤\n"
"ĽŐĽíĽĂĽÔĄźžĺ¤ÎÁ´¤Ć¤ÎĽÇĄźĽż¤Ďźş¤ď¤ě¤Ţ¤š"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽë¤ňľß˝Đ¤ˇ¤Ć¤ß¤Ţ¤š"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "žÜşŮ¤ĘžđĘó"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "ĽŢĽŚĽóĽČĽÝĽ¤ĽóĽČ"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "ĽŞĽ×ĽˇĽçĽó"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "ĽęĽľĽ¤Ľş"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "°ÜĆ°"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "ĽŐĽŠĄźĽŢĽĂĽČ"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "ĽŢĽŚĽóĽČ"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "RAID ¤Ë˛Ă¤¨¤ë"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "LVM ¤Ë˛Ă¤¨¤ë"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Ľ˘ĽóĽŢĽŚĽóĽČ"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "RAID ¤Ť¤é˝ü¤Ż"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "LVM ¤Ť¤é˝ü¤Ż"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "RAID¤ÎĘŃšš"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "ĽëĄźĽ×ĽĐĽĂĽŻ¤ÎťČÍŃ"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "żˇ¤ˇ¤¤ĽŃĄźĽĆĽŁĽˇĽçĽó¤ňşîŔŽ"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "łŤťĎĽťĽŻĽż: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "MB ¤Ç¤ÎĽľĽ¤Ľş: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "ĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕĽżĽ¤Ľ×: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "ĽŢĽŚĽóĽČĽÝĽ¤ĽóĽČ: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Ľ×ĽęĽŐĽĄĽěĽóĽš: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+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/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "ĽëĄźĽ×ĽĐĽĂĽŻĽŐĽĄĽ¤Ľë¤ňşď˝ü¤ˇ¤Ţ¤š¤ŤĄŠ"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽóĽżĽ¤Ľ×¤ÎĘŃšš"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "¤É¤ÎĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕ¤Ë¤ˇ¤Ţ¤š¤ŤĄŠ"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "ext2 ¤Ť¤é ext3 ¤ËĘŃšš¤ˇ¤Ć¤¤¤Ţ¤š"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "ĽëĄźĽ×ĽĐĽĂĽŻĽŐĽĄĽ¤Ľë %s ¤ň¤É¤ł¤ËĽŢĽŚĽóĽČ¤ˇ¤Ţ¤š¤ŤĄŠ"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "ĽÇĽĐĽ¤Ľš %s ¤ň¤É¤ł¤ËĽŢĽŚĽóĽČ¤ˇ¤Ţ¤š¤ŤĄŠ"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1790,125 +1647,130 @@ msgstr ""
"ĽŢĽŚĽóĽČĽÝĽ¤ĽóĽČ¤Ť¤éźč¤ę˝˘¤Ż¤ł¤Č¤Ź˝ĐÍč¤Ţ¤ť¤óĄŁ\n"
"¤Ţ¤şĽëĄźĽ×ĽĐĽĂĽŻ¤ň˛ň˝ü¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "fat ĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕ¤Îś­łŚ¤ňˇ×ťť"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "ĽęĽľĽ¤ĽşĂć"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "¤ł¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤ĎĽęĽľĽ¤Ľş¤Ç¤­¤Ţ¤ť¤ó"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "¤ł¤ÎĽŃĄźĽĆĽŁĽˇĽçĽóžĺ¤ÎĽÇĄźĽż¤ĎĽĐĽĂĽŻĽ˘ĽĂĽ×¤š¤ë¤Ů¤­¤Ç¤š"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "ĽęĽľĽ¤Ľş¸ĺ¤Ë¤ĎĄ˘ĽŃĄźĽĆĽŁĽˇĽçĽó %s žĺ¤ÎĽÇĄźĽż¤Ďźş¤ď¤ě¤Ţ¤š"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "żˇ¤ˇ¤¤ĽľĽ¤Ľş¤ňÁŞÂň"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "MB ¤Ç¤ÎĽľĽ¤Ľş: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "¤É¤ÎĽÇĽŁĽšĽŻ¤Ë°ÜĆ°¤ˇ¤Ţ¤š¤Ť?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "ĽťĽŻĽż"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "¤É¤ÎĽťĽŻĽż¤ň°ÜĆ°¤ˇ¤Ţ¤š¤ŤĄŠ"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "°ÜĆ°Ăć"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽó¤ň°ÜĆ°Ăć..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Äɲ䚤ë´ű¸¤Î RAID ¤ňÁޤó¤Ç˛ź¤ľ¤¤"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "żˇľŹ"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Äɲ䚤ë´ű¸¤Î LVM ¤ňÁޤó¤Ç˛ź¤ľ¤¤"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "LVM Ěž¤ĎĄŠ"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "¤ł¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤ĎĽëĄźĽ×ĽĐĽĂĽŻ¤Ë¤ĎťČ¤¨¤Ţ¤ť¤ó"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "ĽëĄźĽ×ĽĐĽĂĽŻ"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "ĽëĄźĽ×ĽĐĽĂĽŻĽŐĽĄĽ¤ĽëĚž: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "ĽŐĽĄĽ¤ĽëĚž¤ňĆţÎĎ"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "ĽŐĽĄĽ¤Ľë¤Ď¤š¤Ç¤ËĘ̤μ륟Ľ×ĽĐĽĂĽŻ¤ÇťČÍŃĂ楣ž¤Î¤ňÁŞ¤Ó¤Ţ¤ˇ¤ç¤Ś"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "ĽŐĽĄĽ¤Ľë¤Ď¤š¤Ç¤Ë¸şß¤ˇ¤Ţ¤šĄŁ¤¤¤Ţ¤˘¤ë¤Î¤ňťČ¤¤¤Ţ¤š¤ŤĄŠ"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "ĽŢĽŚĽóĽČĽŞĽ×ĽˇĽçĽó"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "¤˝¤Îž"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "ĽÇĽĐĽ¤Ľš"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "ĽěĽŮĽë"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "ĽÁĽăĽóĽŻĽľĽ¤Ľş"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Ăí°Ő: ¤ł¤ÎÁŕşî¤Ď´í¸ą¤Ç¤šĄŁ"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "¤É¤ó¤ĘĽŃĄźĽĆĽŁĽˇĽçĽó¤Ç¤š¤ŤĄŠ"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "ĽŃĽĂĽąĄźĽ¸ %s ¤ŹÉŹÍפǤšĄŁĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ţ¤š¤ŤĄŠ"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1919,7 +1781,7 @@ msgstr ""
"¤˝¤ł¤Ë /boot ¤Ďşî¤ě¤Ţ¤ť¤óĄŁ/boot¤Ź¤˝¤ł¤Ŕ¤ČĄ˘LILO ¤Ź¤Ś¤Ţ¤ŻĆŻ¤Ť¤Ę¤¤¤ˇĄ¤\n"
"LILO ¤ňťČ¤ď¤Ę¤¤¤Ę¤é /boot ¤ĎÍפę¤Ţ¤ť¤ó¤Ť¤é"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1931,7 +1793,7 @@ msgstr ""
"ťý¤Ă¤Ć¤¤¤Ţ¤ť¤ó¤ÍĄŁLILO ¤ňĽÖĄźĽČĽŢĽÍĄźĽ¸Ľă¤ËťČ¤Ś¤Ę¤éĄ¤/boot ĽŃĄźĽĆĽŁ\n"
"ĽˇĽçĽó¤ÎÄɲäň¤ŞËş¤ě¤Ę¤ŻĄŁ"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1941,129 +1803,129 @@ msgstr ""
"/boot ĽŃĄźĽĆĽŁĽˇĽçĽóĚľ¤ˇ¤Ç¤ł¤ě¤ňÁŕşî˝ĐÍč¤ëĽÖĄźĽČĽíĄźĽŔ¤Ď¤˘¤ę¤Ţ¤ť¤óĄŁ\n"
"¤Ç¤š¤Ť¤é /boot ĽŃĄźĽĆĽŁĽˇĽçĽó¤ÎÄɲäň¤ŞËş¤ě¤Ę¤ŻĄŁ"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "ĽÉĽéĽ¤ĽÖ %s ¤ÎĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽë¤ňĽÇĽŁĽšĽŻ¤Ë˝ń¤­šţ¤ß¤Ţ¤šĄŞ"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "ĽęĽÖĄźĽČ¤ˇ¤ĆĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽë¤ÎĘŃšš¤ňČżąÇ¤ľ¤ť¤ëÉŹÍפŹ¤˘¤ę¤Ţ¤š"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "ĽŐĽŠĄźĽŢĽĂĽČ¤ˇ¤ż¤éĄ˘ĽŃĄźĽĆĽŁĽˇĽçĽó %s žĺ¤ÎĽÇĄźĽż¤Ďźş¤ď¤ě¤Ţ¤šĄŁ"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "ĽŐĽŠĄźĽŢĽĂĽČĂć"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "ĽëĄźĽ×ĽĐĽĂĽŻĽŐĽĄĽ¤Ľë %s ¤ňĽŐĽŠĄźĽŢĽĂĽČĂć"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽó %s ¤ňĽŐĽŠĄźĽŢĽĂĽČĂć"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "ĽŐĽĄĽ¤Ľë¤ňąŁ¤š"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "żˇ¤ˇ¤¤ĽŃĄźĽĆĽŁĽˇĽçĽó¤ËĽŐĽĄĽ¤Ľë¤ň°ÜĆ°"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"ĽÇĽŁĽěĽŻĽČĽę %s ¤Ë¤Ď¤š¤Ç¤ËĽÇĄźĽż¤Ź¤˘¤ę¤Ţ¤š\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "żˇ¤ˇ¤¤ĽŃĄźĽĆĽŁĽˇĽçĽó¤ËĽŐĽĄĽ¤Ľë¤ň°ÜĆ°Ăć"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "%s ĽłĽÔĄźĂć"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "%s şď˝üĂć"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽó %s ¤Ď¤ł¤ě¤Ç %s¤Ë¤Ę¤ę¤Ţ¤ˇ¤żĄŁ"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "ĽÇĽĐĽ¤Ľš: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS ĽÇĽĐĽ¤ĽšĽěĽżĄź: %s (żäÄę)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "ĽżĽ¤Ľ×: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "ĚžÁ°: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "łŤťĎ: ĽťĽŻĽż %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "ĽľĽ¤Ľş: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s ĽťĽŻĽż"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "ĽˇĽęĽóĽŔ %d ¤Ť¤éĽˇĽęĽóĽŔ %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "ĽŐĽŠĄźĽŢĽĂĽČşŃ¤ß\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "̤ĽŐĽŠĄźĽŢĽĂĽČ\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "ĽŢĽŚĽóĽČşŃ¤ß\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2072,7 +1934,7 @@ msgstr ""
"ĽëĄźĽ×ĽĐĽĂĽŻĽŐĽĄĽ¤Ľë:\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2080,27 +1942,27 @@ msgstr ""
"ĽÇĽŐĽŠĽëĽČ¤ÇĽŃĄźĽĆĽŁĽˇĽçĽóĽÖĄźĽČ\n"
" (MS-DOS ¤ÎĽÖĄźĽČ, lilo ¤Ç¤Ď¤Ę¤¤)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "ĽěĽŮĽë %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "ĽÁĽăĽóĽŻĽľĽ¤Ľş %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAIDĽÇĽŁĽšĽŻ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "ĽëĄźĽ×ĽĐĽĂĽŻĽŐĽĄĽ¤ĽëĚž: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2112,7 +1974,7 @@ msgstr ""
"ĽÉĽéĽ¤ĽĐĄŚĽŃĄźĽĆĽŁĽˇĽçĽó¤é¤ˇ¤¤¤Ç¤š¤čĄŁ\n"
"¤¤¤¸¤é¤Ę¤¤¤Ű¤Ś¤Ź¤¤¤¤¤Ç¤ˇ¤ç¤ŚĄŁ\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2124,62 +1986,62 @@ msgstr ""
"ĽŃĄźĽĆĽŁĽˇĽçĽó¤ĎĄ˘\n"
"ĽÇĽĺĽ˘ĽëĽÖĄźĽČĽˇĽšĽĆĽŕÍѤǤšĄŁ\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "ĽľĽ¤Ľş: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Ľ¸ĽŞĽáĽČĽę: %s ĽˇĽęĽóĽŔ, %s ĽŘĽĂĽÉ, %s ĽťĽŻĽż\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "žđĘó: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVMĽÇĽŁĽšĽŻ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽëĽżĽ¤Ľ×: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "ĽĐĽš %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "ĽŞĽ×ĽˇĽçĽó: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "ĽŐĽĄĽ¤Ľë°Ĺšć˛˝¤Î¸°"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "ĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕ°Ĺšć˛˝ÍѤθ°¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "¤ł¤Î°Ĺšć¸°¤Ď´ĘĂą¤š¤Ž¤Ţ¤šĄĘşÇÄă¤Ç¤â %d ʸťúťČ¤Ă¤Ć¤Ż¤Ŕ¤ľ¤¤ĄË"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "°Ĺšć¸°¤Ź°ěĂפˇ¤Ţ¤ť¤ó"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "°Ĺšć¸°"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "°Ĺšć¸°ĄĘ¤â¤Ś°ěĹŮĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄË"
@@ -2188,35 +2050,65 @@ msgid "Change type"
msgstr "ĽżĽ¤Ľ×¤ÎĘŃšš"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "ĽáĽÇĽŁĽ˘¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "ǧžÚ"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČ"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "ĽćĄźĽśĚž"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "ĽćĄźĽśĚž"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS ĽÉĽáĽ¤Ľó"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "ĽľĄźĽĐ¤ň¸Ąş÷"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s ĽŐĽŠĄźĽŢĽĂĽČ, %s źşÇÔ"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "%s ¤ň ĽżĽ¤Ľ× %s ¤ÇĽŐĽŠĄźĽŢĽĂĽČ¤š¤ëĘýËĄ¤ňĂΤę¤Ţ¤ť¤ó"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽó %s ¤ňĽÇĽŁĽěĽŻĽČĽę %s ¤ËĽŢĽŚĽóĽČ¤Ç¤­¤Ţ¤ť¤ó¤Ç¤ˇ¤ż"
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck źşÇÔĄ˘exit code %d ¤Ţ¤ż¤Ď signal %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "%s ¤ňĽ˘ĽóĽŢĽŚĽóĽČĂć¤ËĽ¨ĽéĄź: %s"
@@ -2233,68 +2125,321 @@ msgstr "/usr ¤Ç"
msgid "server"
msgstr "ĽľĄźĽĐ"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "16MB°Ę˛ź¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤Ë JFS ¤ĎťČ¤¨¤Ţ¤ť¤ó"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "32MB°Ę˛ź¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤Ë ReiserFS ¤ĎťČ¤¨¤Ţ¤ť¤ó"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "ĽŢĽŚĽóĽČĽÝĽ¤ĽóĽČ¤Ď / ¤ÇťĎ¤Ţ¤ëÉŹÍפŹ¤˘¤ę¤Ţ¤š"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽó¤ĎĽŢĽŚĽóĽČĽÝĽ¤ĽóĽČ %s ¤ËĽŢĽŚĽóĽČşŃ¤ß\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "LVM ĎŔÍýĽÜĽęĽĺĄźĽŕ¤ĎĽŢĽŚĽóĽČĽÝĽ¤ĽóĽČ %s ¤Ë¤ĎťČ¤¨¤Ţ¤ť¤ó"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "¤ł¤ÎĽÇĽŁĽěĽŻĽČĽę¤Ď root ĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕĆâ¤ËťÄ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"¤ł¤ÎĽŢĽŚĽóĽČĽÝĽ¤ĽóĽČ¤Ë¤ĎĄ˘źÂşß¤š¤ëĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕ (ext2, reiserfs) \n"
"¤ŹÉŹÍפǤšĄŁ\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "ĽŢĽŚĽóĽČĽÝĽ¤ĽóĽČ %s ¤Ë¤Ď°Ĺšć˛˝ĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕ¤ĎťČ¤¨¤Ţ¤ť¤ó"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "źŤĆ°łä¤ęĹö¤Ć¤Ź¤Ç¤­¤ë¤Ű¤Éśő¤­ÍĆÎ̤Ź¤˘¤ę¤Ţ¤ť¤ó"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr "¤š¤ë¤ł¤Č¤Ź¤˘¤ę¤Ţ¤ť¤ó"
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "˝ń¤­šţ¤ß¤Î¤ż¤á %s ¤ňłŤ¤Ż¤Č¤­Ľ¨ĽéĄź¤ŹČŻŔ¸: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Ľ¨ĽéĄźČŻŔ¸ - żˇ¤ˇ¤¤ĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕ¤ňš˝ĂۤǤ­¤ë¤č¤Ś¤ĘĽÇĽĐĽ¤Ľš¤Ź\n"
"¸ŤÉŐ¤Ť¤ę¤Ţ¤ť¤óĄŁ¤Ę¤Ë¤Ź¸ś°ř¤ŤĄ˘ĽĎĄźĽÉĽŚĽ§Ľ˘¤ňĽÁĽ§ĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽó¤Ź¤˘¤ę¤Ţ¤ť¤óĄŞ"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "źŤĆ°¸Ą˝Đ¤ň¤š¤ë"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "ČĆÍŃ"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "ĽŤĄźĽÉ mem (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "ŔßÄę¤ÎĆɤߚţ¤ßĂć"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "ĽżĽ¤Ľ×¤ÎĘŃšš"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "˝ŞÎť"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/ĽŘĽëĽ×(_H)"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/ĽŘĽëĽ×(_H)"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/ĽŘĽëĽ×(H)/žđĘó(_A)..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "ĽâĽ¸ĽĺĄźĽë"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "ĽŤĄźĽÉ mem (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Ľ­ĽăĽóĽťĽë"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "Module"
+msgstr "ĽâĽ¸ĽĺĄźĽë"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Ľ×ĽęĽóĽż¤ÎŔâĚŔ"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "ǧžÚ"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "ĽŐĽĄĽ¤Ľë¤ňÁŞÂň"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Ľ˛ĄźĽČĽŚĽ§Ľ¤ĽÇĽĐĽ¤Ľš"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2ĽÜĽżĽó"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "ĽÇĽŁĽšĽŻ¤Î¸Ą˝Đ"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "ĽĎĄźĽÉĽŚĽ§Ľ˘¤ÎžđĘó¤ň¸Ť¤Ć˛ź¤ľ¤¤"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "žđĘó¤ňÉ˝ź¨"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "ĽŢĽŚĽš¤ÎŔßÄę"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "ĽÝĄźĽČ %s ¤Ç¸Ą˝Đ¤ˇ¤Ţ¤ˇ¤ż"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "¤ŞÂÔ¤Á˛ź¤ľ¤¤"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "¤˘¤Č %d ÉĂ"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Ľ×ĽęĽóĽż \"%s\" ¤ňşď˝üĂć..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "ĽŞĄźĽČĽ×ĽíĄźĽÖ"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2308,7 +2453,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2439,9 +2584,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2774,7 +2918,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2786,9 +2930,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2856,21 +2999,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2886,9 +3028,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"¤ľ¤Ć¤ł¤ó¤É¤ĎĄ˘ĽĎĄźĽÉĽÇĽŁĽšĽŻžĺ¤ÇMandrake Linux OS ¤ň¤É¤ł¤ËĽ¤ĽóĽšĽČĄźĽë\n"
"¤š¤ë¤ŤÁޤ֤ł¤Č¤Ë¤Ę¤ę¤Ţ¤šĄŁ¤â¤ˇĽĎĄźĽÉĽÇĽŁĽšĽŻ¤Źśő¤ŤĄ˘¤š¤Ç¤ËĘ̤ΠOS ¤Ź\n"
@@ -2972,9 +3114,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3157,38 +3298,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3357,11 +3492,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3414,7 +3549,7 @@ msgstr ""
"GNU/Linux¤Ë¤Ä¤¤¤Ć¤č¤Ű¤ÉžÜ¤ˇ¤Ż¤Ę¤¤¤ČĄ˘¤Ę¤Ť¤Ę¤ŤĹú¤¨¤é¤ě¤Ę¤¤źÁĚ䤏\n"
"¤˘¤ę¤Ţ¤šĄŁ¤ď¤Ť¤Ă¤żżÍ°Ęł°¤ĎĄ˘¤ł¤ÎĽŻĽéĽš¤ĎÁŞ¤Đ¤Ę¤¤¤ł¤ČĄŁ"
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3438,7 +3573,7 @@ msgstr ""
"\n"
"ĄÖ¤â¤Ă¤ČĄ×ĽÜĽżĽó¤ň˛Ą¤š¤ČĄ˘ĽľĽÝĄźĽČ¤ľ¤ě¤ëĽ­ĄźĽÜĄźĽÉ¤Ź¤š¤Ů¤ĆÉ˝ź¨¤ľ¤ě¤Ţ¤šĄŁ"
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3462,7 +3597,7 @@ msgstr ""
"¸Ŕ¸ě¤ĎĘŁżôÁŞ¤Ů¤Ţ¤šĄŁÄɲäθŔ¸ěĄĘĽíĽąĄźĽëĄË¤ňÁޤó¤ÇĄ˘OK¤ň˛Ą¤ˇ¤ĆłÎǧ¤ˇ¤ż¤éĄ˘\n"
"źŤĆ°ĹŞ¤ËźĄ¤ÎĽšĽĆĽĂĽ×¤ËżĘ¤ß¤Ţ¤šĄŁ"
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3488,7 +3623,7 @@ msgstr ""
"Ć°¤Ť¤Ę¤ą¤ě¤ĐĄ˘ĽšĽÚĄźĽš¤ŤĄÖĽęĽżĄźĽóĄ×¤ň˛Ą¤ˇ¤ĆĽ­ĽăĽóĽťĽë¤ˇ¤ĆĄ˘ÁŞ¤Ó¤Ę¤Ş¤ˇ\n"
"¤Ţ¤šĄŁ"
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3496,23 +3631,23 @@ msgstr ""
"Ŕľ¤ˇ¤¤ĽÝĄźĽČ¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ¤ż¤Č¤¨¤ĐĄ˘MS ĽŚĽŁĽóĽÉĽŚĽş¤Ç¤Î\n"
"COM1ĽÝĄźĽČ¤ĎĄ˘GNU/Linux¤Ç¤Ď ttyS0 ¤Č¤¤¤ŚĚžÁ°¤Ë¤Ę¤ę¤Ţ¤šĄŁ"
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3560,7 +3695,7 @@ msgstr ""
"ĄÖNIS¤ňťČ¤ŚĄ×ĽŞĽ×ĽˇĽçĽó¤ňÁŞ¤Ó¤Ţ¤šĄŁĄÖOKĄ×¤ň˛Ą¤ˇ¤ż¤éĄ˘ÉŹÍפʞđĘó\n"
"¤ňĆţÎϤˇ¤Ţ¤šĄŁ"
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3582,7 +3717,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3590,7 +3725,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3655,7 +3790,7 @@ msgstr ""
"¤ż¤ę¤Ç¤­¤Ţ¤šĄŁĄÖ´°ÎťĄ×¤ň˛Ą¤ť¤ĐĄ˘Ľ¤ĽóĽšĽČĄźĽë¤ÎźĄ¤ÎĽšĽĆĽĂĽ×¤ŘżĘ¤ß\n"
"¤Ţ¤šĄŁ"
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3677,7 +3812,7 @@ msgstr ""
"žěšç¤Ë¤Ď¤˝¤ÎOS¤ÎĽ¨ĽóĽČĽę¤ňşď˝ü¤ˇ¤Ć¤Ş¤­¤Ţ¤ˇ¤ç¤ŚĄŁ¤ż¤Ŕ¤ˇ¤ł¤Îžěšç¤ĎĄ˘\n"
"¤˝¤ÎOS¤ňťČ¤Ś¤Č¤­¤Ë¤ĎľŻĆ°ĽÇĽŁĽšĽŻ¤ŹÍפę¤Ţ¤š¤čĄŞ"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3689,29 +3824,28 @@ msgstr ""
"\n"
"¤č¤Ż¤ď¤Ť¤é¤Ę¤¤¤Ę¤éĄÖĽÉĽéĽ¤ĽÖ¤ÎşÇ˝é¤ÎĽťĽŻĽż(MBR)Ą×¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3746,7 +3880,7 @@ msgstr ""
"¤ľ¤â¤Ę¤ą¤ě¤ĐĄ˘CUPS ¤Î¤Ű¤Ś¤Ź´ĘĂą¤Ŕ¤ˇĽÍĽĂĽČĽďĄźĽŻžĺ¤Ç¤ÎŔ­Ç˝¤ŹÍĽ¤ě¤Ć¤¤¤ë¤Î¤Ç\n"
"CUPS¤Ë¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ"
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3771,7 +3905,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"DrakX¤ĎĽŢĽˇĽóžĺ¤ÎIDEĽÇĽĐĽ¤Ľš¤ňÁ´Éô¸Ť¤Ä¤ą¤č¤Ś¤Č¤ˇ¤Ţ¤šĄŁ¤Ţ¤żPCI SCSI\n"
@@ -3796,7 +3930,7 @@ msgstr ""
"¤˘¤ë¤¤¤ĎĄĘĽˇĽšĽĆĽŕžĺ¤Ë¤˘¤ě¤ĐĄËMS Windows ¤Ť¤é¤É¤Ś¤ä¤Ă¤ĆÉŹÍמđĘó¤ňĆŔ¤ë¤Ť\n"
"¤ňÄ´¤Ů¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3806,9 +3940,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3820,7 +3953,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" 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"
@@ -3889,7 +4022,7 @@ msgstr ""
"Ľ¨ĽóĽČĽę¤Ď¤Ţ¤żĄ˘TAB¤ň˛Ą¤ˇ¤ĆľŻĆ°ťţ¤ÎÁŞÂňťč¤ňÉ˝ź¨¤ľ¤ť¤ż¤Č¤­¤Ë¤ĎĄ˘\n"
"ĄÖ*Ą×¤Ź¤Ä¤¤¤ĆĽĎĽ¤ĽéĽ¤ĽČ¤ľ¤ě¤Ć¤¤¤Ţ¤šĄŁ"
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3916,9 +4049,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -3954,10 +4086,10 @@ msgstr ""
" * ĽÇĽŐĽŠĽëĽČ OS: ĽŞĄźĽ×ĽóĽŐĽĄĄźĽŕĽŚĽ§Ľ˘¤ÎÂÔ¤Áťţ´Ö¤Ź˛á¤Ž¤ż¤Č¤­Ą˘¤É¤Î\n"
"OS¤ŹľŻĆ°¤š¤ë¤Ť¤ňťŘÄꤡ¤Ţ¤šĄŁ"
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3965,12 +4097,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -4011,7 +4142,7 @@ msgstr ""
" * ĄÖISDN ĽŤĄźĽÉĄ×: ISDN ĽŤĄźĽÉ¤Ź¸Ą˝Đ¤ľ¤ě¤ż¤é¤ł¤ł¤ËÉ˝ź¨¤ľ¤ě¤Ţ¤šĄŁ\n"
"ĽÜĽżĽó¤ňĽŻĽęĽĂĽŻ¤š¤ë¤Č´ŘϢĽŃĽéĽáĄźĽż¤ŹĘѤ¨¤é¤ě¤Ţ¤šĄŁ"
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4021,7 +4152,7 @@ msgstr ""
"ĽĎĄźĽÉĽÇĽŁĽšĽŻ¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ¤˝¤ÎĽĎĄźĽÉĽÇĽŁĽšĽŻžĺ¤ÎĽÇĄźĽż¤ĎÁ´Éô\n"
"žĂ¤¨¤Ć˛óÉü¤Ç¤­¤Ţ¤ť¤óĄŁĂí°Ő¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4039,7 +4170,7 @@ msgstr ""
"¤ł¤ÎÁŕşî¤ňźč¤ę¤ä¤á¤ĆĄ˘ĽĎĄźĽÉĽÇĽŁĽšĽŻžĺ¤ÎĽÇĄźĽż¤äĽŃĄźĽĆĽŁĽˇĽçĽó¤ň\n"
"¤˝¤Î¤Ţ¤Ţ¤Ë¤ˇ¤Ć¤Ş¤Ż¤Ë¤ĎĄÖĽ­ĽăĽóĽťĽëĄ×¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ"
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4047,12 +4178,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr "%s ¤âĽŐĽŠĄźĽŢĽĂĽČ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4076,20 +4207,20 @@ msgstr ""
"\n"
"ËÜĹö¤Ë¤ł¤ÎĽľĄźĽĐ¤ňĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ć¤¤¤¤¤Ç¤š¤ÍĄŠ\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "NIS ĽÉĽáĽ¤Ľó¤Ź¤Ę¤¤¤Î¤ÇĽÖĽíĄźĽÉĽ­ĽăĽšĽČ¤ŹťČ¤¨¤Ţ¤ť¤ó"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "FATˇÁź°¤ÎĽŐĽíĽĂĽÔĄź¤ňĽÉĽéĽ¤ĽÖ %s ¤ËÁŢĆţ"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "¤ł¤ÎĽŐĽíĽĂĽÔĄź¤Ď FATĽŐĽŠĄźĽŢĽĂĽČ¤¸¤ă¤˘¤ę¤Ţ¤ť¤ó"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4097,7 +4228,7 @@ msgstr ""
"¤ł¤ÎĘݸ¤ˇ¤żĽŃĽĂĽąĄźĽ¸ÁŞÂň¤ňťČ¤Ś¤Ë¤ĎĄ˘Ľ¤ĽóĽšĽČĄźĽë¤ÎľŻĆ°ťţ¤ËĄÖlinux "
"defcfg=floppyĄ×¤ČťŘÄꤡ¤Ţ¤šĄŁ"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "ĽŐĽĄĽ¤Ľë %s ¤ÎĆɤߤȤ꼨ĽéĄź¤Ç¤š"
@@ -4127,7 +4258,7 @@ msgstr "ĽšĽďĽĂĽ×ĽŃĄźĽĆĽŁĽˇĽçĽó¤ŹÉŹÍפǤš"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -4135,59 +4266,59 @@ msgstr ""
"\n"
"š˝¤ď¤ş¤ËÂł¤ą¤Ţ¤š¤ŤĄŠ"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "/boot/efi ¤Ë FAT ĽŃĄźĽĆĽŁĽˇĽçĽó¤ňĽŢĽŚĽóĽČ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "ĽŐĽęĄźĽšĽÚĄźĽš¤ÎťČÍŃ"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "żˇ¤ˇ¤¤ĽŃĄźĽĆĽŁĽˇĽçĽó¤Ëłä¤ęĹö¤Ć¤ë˝˝ĘŹ¤ĘĽŐĽęĄźĽšĽÚĄźĽš¤Ź¤˘¤ę¤Ţ¤ť¤ó"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "´ű¸¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤ňťČÍŃ"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "¸şß¤ˇ¤Ę¤¤ĽŃĄźĽĆĽŁĽˇĽçĽó"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Windows ĽŃĄźĽĆĽŁĽˇĽçĽó¤ňĽëĄźĽ×ĽĐĽĂĽŻ¤ËťČÍŃ"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "¤É¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤ËLinux4Win¤ňĆţ¤ě¤Ţ¤š¤Ť"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "ĽľĽ¤Ľş¤ňÁŞÂň"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "ĽëĄźĽČĽŃĄźĽĆĽŁĽˇĽçĽó¤ÎĽľĽ¤Ľş (MB)"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "ĽšĽďĽĂĽ×ĽŃĄźĽĆĽŁĽˇĽçĽó¤ÎĽľĽ¤Ľş (MB): "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "ĽŚĽŁĽóĽÉĽŚĽşĽŃĄźĽĆĽŁĽˇĽçĽóžĺ¤ÎĽŐĽęĄźĽšĽÚĄźĽš¤ňťČÍŃ"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "¤É¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤ňĽęĽľĽ¤Ľş¤ˇ¤Ţ¤š¤ŤĄŠ"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "ĽŚĽŁĽóĽÉĽŚĽşĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕ¤Îś­łŚ¤ňˇ×ťť"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4196,11 +4327,14 @@ msgstr ""
"FAT ĽęĽľĽ¤ĽśĄź¤ĎĽŃĄźĽĆĽŁĽˇĽçĽóÁŕşî¤Ź¤Ç¤­¤Ţ¤ť¤óĄŁ\n"
"°Ę˛ź¤ÎĽ¨ĽéĄź¤ŹČŻŔ¸: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr "ĽŚĽŁĽóĽÉĽŚĽşĽŃĄźĽĆĽŁĽˇĽçĽó¤ŹĂÇĘҲ˝¤ˇ¤š¤Ž¤Ç¤šĄŁĄČĽÇĽŐĽéĽ°ĄÉ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -4221,55 +4355,55 @@ msgstr ""
"¤Ş¤¤¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
"ÂçžćÉפʤé Ok ¤ň˛Ą¤ˇ¤Ć˛ź¤ľ¤¤ĄŁ"
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "ĽŚĽŁĽóĽÉĽŚĽşÍѤˤɤΤŻ¤é¤¤¤ÎĽľĽ¤Ľş¤ňťÄ¤ˇ¤Ć¤Ş¤­¤Ţ¤š¤Ź"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽó %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT ¤ÎĽęĽľĽ¤Ľş¤ËźşÇÔ: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"ĽęĽľĽ¤Ľş¤äĽëĄźĽ×ĽĐĽĂĽŻÍѤÎFATĽŃĄźĽĆĽŁĽˇĽçĽó¤Ź¤˘¤ę¤Ţ¤ť¤ó (¤Ţ¤ż¤Ď˝˝ĘŹ¤ĘĽšĽÚĄźĽš"
"¤ŹĚľ¤¤)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Á´ĽÇĽŁĽšĽŻžĂľî"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Windows(TM) ¤ňşď˝ü"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
"ĘŁżô¤ÎĽĎĄźĽÉĽÉĽéĽ¤ĽÖ¤ňťý¤Ă¤Ć¤¤¤Ţ¤š¤ÍĄ˘¤É¤ě¤Ë linux ¤ňĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ţ¤š¤ŤĄŠ"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "ĽÉĽéĽ¤ĽÖ %s žĺ¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤Ş¤č¤ÓĽÇĄźĽż¤ĎÁ´Éôźş¤ď¤ě¤Ţ¤š"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽó¤ňźŤĘŹ¤ÇťŘÄę"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "fdisk¤ňťČ¤Ś"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4278,11 +4412,11 @@ msgstr ""
"%s ¤ňĽŃĄźĽĆĽŁĽˇĽçĽó¤Ç¤­¤Ţ¤šĄŁ\n"
"˝Ş¤ď¤Ă¤ż¤éĄ˘ÉŹ¤şĄÖwĄ×¤ňťČ¤Ă¤ĆĘݸ¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "ĽŚĽŁĽóĽÉĽŚĽşĽŃĄźĽĆĽŁĽˇĽçĽóžĺ¤ÎĽŐĽęĄźĽšĽÚĄźĽš¤ŹÂ­¤ę¤Ţ¤ť¤ó"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Ľ¤ĽóĽšĽČĄźĽëÍѤΜő¤­¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤ó¤Ź"
@@ -4290,16 +4424,16 @@ msgstr "Ľ¤ĽóĽšĽČĄźĽëÍѤΜő¤­¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤ó¤Ź"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX ĽŃĄźĽĆĽŁĽˇĽçĽóĽŚĽŁĽśĄźĽÉ¤Ď°Ę˛ź¤Î˛ňËĄ¤ň¸ŤÉŐ¤ą¤Ţ¤ˇ¤ż:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽËĽóĽ°¤ËźşÇÔ: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "ĽÍĽĂĽČĽďĄźĽŻ¤ň¤ż¤Á¤˘¤˛¤ë"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "ĽÍĽĂĽČĽďĄźĽŻ¤ňÄäťß¤š¤ë"
@@ -4311,12 +4445,12 @@ msgstr ""
"Ľ¨ĽéĄźČŻŔ¸Ą¤¤Ś¤Ţ¤Ż˝čÍý¤š¤ëĘýËĄ¤Ź¤ď¤Ť¤ę¤Ţ¤ť¤óĄŁ\n"
"źŤĘŹ¤ÎŔŐǤ¤ÇÂł¤ą¤Ć˛ź¤ľ¤¤ĄŁ"
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "ĽŢĽŚĽóĽČĽÝĽ¤ĽóĽČ %s ¤Ź˝Ĺ¤Ę¤Ă¤Ć¤¤¤Ţ¤š"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4329,12 +4463,12 @@ msgstr ""
"¤ˇ¤Ć¤ß¤Ć¤Ż¤Ŕ¤ľ¤¤Ą§\n"
"ĄÖ rpm -qpl Mandrake/RPMS/*.rpm Ą×\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "%s ¤Ř¤č¤Ś¤ł¤˝"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Í­¸ú¤ĘĽŐĽíĽĂĽÔĄźĽÉĽéĽ¤ĽÖ¤Ź¤˘¤ę¤Ţ¤ť¤ó"
@@ -4344,9 +4478,9 @@ msgstr "Í­¸ú¤ĘĽŐĽíĽĂĽÔĄźĽÉĽéĽ¤ĽÖ¤Ź¤˘¤ę¤Ţ¤ť¤ó"
msgid "Entering step `%s'\n"
msgstr "ĽšĽĆĽĂĽ× ĄÖ%sĄ×¤ňťĎ¤á¤Ţ¤š\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4357,196 +4491,152 @@ msgstr ""
"¤ł¤ě¤ň¤š¤ë¤Ë¤ĎĄ˘CDROM ¤Ť¤éĽÖĄźĽČ¤ˇ¤ż¤Č¤­Ą˘ĄÖF1Ą×¤ň˛Ą¤ˇĄ˘ĄÖtextĄ×¤ČĆţÎϤˇ¤Ć\n"
"¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Ľ¤ĽóĽšĽČĄźĽëĽŻĽéĽš"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr "°Ę˛ź¤ÎĽ¤ĽóĽšĽČĄźĽëĽŻĽéĽš¤ň¤É¤ě¤ŤÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "¤˘¤Ę¤ż¤ÎÁޤó¤ŔĽ°ĽëĄźĽ×¤ÎÁíĽľĽ¤Ľş¤ĎĄ˘¤Ŕ¤¤¤ż¤¤ %d MB¤Ë¤Ę¤ę¤Ţ¤šĄŁ\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Ľ¤ĽóĽšĽČĄźĽëÎ̤ň¸ş¤é¤ˇ¤ż¤ą¤ě¤ĐĄ˘ĽŃĽĂĽąĄźĽ¸¤ÎĽŃĄźĽťĽóĽČżô¤ň\n"
-"ťŘÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"\n"
-"¤ł¤ě¤ň˛ź¤˛¤ë¤ČĄ˘¤¤¤Á¤Đ¤ó˝ĹÍפʤâ¤Î¤Ŕ¤ą¤ŹĽ¤ĽóĽšĽČĄźĽë¤ľ¤ě¤Ţ¤šĄŁ\n"
-"100%% ¤ňťŘÄꤚ¤ë¤ČĄ˘Áޤó¤ŔĽŃĽĂĽąĄźĽ¸¤ň¤š¤Ů¤ĆĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ţ¤šĄŁ"
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"ĽÇĽŁĽšĽŻžĺ¤Ëśő¤­Îΰč¤Ë¤ĎĄ˘¤ł¤ě¤é¤ÎĽŃĽĂĽąĄźĽ¸¤Î %d%% ¤ˇ¤ŤĆţ¤ę¤Ţ¤ť¤óĄŁ\n"
-"\n"
-"Ľ¤ĽóĽšĽČĄźĽëÎ̤ň¸ş¤é¤ˇ¤ż¤ą¤ě¤ĐĄ˘ĽŃĄźĽťĽóĽČżô¤ňťŘÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"¤ł¤ě¤ň˛ź¤˛¤ë¤ČĄ˘¤¤¤Á¤Đ¤ó˝ĹÍפʤâ¤Î¤Ŕ¤ą¤ŹĽ¤ĽóĽšĽČĄźĽë¤ľ¤ě¤Ţ¤šĄŁ\n"
-"%d%% ¤ňťŘÄꤚ¤ë¤ČĄ˘şÇÂç¸Â¤ÎĽŃĽĂĽąĄźĽ¸¤ňĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ţ¤šĄŁ"
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "źĄ¤ÎĽšĽĆĽĂĽ×¤Ç¤Ď¤â¤Ă¤ČşŮ¤Ť¤¤ÁŞÂň¤Ź˝ĐÍč¤Ţ¤š"
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Ľ¤ĽóĽšĽČĄźĽë¤š¤ëĽŃĽĂĽąĄźĽ¸Ăć¤Îłäšç"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "ĽŃĽĂĽąĄźĽ¸Ľ°ĽëĄźĽ×¤ňÁŞÂň"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "¸ÄĘĚĽŃĽĂĽąĄźĽ¸¤ÎÁŞÂň"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "šçˇ×ĽľĽ¤Ľş: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "ĽŃĽĂĽąĄźĽ¸¤Ź˛ő¤ě¤Ć¤¤¤Ţ¤š"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "ĚžÁ°: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "ĽĐĄźĽ¸ĽçĽó: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "ĽľĽ¤Ľş: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "˝ĹÍ×: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "¤ł¤ÎĽŃĽĂĽąĄźĽ¸¤ĎÁŞÂň¤Ç¤­¤Ţ¤ť¤óĄŁĽÇĽŁĽšĽŻ¤Îśő¤­ÍĆÎ̤ŹÉÔ­¤Ç¤šĄŁ"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "°Ę˛ź¤ÎĽŃĽĂĽąĄźĽ¸¤ŹĽ¤ĽóĽšĽČĄźĽë¤ľ¤ě¤Ţ¤š"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "°Ę˛ź¤ÎĽŃĽĂĽąĄźĽ¸¤Źźč¤ę˝ü¤Ť¤ě¤Ţ¤š"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "¤ł¤ÎĽŃĽĂĽąĄźĽ¸¤ĎÁŞÂňĄŚČóÁŞÂň¤Ç¤­¤Ţ¤ť¤ó"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "¤ł¤ě¤ĎÉԲġç¤ĘĽŃĽĂĽąĄźĽ¸¤Ç¤šĄŁČóÁŞÂň¤Ë¤Ď¤Ç¤­¤Ţ¤ť¤ó"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "¤ł¤ÎĽŃĽĂĽąĄźĽ¸¤ĎČóÁŞÂň¤Ë¤Ç¤­¤Ţ¤ť¤óĄŁ¤š¤Ç¤ËĽ¤ĽóĽšĽČĄźĽëşŃ¤ß¤Ç¤š"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"¤ł¤ÎĽŃĽĂĽąĄźĽ¸¤ĎĽ˘ĽĂĽ×Ľ°ĽěĄźĽÉ¤ŹÉŹÍפǤšĄŁ\n"
"ËÜĹö¤ËÁŞÂň˛ň˝ü¤ˇ¤Ć¤¤¤¤¤ó¤Ç¤š¤ŤĄŠ"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "¤ł¤ÎĽŃĽĂĽąĄźĽ¸¤ĎÁŞÂň˛ň˝ü¤Ç¤­¤Ţ¤ť¤óĄŁĽ˘ĽĂĽ×Ľ°ĽěĄźĽÉ¤ŹÉŹÍפǤš"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "źŤĆ°ÁŞÂň¤ľ¤ě¤żĽŃĽĂĽąĄźĽ¸¤ňÉ˝ź¨"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Ľ¤ĽóĽšĽČĄźĽë"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "ĽŐĽíĽĂĽÔĄź¤ËĽťĄźĽÖ/ĽíĄźĽÉ¤š¤ë"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "ĽŃĽĂĽąĄźĽ¸ÁŞÂň¤Îššżˇ"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "şÇžŽĽ¤ĽóĽšĽČĄźĽë"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Ľ¤ĽóĽšĽČĄźĽë¤ˇ¤ż¤¤ĽŃĽĂĽąĄźĽ¸¤ňÁޤó¤Ç˛ź¤ľ¤¤"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Ľ¤ĽóĽšĽČĄźĽëĂć"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "ťîťť¤ˇ¤Ć¤¤¤Ţ¤š"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "ťÄ¤ęťţ´Ö "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Ľ¤ĽóĽšĽČĄźĽë¤Î˝ŕČ÷Ă楢žŻĄš¤ŞÂÔ¤Á¤ň"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d ĽŃĽĂĽąĄźĽ¸"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "ĽŃĽĂĽąĄźĽ¸ %s ¤ÎĽ¤ĽóĽšĽČĄźĽë"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "ǧ¤á¤ë"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "ľńČÝ"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4559,17 +4649,17 @@ msgstr ""
"ĄÖ %s Ą×¤Č¤¤¤Ś Cd-Rom ¤ňĽÉĽéĽ¤ĽÖ¤Ë¤¤¤ě¤ĆĄ˘ Ok ¤ň˛Ą¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
"CD¤Ź¤Ę¤ą¤ě¤ĐĄ˘Cancel ¤ň˛Ą¤ˇ¤Ć¤ł¤Î Cd-Rom ¤Ť¤é¤ÎĽ¤ĽóĽšĽČĄźĽë¤ň˛óČň¤ˇ¤Ć˛ź¤ľ¤¤ĄŁ"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "¤Ť¤Ţ¤ď¤şŔč¤ËżĘ¤ß¤Ţ¤š¤ŤĄŠ"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "ĽŃĽĂĽąĄźĽ¸¤ÎŔ°Îó¤ÇĽ¨ĽéĄź¤ŹČŻŔ¸:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "ĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽë¤ÇĽ¨ĽéĄź¤ŹČŻŔ¸:"
@@ -4641,11 +4731,11 @@ msgstr "Ľ¨ĽéĄźČŻŔ¸"
msgid "Do you really want to leave the installation?"
msgstr "ËÜĹö¤ËĽ¤ĽóĽšĽČĄźĽë¤ňĂćĂǤˇ¤Ţ¤š¤ŤĄŠ"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Ľ˝ĽŐĽČťČÍѼ鼤ĽťĽóĽšžňšŕ"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4660,7 +4750,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -4876,109 +4966,113 @@ msgstr ""
"Paris - France.\n"
"For any question on this document, please contact MandrakeSoft S.A. \n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Ľ­ĄźĽÜĄźĽÉ"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "Ľ­ĄźĽÜĄźĽÉĽěĽ¤Ľ˘ĽŚĽČ¤Ď˛ż¤Ç¤š¤ŤĄŠ"
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "ťČ¤¨¤ëĽ­ĄźĽÜĄźĽÉĽěĽ¤Ľ˘ĽŚĽČ¤Î°ěÍ÷¤ňÉ˝ź¨¤ˇ¤Ţ¤šĄŁ"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "¤É¤ÎĽ¤ĽóĽšĽČĄźĽëĽŻĽéĽš¤ňËž¤ß¤Ţ¤š¤ŤĄŠ"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Ľ¤ĽóĽšĽČĄźĽë/ššżˇ"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Ľ¤ĽóĽšĽČĄźĽë¤Ç¤š¤ŤĄ¤ššżˇ¤Ç¤š¤ŤĄŠ"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "żäžŠ"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Ľ¨Ľ­ĽšĽŃĄźĽČ"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "ššżˇ"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "ĽŃĽĂĽąĄźĽ¸¤Ŕ¤ą¤ňššżˇ"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "ĽŢĽŚĽš¤Îˇż¤Ď¤Ę¤ó¤Ç¤š¤ŤĄŠ"
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "ĽŢĽŚĽšĽÝĄźĽČ"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "ĽŢĽŚĽš¤Ď¤É¤ÎĽˇĽęĽ˘ĽëĽÝĄźĽČ¤Ë¤Ä¤Ę¤Ź¤Ă¤Ć¤¤¤Ţ¤š¤ŤĄŠ"
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "ĽÜĽżĽóĽ¨ĽßĽĺĽěĄźĽˇĽçĽó"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "ĽÜĽżĽó2¤ÎĽ¨ĽßĽĺĽěĄźĽˇĽçĽó"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "ĽÜĽżĽó3¤ÎĽ¨ĽßĽĺĽěĄźĽˇĽçĽó"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "PCMCIAĽŤĄźĽÉ¤ÎŔßÄęĂć..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "IDE ¤ÎŔßÄę"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "ťČ¤¨¤ëĽŃĄźĽĆĽŁĽˇĽçĽó¤Ź¤˘¤ę¤Ţ¤ť¤ó"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽó¤ňĽšĽ­ĽăĽó¤ˇ¤ĆĽŢĽŚĽóĽČĽÝĽ¤ĽóĽČ¤ňĂľ¤ˇ¤Ć¤¤¤Ţ¤š"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "ĽŢĽŚĽóĽČĽÝĽ¤ĽóĽČ¤ÎÁŞÂň"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4991,7 +5085,7 @@ msgstr ""
"\n"
"Á´ĽŃĄźĽĆĽŁĽˇĽçĽó¤ňžĂľî¤ˇ¤Ć¤č¤í¤ˇ¤¤¤Ç¤š¤ÍĄŠ\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4999,7 +5093,7 @@ msgstr ""
"DiskDrake ¤ĎĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽë¤ňŔľ¤ˇ¤ŻĆɤá¤Ţ¤ť¤ó¤Ç¤ˇ¤żĄŁ\n"
"¤ł¤ł¤Ť¤éŔč¤Ď˛ż¤ŹľŻ¤­¤Ć¤â¤ˇ¤ę¤Ţ¤ť¤ó¤čĄŞ"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -5008,74 +5102,77 @@ msgstr ""
"¤ŹĄ˘ĽˇĽšĽĆĽŕ¤ÎľŻĆ°¤Ë¤Ď DiskDrake ¤ÇĽÖĄźĽÄĽšĽČĽéĽĂĽ×ĽŃĄźĽĆĽŁĽˇĽçĽó¤ňşî¤Ă¤Ć¤Ż¤Ŕ"
"¤ľ¤¤."
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr "ššżˇ¤Ç¤­¤ëĽëĄźĽČĽŃĄźĽĆĽŁĽˇĽçĽó¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤ó"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "ĽëĄźĽČĽŃĄźĽĆĽŁĽˇĽçĽó"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "ĽˇĽšĽĆĽŕ¤ÎĽëĄźĽČĽŃĄźĽĆĽŁĽˇĽçĽó(/) ¤Ď¤Ę¤ó¤Ç¤š¤ŤĄŠ"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽë¤ÎĘŃšš¤ňČżąÇ¤š¤ë¤Ë¤ĎĽęĽÖĄźĽČ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "ĽŐĽŠĄźĽŢĽĂĽČ¤š¤ëĽŃĄźĽĆĽŁĽˇĽçĽó¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "ÉÔÎÉĽÖĽíĽĂĽŻ¤ň¸Ąşş¤ˇ¤Ţ¤š¤ŤĄŠ"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽó¤ňĽŐĽŠĄźĽŢĽĂĽČ"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "ĽŐĽĄĽ¤Ľë %s ¤ÎşîŔŽ¤ČĽŐĽŠĄźĽŢĽĂĽČ"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Ľ¤ĽóĽšĽČĄźĽë¤Ë˝˝ĘŹ¤ĘĽšĽďĽĂĽ×¤Ź¤˘¤ę¤Ţ¤ť¤óĄ¤ĽšĽďĽĂĽ×¤ň˛Ă¤¨¤Ć˛ź¤ľ¤¤"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
msgstr "źęťý¤Á¤ÎĽŃĽĂĽąĄźĽ¸¤ň¤ľ¤Ź¤ˇ¤Ć¤¤¤Ţ¤š"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
+msgstr "źęťý¤Á¤ÎĽŃĽĂĽąĄźĽ¸¤ň¤ľ¤Ź¤ˇ¤Ć¤¤¤Ţ¤š"
+
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Ľ˘ĽĂĽ×Ľ°ĽěĄźĽÉ¤š¤ëĽŃĽĂĽąĄźĽ¸¤ň¤ľ¤Ź¤ˇ¤Ć¤¤¤Ţ¤š"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "¤ł¤ÎĽŃĽĂĽąĄźĽ¸¤ĎČóÁŞÂň¤Ë¤Ç¤­¤Ţ¤ť¤óĄŁ¤š¤Ç¤ËĽ¤ĽóĽšĽČĄźĽëşŃ¤ß¤Ç¤š"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Ľ¤ĽóĽšĽČĄźĽë¤äĽ˘ĽĂĽ×Ľ°ĽěĄźĽÉ¤ËÉŹÍפʼǼŁĽšĽŻ¤Îśő¤­ÍĆÎ̤ŹÉÔ­¤Ç¤šĄŁ (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "´°Á´ (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "şÇžŽ (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "żäžŠ (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5083,35 +5180,35 @@ msgstr ""
"ĽŐĽíĽĂĽÔĄź¤Ř¤ÎĽŃĽĂĽąĄźĽ¸ÁŞÂň¤ÎĘݸ¤ŤĆɤߚţ¤ß¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
"ˇÁź°¤Ď auto_install ¤ÇŔ¸ŔŽ¤ˇ¤żĽŐĽíĽĂĽÔĄź¤ČĆą¤¸¤Ç¤šĄŁ"
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "ĽŐĽíĽĂĽÔĄź¤Ť¤éĆɤߚţ¤ŕ"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "ĽŐĽíĽĂĽÔĄź¤Ť¤éĆɤߚţ¤ßĂć"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "ĽŃĽĂĽąĄźĽ¸¤ňÁŞÂň"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "ĽŃĽĂĽąĄźĽ¸ÁŞÂň¤ÎĆţ¤Ă¤żĽŐĽíĽĂĽÔĄź¤ňÁŢĆţ"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "ĽŐĽíĽĂĽÔĄź¤ËĽťĄźĽÖ¤š¤ë"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Áޤó¤Ŕ¤â¤Î¤ÎĽľĽ¤Ľş¤Ďśő¤­ĽšĽÚĄźĽš¤ňąŰ¤¨¤Ć¤¤¤Ţ¤š"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr "Ľ¤ĽóĽšĽČĄźĽë¤ÎźďÎŕ"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
#, fuzzy
msgid ""
"You haven't selected any group of packages.\n"
@@ -5120,19 +5217,19 @@ msgstr ""
"ĽŃĽĂĽąĄźĽ¸Ľ°ĽëĄźĽ×¤ŹÁŞ¤Đ¤ě¤Ć¤¤¤Ţ¤ť¤óĄŁ\n"
"şÇÄă¸ÂÍߤˇ¤¤Ľ¤ĽóĽšĽČĄźĽë¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤"
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "X ¤ňťČ¤Ś"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr "´đËÜĹŞ¤ĘĽÉĽ­ĽĺĽáĽóĽĆĄźĽˇĽçĽó¤ňĆţ¤ě¤ëĄĘżäžŠĄŞĄË"
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr "ËÜĹö¤ËşÇÄă¸Â¤ÎĽ¤ĽóĽšĽČĄźĽëĄĘurpmi ¤â¤Ę¤ˇĄË"
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5142,16 +5239,16 @@ msgstr ""
"CD¤Ź°ě¤Ä¤â¤Ę¤ą¤ě¤ĐĄ˘Ľ­ĽăĽóĽťĽë¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
"źę¸ľ¤Ë¤Ę¤¤CD¤Ź¤˘¤ě¤ĐĄ˘¤˝¤ě¤ňÁŞÂň¤Ť¤é¤Ď¤ş¤ˇ¤Ć¤Ť¤éOk¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤šĄŁ"
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "ĄÖ %s Ą×¤Č¤¤¤ŚCd-Rom"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Ľ¤ĽóĽšĽČĄźĽë¤Î˝ŕČ÷"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -5160,23 +5257,23 @@ msgstr ""
"ĽŃĽĂĽąĄźĽ¸ %s ¤ňĽ¤ĽóĽšĽČĄźĽë\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Ľ¤ĽóĽšĽČĄźĽëŔßÄę¤ňłÎÄę"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "ťČ¤Ă¤żľŻĆ°ĽŐĽíĽĂĽÔĄź¤ňĽÉĽéĽ¤ĽÖ %s ¤ËÁŢĆţ"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "ššżˇĽâĽ¸ĽĺĄźĽëĽŐĽíĽĂĽÔĄź¤ňĽÉĽéĽ¤ĽÖ %s ¤ËÁŢĆţ¤ˇ¤Ć˛ź¤ľ¤¤"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5238,13 +5335,15 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
+#, fuzzy
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
@@ -5256,149 +5355,179 @@ msgstr ""
"\n"
"ššżˇĽŃĽĂĽąĄźĽ¸¤ňĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ţ¤š¤ŤĄŠ"
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Mandrake Linux ĽľĽ¤ĽČ¤ËŔÜÂł¤ˇ¤ĆĽßĽéĄź°ěÍ÷¤ňźčĆŔ¤ˇ¤Ć¤¤¤Ţ¤š"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "¤É¤ÎĽľĽ¤ĽČ¤Ť¤éĽŃĽĂĽąĄźĽ¸¤ňťý¤Ă¤Ć¤Ż¤ë¤Ť¤ňÁŞÂň"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "ĽľĽ¤ĽČ¤ËŔÜÂł¤ˇ¤ĆĽŃĽĂĽąĄźĽ¸°ěÍ÷¤ňźčĆŔ¤ˇ¤Ć¤¤¤Ţ¤š"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "¤˘¤Ę¤ż¤Îťţ´ÖÂӤϤɤě¤Ç¤š¤ŤĄŠ"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "ĽĎĄźĽÉĽŚĽ§Ľ˘ĽŻĽíĽĂĽŻ¤Ď GMT ¤ËĽťĽĂĽČ¤ˇ¤Ć¤˘¤ę¤Ţ¤š"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "źŤĆ°ťţ´Ö¤˘¤ď¤ťĄĘNTP¤ňťČ¤ŚĄË"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "NTP ĽľĄźĽĐ"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "ĽęĽâĄźĽČCUPS ĽľĄźĽĐ"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Ľ×ĽęĽóĽż¤Ę¤ˇ"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
msgstr "ISA ĽľĽŚĽóĽÉĽŤĄźĽÉ¤Ď¤˘¤ę¤Ţ¤š¤ŤĄŠ"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Ľ¤ĽóĽšĽČĄźĽë¸ĺ¤ËĄÖsndconfigĄ×¤ňźÂšÔ¤ˇ¤ĆĽľĽŚĽóĽÉĽŤĄźĽÉ¤ňŔßÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"ĽľĽŚĽóĽÉĽŤĄźĽÉ¤Ź¸Ą˝Đ¤Ç¤­¤Ţ¤ť¤ó¤Ç¤ˇ¤żĄŁ\n"
"Ľ¤ĽóĽšĽČĄźĽë¸ĺ¤ËĄÖharddrakeĄ×¤ňťî¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "¤Ţ¤Č¤á"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "ĽŢĽŚĽš"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "ťţ´ÖÂÓ"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Ľ×ĽęĽóĽż"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "ISDNĽŤĄźĽÉ"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "ĽľĽŚĽóĽÉĽŤĄźĽÉ"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "ĽĆĽěĽÓĽŤĄźĽÉ"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Windows (FAT32)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "ĽíĄźĽŤĽëĽŐĽĄĽ¤Ľë"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "ĽëĄźĽČĽŃĽšĽďĄźĽÉ"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "ĽŃĽšĽďĄźĽÉ¤Ę¤ˇ"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr "¤ł¤ÎĽŃĽšĽďĄźĽÉ¤Ď´ĘĂą¤š¤Ž¤Ţ¤šĄĘşÇÄă¤Ç¤â %d ʸťúťČ¤Ă¤Ć¤Ż¤Ŕ¤ľ¤¤ĄË"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "ǧžÚ"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "ǧžÚLDAP"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "LDAPĽŮĄźĽšdn"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "LDAPĽľĄźĽĐ"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "ǧžÚNIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS ĽÉĽáĽ¤Ľó"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS ĽľĄźĽĐ"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "ǧžÚLDAP"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "ĽŚĽŁĽóĽÉĽŚĽş¤ÎĽŐĽŠĽóĽČ¤ňźč¤Ă¤Ć¤Ż¤ë"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NTP ĽľĄźĽĐ"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -5425,19 +5554,19 @@ msgstr ""
"ĽÖĄźĽČĽÇĽŁĽšĽŻ¤ňşî¤ë¤Ę¤é¤ĐĄ˘ĽŐĽíĽĂĽÔĽŁĽÇĽŁĽšĽŻ¤ňĽÉĽéĽ¤ĽÖ¤ËÁŢĆţ¤ˇĄ˘\n"
"ĄÖOKĄ×¤ň˛Ą¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "şÇ˝é¤ÎĽŐĽíĽĂĽÔĄźĽÉĽéĽ¤ĽÖ"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "ĆóČÖĚܤμռíĽĂĽÔĄźĽÉĽéĽ¤ĽÖ"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "ĽšĽ­ĽĂĽ×"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5461,7 +5590,7 @@ msgstr ""
"Éüľě¤š¤ë¤Î¤ŹłÚ¤Ë¤Ę¤ę¤Ţ¤šĄŁĽÖĄźĽČĽÇĽŁĽšĽŻ¤ňşî¤ę¤Ţ¤š¤ŤĄŠ\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5475,28 +5604,28 @@ msgstr ""
"1.44 Mb ĽŐĽíĽĂĽÔĄź¤ÇľŻĆ°ĽÇĽŁĽšĽŻ¤ňşî¤ë¤Î¤Ď¤ż¤Ö¤óĚľÍý¤Ç¤šĄŁ\n"
"XFS ¤Ď¤Č¤Ć¤âÂ礭¤ĘĽÉĽéĽ¤ĽĐ¤ŹÉŹÍפŔ¤Ť¤é¤Ç¤š)."
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Í­¸ú¤ĘĽŐĽíĽĂĽÔĄźĽÉĽéĽ¤ĽÖ¤Ź¤˘¤ę¤Ţ¤ť¤óĄ¤¤´¤á¤ó¤Ę¤ľ¤¤"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "ĽÖĄźĽČĽÇĽŁĽšĽŻ¤ňşî¤ę¤ż¤¤ĽŐĽíĽĂĽÔĽŁĽÉĽéĽ¤ĽÖ¤ňÁŞÂň"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
msgstr "ĽŐĽíĽĂĽÔĄź¤ňĽÉĽéĽ¤ĽÖ %s ¤ËÁŢĆţ"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "ĽÖĄźĽČĽÇĽŁĽšĽŻ¤ÎşîŔŽ"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "ĽÖĄźĽČĽíĄźĽŔ¤Î˝ŕČ÷"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5508,11 +5637,11 @@ msgstr ""
"Ľ¤ĽóĽšĽČĄźĽë¤ĎÂł¤ą¤Ţ¤š¤ŹĄ˘ĽŢĽˇĽó¤ÎľŻĆ°¤Ë¤Ď\n"
"BootX ¤ňťČ¤Ă¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "aboot ¤ňťČ¤¤¤Ţ¤š¤ŤĄŠ"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5520,15 +5649,15 @@ msgstr ""
"aboot Ľ¤ĽóĽšĽČĄźĽëťţ¤ËĽ¨ĽéĄźČŻŔ¸ĄŁ\n"
"ĚľÍý¤ËĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ć¤ß¤Ţ¤š¤ŤĄŠĄĄ¤ż¤Ŕ¤ˇşÇ˝é¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤ŹÇ˲ő¤ľ¤ě¤Ţ¤šĄŁ"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "ĽÖĄźĽČĽíĄźĽŔĽ¤ĽóĽšĽČĄźĽëĂć"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "ĽÖĄźĽČĽíĄźĽŔ¤ÎĽ¤ĽóĽšĽČĄźĽë¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤żĄŁ°Ę˛ź¤ÎĽ¨ĽéĄź¤ŹČŻŔ¸:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5545,18 +5674,17 @@ msgstr ""
" ¤˝¤ě¤Ť¤é¤ł¤ŚĽżĽ¤Ľ×¤ˇ¤Ţ¤š: shut-down\n"
"źĄ¤ÎľŻĆ°ťţ¤Ë¤ĎĽÖĄźĽČĽíĄźĽŔ¤ÎĽ×ĽíĽóĽ×ĽČ¤Ź˝Đ¤ë¤Ď¤ş¤Ç¤šĄŁ"
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "śő¤ÎĽŐĽíĽĂĽÔĄź¤ňĽÉĽéĽ¤ĽÖ %s ¤ËÁŢĆţ¤ˇ¤Ć˛ź¤ľ¤¤"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Ľ¤ĽóĽšĽČĄźĽëĽŐĽíĽĂĽÔĄź¤ÎźŤĆ°şîŔŽ"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5566,7 +5694,8 @@ msgstr ""
"\n"
"ËÜĹö¤Ë˝ŞÎť¤ˇ¤Ţ¤š¤ŤĄŠ"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, fuzzy, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5577,7 +5706,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5596,11 +5725,16 @@ msgstr ""
"Ľ¤ĽóĽšĽČĄźĽë¸ĺ¤ÎŔßÄę¤Ë¤Ä¤¤¤Ć¤ĎĽćĄźĽśĽŹĽ¤ĽÉ¤ÎĄÖĽ¤ĽóĽšĽČĄźĽë¤ˇ¤ż¸ĺĄ×¤Î\n"
"žĎ¤ňť˛žČ¤ˇ¤Ć˛ź¤ľ¤¤ĄŁ"
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+#, fuzzy
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakesoft.com/sales/contact"
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Ľ¤ĽóĽšĽČĄźĽëĽŐĽíĽĂĽÔĄź¤ÎźŤĆ°şîŔŽ"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5613,15 +5747,15 @@ msgstr ""
"(¤ł¤ě¤ĎĘ̤μ޼ˇĽó¤Ř¤ÎĽ¤ĽóĽšĽČĄźĽëÍѤΤâ¤Î¤Ç¤š).\n"
"\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Á´źŤĆ°"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "şĆŔ¸"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "ĽŃĽĂĽąĄźĽ¸ÁŞÂň¤ÎĘݸ"
@@ -5647,44 +5781,24 @@ msgstr "consolehelper ¤Ź¤˘¤ę¤Ţ¤ť¤ó"
msgid "Choose a file"
msgstr "ĽŐĽĄĽ¤Ľë¤ňÁŞÂň"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "šâĹ٤ĘÁŞÂň"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr "´đËÜ"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "¤ŞÂÔ¤Á˛ź¤ľ¤¤"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "žđĘó"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "ĽÄĽęĄź¤ň¤Î¤Đ¤š"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "ĽÄĽęĄź¤ň˝Ě¤á¤ë"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "¤˝¤Î¤Ţ¤Ţ¤ČĽ°ĽëĄźĽ×Ę̤ňŔÚ¤ęÂؤ¨"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "ÉÔŔľ¤ĘÁŞÂňĄ¤¤â¤Ś°ěĹٝ¤Ć˛ź¤ľ¤¤\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "¤É¤ě¤Ë¤ˇ¤Ţ¤š¤ŤĄŠĄĘĽÇĽŐĽŠĽëĽČ¤Ď %sĄË"
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -5693,31 +5807,35 @@ msgstr ""
"°Ę˛ź¤ÎĽ¨ĽóĽČĽę¤âĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "¤É¤ě¤Ë¤ˇ¤Ţ¤š¤ŤĄŠĄĘ0/1, ĽÇĽŐĽŠĽëĽČ¤Ď %sĄË"
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "ĽÜĽżĽóĄÖ%sĄ×: %s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+msgid "Do you want to click on this button?"
msgstr "¤ł¤ÎĽÜĽżĽó¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤š¤ŤĄŠ"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "¤É¤ě¤Ë¤ˇ¤Ţ¤š¤ŤĄŠĄĘĽÇĽŐĽŠĽëĽČ¤Ď `%s'%sĄË"
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> ÁŞÂňťč¤Ď¤¤¤í¤¤¤í¤˘¤ę¤Ţ¤š (%s).\n"
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -5727,7 +5845,7 @@ msgstr ""
"¤˘¤ë¤¤¤ĎĂą¤Ë Enter ¤ň˛Ą¤ť¤ĐŔč¤ËżĘ¤ß¤Ţ¤šĄŁ\n"
"¤É¤ě¤Ë¤ˇ¤Ţ¤š¤ŤĄŠ"
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -5736,327 +5854,327 @@ msgstr ""
"=> Ăí°ŐĄ˘ĽéĽŮĽë¤ŹĘѤď¤ę¤Ţ¤ˇ¤ż:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr "ĹĐĎż¤ˇ¤Ę¤Ş¤ˇ"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "ĽÁĽ§Ľł (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "ĽÉĽ¤ĽÄ"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "ĽšĽÚĽ¤Ľó"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "ĽŐĽŁĽóĽéĽóĽÉ"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "ĽŐĽéĽóĽš"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "ĽÎĽëĽŚĽ§Ąź"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "ĽÝĄźĽéĽóĽÉ"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "ĽíĽˇĽ˘"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "ĽšĽŚĽ§ĄźĽÇĽó"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Ľ¤ĽŽĽęĽšź°Ľ­ĄźĽÜĄźĽÉ"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Ľ˘ĽáĽęĽŤź°Ľ­ĄźĽÜĄźĽÉ"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Ľ˘ĽëĽĐĽËĽ˘"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Ľ˘ĽëĽáĽËĽ˘ĄĘ¸Ĺ¤¤ĄË"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Ľ˘ĽëĽáĽËĽ˘ĄĘĽżĽ¤Ľ×ĽéĽ¤ĽżĄźĄË"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Ľ˘ĽëĽáĽËĽ˘ĄĘČŻ˛ťľ­šćĄË"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Ľ˘ĽźĽëĽĐĽ¤Ľ¸ĽăĽó(ĽéĽĆĽó)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "ĽŮĽëĽŽĄź"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr "Ľ˘ĽëĽáĽËĽ˘ĄĘČŻ˛ťľ­šćĄË"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "ĽÖĽëĽŹĽęĽ˘ (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "ĽÖĽéĽ¸Ľë"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "ĽŮĽéĽëĄźĽˇ"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "ĽšĽ¤ĽšĄĘĽÉĽ¤ĽÄź°ÇŰÎóĄË"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "ĽšĽ¤ĽšĄĘĽŐĽéĽóĽšź°ÇŰÎóĄË"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "ĽÁĽ§Ľł (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "ĽÉĽ¤ĽÄĄĘĽÇĽĂĽÉĽ­Ąź¤Ę¤ˇĄË"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "ĽÇĽóĽŢĄźĽŻ"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (ĽÎĽëĽŚĽ§Ąź)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak (ĽšĽŚĽ§ĄźĽÇĽó)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Ľ¨ĽšĽČĽËĽ˘"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Ľ°ĽëĽ¸Ľ˘ĄĘĄÖĽíĽˇĽ˘ź°Ą×ÇŰÎóĄË"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Ľ°ĽëĽ¸Ľ˘ĄĘĄÖĽéĽĆĽóĄ×ÇŰÎóĄË"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "ĽŽĽęĽˇĽă"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "ĽĎĽóĽŹĽęĄź"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "ĽŻĽíĽ˘ĽÁĽ˘"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Ľ¤ĽšĽéĽ¨Ľë"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Ľ¤ĽšĽéĽ¨ĽëĄĘČŻ˛ťľ­šćĄË"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Ľ¤ĽéĽó"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Ľ˘Ľ¤ĽšĽéĽóĽÉ"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Ľ¤ĽżĽęĽ˘"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "ĆüËܸě106Ľ­ĄźĽÜĄźĽÉ"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "ÄŤÁŻź°Ľ­ĄźĽÜĄźĽÉ"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "ĽéĽĆĽóĽ˘ĽáĽęĽŤ"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "ĽęĽČĽ˘ĽËĽ˘ AZERTY (ľě)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "ĽęĽČĽ˘ĽËĽ˘ AZERTY (żˇ)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "ĽęĽČĽ˘ĽËĽ˘ ĄÖżôťúÎóĄ× QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "ĽęĽČĽ˘ĽËĽ˘ ĄÖČŻ˛ťĄ× QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "ĽéĽČĽôĽŁĽ˘"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "ĽŢĽąĽÉĽËĽ˘"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "ĽŞĽéĽóĽŔ"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "ĽÝĄźĽéĽóĽÉĄĘqwerty ÇŰÎóĄË"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "ĽÝĄźĽéĽóĽÉĄĘqwertzÇŰÎóĄË"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "ĽÝĽëĽČĽŹĽë"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "ĽŤĽĘĽŔĄĘĽąĽŮĽĂĽŻĄË"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "ĽëĄźĽŢĽËĽ˘ĄĘqwertzĄË"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "ĽëĄźĽŢĽËĽ˘ĄĘqwertyĄË"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "ĽíĽˇĽ˘ĄĘYawertyĄË"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "ĽšĽíĽŮĽËĽ˘"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "ĽšĽíĽĐĽ­Ľ˘ (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "ĽšĽíĽĐĽ­Ľ˘ (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "ĽťĽëĽÓĽ˘(cyrillic)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr "ĽżĽßĽë"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "ĽżĽ¤ĄĄĽ­ĄźĽÜĄźĽÉ"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "ĽżĽ¸ĽŻĄĄĽ­ĄźĽÜĄźĽÉ"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "ĽČĽëĽłĄĘĹÁĹýĹŞĄÖŁĆĄ×ĽâĽÇĽëĄË"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "ĽČĽëĽłĄĘ¸˝ÂĺĄÖŁŃĄ×ĽâĽÇĽëĄË"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "ĽŚĽŻĽéĽ¤ĽĘ"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Ľ˘ĽáĽęĽŤź°Ľ­ĄźĽÜĄźĽÉĄĘšńşÝź°ĄË"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "ĽŮĽČĽĘĽŕ ĄÖżôťúÎóĄ× QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "ĽćĄźĽ´ĽšĽéĽÓĽ˘ĄĘĽéĽĆĽóĄË"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr "ąŚ Alt Ľ­Ąź"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr "ş¸ąŚ¤ÎĽˇĽŐĽČĽ­Ąź¤ňĆąťţ¤Ë"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr "Control ¤ČĽˇĽŐĽČ¤ňĆąťţ¤Ë"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr "CapsLock Ľ­Ąź"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr "Ctrl ¤Č Alt Ľ­Ąź¤ňĆąťţ¤Ë"
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr "Alt ¤ČĽˇĽŐĽČĽ­Ąź¤ňĆąťţ¤Ë"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr "ĄÖĽáĽËĽĺĄźĄ×Ľ­Ąź"
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr "ş¸ĄÖĽŚĽŁĽóĽÉĽŚĽşĄ×Ľ­Ąź"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr "ąŚĄÖĽŚĽŁĽóĽÉĽŚĽşĄ×Ľ­Ąź"
@@ -6069,7 +6187,31 @@ msgstr "˝ä˛óĽŢĽŚĽóĽČ %s\n"
msgid "Remove the logical volumes first\n"
msgstr "¤Ţ¤şĎŔÍýĽÜĽęĽĺĄźĽŕ¤ňşď˝ü¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "ĹĹĎĂČÖšć"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "ĽŐĽŠĄźĽŢĽĂĽČ"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -6112,10 +6254,6 @@ msgstr "1 ĽÜĽżĽó"
msgid "Generic 2 Button Mouse"
msgstr "ČĆÍѤÎ2ĽÜĽżĽóĽŢĽŚĽš"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "ČĆÍŃ"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "ĽŰĽ¤ĄźĽë"
@@ -6180,40 +6318,56 @@ msgstr "¤Ę¤ˇ"
msgid "No mouse"
msgstr "ĽŢĽŚĽš¤Ę¤ˇ"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "ĽŢĽŚĽš¤ňĽĆĽšĽČ¤ˇ¤Ć¤ß¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "ĽŢĽŚĽš¤ňÍ­¸ú¤Ë¤š¤ë¤Ë¤ĎĄ˘"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "ĽŰĽ¤ĄźĽë¤ňĆ°¤Ť¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŞ"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
"adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-1,-*-fixed-medium-r-"
"normal--24-*-100-100-c-*-jisx0208.1983-0,*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "´°Îť"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "źĄ ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- ¤â¤É¤ë"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Ŕľ¤ˇ¤ŻÉ˝ź¨˝ĐÍč¤Ţ¤ˇ¤ż¤ŤĄŠ"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "žđĘó"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "ĽÄĽęĄź¤ň¤Î¤Đ¤š"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "ĽÄĽęĄź¤ň˝Ě¤á¤ë"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "¤˝¤Î¤Ţ¤Ţ¤ČĽ°ĽëĄźĽ×Ę̤ňŔÚ¤ęÂؤ¨"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČ¤ŘŔÜÂł"
@@ -6260,7 +6414,7 @@ msgstr ""
"ĽˇĽšĽĆĽŕžĺ¤ËĽ¤ĄźĽľĽÍĽĂĽČĽ˘ĽŔĽ×Ľż¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤óĄŁ¤ł¤ÎźďÎŕ¤Î\n"
"ŔÜÂł¤ĎŔßÄę¤Ç¤­¤Ţ¤ť¤óĄŁ"
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "ĽÍĽĂĽČĽďĄźĽŻĽ¤ĽóĽżĄźĽŐĽ§Ľ¤Ľš¤ÎÁŞÂň"
@@ -6273,7 +6427,7 @@ msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤ËťČ¤ŚĽÍĽĂĽČĽďĄźĽŻĽ˘ĽŔĽ×Ľż¤ňÁŞ¤Ó¤Ţ¤ˇ¤ç¤Ś"
msgid "no network card found"
msgstr "ĽÍĽĂĽČĽďĄźĽŻĽŤĄźĽÉ¤Ź¸ŤÉŐ¤Ť¤ę¤Ţ¤ť¤ó"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "ĽÍĽĂĽČĽďĄźĽŻ¤ÎŔßÄę"
@@ -6288,15 +6442,15 @@ msgstr ""
"¤¤¤Ż¤Ä¤Ť¤ÎDHCPĽľĄźĽĐ¤ĎĆ°şî¤š¤ë¤Î¤ËĽŰĽšĽČĚž¤ňÉŹÍפȤˇ¤Ţ¤šĄŁ\n"
"ĽŰĽšĽČĚž¤ĎĄČmybox.mylab.myco.comĄÉ¤Î¤č¤Ś¤ËŔŠ¸Â¤ˇ¤Ć˛ź¤ľ¤¤ĄŁ"
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "ĽŰĽšĽČĚž:"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "ĽÍĽĂĽČĽďĄźĽŻŔßÄ꼌ĽŁĽśĄźĽÉ"
@@ -6351,7 +6505,7 @@ msgstr "ISDN¤ÎŔßÄę"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Ľ×ĽíĽĐĽ¤ĽŔ¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
"¤â¤ˇĽęĽšĽČ¤Ë¤Ę¤ą¤ě¤ĐĄ˘Unlisted¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ"
@@ -6370,14 +6524,14 @@ msgstr "Ŕ¤łŚ¤Î¤˝¤ÎžÍѼ׼íĽČĽłĽë"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Ŕ¤łŚ¤Î¤˝¤ÎžÍѼ׼íĽČĽłĽë \n"
" D-Channel ¤Ç¤Ę¤¤(ĽęĄźĽš¤ľ¤ě¤ż˛óŔţ)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "¤É¤ÎĽ×ĽíĽČĽłĽë¤ňťČ¤¤¤Ţ¤š¤ŤĄŠ"
#: ../../network/isdn.pm_.c:199
@@ -6401,7 +6555,8 @@ 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"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"¤â¤ˇISAĽŤĄźĽÉ¤ňťý¤Ă¤Ć¤¤¤ż¤éĄ˘źĄ¤Î˛čĚ̤ÎĂͤŹĹŹŔڤǤˇ¤ç¤ŚĄŁ\n"
@@ -6417,13 +6572,13 @@ msgid "Continue"
msgstr "Âł¤ą¤ë"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "¤˘¤Ę¤ż¤ÎISDNĽŤĄźĽÉ¤Ď¤É¤ě¤Ç¤š¤ŤĄŠ"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"ISDN ĽŤĄźĽÉ¤ň¸Ą˝Đ¤ˇ¤Ţ¤ˇ¤ż¤ŹĄ˘ĽżĽ¤Ľ×¤ŹĘŹ¤Ť¤ę¤Ţ¤ť¤óĄŁźĄ¤Î˛čĚ̤Ť¤é PCI ĽŤĄźĽÉ¤ň"
"Áޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ"
@@ -6440,47 +6595,47 @@ msgstr "ĽâĽÇĽŕ¤Ď¤É¤ÎĽˇĽęĽ˘ĽëĽÝĄźĽČ¤Ë¤Ä¤Ę¤Ź¤Ă¤Ć¤¤¤Ţ¤š¤ŤĄŠ"
msgid "Dialup options"
msgstr "ĽŔĽ¤Ľ˘ĽëĽ˘ĽĂĽ×ĽŞĽ×ĽˇĽçĽó"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Ŕ̞ܳ"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "ĹĹĎĂČÖšć"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "ĽíĽ°Ľ¤Ľó ID"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "ĽšĽŻĽęĽ×ĽČ¤ňťČ¤ŚÇ§žÚ"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "ĽżĄźĽßĽĘĽë¤Ť¤é¤ÎǧžÚ"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "ĽÉĽáĽ¤ĽóĚž"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "DNS ĽľĄźĽĐĄĘĽŞĽ×ĽˇĽçĽóĄË"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "ĽťĽŤĽóĽÉ DNS ĽľĄźĽĐĄĘĽŞĽ×ĽˇĽçĽóĄË"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6488,7 +6643,7 @@ msgstr ""
"\n"
"ŔÜÂł¤ňŔڤ뤍Ą˘¤˘¤ë¤¤¤ĎşĆŔßÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6496,11 +6651,11 @@ msgstr ""
"\n"
"Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤ňşĆŔßÄę¤Ç¤­¤Ţ¤šĄŁ"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČ¤ËŔÜÂł¤ľ¤ě¤Ć¤¤¤Ţ¤šĄŁ"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6508,32 +6663,32 @@ msgstr ""
"\n"
"Ľ¤ĽóĽżĄźĽÍĽĂĽČ¤ŘŔÜÂł¤š¤ë¤ŤŔÜÂł¤ňşĆŔßÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "¸˝şß¤ĎĽ¤ĽóĽżĄźĽÍĽĂĽČ¤ËŔÜÂł¤ˇ¤Ć¤¤¤Ţ¤ť¤óĄŁ"
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "ŔÜÂł"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "ŔÚĂÇ"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr "ŔÜÂł¤ÎŔßÄę"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤ČŔßÄę"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "¤Ç¤Ď %s ŔÜÂł¤ňŔßÄꤡ¤Ţ¤ˇ¤ç¤ŚĄŁ"
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6552,12 +6707,12 @@ msgstr ""
"\n"
"ĄÖOKĄ×¤ň˛Ą¤ˇ¤ĆťĎ¤á¤Ţ¤ˇ¤ç¤ŚĄŁ"
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "ĽÍĽĂĽČĽďĄźĽŻ¤ÎŔßÄę"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6568,9 +6723,9 @@ msgstr ""
"¤¤¤Ţ¤ÎŔßÄę¤ň¤˝¤Î¤Ţ¤ŢťČ¤Ś¤Ë¤Ď OK ¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁĽÍĽĂĽČĽďĄźĽŻ/Ľ¤ĽóĽżĄź"
"ĽÍĽĂĽČ¤ňşĆŔßÄꤚ¤ë¤Ë¤ĎĽ­ĽăĽóĽťĽë¤ň˛Ą¤ˇ¤Ţ¤šĄŁ\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"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"
@@ -6580,66 +6735,72 @@ msgstr ""
"¤ł¤ł¤ĎĽ¤ĽóĽżĄźĽÍĽĂĽČ/ĽÍĽĂĽČĽďĄźĽŻŔÜÂł¤ňŔßÄꤚ¤ë¤Č¤ł¤í¤Ç¤šĄŁ\n"
"źŤĆ°¸Ą˝Đ¤ňťČ¤¤¤ż¤Ż¤Ę¤ą¤ě¤ĐĄ˘ĽÁĽ§ĽĂĽŻ¤ň¤Ď¤ş¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "ŔßÄꤚ¤ëĽ×ĽíĽŐĽŁĄźĽë¤ÎÁŞÂň"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "źŤĆ°¸Ą˝Đ¤ňťČ¤Ś"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Ľ¨Ľ­ĽšĽŃĄźĽČĽâĄźĽÉ"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "ĽÇĽĐĽ¤Ľš¤Î¸Ą˝ĐĂć¤Ç¤šĄÄĄÄ"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "¤Ő¤Ä¤Ś¤ÎĽâĽÇĽŕŔÜÂł¤ňŔßÄę"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "ĽÝĄźĽČ %s ¤Ç¸Ą˝Đ¤ˇ¤Ţ¤ˇ¤ż"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN ŔÜÂł"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "%s ¤ň¸Ą˝Đ"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "ADSL ŔÜÂł"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "Ľ¤ĽóĽżĄźĽŐĽ§ĄźĽš %s ¤Ç¸Ą˝Đ"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "ĽąĄźĽÖĽëŔÜÂł"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "ĽąĄźĽÖĽëŔÜÂł¤Ź¸Ą˝Đ¤ľ¤ě¤Ţ¤ˇ¤ż"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "LAN ŔÜÂł"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "Ľ¤ĄźĽľĽÍĽĂĽČĽŤĄźĽÉ¤Ź¸Ą˝Đ¤ľ¤ě¤Ţ¤ˇ¤ż"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "ŔßÄꤡ¤ż¤¤ŔÜÂł¤ňÁޤó¤Ç˛ź¤ľ¤¤"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6649,23 +6810,23 @@ msgstr ""
"¤É¤ě¤ňťČ¤Ś¤ŤÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "ĽÖĄźĽČťţ¤ËŔÜÂł¤ňłŤťĎ¤ˇ¤Ţ¤š¤ŤĄŠ"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "ĽÍĽĂĽČĽďĄźĽŻŔßÄę"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr "ĽÍĽĂĽČĽďĄźĽŻ¤ňşĆľŻĆ°¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6676,7 +6837,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6686,7 +6847,7 @@ msgstr ""
"\n"
"ŔßÄę¤ň¤ł¤ě¤Ť¤éĽˇĽšĽĆĽŕ¤ËČżąÇ¤ľ¤ť¤Ţ¤šĄŁ\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6694,19 +6855,19 @@ msgstr ""
"¤ł¤ě¤Ź˝Ş¤ď¤Ă¤ż¤éĄ˘X ĽŚĽŁĽóĽÉĽŚ´Äś­¤ňşĆľŻĆ°¤ľ¤ť¤ĆĄ˘ĽŰĽšĽČĚžĘŃšš¤ËČź¤Ś\n"
"ĚäÂę¤ň˛óČň¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
"ŔßÄęĂć¤ËĚäÂꤏľŻ¤­¤Ţ¤ˇ¤żĄŁ\n"
"net_monitor ¤Ť mcc¤ÇŔÜÂł¤ňĽÁĽ§ĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁŔÜÂł¤Ź¤Ç¤­¤Ć¤¤¤Ę¤ą¤ě¤ĐŔßÄę¤ň"
"şĆľŻĆ°¤ˇ¤ż¤Ű¤Ś¤Ź¤¤¤¤¤Ť¤â¤ˇ¤ě¤Ţ¤ť¤ó"
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"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."
@@ -6715,7 +6876,7 @@ msgstr ""
"¤â¤Č¤ÎŔßÄę¤ňťÄ¤ˇ¤ż¤ą¤ě¤ĐĄ˘¤ł¤Î¤Ţ¤Ţ OK ¤ň˛Ą¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
"°Ę˛ź¤ÎĽŐĽŁĄźĽëĽÉ¤ňĘŃšš¤š¤ë¤ČĄ˘ŔßÄꤏĘѤď¤Ă¤Ć¤ˇ¤Ţ¤¤¤Ţ¤šĄŁ"
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6725,38 +6886,43 @@ msgstr ""
"łĆĄš¤ÎšŕĚܤˤϼɼüȤǜčŔÚ¤é¤ě¤ż˝˝żĘżô(Î㥤1.2.3.4)¤ŹIP Ľ˘ĽÉĽěĽš¤Č¤ˇ¤ĆĆţÎϤľ"
"¤ě¤Ţ¤šĄŁ"
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "ĽÍĽĂĽČĽďĄźĽŻĽÇĽĐĽ¤Ľš %s ¤ÎŔßÄę"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (ĽÉĽéĽ¤ĽĐ %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP Ľ˘ĽÉĽěĽš:"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "ĽÍĽĂĽČĽŢĽšĽŻ:"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "IP ¤ÎźŤĆ°ŔßÄę"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "ľŻĆ°ťţ¤ËłŤťĎ"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP Ľ˘ĽÉĽěĽš¤Ď 1.2.3.4 ¤Î¤č¤Ś¤ËĆţÎϤˇ¤Ć˛ź¤ľ¤¤"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6767,64 +6933,64 @@ msgstr ""
"ĽŰĽšĽČĚž¤ĎĄČmybox.mylab.myco.comĄÉ¤Î¤č¤Ś¤Ë¤ˇ¤Ć˛ź¤ľ¤¤ĄŁ\n"
"¤â¤ˇĽ˛ĄźĽČĽŚĽ§Ľ¤¤Ź¤˘¤ě¤ĐĄ¤¤˝¤Î IP Ľ˘ĽÉĽěĽš¤âĆţÎϤˇ¤Ć˛ź¤ľ¤¤ĄŁ"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS ĽľĄźĽĐ"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Ľ˛ĄźĽČĽŚĽ§Ľ¤ (Îă %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Ľ˛ĄźĽČĽŚĽ§Ľ¤ĽÇĽĐĽ¤Ľš"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Ľ×ĽíĽ­Ľˇ¤ÎŔßÄę"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "ĽÍĽĂĽČĽďĄźĽŻĽŤĄźĽÉ¤Îid¤ňÄÉŔץʼéĽĂĽ×ĽČĽĂĽ×¤ÇĘŘÍřĄË"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Proxy ¤Ď http://... ¤Ç¤š"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Proxy ¤Ď ftp://... ¤Ç¤š"
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČ¤ÎŔßÄę"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "şŁĽ¤ĽóĽżĄźĽÍĽĂĽČ¤ËŔÜÂł¤ˇ¤Ţ¤š¤ŤĄŠ"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "ŔÜÂł¤ňĽĆĽšĽČ¤ˇ¤Ć¤¤¤Ţ¤š..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "ĽˇĽšĽĆĽŕ¤ĎĽ¤ĽóĽżĄźĽÍĽĂĽČ¤ËŔÜÂł¤ˇ¤Ţ¤ˇ¤żĄŁ"
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "ĽťĽ­ĽĺĽęĽĆĽŁžĺ¤ÎÍýÍł¤ÇĄ˘ŔÜÂł¤ňŔÚ¤ę¤Ţ¤šĄŁ"
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6832,111 +6998,116 @@ msgstr ""
"¤ł¤ÎĽŢĽˇĽó¤ĎĽ¤ĽóĽżĄźĽÍĽĂĽČ¤Ř¤Ä¤Ę¤Ź¤Ă¤Ć¤¤¤Ę¤¤¤č¤Ś¤Ç¤š¤ÍĄŁ\n"
"ŔÜÂł¤ÎŔßÄę¤ň¤ä¤ę¤Ę¤Ş¤ˇ¤Ć¤ß¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "ŔÜÂł¤ÎŔßÄę"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "˛ź¤ÎĽŐĽŁĄźĽëĽÉ¤ňËä¤á¤ë¤ŤĽÁĽ§ĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "ĽŤĄźĽÉ IRQ"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "ĽŤĄźĽÉ mem (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "ĽŤĄźĽÉ IO"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "ĽŤĄźĽÉ IO_0"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "ĽŤĄźĽÉ IO_1"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "¤˘¤Ę¤ż¤ÎĹĹĎĂČÖšć"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Ľ×ĽíĽĐĽ¤ĽŔ¤ÎĚžÁ° (Îă provider.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Ľ×ĽíĽĐĽ¤ĽŔ¤ÎĹĹĎĂČÖšć"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Ľ×ĽíĽĐĽ¤ĽŔ¤Î dns 1 (ĽŞĽ×ĽˇĽçĽó)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Ľ×ĽíĽĐĽ¤ĽŔ¤Î dns 2 (ĽŞĽ×ĽˇĽçĽó)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "šń¤ÎÁŞÂň"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "ĽŔĽ¤Ľ˘ĽëĽâĄźĽÉ"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "ŔÜÂł¤ÎÂŽĹŮ: "
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "ŔÜÂł¤ÎĽżĽ¤ĽŕĽ˘ĽŚĽČĄĘÉĂĄË"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Ľ˘ĽŤĽŚĽóĽČĽíĽ°Ľ¤ĽóĄĘĽćĄźĽśĚžĄË"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Ľ˘ĽŤĽŚĽóĽČĽŃĽšĽďĄźĽÉ"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "ĽŢĽŚĽóĽČ¤ËźşÇÔ: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "¤ł¤ÎĽŢĽˇĽó¤Ç¤ĎĄ˘łČÄĽĽŃĄźĽĆĽŁĽˇĽçĽó¤ĎĽľĽÝĄźĽČ¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤ó"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"ĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽë¤Ë̤ťŘÄę¤Îˇę¤Ź¤˘¤ę¤Ţ¤š¤ŹĄ˘ťČ¤¨¤Ţ¤ť¤óĄŁ\n"
"¤É¤Ś¤ˇ¤Ć¤âťČ¤¤¤ż¤ą¤ě¤ĐĄ˘Ľ×ĽéĽ¤ĽŢĽęĽŃĄźĽĆĽŁĽˇĽçĽó¤ň°ÜĆ°¤ˇ¤ĆĄ˘Ě¤ťŘÄę¤Îˇę¤ň\n"
"łČÄĽĽŃĄźĽĆĽŁĽˇĽçĽó¤ÎÎ٤ˤâ¤Ă¤Ć¤­¤Ţ¤ˇ¤ç¤ŚĄŁ"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "%s ĽŐĽĄĽ¤Ľë¤Ť¤é¤ÎÉü¸ľ¤ŹźşÇÔ¤ˇ¤Ţ¤ˇ¤żĄ§ %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×ĽŐĽĄĽ¤Ľë¤Ź˛ő¤ě¤Ć¤¤¤Ţ¤š"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "ĽŐĽĄĽ¤Ľë %s ¤Ř¤Î˝ń¤­šţ¤ßĽ¨ĽéĄź"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6946,186 +7117,186 @@ msgstr ""
"ĽÇĄźĽż¤ÎŔ°šçŔ­ĽÁĽ§ĽĂĽŻ¤ŹÄ̤ę¤Ţ¤ť¤óĄŁ\n"
"¤Ä¤Ţ¤ęĽÇĽŁĽšĽŻ¤Ř˝ń¤­šţ¤ß¤ň¤ˇ¤Ć¤âĽÇĄźĽż¤Ź¤á¤Á¤ă¤Ż¤Á¤ă¤Ë¤Ę¤ę¤Ţ¤šĄŁ"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "ÉŹżÜ"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "˝ĹÍ×"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "¤˘¤ë¤ČşÇšâ"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "¤˘¤ë¤Č¤Ś¤ě¤ˇ¤¤"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "¤˘¤Ă¤Ć¤â¤¤¤¤"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - śŚÄĚ Unix °őşţĽˇĽšĽĆĽŕ"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR New GenerationĄĘżˇŔ¤ÂĺĄË"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - ĽéĽ¤ĽóĽ×ĽęĽóĽżĽÇĄźĽâĽó"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't QueueĄĘĽ­ĽĺĄź¤Ę¤ˇ¤Ç°őşţĄË"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "ĽíĄźĽŤĽëĽ×ĽęĽóĽż"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "ĽęĽâĄźĽČĽ×ĽęĽóĽż"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "ĽęĽâĄźĽČCUPS ĽľĄźĽĐžĺ¤ÎĽ×ĽęĽóĽż"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "ĽęĽâĄźĽČ lpdĽľĄźĽĐžĺ¤ÎĽ×ĽęĽóĽż"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "ĽÍĽĂĽČĽďĄźĽŻĽ×ĽęĽóĽżĄĘTCP/Ľ˝ĽąĽĂĽČĄË"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/ĽŚĽŁĽóĽÉĽŚĽş 95/98/NTĽľĄźĽĐžĺ¤ÎĽ×ĽęĽóĽż"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "NetWare ĽľĄźĽĐžĺ¤ÎĽ×ĽęĽóĽż"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Ľ×ĽęĽóĽżĽÇĽĐĽ¤Ľš¤ÎURI¤ňĆţÎĎ"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "Ľ¸ĽçĽÖ¤ňĽłĽŢĽóĽÉ¤ŘĽŃĽ¤Ľ×"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "̤ĂΤμâĽÇĽë"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "ĽíĄźĽŤĽëĽ×ĽęĽóĽż"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "ĽęĽâĄźĽČĽ×ĽęĽóĽż"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr " °Ę˛ź¤ÎĽŃĽéĽěĽëĽÝĄźĽČžĺ \\/*%s"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", USB Ľ×ĽęĽóĽż \\/*%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", ĽŃĽéĽěĽëĽÝĄźĽČžĺ¤ÎÂżľĄÇ˝ĽÇĽĐĽ¤Ľš \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr "USB žĺ¤ÎÂżľĄÇ˝ĽÇĽĐĽ¤Ľš"
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ", HP JetDirectžĺ¤ÎÂżľĄÇ˝ĽÇĽĐĽ¤Ľš"
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ", ÂżľĄÇ˝ĽÇĽĐĽ¤Ľš"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, c-format
msgid ", printing to %s"
msgstr "%s ¤Ř°őşţ˝ĐÎĎĂć"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr "LPD ĽľĄźĽĐ ĄÖ%sĄ×žĺ¤Î, Ľ×ĽęĽóĽżĄÖ%sĄ×"
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", TCP/IP ĽŰĽšĽČĄÖ%sĄ×, ĽÝĄźĽČ %s"
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr "ĽŚĽŁĽóĽÉĽŚĽşĽľĄźĽĐ ĄÖ%sĄ×žĺ¤Î, śŚÍ­ĄÖ%sĄ×"
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr "Novell ĽľĄźĽĐ ĄÖ%sĄ×žĺ¤Î, Ľ×ĽęĽóĽżĄÖ%sĄ×"
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ", ĽłĽŢĽóĽÉĄÖ%sĄ×¤ňťČÍŃ"
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr "Ŕ¸¤ÎĽ×ĽęĽóĽżĄĘĽÉĽéĽ¤ĽĐ¤Ę¤ˇĄË"
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(%sžĺ¤Ç)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "ĄĘ¤ł¤ÎĽŢĽˇĽóžĺ¤ÇĄË"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, c-format
msgid "On CUPS server \"%s\""
msgstr "CUPS ĽľĄźĽĐĄÖ%sĄ×žĺ¤Ç"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (ĽÇĽŐĽŠĽëĽČ)"
@@ -7147,11 +7318,11 @@ msgstr ""
"ĽęĽâĄźĽČ CUPS ĽľĄźĽĐžĺ¤ÎĽ×ĽęĽóĽż¤ĎĄ˘¤ł¤ł¤Ç¤ĎŔßÄęÉÔÍפǤšĄŁ\n"
"Ľ×ĽęĽóĽż¤ĎźŤĆ°¸Ą˝Đ¤ľ¤ě¤Ţ¤šĄŁ"
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
msgid "CUPS configuration"
msgstr "CUPS ŔßÄę"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
msgid "Specify CUPS server"
msgstr "CUPS ĽľĄźĽĐ¤ňťŘÄę"
@@ -7197,7 +7368,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP Ľ˘ĽÉĽěĽš¤Ď 192.168.1.20 ¤Î¤č¤Ś¤ËĆţÎϤˇ¤Ć˛ź¤ľ¤¤"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "ĽÝĄźĽČČÖšć¤ĎŔľżô¤Ç¤šĄŞ"
@@ -7205,7 +7376,7 @@ msgstr "ĽÝĄźĽČČÖšć¤ĎŔľżô¤Ç¤šĄŞ"
msgid "CUPS server IP"
msgstr "CUPS ĽľĄźĽĐ¤ÎIP"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "ĽÝĄźĽČ"
@@ -7213,20 +7384,12 @@ msgstr "ĽÝĄźĽČ"
msgid "Automatic CUPS configuration"
msgstr "źŤĆ° CUPS ŔßÄę"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "ĽÇĽĐĽ¤Ľš¤Î¸Ą˝ĐĂć¤Ç¤šĄÄĄÄ"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "ĽÝĄźĽČ¤ÎĽĆĽšĽČ"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr "Ľ×ĽęĽóĽżÄɲĂ"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7247,13 +7410,13 @@ msgstr ""
"Ľ×ĽęĽóĽżŔßÄę¤ËÉŹÍפʳƟďžđĘó¤ňËŹ¤Í¤ĆĄ˘łĆźďĽ×ĽęĽóĽżĽÉĽéĽ¤ĽĐ¤ä\n"
"¤˝¤ÎĽŞĽ×ĽˇĽçĽóĄ˘Ľ×ĽęĽóĽżŔÜÂłĘýź°¤ňÁŞ¤Ů¤ë¤č¤Ś¤Ë¤ˇ¤Ţ¤šĄŁ"
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "ĽíĄźĽŤĽëĽ×ĽęĽóĽż"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7284,11 +7447,11 @@ msgstr ""
"¤Ţ¤żprinterdrake ¤ŹźŤĆ°ĹŞ¤ËĽęĽâĄźĽČĽ×ĽęĽóĽż¤ň¸Ą˝Đ¤ˇ¤Ę¤ą¤ě¤ĐĄ˘\n"
"ĄÖĽ¨Ľ­ĽšĽŃĄźĽČĽâĄźĽÉĄ×¤ňťČ¤Ă¤ĆŔßÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr "Ľ×ĽęĽóĽżźŤĆ°¸Ą˝Đ"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7312,11 +7475,11 @@ msgstr ""
"¤ˇ¤ż¤ą¤ě¤ĐĄ˘Mandrake ĽłĽóĽČĽíĄźĽëĽťĽóĽżĄź¤ÎĄÖĽĎĄźĽÉĽŚĽ§Ľ˘Ą×¤ÎĂć¤Î\n"
"ĄÖĽ×ĽęĽóĽżĄ×¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr "Ľ×ĽęĽóĽż¤ÎźŤĆ°¸Ą˝Đ"
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7331,33 +7494,37 @@ msgstr ""
"\n"
"¤ÇĄ˘ËÜĹö¤ËĽ×ĽęĽóĽż¤ÎźŤĆ°¸Ą˝Đ¤ň¤ˇ¤Ţ¤š¤ŤĄŠ"
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "źŤĆ°¸Ą˝Đ¤ň¤š¤ë"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr "Ľ×ĽęĽóĽż¤ňźęĆ°¤ÇŔßÄę"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "ĽÝĄźĽČ¤ÎĽĆĽšĽČ"
+
+#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
msgstr "%s ¤ň¸Ą˝Đ"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "ĽŃĽéĽěĽëĽÝĄźĽČžĺ¤ÎĽ×ĽęĽóĽż \\/*%s"
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr "USB Ľ×ĽęĽóĽż \\/*%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
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, ..., "
@@ -7369,11 +7536,11 @@ msgstr ""
"¤Ź LPT1:, LPT2:, ..., ¤ËÂĐąţ¤ˇ¤ĆĄ˘1ČÖĚܤΠUSB Ľ×ĽęĽóĽż: /dev/usb/lp0, 2ČÖĚÜ"
"¤Î USB Ľ×ĽęĽóĽż: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
msgstr "ĽÇĽĐĽ¤Ľš¤ŤĽŐĽĄĽ¤ĽëĚž¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
@@ -7381,7 +7548,7 @@ msgstr ""
"ĽíĄźĽŤĽëĽ×ĽęĽóĽż¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤óĄŞ\n"
"\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
@@ -7390,7 +7557,7 @@ msgstr ""
"Ľ¤ĽóĽšĽČĄźĽë¸ĺ¤ËMandrake ĽłĽóĽČĽíĄźĽëĽťĽóĽż¤ÇĄÖĽĎĄźĽÉĽŚĽ§Ľ˘Ą×¤ÎĂć¤Î\n"
"ĄÖĽ×ĽęĽóĽżĄ×¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
@@ -7399,7 +7566,7 @@ msgstr ""
"ĄÖĽ¨Ľ­ĽšĽŃĄźĽČĽâĄźĽÉĄ×¤ËĘŃšš¤ˇ¤Ć¤Ť¤éĄÖżˇľŹĽ×ĽęĽóĽż¤ÎÄɲåפňĽŻĽęĽĂĽŻ\n"
"¤ˇ¤Ę¤Ş¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7407,7 +7574,7 @@ msgstr ""
"°Ę˛ź¤ÎĽ×ĽęĽóĽż¤ŹźŤĆ°¸Ą˝Đ¤ľ¤ě¤Ţ¤ˇ¤żĄŁ¤â¤ˇ¤ł¤ě¤ŹŔßÄꤡ¤ż¤¤¤â¤Î¤Ç¤Ę¤ą¤ě¤ĐĄ˘\n"
"ĆţÎϚԤ˥˘ĽÇĽĐĽ¤ĽšĚž/ĽŐĽĄĽ¤ĽëĚž¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7415,7 +7582,7 @@ msgstr ""
"°Ę˛ź¤ÎĽ×ĽęĽóĽż¤ŹźŤĆ°¸Ą˝Đ¤ľ¤ě¤Ţ¤ˇ¤żĄŁ¤â¤ˇŔßÄꤡ¤ż¤¤¤â¤Î¤Ź¤ł¤ł¤Ë¤Ę¤ą¤ě¤ĐĄ˘\n"
"ĆţÎϚԤ˥˘ĽÇĽĐĽ¤ĽšĚž/ĽŐĽĄĽ¤ĽëĚž¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7426,7 +7593,7 @@ msgstr ""
"¸Ą˝Đ¤ľ¤ě¤Ć¤¤¤Ę¤Ť¤Ă¤ż¤ęĄ˘ĽŤĽšĽżĽŕŔßÄę¤ň¤ˇ¤ż¤ą¤ě¤ĐĄÖźęĆ°ŔßÄęĄ×¤ňÍ­¸ú¤Ë¤ˇ¤Ć¤Ż¤Ŕ"
"¤ľ¤¤ĄŁ"
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7437,7 +7604,7 @@ msgstr ""
"Ľ×ĽęĽóĽż¤Ď´°Á´¤ËźŤĆ°¤ÇŔßÄꤾ¤ě¤Ţ¤šĄŁ¸Ą˝Đ¤ľ¤ě¤Ć¤¤¤Ę¤Ť¤Ă¤ż¤ęĄ˘ĽŤĽšĽżĽŕŔßÄę\n"
"¤ˇ¤ż¤ą¤ě¤ĐĄÖźęĆ°ŔßÄęĄ×¤ňÍ­¸ú¤Ë¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7445,11 +7612,11 @@ msgstr ""
"Ľ×ĽęĽóĽż¤ŹŔÜÂł¤ľ¤ě¤Ć¤¤¤ëĽÝĄźĽČ¤ňÁޤ֤ŤĄ˘ĆţÎϚԤ˼Ǽм¤ĽšĚž/ĽŐĽĄĽ¤ĽëĚž¤ň\n"
"ĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
msgstr "ĽâĽÇĽŕ¤Ď¤É¤ÎĽˇĽęĽ˘ĽëĽÝĄźĽČ¤Ë¤Ä¤Ę¤Ź¤Ă¤Ć¤¤¤Ţ¤š¤ŤĄŠ"
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7457,52 +7624,65 @@ msgstr ""
"(ĽŃĽéĽěĽëĽÝĄźĽČ¤Ę¤é: /dev/lp0, /dev/lp1,... ¤Ź LPT1:, LPT2:, ..., ¤ËÂĐąţĄ˘1ČÖ"
"ĚܤΠUSB Ľ×ĽęĽóĽż: /dev/usb/lp0, 2ČÖĚܤΠUSB Ľ×ĽęĽóĽż: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
msgstr "Ľ×ĽęĽóĽż¤ŤĽÇĽĐĽ¤Ľš¤ňĆţÎĎĄŚÁŞÂň"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
msgstr "ĽŢĽËĽĺĽ˘ĽëŔßÄę"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
+#, fuzzy
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
"¤˘¤Ę¤ż¤ÎĽ×ĽęĽóĽż¤ĎĄ˘HPŔ˝ÂżľĄÇ˝ĽÇĽĐĽ¤Ľš (OfficeJet, PSC, PhotoSmart, LaserJet "
"1100/1200/1220/3200/3300 ¤ÎĽšĽ­ĽăĽĘ¤Ä¤­) ¤Ç¤š¤Ť?"
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
msgstr "HPOJ ĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽëĂć..."
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr "ĽÇĽĐĽ¤Ľš¤ňĽÁĽ§ĽĂĽŻ¤ˇ¤ĆHPOJ ¤ňĽ¤ĽóĽšĽČĄźĽëĂć..."
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
msgstr "SANE ĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽëĂć..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "ĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽëĂć..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr "HP ĽŢĽëĽÁľĄÇ˝ĽÇĽĐĽ¤Ľš¤ÇĽšĽ­ĽăĽóĂć"
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+#, fuzzy
+msgid "Photo memory card access on your HP multi-function device"
+msgstr "HP ĽŢĽëĽÁľĄÇ˝ĽÇĽĐĽ¤Ľš¤ÇĽšĽ­ĽăĽóĂć"
+
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr "Ľ×ĽęĽóĽżĽÝĄźĽČ¤ň CUPS ÍѤËÄóśĄĂć..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr "Ľ×ĽęĽóĽżĽÇĄźĽżĽŮĄźĽš¤ňĆɤó¤Ç¤¤¤Ţ¤š..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "ĽęĽâĄźĽČlpdĽ×ĽęĽóĽżĽŞĽ×ĽˇĽçĽó"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7510,27 +7690,27 @@ msgstr ""
"ĽęĽâĄźĽČ¤Î lpd ¤Î Ľ×ĽęĽóĽż¤ňťČ¤Ś¤Ë¤ĎĄ¤Ľ×ĽęĽóĽżĽľĄźĽĐ¤Î\n"
"ĽŰĽšĽČĚž¤ČĽľĄźĽĐžĺ¤ÎĽ×ĽęĽóĽżĚž¤ŹÉŹÍפˤʤę¤Ţ¤šĄŁ."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "ĽęĽâĄźĽČĽŰĽšĽČĚž"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "ĽęĽâĄźĽČĽ×ĽęĽóĽżĚž"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "ĽęĽâĄźĽČĽŰĽšĽČĚž¤Ź¤˘¤ę¤Ţ¤ť¤óĄŞ"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "ĽęĽâĄźĽČĽ×ĽęĽóĽżĚž¤Ź¤˘¤ę¤Ţ¤ť¤óĄŞ"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (ĽŚĽŁĽóĽÉĽŚĽş 9x/NT) Ľ×ĽęĽóĽż¤ÎĽŞĽ×ĽˇĽçĽó"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7541,35 +7721,35 @@ msgstr ""
"¿ʏĽ×ĽęĽóĽČĽľĄźĽĐ¤Î IP Ľ˘ĽÉĽěĽšĄ¤Ľ˘ĽŻĽťĽš¤ˇ¤ż¤¤Ľ×ĽęĽóĽż¤ÎśŚÍ­ĚžĄ¤\n"
"ĹŹŔڤʼ楟ĽśĚžĄ¤ĽŃĽšĽďĄźĽÉ¤Ş¤č¤ÓĽďĄźĽŻĽ°ĽëĄźĽ×¤ÎžđĘó¤ŹÉŹÍפˤʤę¤Ţ¤šĄŁ"
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "SMBĽľĄźĽĐĽŰĽšĽČ"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "SMBĽľĄźĽĐ¤ÎIP"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "ĽˇĽ§Ľ˘Ěž"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "ĽďĄźĽŻĽ°ĽëĄźĽ×"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "ĽľĄźĽĐĚž¤ŤĄ˘ĽľĄźĽĐ¤ÎIP¤Ď¤É¤Ś¤ˇ¤Ć¤âÍפę¤Ţ¤šĄŞ"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "SambaĽˇĽ§Ľ˘Ěž¤Ź¤˘¤ę¤Ţ¤ť¤óĄŞ"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7593,7 +7773,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7602,7 +7782,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7610,11 +7790,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Netware Ľ×ĽęĽóĽż¤ÎĽŞĽ×ĽˇĽçĽó"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
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 "
@@ -7625,27 +7805,27 @@ msgstr ""
"¤ČĄ¤Ľ˘ĽŻĽťĽš¤ˇ¤ż¤¤Ľ×ĽęĽóĽż¤ÎĽ×ĽęĽóĽČĽ­ĽĺĄźĚžĄ¤ĹŹŔڤʼ楟ĽśĚž¤Ş¤č¤Ó\n"
"ĽŃĽšĽďĄźĽÉ¤ŹÉŹÍפˤʤę¤Ţ¤šĄŁ"
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Ľ×ĽęĽóĽżĽľĄźĽĐ"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "°őşţĽ­ĽĺĄź¤ÎĚžÁ°"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "NCP ĽľĄźĽĐĚž¤Ź¤˘¤ę¤Ţ¤ť¤óĄŞ"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "NCP Ľ­ĽĺĄźĚž¤Ź¤˘¤ę¤Ţ¤ť¤óĄŞ"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
msgstr "TCP/Ľ˝ĽąĽĂĽČĽ×ĽęĽóĽż¤ÎĽŞĽ×ĽˇĽçĽó"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -7657,19 +7837,19 @@ msgstr ""
"ÄĚžď9100¤Ç¤š¤ŹĄ˘¤Ű¤Ť¤ÎĽľĄźĽĐ¤Ŕ¤Č¤Ţ¤Á¤Ţ¤Á¤Ç¤šĄŁĽĎĄźĽÉĽŚĽ§Ľ˘¤ÎĽŢĽËĽĺĽ˘Ľë¤ň\n"
"¸Ť¤Ţ¤ˇ¤ç¤ŚĄŁ"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Ľ×ĽęĽóĽżĽŰĽšĽČĚž"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "Ľ×ĽęĽóĽżĽŰĽšĽČĚž¤Ź¤˘¤ę¤Ţ¤ť¤óĄŞ"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Ľ×ĽęĽóĽżĽÇĽĐĽ¤Ľš¤ÎURI"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
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 "
@@ -7679,11 +7859,11 @@ msgstr ""
"¤ł¤ÎURI¤ĎCUPSťĹÍͤŤFoomaticťĹÍͤǝŘÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
"¤Ę¤ŞĄ˘¤š¤Ů¤Ć¤ÎURIĽżĽ¤Ľ×¤ŹÁ´ĽšĽ×ĄźĽé¤ÇĽľĽÝĄźĽČ¤ľ¤ě¤Ć¤¤¤ë¤ď¤ą¤¸¤ă¤Ę¤¤¤Ç¤šĄŁ"
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "Í­¸ú¤ĘURI¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŞ"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -7692,27 +7872,23 @@ msgstr ""
"ŔâĚŔ¤äžě˝ę¤ÎÍó¤ĎśőÍó¤Ç¤â¤Ť¤Ţ¤¤¤Ţ¤ť¤óĄŁ\n"
"¤ł¤ě¤ĎĽćĄźĽś¤Ë¤ď¤Ť¤ę¤ä¤š¤Ż¤š¤ë¤ż¤á¤Î¤â¤Î¤Ç¤šĄŁ"
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Ľ×ĽęĽóĽż¤ÎĚžÁ°"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Ľ×ĽęĽóĽż¤ÎŔâĚŔ"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Ľ×ĽęĽóĽż¤Îžě˝ę"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr "Ľ×ĽęĽóĽżĽÇĄźĽżĽŮĄźĽš¤ň˝ŕČ÷Ăć..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
msgid "Your printer model"
msgstr "Ľ×ĽęĽóĽż¤ÎľĄźď"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7737,24 +7913,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
msgid "The model is correct"
msgstr "¤ł¤ÎĽâĽÇĽë¤ňťČ¤Ś"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
msgid "Select model manually"
msgstr "źęĆ°¤ÇÁޤÖ"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Ľ×ĽęĽóĽż¤ÎľĄźď¤ňÁޤÖ"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "¤É¤ÎľĄźď¤ÎĽ×ĽęĽóĽż¤ňťČ¤Ă¤Ć¤¤¤Ţ¤š¤ŤĄŠ"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7768,7 +7944,7 @@ msgstr ""
"ĽŤĄźĽ˝Ľë¤Ź¤Ţ¤Á¤Ź¤Ă¤żĽâĽÇĽë˛˝ĄÖĽĘĽŢ¤ÎĽ×ĽęĽóĽżĄĘRaw Printer)Ą×¤ňťŘ¤ˇ¤Ć\n"
"¤¤¤ż¤éĄ˘°ěÍ÷¤Ť¤éŔľ¤ˇ¤¤ľĄźď¤ňĂľ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -7776,11 +7952,11 @@ msgstr ""
"¤˘¤Ę¤ż¤ÎĽ×ĽęĽóĽż¤Ź¤Ę¤ą¤ě¤ĐĄ˘¸ß´šŔ­¤Î¤˘¤ëĽ×ĽęĽóĽżĄĘĽ×ĽęĽóĽż¤ÎĽŢĽËĽĺĽ˘Ľë¤Ť\n"
"Îŕť÷Ľ×ĽęĽóĽż¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "OKI winĽ×ĽęĽóĽż¤ÎŔßÄę"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7797,11 +7973,11 @@ msgstr ""
"ĽĆĽšĽČĽÚĄźĽ¸°őşţ¤ÎÁ°¤ËĄ˘şÇ˝é¤ÎĽŃĽéĽěĽëĽÝĄźĽČ¤Ë¤Ä¤Ę¤Ž¤Ę¤Ş¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
"¤ľ¤â¤Ę¤¤¤ČťČ¤¨¤Ţ¤ť¤óĄŁŔÜÂłźďÎŕ¤ÎŔßÄę¤ĎĚľťë¤ľ¤ě¤Ţ¤šĄŁ"
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "LexmarkĽ¤ĽóĽŻĽ¸Ľ§ĽĂĽČ¤ÎŔßÄę"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7812,7 +7988,7 @@ msgstr ""
"ĽľĽÝĄźĽČ¤ˇ¤Ţ¤ť¤óĄŁĽęĽâĄźĽČĽŢĽˇĽó¤äĽ×ĽęĽóĽżĽľĄźĽĐžĺ¤ÎĽ×ĽęĽóĽż¤ĎťČ¤¨¤Ţ¤ť¤óĄŁ\n"
"Ľ×ĽęĽóĽż¤ňĽíĄźĽŤĽëĽÝĄźĽČ¤Ë¤Ä¤Ę¤°¤ŤŔÜÂł¤ľ¤ě¤Ć¤¤¤ëĽŢĽˇĽó¤ÇŔßÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7833,7 +8009,7 @@ msgstr ""
"¤Ť¤é°őşţĽŘĽĂĽÉ¤ÎĽ˘ĽéĽ¤ĽóĽáĽóĽČĽÚĄźĽ¸¤ň\"lexmarkmaintain\" ¤Ç°őşţ¤ˇ¤ĆĄ˘¤ł¤ÎĽ×"
"ĽíĽ°ĽéĽŕ¤ÇĽŘĽĂĽÉ¤ÎĽ˘ĽéĽ¤ĽóĽáĽóĽČ¤ňÄ´Ŕ°¤ˇ¤Ţ¤šĄŁ"
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7847,22 +8023,22 @@ msgstr ""
"ĽÚĄźĽ¸¤ÎÂ礭¤ľ¤ČĽ¤ĽóĽŻ¤ÎźďÎŕĄĘłşĹö¤š¤ëžěšç¤Î¤ßĄË¤ŹŔľ¤ˇ¤ŻŔßÄꤾ¤ě¤Ć¤¤¤ë¤Ť¤ňłÎ"
"ǧ¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ¤Ę¤ŞĄ˘ÄśšâÉĘźÁ°őşţ¤Ď¤š¤´¤Żťţ´Ö¤Ź¤Ť¤Ť¤ë¤ł¤Č¤Ź¤˘¤ę¤Ţ¤šĄŁ"
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "ĽŞĽ×ĽˇĽçĽó %s ¤ĎŔ°żô¤Ç¤šĄŞ"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "ĽŞĽ×ĽˇĽçĽó %s ¤Ďżôťú¤Ç¤šĄŞ"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "ĽŞĽ×ĽˇĽçĽó %s ČĎ°Ďł°¤Ç¤š!"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7871,11 +8047,11 @@ msgstr ""
"¤ł¤ÎĽ×ĽęĽóĽż (\"%s\") ¤ň\n"
"ĽÇĽŐĽŠĽëĽČĽ×ĽęĽóĽż¤Ë¤ˇ¤Ţ¤š¤ŤĄŠ"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "ĽĆĽšĽČĽÚĄźĽ¸"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7887,39 +8063,39 @@ msgstr ""
"¤Ę¤¤ĽěĄźĽśĽ×ĽęĽóĽż¤Ç¤Ď˝ĐÎϤǤ­¤Ę¤¤¤ł¤Č¤â¤˘¤ę¤Ţ¤šĄŁÂż¤Ż¤Îžěšç¤Ďɸ˝ŕĽÚĄźĽ¸¤Ź°ő"
"şţ¤Ç¤­¤ě¤ĐÂçžćÉפǤšĄŁ"
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "ĽĆĽšĽČĽÚĄźĽ¸¤Ę¤ˇ"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "°őşţ"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "ɸ˝ŕĽĆĽšĽČĽÚĄźĽ¸"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr "Ę̤μƼšĽČĽÚĄźĽ¸ (ĽěĽżĄź)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "Ę̤μƼšĽČĽÚĄźĽ¸ (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "źĚżżĽĆĽšĽČĽÚĄźĽ¸"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
msgstr "ĽĆĽšĽČĽÚĄźĽ¸¤ň°őşţ¤ˇ¤Ę¤¤"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "ĽĆĽšĽČĽÚĄźĽ¸°őşţĂćĄÄĄÄ"
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7934,7 +8110,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -7942,15 +8118,15 @@ msgstr ""
"ĽĆĽšĽČĽÚĄźĽ¸¤ňĽ×ĽęĽóĽżĽÇĄźĽâĽó¤ËÁ÷¤ę¤Ţ¤ˇ¤żĄŁ\n"
"Ľ×ĽęĽóĽż¤ŹĆ°¤­˝Đ¤š¤Ţ¤ÇĄ˘¤Á¤ç¤Ă¤Čťţ´Ö¤Ź¤Ť¤Ť¤ę¤Ţ¤šĄŁ\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr "¤Ś¤Ţ¤ŻĆ°¤­¤Ţ¤ˇ¤ż¤ŤĄŠ"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr "Ŕ¸¤ÎĽ×ĽęĽóĽż"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7963,7 +8139,7 @@ msgstr ""
"ĄÖkprinter <file>Ą×¤ňťČ¤¤¤Ţ¤šĄŁĽ°ĽéĽŐĽŁĽĂĽŻĽÄĄźĽë¤ĎĄ˘\n"
"Ľ×ĽęĽóĽżÁŞÂň¤ČĽŞĽ×ĽˇĽçĽóŔßÄę¤ň´ĘĂą¤Ë¤ˇ¤Ć¤Ż¤ě¤Ţ¤šĄŁ\n"
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
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 "
@@ -7974,8 +8150,8 @@ msgstr ""
"¤óĄŁ\n"
"°őşţ¤š¤ëĽŐĽĄĽ¤Ľë¤ĎĽ˘Ľ×ĽęĽąĄźĽˇĽçĽó¤Ť¤é¤Ż¤ë¤Ť¤é¤Ç¤šĄŁ\n"
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7988,18 +8164,18 @@ msgstr ""
"ĽłĽŢĽóĽÉĽéĽ¤Ľó¤Ë´őËž¤ÎŔßÄę¤ňÄɲ䚤ë¤Ŕ¤ą¤Ç¤šĄŁ\n"
"¤ż¤Č¤¨¤ĐĄÖ%s <file>Ą×¤Č¤¤¤Śśńšç¤Ç¤šĄŁ "
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#, fuzzy, 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\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
"¤¤¤Ţ¤ÎĽ×ĽęĽóĽż¤ÇťČ¤¨¤ëĽŞĽ×ĽˇĽçĽó°ěÍ÷¤ň¸Ť¤ë¤Ë¤ĎĄ˘˛ź¤Î°ěÍ÷¤ňĆɤऍĄ˘\n"
"¤˘¤ë¤¤¤ĎĄÖĽŞĽ×ĽˇĽçĽó°ěÍ÷¤ň°őşţĄ×ĽÜĽżĽó¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8007,7 +8183,7 @@ msgstr ""
"¤¤¤Ţ¤ÎĽ×ĽęĽóĽż¤ÇťČ¤¨¤ë°őşţĽŞĽ×ĽˇĽçĽó°ěÍ÷¤Ď°Ę˛ź¤ÎÄ̤ę¤Ç¤š:\n"
"\n"
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8016,8 +8192,8 @@ msgstr ""
"ĽłĽŢĽóĽÉĽéĽ¤ĽóĄĘĽżĄźĽßĽĘĽëĽŚĽŁĽóĽÉĽŚĄË¤Ť¤éĽŐĽĄĽ¤Ľë¤ň°őşţ¤š¤ë¤Ë¤ĎĄ˘\n"
"ĽłĽŢĽóĽÉĄÖ%s <file>Ą×¤ňťČ¤¤¤Ţ¤šĄŁ\n"
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8028,7 +8204,7 @@ msgstr ""
"¤óĄŁ\n"
"°őşţ¤š¤ëĽŐĽĄĽ¤Ľë¤ĎĽ˘Ľ×ĽęĽąĄźĽˇĽçĽó¤Ť¤é¤Ż¤ë¤Ť¤é¤Ç¤šĄŁ\n"
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8036,7 +8212,7 @@ msgstr ""
"¤¤¤Ţ¤ÎĽ×ĽęĽóĽż¤ÇťČ¤¨¤ëĽŞĽ×ĽˇĽçĽó°ěÍ÷¤ň¸Ť¤ë¤Ë¤ĎĄ˘ĄÖĽŞĽ×ĽˇĽçĽó°ěÍ÷¤ň°őşţĄ×ĽÜĽż"
"Ľó¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ"
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8045,7 +8221,7 @@ msgstr ""
"ĽłĽŢĽóĽÉĽéĽ¤ĽóĄĘĽżĄźĽßĽĘĽëĽŚĽŁĽóĽÉĽŚĄË¤Ť¤éĽŐĽĄĽ¤Ľë¤ň°őşţ¤š¤ë¤Ë¤ĎĄ˘\n"
"ĽłĽŢĽóĽÉĄÖ%s <file>Ą×¤Ţ¤ż¤ĎĄÖ%s <file>Ą×¤ňťČ¤¤¤Ţ¤šĄŁ\n"
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8060,7 +8236,7 @@ msgstr ""
"¤˘¤ë¤Ç¤ˇ¤ç¤ŚĄŁ¤ł¤ě¤ňĽŻĽęĽĂĽŻ¤š¤ë¤ČĄ˘°őşţĽ¸ĽçĽÖ¤ŹÁ´Éô¤š¤°¤Ëťß¤Ţ¤ę¤Ţ¤šĄŁ\n"
"¤ł¤ě¤Ď¤ż¤Č¤¨¤ĐťćľÍ¤Ţ¤ę¤Î¤Č¤­¤ËĘŘÍř¤Ç¤šĄŁ\n"
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -8073,38 +8249,49 @@ msgstr ""
"ĘѤ¨¤ľ¤ť¤Ć¤Ż¤ě¤Ţ¤šĄŁĽłĽŢĽóĽÉĽéĽ¤Ľó¤Ë´őËž¤ÎŔßÄę¤ňÄɲ䚤ë¤Ŕ¤ą¤Ç¤šĄŁ\n"
"¤ż¤Č¤¨¤ĐĄÖ%s <file>Ą×¤Č¤¤¤Śśńšç¤Ç¤šĄŁ\n"
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "ĘĤ¸¤ë"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "°Ę˛ź¤Ç°őşţĂć/ĽšĽ­ĽăĽóĄ§ \"%s\""
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "°Ę˛ź¤Ç°őşţĂć/ĽšĽ­ĽăĽóĄ§ \"%s\""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "°Ę˛ź¤Ç°őşţĂć/ĽšĽ­ĽăĽóĄ§ \"%s\""
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "°Ę˛ź¤ÎĽ×ĽęĽóĽż¤Ç°őşţĂ楧 \"%s\""
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "ĘĤ¸¤ë"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "Ľ×ĽęĽóĽżĽŞĽ×ĽˇĽçĽó°ěÍ÷"
-#: ../../printerdrake.pm_.c:1766
-#, c-format
+#: ../../printerdrake.pm_.c:1802
+#, fuzzy, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
@@ -8117,38 +8304,30 @@ msgstr ""
"\n"
"¤ł¤ÎĽÇĽĐĽ¤Ľš¤Ç¤Ď\"scannerdrake\" ¤ĎťČ¤ď¤Ę¤¤¤Ç¤Ż¤Ŕ¤ľ¤¤!"
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-"HP ÂżľĄÇ˝ĽÇĽĐĽ¤Ľš¤ňźŤĆ°ŔßÄꤡ¤ĆĄ˘ĽšĽ­ĽăĽĘ¤âťČ¤¨¤ë¤č¤Ś¤Ë¤ˇ¤Ţ¤ˇ¤żĄŁ¤ł¤ě¤ÇĽłĽŢĽó"
-"ĽÉĽéĽ¤Ľó¤Ť¤é\"ptal-hp %s scan ...\"¤ÇĽšĽ­ĽăĽó¤Ź¤Ç¤­¤Ţ¤šĄŁĽ°ĽéĽŐĽŁĽĂĽŻĽ¤ĽóĽżĄź"
-"ĽŐĽ§ĄźĽš¤äGIMP¤Ť¤é¤ÎĽšĽ­ĽăĽó¤ĎĄ˘¤ł¤ÎĽÇĽĐĽ¤Ľš¤Ç¤Ď¤Ţ¤ŔĽľĽÝĄźĽČ¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤óĄŁ"
-"žÜ¤ˇ¤Ż¤Ď\"/usr/share/doc/hpoj-0.8/ptal-hp-scan.html\" ¤ňť˛žČ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁHP "
-"LaserJet 1100 ¤Ť 1200 ¤Îžěšç¤Ë¤ĎĄ˘ĽšĽ­ĽăĽĘĽŞĽ×ĽˇĽçĽó¤ŹĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ć¤¤¤Ę¤¤"
-"¤ČĽŔĽá¤Ç¤šĄŁ\n"
-"\n"
-"¤ł¤ÎĽÇĽĐĽ¤Ľš¤Ç¤Ď\"scannerdrake\" ¤ĎťČ¤ď¤Ę¤¤¤Ç¤Ż¤Ŕ¤ľ¤¤!"
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr "Ľ×ĽęĽóĽż¤ÎžđĘó¤ňĆɤó¤Ç¤¤¤Ţ¤š..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "Ľ×ĽęĽóĽż¤ÎŔßÄę¤ň°ÜĆ°"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8162,7 +8341,7 @@ msgstr ""
"¤Ď¤˝¤Á¤é¤Ëźč¤é¤ě¤Ţ¤š¤ŹĄ˘Ľ¸ĽçĽÖ¤Ď°ÜĆ°¤ˇ¤Ţ¤ť¤óĄŁ°Ę˛ź¤ÎÍýÍł¤ÇĄ˘°ÜĆ°¤Ç¤­¤Ę¤¤"
"Ľ­ĽĺĄź¤â¤˘¤ę¤Ţ¤šĄ§\n"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8170,7 +8349,7 @@ msgstr ""
"CUPS ¤Ď Novell ĽľĄźĽĐ¤ÎĽ×ĽęĽóĽż¤äĄ˘źŤÍłˇÁź°¤ÎĽłĽŢĽóĽÉ¤ËĽÇĄźĽż¤ňÁ÷¤ëĽ×ĽęĽóĽż¤Ď"
"ĽľĽÝĄźĽČ¤ˇ¤Ţ¤ť¤óĄŁ\n"
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -8178,11 +8357,11 @@ msgstr ""
"PDQ ¤ĎĽíĄźĽŤĽëĽ×ĽęĽóĽż¤ČĽęĽâĄźĽČ¤Î LPD Ľ×ĽęĽóĽżĄ˘Ľ˝ĽąĽĂĽČ/TCP Ľ×ĽęĽóĽż¤ˇ¤ŤĽľ"
"ĽÝĄźĽČ¤ˇ¤Ţ¤ť¤óĄŁ\n"
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD ¤Č LPRng ¤ĎIPP Ľ×ĽęĽóĽż¤ňĽľĽÝĄźĽČ¤ˇ¤Ţ¤ť¤óĄŁ\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8190,7 +8369,7 @@ msgstr ""
"¤ľ¤é¤Ë¤ł¤ÎĽ×ĽíĽ°ĽéĽŕ¤ä\"foomatic-configure\" ¤Çşî¤Ă¤Ć¤¤¤Ę¤¤Ľ­ĽĺĄź¤Ď°ÜĆ°¤Ç¤­¤Ţ"
"¤ť¤óĄŁ"
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8200,7 +8379,7 @@ msgstr ""
"¤Ţ¤żĽáĄźĽŤĄźÄ󜥤ΠPPD ĽŐĽĄĽ¤Ľë¤äĽÍĽ¤ĽĆĽŁĽÖ¤Î CUPS ĽÉĽéĽ¤ĽĐ¤ÇŔßÄꤾ¤ě¤żĽ×ĽęĽó"
"Ľż¤Ď°ÜĆ°¤Ç¤­¤Ţ¤ť¤óĄŁ"
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8209,15 +8388,15 @@ msgstr ""
"\n"
"°ÜĆ°¤ˇ¤ż¤¤Ľ×ĽęĽóĽż¤ňÁޤó¤Ç \"T°ÜĆ°\"¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr "Ľ×ĽęĽóĽż¤ň°ÜĆ°¤ˇ¤Ę¤¤"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr "°ÜĆ°"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8228,11 +8407,11 @@ msgstr ""
"žĺ˝ń¤­¤š¤ë¤Ë¤Ď \"°ÜĆ°\" ¤ň˛Ą¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
"żˇ¤ˇ¤¤ĚžÁ°¤ňĽżĽ¤Ľ×¤š¤ë¤ŤĄ˘¤ł¤ÎĽ×ĽęĽóĽż¤ň¤Č¤Đ¤š¤ł¤Č¤â¤Ç¤­¤Ţ¤šĄŁ"
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Ľ×ĽęĽóĽżĚž¤ĎĄ˘Ę¸ťú¤Čżôťú¤ČĽ˘ĽóĽŔĄźĽšĽłĽ˘ (_)¤ˇ¤ŤťČ¤¨¤Ţ¤ť¤ó"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8241,16 +8420,16 @@ msgstr ""
"Ľ×ĽęĽóĽż \"%s\" ¤Ď¤š¤Ç¤Ë¸şß¤ˇ¤Ţ¤šĄŁ\n"
"¤¤¤Ţ¤ÎŔßÄę¤ňžĺ˝ń¤­¤ˇ¤Ć¤ˇ¤Ţ¤¤¤Ţ¤š¤ŤĄŠ"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "żˇ¤ˇ¤¤Ľ×ĽęĽóĽż¤ÎĚžÁ°"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr "%s °ÜĆ°ĂćĄÄĄÄ"
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8259,29 +8438,29 @@ msgstr ""
"Á°¤ÎĽÇĽŐĽŠĽëĽČĽ×ĽęĽóĽż (\"%s\")¤ň°ÜĆ°¤ˇ¤Ţ¤ˇ¤żĄŁżˇ¤ˇ¤¤°őşţĽˇĽšĽĆĽŕ%s¤Ç¤â¤ł¤ě¤ň"
"ĽÇĽŐĽŠĽëĽČ¤ÎĽ×ĽęĽóĽż¤Ë¤ˇ¤Ţ¤š¤ŤĄŠ"
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr "Ľ×ĽęĽóĽżĽÇĄźĽżššżˇĂć..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr "ĽęĽâĄźĽČĽ×ĽęĽóĽż¤ÎŔßÄę"
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "ĽÍĽĂĽČĽďĄźĽŻľŻĆ°Ăć..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr "şŁ¤š¤°ĽÍĽĂĽČĽďĄźĽŻŔßÄę¤ň¤š¤ë"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "ĽÍĽĂĽČĽďĄźĽŻľĄÇ˝¤ŹŔßÄꤾ¤ě¤Ć¤Ţ¤ť¤ó"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8292,11 +8471,11 @@ msgstr ""
"¤ŹĄ˘¤˘¤Ę¤ż¤ÎĽÍĽĂĽČĽďĄźĽŻŔßÄę¤Ď¤š¤ó¤Ç¤¤¤Ţ¤ť¤óĄŁĽÍĽĂĽČĽďĄźĽŻŔßÄę¤Ę¤ˇ¤ÇżĘ¤ŕ¤ČĄ˘"
"¤¤¤ŢŔßÄęĂć¤ÎĽ×ĽęĽóĽż¤ĎťČ¤¨¤Ţ¤ť¤óĄŁ¤ľ¤Ć¤É¤ŚżĘ¤á¤Ţ¤ˇ¤ç¤Ś¤ŤĄŠ"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr "ĽÍĽĂĽČĽďĄźĽŻ¤ÎŔßÄę¤ň¤Č¤Đ¤ˇ¤ĆŔč¤ËżĘ¤ŕ"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8311,7 +8490,7 @@ msgstr ""
"¤¸¤ŻMandrakeĽłĽóĽČĽíĄźĽëĽťĽóĽż¤ÎĄÖĽĎĄźĽÉĽŚĽ§Ľ˘/Ľ×ĽęĽóĽżĄ×¤ÎÉôĘŹ¤ÇĽ×ĽęĽóĽż¤ÎŔß"
"Äę¤ň¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ"
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
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 "
@@ -8320,24 +8499,24 @@ msgstr ""
"ĽÍĽĂĽČĽďĄźĽŻĽ˘ĽŻĽťĽš¤ŹÍî¤Á¤Ć¤¤¤ĆĄ˘ľŻĆ°¤Ç¤­¤Ţ¤ť¤ó¤Ç¤ˇ¤żĄŁĽĎĄźĽÉĽŚĽ§Ľ˘¤äŔßÄę¤ň"
"ĽÁĽ§ĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ¤˝¤ě¤Ť¤éĽęĽâĄźĽČĽ×ĽęĽóĽż¤ÎŔßÄę¤ň¤ä¤ę¤Ę¤Ş¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr "Ľ×ĽęĽóĽżĽˇĽšĽĆĽŕşĆľŻĆ°Ăć..."
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "šâ¤¤"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr "żŔˇĐźÁ¤Ę¤Ű¤Éšâżĺ˝ŕ"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "°őşţĽˇĽšĽĆĽŕ¤ňĽťĽ­ĽĺĽęĽĆĽŁżĺ˝ŕ %s ¤ÇĽ¤ĽóĽšĽČĄźĽëĂć"
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8361,11 +8540,11 @@ msgstr ""
"\n"
"¤ł¤ÎĽŢĽˇĽó¤Ç°őşţ¤ÎŔßÄę¤ňËÜĹö¤Ë¤ä¤Ă¤Ć¤¤¤¤¤Ç¤š¤ÍĄŠ"
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr "ľŻĆ°ťţ¤Ë°őşţĽˇĽšĽĆĽŕ¤ňĽšĽżĄźĽČ"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8385,63 +8564,63 @@ msgstr ""
"\n"
"°őşţĽˇĽšĽĆĽŕ¤ÎźŤĆ°ĽšĽżĄźĽČ¤ň¤â¤Ś°ěĹŮÍ­¸ú¤Ë¤ˇ¤Ţ¤š¤ŤĄŠ"
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr "Ľ¤ĽóĽšĽČĄźĽëşŃ¤ßĽ˝ĽŐĽČ¤ňĽÁĽ§ĽĂĽŻĂćĄÄĄÄ"
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr "LPRng şď˝üĂćĄÄĄÄ"
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr "LPD şď˝üĂćĄÄĄÄ"
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "Ľ×ĽęĽóĽż¤ÎĽšĽ×ĄźĽé¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "¤É¤Î°őşţĽˇĽšĽĆĽŕĄĘĽšĽ×ĄźĽéĄË¤ňťČ¤¤¤Ţ¤š¤ŤĄŠ"
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2310
+#, fuzzy, c-format
+msgid "Configuring printer \"%s\"..."
msgstr "Ľ×ĽęĽóĽż \"%s\" ¤ÎŔßÄęĂć..."
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
msgstr "Foomatic ¤ÎĽ¤ĽóĽšĽČĄźĽëĂć..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Ľ×ĽęĽóĽżĽŞĽ×ĽˇĽçĽó"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr "PrinterDrake˝ŕČ÷Ăć..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
msgid "Configuring applications..."
msgstr "Ľ˘Ľ×ĽęĽąĄźĽˇĽçĽó¤ÎŔßÄęĂć..."
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "°őşţ¤ÎŔßÄę¤ň¤ˇ¤Ţ¤š¤ŤĄŠ"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr "°őşţĽˇĽšĽĆĽŕ:"
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -8452,7 +8631,7 @@ msgstr ""
"¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁĽÇĽŐĽŠĽëĽČĽ×ĽęĽóĽż¤Ë¤ˇ¤ż¤ęĄ˘¤˝¤ÎžđĘó¤ň¸Ť¤ż¤ęĄ˘ĽęĽâĄźĽČ¤ÎCUPS ĽľĄź"
"ĽĐžĺ¤ÎĽ×ĽęĽóĽż¤ň Star Office/OpenOffice.org¤ÇťČ¤¨¤ë¤č¤Ś¤Ë¤š¤ëžěšç¤â¤˝¤Ś¤Ç¤šĄŁ"
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -8461,28 +8640,32 @@ msgstr ""
"°Ę˛ź¤ÎĽ×ĽęĽóĽż¤ŹŔßÄꤾ¤ě¤Ć¤¤¤Ţ¤šĄŁĘŃššĄ˘ĽÇĽŐĽŠĽëĽČ˛˝Ą˘žđĘó¤Îť˛žČ¤Ë¤ĎĄ˘\n"
"¤˝¤ÎĽ×ĽęĽóĽż¤ňĽŔĽÖĽëĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤šĄŁ"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr "Ľ×ĽęĽóĽż°ěÍ÷ššżˇĄĘĽęĽâĄźĽČ CUPSĽ×ĽęĽóĽż¤ň¤š¤Ů¤ĆÉ˝ź¨)"
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
msgid "Change the printing system"
msgstr "°őşţĽˇĽšĽĆĽŕ¤ňĘŃšš"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "ĽÎĄźĽŢĽëĽâĄźĽÉ"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "˝ŞÎť"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr "Ę̤μ׼ęĽóĽż¤ňŔßÄꤡ¤Ţ¤š¤ŤĄŠ"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "Ľ×ĽęĽóĽżŔßÄę¤ÎĘŃšš"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, c-format
msgid ""
"Printer %s\n"
@@ -8491,102 +8674,102 @@ msgstr ""
"Ľ×ĽęĽóĽż %s\n"
"¤ł¤ÎĽ×ĽęĽóĽż¤Î˛ż¤ňĘŃšš¤ˇ¤Ţ¤š¤ŤĄŠ"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr "¤ä¤ěĄŞ"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "Ľ×ĽęĽóĽżŔÜÂł¤ÎźďÎŕ"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "Ľ×ĽęĽóĽż¤ÎĚžÁ°Ą˘ŔâĚŔĄ˘žě˝ę"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr "Ľ×ĽęĽóĽż¤ÎĽáĄźĽŤĄźĄ˘ľĄźďĄ˘ĽÉĽéĽ¤ĽĐ"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr "Ľ×ĽęĽóĽż¤ÎĽáĄźĽŤĄźĄ˘ľĄźď"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr "¤ł¤ÎĽ×ĽęĽóĽż¤ňĽÇĽŐĽŠĽëĽČ¤Ë¤š¤ë"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr "¤ł¤ÎĽ×ĽęĽóĽż¤ň Star Office/OpenOffice.org ¤ËÄɲĂ"
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr "¤ł¤ÎĽ×ĽęĽóĽż¤ň Star Office/OpenOffice.org ¤Ť¤éşď˝ü"
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr "ĽĆĽšĽČĽÚĄźĽ¸°őşţ"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
msgstr "¤ł¤ÎĽ×ĽęĽóĽż¤ÎťČ¤¤Ęý¤ňÄ´¤Ů¤ë"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "Ľ×ĽęĽóĽżşď˝ü"
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2857
+#, fuzzy, c-format
+msgid "Removing old printer \"%s\"..."
msgstr "¸Ĺ¤¤Ľ×ĽęĽóĽż \"%s\" ¤ňşď˝üĂć..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "ĽÇĽŐĽŠĽëĽČĽ×ĽęĽóĽż"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Ľ×ĽęĽóĽż %s ¤ŹĽÇĽŐĽŠĽëĽČĽ×ĽęĽóĽż¤Ë¤Ę¤ę¤Ţ¤ˇ¤żĄŁ"
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr "Ľ×ĽęĽóĽż¤ň Star Office/OpenOffice.org ¤ËÄɲĂĂć"
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr "Ľ×ĽęĽóĽż %s ¤ň Star Office/OpenOffice.org ¤ËÄɲ䡤ޤˇ¤żĄŁ"
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr "Ľ×ĽęĽóĽż %s ¤ň Star Office/OpenOffice.org ¤ËÄɲäǤ­¤Ţ¤ť¤ó¤Ç¤ˇ¤żĄŁ"
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr "Ľ×ĽęĽóĽż¤ň Star Office/OpenOffice.org ¤Ť¤éşď˝üĂć"
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr "Ľ×ĽęĽóĽż %s ¤ň Star Office/OpenOffice.org ¤Ť¤éşď˝ü¤ˇ¤Ţ¤ˇ¤żĄŁ"
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr "Ľ×ĽęĽóĽż %s ¤ň Star Office/OpenOffice.org ¤Ť¤éşď˝ü¤Ç¤­¤Ţ¤ť¤ó¤Ç¤ˇ¤żĄŁ"
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Ľ×ĽęĽóĽż %s ¤ňËÜĹö¤Ëşď˝ü¤ˇ¤Ţ¤š¤ŤĄŠ"
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2909
+#, fuzzy, c-format
+msgid "Removing printer \"%s\"..."
msgstr "Ľ×ĽęĽóĽż \"%s\" ¤ňşď˝üĂć..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -8671,24 +8854,60 @@ msgstr "ĽŃĽšĽďĄźĽÉ¤Ź°ěĂפˇ¤Ţ¤ť¤óĄŁ¤â¤Ś°ěĹŮĆţ¤ě¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŞ"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "ĽŐĽŠĄźĽŢĽĂĽČşŃ¤ß¤Î RAID md%d ¤Ë¤ĎĽŃĄźĽĆĽŁĽˇĽçĽó¤ňÄɲäǤ­¤Ţ¤ť¤ó"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "%s ĽŐĽĄĽ¤Ľë¤Ź˝ń¤­šţ¤á¤Ţ¤ť¤ó"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid ¤ËźşÇÔ"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid ¤ËźşÇÔ (raidtools ¤ŹĆţ¤Ă¤Ć¤Ę¤¤¤Î¤Ť¤â?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "RAID ĽěĽŮĽë %d ¤Î¤ż¤á¤Ë¤ĎĽŃĄźĽĆĽŁĽˇĽçĽó¤ŹÉÔ­¤Ç¤š\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"¤ł¤ÎĽěĽŮĽë¤ňťČ¤Ś¤Ę¤éĂí°Ő¤ŹÉŹÍפǤšĄŁĽˇĽšĽĆĽŕ¤ňťČ¤Ś¤Î¤Ď´ĘĂą¤Ë¤Ę¤ę¤Ţ¤š¤ŹĄ˘\n"
+"¤Ŕ¤ě¤Ë¤Ç¤âĽ˘ĽŻĽťĽš¤Ç¤­¤Ć¤ˇ¤Ţ¤¤¤Ţ¤šĄŁÂž¤ÎĽŢĽˇĽó¤äĽ¤ĽóĽżĄźĽÍĽĂĽČ\n"
+"¤Ë¤Ä¤Ę¤Ź¤Ă¤żĽŢĽˇĽó¤Ç¤ĎťČ¤ď¤Ę¤¤¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁĽŃĽšĽďĄźĽÉŔŠ¸Â¤â¤˘¤ę¤Ţ¤ť¤óĄŁ"
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+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 ""
+"¤ł¤ÎĽťĽ­ĽĺĽęĽĆĽŁĽěĽŮĽë¤Ŕ¤ČĄ˘ĽˇĽšĽĆĽŕ¤ňĽľĄźĽĐ¤Č¤ˇ¤ĆťČ¤¨¤ë¤č¤Ś¤Ë¤Ę¤ę¤Ţ¤šĄŁ\n"
+"Âżżô¤ÎĽŻĽéĽ¤Ľ˘ĽóĽČ¤Ť¤éŔÜÂł¤ňźő¤ą¤ëĽľĄźĽĐ¤Č¤ˇ¤Ć¤âťČ¤¨¤ë¤Ŕ¤ą¤ÎĽťĽ­ĽĺĽęĽĆĽŁ\n"
+"żĺ˝ŕ¤Ë¤Ę¤Ă¤Ć¤¤¤Ţ¤šĄŁĂ𥧤˘¤Ę¤ż¤ÎĽŢĽˇĽó¤ŹĽ¤ĽóĽżĄźĽÍĽĂĽČžĺ¤ÎĽŻĽéĽ¤Ľ˘ĽóĽČŔěÍѤĘ"
+"¤éĄ˘¤â¤Ă¤ČÄ㤤ĽěĽŮĽë¤ňÁޤó¤Ŕ¤Ű¤Ś¤Ź¤¤¤¤¤Ç¤š¤čĄŁ"
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "žĺľéĽŞĽ×ĽˇĽçĽó"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "ĽŞĽ×ĽˇĽçĽó"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "ALSA (ŔčżĘLinux ĽľĽŚĽóĽÉĽ˘ĄźĽ­ĽĆĽŻĽÁĽă) ĽľĽŚĽóĽÉĽˇĽšĽĆĽŕľŻĆ°"
@@ -8743,7 +8962,7 @@ msgstr ""
"HardDrake ¤ĎĽĎĄźĽÉĽŚĽ§Ľ˘¤ňĂľ¤ˇ¤ĆĄ˘˛ÄÇ˝¤Ę¤éżˇ¤ˇ¤¤ĽĎĄźĽÉĽŚĽ§Ľ˘¤äĘŃšš¤ˇ¤ż\n"
"ĽĎĄźĽÉĽŚĽ§Ľ˘¤ÎŔßÄę¤ň¤ˇ¤Ţ¤šĄŁ"
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr "Apache¤ĎWorld Wide WebĽľĄźĽĐ¤ÇĄ˘HTML ĽŐĽĄĽ¤Ľë¤äCGI¤Î¸řłŤ¤ËťČ¤¤¤Ţ¤šĄŁ"
@@ -8816,7 +9035,7 @@ msgstr ""
"Linux ĽĐĄźĽÁĽăĽëĽľĄźĽĐ¤ĎĄ˘šâŔ­Ç˝¤Ç¤¤¤Ä¤Ç¤âťČ¤¨¤ëĽľĄźĽĐ¤Î\n"
"š˝Ăۤ˝Ȥ¤¤Ţ¤šĄŁ"
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -8890,7 +9109,7 @@ msgstr ""
"ťČÍѤľ¤ě¤Ţ¤šĄŁRPCľĄš˝¤ňťČ¤ŚĽ×ĽíĽČĽłĽë¤ÎĽľĄźĽĐ¤Č¤Ę¤ëĽŢĽˇĽó¤Ç¤ĎĄ˘¤ł¤Î\n"
"portmap ĽľĄźĽĐ¤ŹĆ°¤¤¤Ć¤¤¤ëÉŹÍפŹ¤˘¤ę¤Ţ¤šĄŁ"
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -8984,7 +9203,7 @@ msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČ"
msgid "File sharing"
msgstr "ĽŐĽĄĽ¤ĽëśŚÍ­"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "ĽˇĽšĽĆĽŕ"
@@ -9051,9 +9270,9 @@ msgid ""
"Your new operating system is the result of collaborative work on the part of "
"the worldwide Linux Community"
msgstr ""
-"MandrakeSoft ¤ÎŔŽ¸ů¤ĎĄ˘ĽŐĽęĄźĽ˝ĽŐĽČ¤Î¸śÍý¤ËşŹ¤ś¤ˇ¤ż¤â¤Î¤Ç¤šĄŁ"
-"¤˘¤Ę¤ż¤ÎżˇĽŞĽÚĽěĄźĽĆĽŁĽóĽ°ĽˇĽšĽĆĽŕ¤ĎĄ˘Á´Ŕ¤łŚ¤Î Linux ĽłĽßĽĺĽËĽĆĽŁ¤Ë"
-"¤č¤ëśŚĆąşîśČ¤ÎŔŽ˛Ě¤Ę¤Î¤Ç¤šĄŁ"
+"MandrakeSoft ¤ÎŔŽ¸ů¤ĎĄ˘ĽŐĽęĄźĽ˝ĽŐĽČ¤Î¸śÍý¤ËşŹ¤ś¤ˇ¤ż¤â¤Î¤Ç¤šĄŁ¤˘¤Ę¤ż¤ÎżˇĽŞĽÚ"
+"ĽěĄźĽĆĽŁĽóĽ°ĽˇĽšĽĆĽŕ¤ĎĄ˘Á´Ŕ¤łŚ¤Î Linux ĽłĽßĽĺĽËĽĆĽŁ¤Ë¤č¤ëśŚĆąşîśČ¤ÎŔŽ˛Ě¤Ę¤Î¤Ç"
+"¤šĄŁ"
#: ../../share/advertising/01-gnu.pl_.c:9
msgid "Join the Free Software world"
@@ -9065,9 +9284,9 @@ msgid ""
"help others by joining the many discussion forums that you will find in our "
"\"Community\" webpages"
msgstr ""
-"ĽŞĄźĽ×ĽóĽ˝ĄźĽšĽłĽßĽĺĽËĽĆĽŁ¤Î¤ł¤Č¤ň¤â¤Ă¤ČĂΤäƥ˘¤˝¤Î°ě°÷¤Ë¤Ę¤ę¤Ţ¤ˇ¤ç¤ŚĄŁ"
-"ĄÖĽłĽßĽĺĽËĽĆĽŁĄ×ĽŚĽ§ĽÖĽÚĄźĽ¸¤Ë¤˘¤ëłĆźďĽŐĽŠĄźĽéĽŕ¤Ëť˛˛Ă¤ˇ¤ĆĄ˘łŘ¤ÓĄ˘śľ¤¨Ą˘"
-"¤Ű¤Ť¤ÎżÍĄš¤ň˝ő¤ą¤Ţ¤ˇ¤ç¤ŚĄŁ"
+"ĽŞĄźĽ×ĽóĽ˝ĄźĽšĽłĽßĽĺĽËĽĆĽŁ¤Î¤ł¤Č¤ň¤â¤Ă¤ČĂΤäƥ˘¤˝¤Î°ě°÷¤Ë¤Ę¤ę¤Ţ¤ˇ¤ç¤ŚĄŁĄÖĽł"
+"ĽßĽĺĽËĽĆĽŁĄ×ĽŚĽ§ĽÖĽÚĄźĽ¸¤Ë¤˘¤ëłĆźďĽŐĽŠĄźĽéĽŕ¤Ëť˛˛Ă¤ˇ¤ĆĄ˘łŘ¤ÓĄ˘śľ¤¨Ą˘¤Ű¤Ť¤Î"
+"żÍĄš¤ň˝ő¤ą¤Ţ¤ˇ¤ç¤ŚĄŁ"
#: ../../share/advertising/02-internet.pl_.c:9
msgid "Internet and Messaging"
@@ -9080,10 +9299,10 @@ msgid ""
"Konqueror, exchange email & organize your personal information with "
"Evolution and Kmail, and much more"
msgstr ""
-"Mandrake Linux 8.2 ¤ĎĽ¤ĽóĽżĄźĽÍĽĂĽČ¤ÎÄ󜥤š¤ë¤â¤Î¤š¤Ů¤Ć¤ËĽ˘ĽŻĽťĽš¤Ç¤­¤ë"
-"şÇšâ¤ÎĽ˝ĽŐĽČ¤ňźč¤ę¤˝¤í¤¨¤Ć¤¤¤Ţ¤šĄŁĽŚĽ§ĽÖ¤ňĽľĄźĽŐĽŁĽó¤ˇ¤ĆĄ˘Ć°˛č¤ň¸Ť¤ë¤Ę¤é"
-"Mozilla ¤Č Konqueror ¤Ź¤˘¤ë¤ˇĄ˘ĽáĄźĽë¤ÎÁ÷źőżŽ¤Č¸ÄżÍžđĘó´ÉÍý¤Ď"
-"Evolution ¤Č Kmail, ¤˝¤Îž¤Ę¤ó¤Ç¤â¤˘¤ę¤Ţ¤šĄŁ"
+"Mandrake Linux 8.2 ¤ĎĽ¤ĽóĽżĄźĽÍĽĂĽČ¤ÎÄ󜥤š¤ë¤â¤Î¤š¤Ů¤Ć¤ËĽ˘ĽŻĽťĽš¤Ç¤­¤ëşÇšâ¤Î"
+"Ľ˝ĽŐĽČ¤ňźč¤ę¤˝¤í¤¨¤Ć¤¤¤Ţ¤šĄŁĽŚĽ§ĽÖ¤ňĽľĄźĽŐĽŁĽó¤ˇ¤ĆĄ˘Ć°˛č¤ň¸Ť¤ë¤Ę¤éMozilla ¤Č "
+"Konqueror ¤Ź¤˘¤ë¤ˇĄ˘ĽáĄźĽë¤ÎÁ÷źőżŽ¤Č¸ÄżÍžđĘó´ÉÍý¤ĎEvolution ¤Č Kmail, ¤˝¤Îž"
+"¤Ę¤ó¤Ç¤â¤˘¤ę¤Ţ¤šĄŁ"
#: ../../share/advertising/03-graphic.pl_.c:9
msgid "Multimedia and Graphics"
@@ -9095,9 +9314,9 @@ msgid ""
"the latest software to play music and audio files, edit and organize your "
"images and photos, watch TV and videos, and much more"
msgstr ""
-"Mandrake Linux 8.2 ¤ĎĄ˘ĽŢĽëĽÁĽáĽÇĽŁĽ˘ľĄÇ˝¤ňśË¸Â¤Ţ¤ÇťČ¤¤Ĺݤˇ¤Ţ¤šĄŞ"
-"şÇżˇĽ˝ĽŐĽČ¤Ç˛ťłÚ¤ä˛ťŔźĽŐĽĄĽ¤Ľë¤ÎşĆŔ¸¤ň¤ˇ¤ż¤ęĄ˘˛čÁü¤äźĚżż¤ň´ÉÍý¤ˇ¤ż¤ęĄ˘"
-"ĽĆĽěĽÓ¤ň¸Ť¤ż¤ęĄ˘¤˝¤Îž¤Ę¤ó¤Ç¤â¤Ç¤­¤Ţ¤šĄŁ"
+"Mandrake Linux 8.2 ¤ĎĄ˘ĽŢĽëĽÁĽáĽÇĽŁĽ˘ľĄÇ˝¤ňśË¸Â¤Ţ¤ÇťČ¤¤Ĺݤˇ¤Ţ¤šĄŞşÇżˇĽ˝ĽŐĽČ¤Ç"
+"˛ťłÚ¤ä˛ťŔźĽŐĽĄĽ¤Ľë¤ÎşĆŔ¸¤ň¤ˇ¤ż¤ęĄ˘˛čÁü¤äźĚżż¤ň´ÉÍý¤ˇ¤ż¤ęĄ˘ĽĆĽěĽÓ¤ň¸Ť¤ż¤ęĄ˘¤˝"
+"¤Îž¤Ę¤ó¤Ç¤â¤Ç¤­¤Ţ¤šĄŁ"
#: ../../share/advertising/04-develop.pl_.c:9
msgid "Development"
@@ -9109,11 +9328,11 @@ msgid ""
"of the GNU gcc compiler as well as the best Open Source development "
"environments"
msgstr ""
-"Mandrake Linux 8.2 ¤ĎľćśË¤ÎłŤČŻĽ×ĽéĽĂĽČĽŰĄźĽŕ¤Ç¤šĄŁ"
-"GNU gcc ĽłĽóĽŃĽ¤Ľé¤ň¤Ď¤¸¤áĄ˘şÇšâ¤ÎĽŞĄźĽ×ĽóĽ˝ĄźĽš"
-"łŤČŻ´Äś­¤Î°ŇÎϤňČŻ¸Ť¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ"
+"Mandrake Linux 8.2 ¤ĎľćśË¤ÎłŤČŻĽ×ĽéĽĂĽČĽŰĄźĽŕ¤Ç¤šĄŁGNU gcc ĽłĽóĽŃĽ¤Ľé¤ň¤Ď¤¸"
+"¤áĄ˘şÇšâ¤ÎĽŞĄźĽ×ĽóĽ˝ĄźĽšłŤČŻ´Äś­¤Î°ŇÎϤňČŻ¸Ť¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ"
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
msgstr "Mandrake ĽłĽóĽČĽíĄźĽëĽťĽóĽżĄź"
@@ -9122,8 +9341,8 @@ msgid ""
"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
"customizing and configuring your Mandrake system"
msgstr ""
-"Mandrake Linux 8.2 ĽłĽóĽČĽíĄźĽëĽťĽóĽżĄź¤ĎĄ˘Mandrake ĽˇĽšĽĆĽŕ¤Î"
-"ĽŤĽšĽżĽŢĽ¤Ľş¤ČŔßÄę¤Î¤ż¤á¤ÎĽďĽóĽšĽČĽĂĽ×ĽŃĽÍĽë˝¸¤Ç¤šĄŁ"
+"Mandrake Linux 8.2 ĽłĽóĽČĽíĄźĽëĽťĽóĽżĄź¤ĎĄ˘Mandrake ĽˇĽšĽĆĽŕ¤ÎĽŤĽšĽżĽŢĽ¤Ľş¤Č"
+"ŔßÄę¤Î¤ż¤á¤ÎĽďĽóĽšĽČĽĂĽ×ĽŃĽÍĽë˝¸¤Ç¤šĄŁ"
#: ../../share/advertising/06-user.pl_.c:9
msgid "User interfaces"
@@ -9135,9 +9354,8 @@ msgid ""
"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
"0.8, and the rest"
msgstr ""
-"Mandrake Linux 8.2 ¤Ë¤Ď11źďÎŕ¤ÎĽ°ĽéĽŐĽŁĽĂĽŻĽÇĽšĽŻĽČĽĂĽ×´Äś­¤Č"
-"ĽŚĽŁĽóĽÉĽŚĽŢĽÍĄźĽ¸Ľă¤ŹĆţ¤Ă¤Ć¤¤¤Ţ¤šĄŁGNOME 1.4, KDE 2.2.2,"
-" Window Maker 0.8 ¤Ę¤É¤Ç¤šĄŁ"
+"Mandrake Linux 8.2 ¤Ë¤Ď11źďÎŕ¤ÎĽ°ĽéĽŐĽŁĽĂĽŻĽÇĽšĽŻĽČĽĂĽ×´Äś­¤ČĽŚĽŁĽóĽÉĽŚĽŢĽÍĄź"
+"Ľ¸Ľă¤ŹĆţ¤Ă¤Ć¤¤¤Ţ¤šĄŁGNOME 1.4, KDE 2.2.2, Window Maker 0.8 ¤Ę¤É¤Ç¤šĄŁ"
#: ../../share/advertising/07-server.pl_.c:9
msgid "Server Software"
@@ -9148,9 +9366,9 @@ msgid ""
"Transform your machine into a powerful server with just a few clicks of the "
"mouse: Web server, email, firewall, router, file and print server, ..."
msgstr ""
-"ĽŢĽŚĽš¤ň¤Ű¤ó¤ÎżôĽŻĽęĽĂĽŻ¤š¤ë¤Ŕ¤ą¤ÇĄ˘¤˘¤Ę¤ż¤ÎĽŢĽˇĽó¤Ď"
-"śŻÎϤʼľĄźĽĐ¤ËÁáĘѤď¤ęĄŞĽŚĽ§ĽÖĽľĄźĽĐĄ˘ĽáĄźĽëĄ˘ĽŐĽĄĽ¤Ľ˘ĄźĽŚĽŠĄźĽëĄ˘"
-"ĽëĄźĽżĄ˘ĽŐĽĄĽ¤ĽëĽľĄźĽĐ¤Ë°őşţĽľĄźĽĐ¤Ę¤É¤â¤í¤â¤í¤Ç¤šĄŁ"
+"ĽŢĽŚĽš¤ň¤Ű¤ó¤ÎżôĽŻĽęĽĂĽŻ¤š¤ë¤Ŕ¤ą¤ÇĄ˘¤˘¤Ę¤ż¤ÎĽŢĽˇĽó¤ĎśŻÎϤʼľĄźĽĐ¤ËÁáĘѤď¤ęĄŞ"
+"ĽŚĽ§ĽÖĽľĄźĽĐĄ˘ĽáĄźĽëĄ˘ĽŐĽĄĽ¤Ľ˘ĄźĽŚĽŠĄźĽëĄ˘ĽëĄźĽżĄ˘ĽŐĽĄĽ¤ĽëĽľĄźĽĐ¤Ë°őşţĽľĄźĽĐ"
+"¤Ę¤É¤â¤í¤â¤í¤Ç¤šĄŁ"
#: ../../share/advertising/08-games.pl_.c:9
msgid "Games"
@@ -9161,8 +9379,8 @@ msgid ""
"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
"cards, sports, strategy, ..."
msgstr ""
-"Mandrake Linux 8.2 ¤Ë¤ĎĄ˘şÇšâ¤ÎĽŞĄźĽ×ĽóĽ˝ĄźĽšĽ˛ĄźĽŕ¤Ź¤Ä¤¤¤Ć¤­¤Ţ¤šĄŁ"
-"Ľ˘ĄźĽąĄźĽÉˇżĄ˘Ľ˘ĽŻĽˇĽçĽóˇżĄ˘ĽŤĄźĽÉĽ˛ĄźĽŕĄ˘ĽšĽÝĄźĽÄĄ˘ŔďÎŹĽ˛ĄźĽŕ..."
+"Mandrake Linux 8.2 ¤Ë¤ĎĄ˘şÇšâ¤ÎĽŞĄźĽ×ĽóĽ˝ĄźĽšĽ˛ĄźĽŕ¤Ź¤Ä¤¤¤Ć¤­¤Ţ¤šĄŁĽ˘ĄźĽąĄźĽÉ"
+"ˇżĄ˘Ľ˘ĽŻĽˇĽçĽóˇżĄ˘ĽŤĄźĽÉĽ˛ĄźĽŕĄ˘ĽšĽÝĄźĽÄĄ˘ŔďÎŹĽ˛ĄźĽŕ..."
#: ../../share/advertising/09-MDKcampus.pl_.c:9
msgid "MandrakeCampus"
@@ -9174,9 +9392,9 @@ msgid ""
"provides free Linux training, as well as a way to test your progress, at "
"MandrakeCampus -- our online training center"
msgstr ""
-"Linux ¤ňźęˇÚ¤Ë¤š¤Đ¤ä¤ŻĄ˘ĚľÎÁ¤ÇĘŮśŻ¤ˇ¤ż¤¤¤Ç¤š¤ŤĄŠ MandrakeSoft ¤Ď"
-"ĚľÎÁ¤ÎLinux ĽČĽěĄźĽËĽóĽ°¤äĄ˘¤š¤š¤ßśńšç¤ňĽÁĽ§ĽĂĽŻ¤š¤ëĘýËĄ¤ňÄ󜥤ˇ¤Ć¤¤¤Ţ¤šĄŁ"
-"¤˝¤ě¤ŹMandrakeCampus -- ĘŔźŇ¤ÎĽŞĽóĽéĽ¤Ľó¸Ś˝¤ĽťĽóĽżĄź¤Ç¤šĄŁ"
+"Linux ¤ňźęˇÚ¤Ë¤š¤Đ¤ä¤ŻĄ˘ĚľÎÁ¤ÇĘŮśŻ¤ˇ¤ż¤¤¤Ç¤š¤ŤĄŠ MandrakeSoft ¤ĎĚľÎÁ¤ÎLinux "
+"ĽČĽěĄźĽËĽóĽ°¤äĄ˘¤š¤š¤ßśńšç¤ňĽÁĽ§ĽĂĽŻ¤š¤ëĘýËĄ¤ňÄ󜥤ˇ¤Ć¤¤¤Ţ¤šĄŁ¤˝¤ě¤Ź"
+"MandrakeCampus -- ĘŔźŇ¤ÎĽŞĽóĽéĽ¤Ľó¸Ś˝¤ĽťĽóĽżĄź¤Ç¤šĄŁ"
#: ../../share/advertising/10-MDKexpert.pl_.c:9
msgid "MandrakeExpert"
@@ -9188,9 +9406,9 @@ msgid ""
"around the corner. And if you're already a Linux veteran, become an \"Expert"
"\" and share your knowledge at our support website"
msgstr ""
-"Linux ĽłĽßĽĺĽËĽĆĽŁ¤Č MandrakeSoft ¤Ť¤é¤ÎšâźÁ¤ĘĽľĽÝĄźĽČ¤Ź¤š¤°¤ËĆŔ¤é¤ě¤Ţ¤šĄŁ"
-"¤˝¤ˇ¤Ć¤˘¤Ę¤ż¤ŹśÚśâĆţ¤ę¤Î Linux żÍ¤Ę¤éĄ˘ĄÖĽ¨Ľ­ĽšĽŃĄźĽČĄ×¤Ë¤Ę¤Ă¤ĆĽľĽÝĄźĽČÍŃ"
-"ĽŚĽ§ĽÖĽľĽ¤ĽČ¤ÇĂÎźą¤ňśŚÍ­¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
+"Linux ĽłĽßĽĺĽËĽĆĽŁ¤Č MandrakeSoft ¤Ť¤é¤ÎšâźÁ¤ĘĽľĽÝĄźĽČ¤Ź¤š¤°¤ËĆŔ¤é¤ě¤Ţ¤šĄŁ¤˝"
+"¤ˇ¤Ć¤˘¤Ę¤ż¤ŹśÚśâĆţ¤ę¤Î Linux żÍ¤Ę¤éĄ˘ĄÖĽ¨Ľ­ĽšĽŃĄźĽČĄ×¤Ë¤Ę¤Ă¤ĆĽľĽÝĄźĽČÍŃĽŚĽ§ĽÖ"
+"ĽľĽ¤ĽČ¤ÇĂÎźą¤ňśŚÍ­¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
#: ../../share/advertising/11-consul.pl_.c:9
msgid "MandrakeConsulting"
@@ -9203,10 +9421,10 @@ msgid ""
"vast experience as a Linux producer to provide a true IT alternative for "
"your business organization"
msgstr ""
-"¤˘¤é¤ć¤ë IT Ľ×ĽíĽ¸Ľ§ĽŻĽČ¤Ë¤Ä¤¤¤ĆĄ˘ĘŔźŇ¤ÎĽłĽóĽľĽëĽżĽóĽČ¤ż¤Á¤ŹÍסď¤ňĘŹŔϤˇĄ˘"
-"ĽŤĽšĽżĽŕ˛˝¤ˇ¤żĽ˝ĽęĽĺĄźĽˇĽçĽó¤ňÄó°Ć¤¤¤ż¤ˇ¤Ţ¤šĄŁLinux ĽŮĽóĽŔĄź¤Č¤ˇ¤Ć¤Î"
-" MandrakeSoft ¤ÎÇüÂç¤ĘˇĐ¸ł¤ňŔ¸¤Ť¤ˇ¤ĆĄ˘¤˘¤Ę¤ż¤ÎĽÓĽ¸ĽÍĽšÁČżĽ¸ţ¤ą¤Ë"
-"żż¤Î ITÂĺÂذƤňÄ󜥤¤¤ż¤ˇ¤Ţ¤šĄŁ"
+"¤˘¤é¤ć¤ë IT Ľ×ĽíĽ¸Ľ§ĽŻĽČ¤Ë¤Ä¤¤¤ĆĄ˘ĘŔźŇ¤ÎĽłĽóĽľĽëĽżĽóĽČ¤ż¤Á¤ŹÍסď¤ňĘŹŔϤˇĄ˘ĽŤ"
+"ĽšĽżĽŕ˛˝¤ˇ¤żĽ˝ĽęĽĺĄźĽˇĽçĽó¤ňÄó°Ć¤¤¤ż¤ˇ¤Ţ¤šĄŁLinux ĽŮĽóĽŔĄź¤Č¤ˇ¤Ć¤Î "
+"MandrakeSoft ¤ÎÇüÂç¤ĘˇĐ¸ł¤ňŔ¸¤Ť¤ˇ¤ĆĄ˘¤˘¤Ę¤ż¤ÎĽÓĽ¸ĽÍĽšÁČżĽ¸ţ¤ą¤Ëżż¤Î ITÂĺÂŘ°Ć"
+"¤ňÄ󜥤¤¤ż¤ˇ¤Ţ¤šĄŁ"
#: ../../share/advertising/12-MDKstore.pl_.c:9
msgid "MandrakeStore"
@@ -9217,16 +9435,16 @@ msgid ""
"A full range of Linux solutions, as well as special offers on products and "
"'goodies', are available online at our e-store"
msgstr ""
-"ĽŐĽëĽěĽóĽ¸¤ÎLinux Ľ˝ĽęĽĺĄźĽˇĽçĽó¤äĄ˘Ŕ˝ÉʤäłĆźďĽ˘Ľ¤ĽĆĽŕ¤ÎĆòÁČÎÇ䤏Ą˘"
-"ĘŔźŇ¤ÎĽŞĽóĽéĽ¤ĽóžŚĹš¤Çźę¤ËĆţ¤ę¤Ţ¤šĄŁ"
+"ĽŐĽëĽěĽóĽ¸¤ÎLinux Ľ˝ĽęĽĺĄźĽˇĽçĽó¤äĄ˘Ŕ˝ÉʤäłĆźďĽ˘Ľ¤ĽĆĽŕ¤ÎĆòÁČÎÇ䤏Ą˘ĘŔźŇ¤ÎĽŞ"
+"ĽóĽéĽ¤ĽóžŚĹš¤Çźę¤ËĆţ¤ę¤Ţ¤šĄŁ"
#: ../../share/advertising/13-Nvert.pl_.c:9
msgid ""
"For more information on MandrakeSoft's Professional Services and commercial "
"offerings, please see the following web page:"
msgstr ""
-"MandrakeSoft ¤ÎŔěĚ缾ĄźĽÓĽš¤äČÎÇ䞌ÉʤˤĤ¤¤ĆžÜ¤ˇ¤Ż¤Ď°Ę˛ź¤Î"
-"ĽŚĽ§ĽÖĽÚĄźĽ¸¤ňť˛žČ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤:"
+"MandrakeSoft ¤ÎŔěĚ缾ĄźĽÓĽš¤äČÎÇ䞌ÉʤˤĤ¤¤ĆžÜ¤ˇ¤Ż¤Ď°Ę˛ź¤ÎĽŚĽ§ĽÖĽÚĄźĽ¸¤ňť˛žČ"
+"¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤:"
#: ../../share/advertising/13-Nvert.pl_.c:11
msgid "http://www.mandrakesoft.com/sales/contact"
@@ -9236,6 +9454,15 @@ msgstr "http://www.mandrakesoft.com/sales/contact"
msgid "Installing packages..."
msgstr "ĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽëĂć..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "ĽíĽ°Ľ˘ĽŚĽČ¤ˇ¤żžĺ¤Ç Ctrl-Alt-BackSpace ¤ň˛Ą¤ˇ¤Ć˛ź¤ľ¤¤"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "ĘŃšš¤ňÍ­¸ú¤Ë¤š¤ë¤Ë¤Ď %s ¤ËĽíĽ°Ľ¤Ľó¤ˇ¤Ę¤Ş¤ˇ¤Ć˛ź¤ľ¤¤"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -9244,6 +9471,160 @@ msgstr ""
"ĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽë¤ŹĆɤá¤Ţ¤ť¤óĄ¤˛ő¤ě¤Ć¤¤¤ë¤č¤Ś¤Ç¤š:(\n"
"ÉÔŔľ¤ĘĽŃĄźĽĆĽŁĽˇĽçĽó¤ňśőÇň¤ÇËä¤á¤č¤Ś¤Č¤ˇ¤Ţ¤š"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Ľ×ĽęĽóĽż¤ÎŔßÄę¤ň°ÜĆ°"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "ĽÇĄźĽżĽŮĄźĽšĽľĄźĽĐ"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "ĽÇĄźĽżĽŮĄźĽšĽľĄźĽĐ"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS ĽľĄźĽĐ"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS ĽľĄźĽĐ"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "ĽćĄźĽś¤ňÄɲĂ"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP ĽŻĽéĽ¤Ľ˘ĽóĽČ"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "ĽŘĽëĽ×"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "ŔÜÂł¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤ó"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "şď˝ü"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "¤š¤Ů¤Ć¤ňÁŞÂň"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "ĽćĄźĽś¤ňÄɲĂ"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "DHCP ĽŻĽéĽ¤Ľ˘ĽóĽČ"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "ŔßÄęĂć..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "şĆŔßÄę"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "ťČ¤Ă¤żľŻĆ°ĽŐĽíĽĂĽÔĄź¤ňĽÉĽéĽ¤ĽÖ %s ¤ËÁŢĆţ"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Í­¸ú¤ĘĽŐĽíĽĂĽÔĄźĽÉĽéĽ¤ĽÖ¤Ź¤˘¤ę¤Ţ¤ť¤ó"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "Ľ¨ĽéĄźĄŞ"
@@ -9293,6 +9674,11 @@ msgid ""
msgstr ""
"łĆĽšĽĆĽĂĽ×¤ÇĄ˘¤˘¤Ę¤ż¤ÎĽ¤ĽóĽšĽČĄźĽë¤ČĆą¤¸¤Ë¤š¤ë¤ŤĄ˘źęĆ°ŔßÄꤚ¤ë¤Ť¤ňÁŞ¤Ó¤Ţ¤šĄŁ"
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Ľ¤ĽóĽšĽČĄźĽëĽŐĽíĽĂĽÔĄź¤ÎźŤĆ°şîŔŽ"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -9305,12 +9691,12 @@ msgstr ""
"\n"
"źŤĆ°Ľ¤ĽóĽšĽČĄźĽë¤ÎĽŃĽéĽáĄźĽż¤Źş¸¤ËÉ˝ź¨¤ľ¤ě¤Ć¤¤¤Ţ¤š"
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "¤Ş¤á¤Ç¤Č¤Ś¤´¤ś¤¤¤Ţ¤šĄŞ"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9318,28 +9704,19 @@ msgstr ""
"ĽŐĽíĽĂĽÔĄź¤ŹŔľ¤ˇ¤Żşî¤é¤ě¤Ţ¤ˇ¤żĄŁ\n"
"¤ł¤ě¤ÇĽ¤ĽóĽšĽČĄźĽë¤ŹşĆ¸˝¤Ç¤­¤Ţ¤šĄŁ"
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr "źŤĆ°Ľ¤ĽóĽšĽČĄźĽë"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr "Ľ˘Ľ¤ĽĆĽŕÄɲĂ"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr "şÇ¸ĺ¤ÎĽ˘Ľ¤ĽĆĽŕ¤ňşď˝ü"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
@@ -9349,7 +9726,7 @@ msgstr ""
" DrakBackup Ęóšđ \n"
"\n"
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9361,19 +9738,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9385,62 +9750,86 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr "żĘšÔžőśˇ"
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr "ĽˇĽšĽĆĽŕĽŐĽĄĽ¤Ľë¤ÎĽĐĽĂĽŻĽ˘ĽĂĽ×..."
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
msgstr "ĽĎĄźĽÉĽÇĽŁĽšĽŻ¤ÎĽĐĽĂĽŻĽ˘ĽĂĽ×ĽŐĽĄĽ¤Ľë..."
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
msgstr "ĽćĄźĽśĽŐĽĄĽ¤Ľë¤ÎĽĐĽĂĽŻĽ˘ĽĂĽ×..."
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr "ĽĎĄźĽÉĽÇĽŁĽšĽŻĽĐĽĂĽŻĽ˘ĽĂĽ×¤ÎżĘšÔ..."
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
msgstr "ž¤ÎĽŐĽĄĽ¤Ľë¤ňĽĐĽĂĽŻĽ˘ĽĂĽ×..."
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, fuzzy, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
"FTP ¤ÇÁ÷¤ëĽŐĽĄĽ¤Ľë¤ÎĽęĽšĽČ: %s\n"
" "
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
+#, fuzzy
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
"\n"
"(!) FTP ŔÜÂł¤ÎĽČĽéĽÖĽë: FTP¤ÇĽĐĽĂĽŻĽ˘ĽĂĽ×ĽŐĽĄĽ¤Ľë¤ňÁ÷¤ě¤Ţ¤ť¤ó¤Ç¤ˇ¤żĄŁ\n"
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
msgstr "(!) ĽáĄźĽëÁ÷żŽĂć¤ËĽ¨ĽéĄźĄŁ\n"
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
msgstr "ĽŐĽĄĽ¤Ľë¤ňÁŞÂň"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr "ĽŐĽĄĽ¤Ľë¤äĽÇĽŁĽěĽŻĽČĽę¤ňÁޤó¤ÇĄÖÄɲåפňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤š"
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -9448,26 +9837,26 @@ msgstr ""
"\n"
"ÉŹÍ×¤ĘĽŞĽ×ĽˇĽçĽó¤ËĽÁĽ§ĽĂĽŻ¤ň¤Ä¤ą¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"¤ł¤ÎĽŞĽ×ĽˇĽçĽó¤Ď /etc ĽÇĽŁĽěĽŻĽČĽę¤ÎĽŐĽĄĽ¤Ľë¤ň¤š¤Ů¤ĆĽĐĽĂĽŻĽ˘ĽĂĽ×ĄŚÉü¸ľ¤Ç¤­¤Ţ"
"¤šĄŁ\n"
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr "ĽˇĽšĽĆĽŕĽŐĽĄĽ¤Ľë¤ÎĽĐĽĂĽŻĽ˘ĽĂĽ×ĄĘ/etcĽÇĽŁĽěĽŻĽČĽę)"
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr "Ľ¤ĽóĽŻĽęĽáĽóĽżĽëĽĐĽĂĽŻĽ˘ĽĂĽ×ĄĘ¸Ĺ¤¤ĽĐĽĂĽŻĽ˘ĽĂĽ×¤ĎťÄ¤š)"
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "˝ĹÍ׼ռĄĽ¤Ľë (passwd, group, fstab) ¤Ď´Ţ¤á¤Ę¤¤"
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -9475,83 +9864,77 @@ msgstr ""
"¤ł¤ÎĽŞĽ×ĽˇĽçĽó¤Ç¤ĎĄ˘šĽ¤­¤ĘĽĐĄźĽ¸ĽçĽó¤Î /etc ĽÇĽŁĽěĽŻĽČĽę¤ň\n"
"Éü¸ľ¤Ç¤­¤Ţ¤šĄŁ"
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×¤Ë´Ţ¤á¤ż¤¤ĽćĄźĽś¤ňÁ´°÷Áޤó¤Ç˛ź¤ľ¤¤"
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr "ĽÖĽéĽŚĽś¤ÎĽ­ĽăĽĂĽˇĽĺ¤Ď´Ţ¤á¤Ę¤¤"
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Ľ¤ĽóĽŻĽęĽáĽóĽżĽëĽĐĽĂĽŻĽ˘ĽĂĽ×ĄĘ¸Ĺ¤¤ĽĐĽĂĽŻĽ˘ĽĂĽ×¤ĎťÄ¤š)"
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
msgstr "Áޤó¤Ŕ¤â¤Î¤ňşď˝ü"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr "ĽćĄźĽśĚž"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×¤Ë FTP ŔÜÂł¤ňťČÍŃ"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
msgstr "ĽŰĽšĽČĚž¤Ť IP ¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
"¤ł¤ÎĽŰĽšĽČžĺ¤Ç¤˝¤ÎĽÇĽŁĽěĽŻĽČĽę¤Ë\n"
"ĽĐĽĂĽŻĽ˘ĽĂĽ×¤ňĘݸ¤ˇ¤Ţ¤š¤ŤĄŠ"
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
msgstr "ĽíĽ°Ľ¤ĽóĚž¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
msgstr "ĽŃĽšĽďĄźĽÉ¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
msgstr "¤ł¤ÎĽŃĽšĽďĄźĽÉ¤ňľ­˛ą¤š¤ë"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "FTP ŔÜÂł"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "ĽťĽ­ĽĺĽ˘ŔÜÂł"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr "CD/DVDROM ¤ËĽĐĽĂĽŻĽ˘ĽĂĽ×"
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
msgstr "CD ĽšĽÚĄźĽš¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
msgstr "CDRW¤ňťČ¤Ă¤Ć¤¤¤ëžěšç¤ĎĽÁĽ§ĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr "¤Ţ¤ş CDRW ¤ňžĂľî¤š¤ëžěšç¤Ë¤Ď¤ł¤ł¤ňĽŻĽęĽĂĽŻ"
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
@@ -9559,7 +9942,7 @@ msgstr ""
"CD ¤ËľŻĆ°ÍѤÎboot¤ň´Ţ¤á¤ë¤Ę¤é\n"
"ĽÁĽ§ĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -9567,16 +9950,21 @@ msgstr ""
"CD ĽéĽ¤ĽżĄź¤ÎĽÇĽĐĽ¤ĽšĚž¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤\n"
"Îă: 0,1,0"
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
msgstr "ĽĆĄźĽ×¤ËĽĐĽĂĽŻĽ˘ĽĂĽ×"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×ÍŃĽÇĽĐĽ¤ĽšĚž¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "¤Ţ¤ş CDRW ¤ňžĂľî¤š¤ëžěšç¤Ë¤Ď¤ł¤ł¤ňĽŻĽęĽĂĽŻ"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -9584,57 +9972,63 @@ msgstr ""
"Drakbackup¤Ëľö¤ľ¤ě¤ëşÇÂ缾Ľ¤Ľş¤ň\n"
"ĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
+#: ../../standalone/drakbackup_.c:1497
+#, fuzzy
+msgid "Please enter the directory to save to:"
msgstr "Ęݸ¤š¤ëĽÇĽŁĽěĽŻĽČĽę¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤:"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×ĽŐĽĄĽ¤Ľë¤ÎĽŻĽŠĄźĽż¤ňťČ¤Ś"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
msgstr "ĽÍĽĂĽČĽďĄźĽŻ"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
-msgstr "CDROM / DVDROM"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr "ĽĎĄźĽÉĽÉĽéĽ¤ĽÖ / NFS"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "ĽżĽ¤Ľ×"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr "Ëčťţ´Ö"
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr "ËčĆü"
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr "Ë轾"
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr "Ëčˇî"
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
msgstr "ĽÇĄźĽâĽó¤ňťČ¤Ś"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×¤Î´ÖłÖ¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
@@ -9642,71 +10036,67 @@ msgstr ""
"ĽĐĽĂĽŻĽ˘ĽĂĽ×¤ÎĽáĽÇĽŁĽ˘¤ň\n"
"Áޤó¤Ç¤Ż¤Ŕ¤ľ¤¤¤ÍĄŁ"
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "ĽÇĄźĽâĽó¤ÇĽĎĄźĽÉĽÉĽéĽ¤ĽÖ¤ňťČ¤Ś"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "ĽÇĄźĽâĽó¤Ç FTP ¤ňťČ¤Ś"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+#, fuzzy
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr "ĽľĄźĽÓĽš¤Ë cron ĽÇĄźĽâĽó¤Ź´Ţ¤Ţ¤ě¤Ć¤¤¤ë¤ł¤Č¤ňłÎǧ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×Ëč¤ÎĘóšđĽáĄźĽëÁ÷¤ęŔč: "
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "˛ż¤ň"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "¤˝¤ł¤Ë"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "¤¤¤Ä"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
msgstr "¤˝¤ÎžĽŞĽ×ĽˇĽçĽó"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
msgstr "Drakbackup ŔßÄę"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×Ŕč¤ňÁޤó¤Ç˛ź¤ľ¤¤"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr "ĽĎĄźĽÉĽÉĽéĽ¤ĽÖ¤Ř"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr "ĽÍĽĂĽČĽďĄźĽŻˇĐÍł¤Ç"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×¤ˇ¤ż¤¤¤â¤Î¤ňÁޤó¤Ç˛ź¤ľ¤¤"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
msgstr "ĽˇĽšĽĆĽŕ¤ňĽĐĽĂĽŻĽ˘ĽĂĽ×"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr "ĽćĄźĽś¤ňĽĐĽĂĽŻĽ˘ĽĂĽ×"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr "ĽćĄźĽś¤ňźęĆ°¤ÇÁޤÖ"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
@@ -9714,7 +10104,7 @@ msgstr ""
"\n"
"ĽĐĽĂĽŻĽ˘ĽĂĽ×¸ľ: \n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
@@ -9722,7 +10112,7 @@ msgstr ""
"\n"
"- ĽˇĽšĽĆĽŕĽŐĽĄĽ¤Ľë:\n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
@@ -9730,7 +10120,7 @@ msgstr ""
"\n"
"- ĽćĄźĽśĽŐĽĄĽ¤Ľë:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
@@ -9738,7 +10128,7 @@ msgstr ""
"\n"
"- ¤˝¤ÎžĽŐĽĄĽ¤Ľë:\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
@@ -9747,16 +10137,45 @@ msgstr ""
"\n"
"- ĽĎĄźĽÉĽÉĽéĽ¤ĽÖžĺ¤ÎĘݸĽŃĽš : %s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "ĽŢĽŚĽšĽÇĽĐĽ¤Ľš: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"- FTP ¤Ç¤ÎĘݸŔčĽŰĽšĽČ : %s\n"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
"\n"
"- FTP ¤Ç¤ÎĘݸŔčĽŰĽšĽČ : %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -9765,7 +10184,7 @@ msgstr ""
"\t\t ĽćĄźĽśĚž: %s\n"
"\t\t ĽŃĽš: %s \n"
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
@@ -9773,19 +10192,19 @@ msgstr ""
"\n"
"- ĽŞĽ×ĽˇĽçĽó:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr "\tĽˇĽšĽĆĽŕĽŐĽĄĽ¤Ľë¤Ď´Ţ¤á¤Ę¤¤\n"
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr "\tĽĐĽĂĽŻĽ˘ĽĂĽ×¤Ç tar ¤Č bzip2¤ňťČÍŃ\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr "\tĽĐĽĂĽŻĽ˘ĽĂĽ×¤Ç tar ¤Č gzip¤ňťČÍŃ\n"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
@@ -9794,27 +10213,41 @@ msgstr ""
"\n"
"- ĽÇĄźĽâĽó (%s) ¤Ź´Ţ¤ŕ¤â¤Î :\n"
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr "\t-ĽĎĄźĽÉĽÉĽéĽ¤ĽÖĄŁ\n"
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr "\t-ĽÍĽĂĽČĽďĄźĽŻ¤Ç FTP.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr "\t-ĽÍĽĂĽČĽďĄźĽŻ¤Ç SSH.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t-ĽÍĽĂĽČĽďĄźĽŻ¤Ç FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t-ĽÍĽĂĽČĽďĄźĽŻ¤Ç FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "ŔßÄꤏ¤˘¤ę¤Ţ¤ť¤óĄŁĽŚĽŁĽśĄźĽÉ¤Ťžĺľé¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤\n"
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
@@ -9822,7 +10255,7 @@ msgstr ""
"Éü¸ľ¤š¤ëĽÇĄźĽż¤Î°ěÍ÷:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
@@ -9830,130 +10263,133 @@ msgstr ""
"˛ő¤ě¤Ć¤¤¤ëĽÇĄźĽż°ěÍ÷:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
msgid "Please uncheck or remove it on next time."
msgstr "źĄ˛ó¤ËĽÁĽ§ĽĂĽŻ¤ň¤Ď¤ş¤š¤Ťşď˝ü¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×ĽŐĽĄĽ¤Ľë¤Ź˛ő¤ě¤Ć¤¤¤Ţ¤š"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr " ÁŞÂň¤ˇ¤żĽÇĄźĽż¤Ď¤š¤Ů¤Ć "
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr " %s žĺ¤ËÉü¸ľ¤ľ¤ě¤Ţ¤ˇ¤ż "
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
msgid " Restore Configuration "
msgstr " ŔßÄęÉü¸ľ "
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr "ž¤ÎĽŐĽĄĽ¤ĽëÉü¸ľ¤Ë¤ĎOK¤ň"
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr "Éü¸ľ¤š¤ëĽćĄźĽś¤Î°ěÍ÷ĄĘłĆĽćĄźĽś¤ÎşÇżˇ¤ÎĆüÉŐ¤Ŕ¤ą¤Ź˝ĹÍפǤšĄË"
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
msgstr "ĽˇĽšĽĆĽŕĽŐĽĄĽ¤Ľë¤ÎĽĐĽĂĽŻĽ˘ĽĂĽ×´ü¸Â:"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
msgid "please choose the date to restore"
msgstr "Éü¸ľ¤š¤ëĆüÉŐ¤ňÁŞÂň¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×¤ËĽĎĄźĽÉĽÇĽŁĽšĽŻ¤ňťČÍŃ"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+msgid "Please enter the directory to save:"
+msgstr "Ęݸ¤š¤ëĽÇĽŁĽěĽŻĽČĽę¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤:"
+
+#: ../../standalone/drakbackup_.c:2416
+msgid "FTP Connection"
+msgstr "FTP ŔÜÂł"
+
+#: ../../standalone/drakbackup_.c:2424
+msgid "Secure Connection"
+msgstr "ĽťĽ­ĽĺĽ˘ŔÜÂł"
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
msgstr "ĽĎĄźĽÉĽÇĽŁĽšĽŻ¤Ť¤éÉü¸ľ¤š¤ë"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×¤ÎĘݸĽÇĽŁĽěĽŻĽČĽę¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
msgstr "Éü¸ľ¸ľ¤ÎĽáĽÇĽŁĽ˘¤ňÁŞ¤Ó¤Ę¤Ş¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
msgid "Other Media"
msgstr "¤˝¤ÎžĽáĽÇĽŁĽ˘"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
msgid "Restore system"
msgstr "ĽˇĽšĽĆĽŕÉü¸ľ"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
msgstr "ĽćĄźĽśÉü¸ľ"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
msgstr "¤˝¤ÎžĽŐĽĄĽ¤Ľë¤ňÉü¸ľ"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr "Éü¸ľĽŃĽš¤ňÁŞ¤ÖĄĘ/°Ęł°)"
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Éü¸ľÁ°¤ËżˇľŹĽĐĽĂĽŻĽ˘ĽĂĽ×ĄĘĽ¤ĽóĽŻĽęĽáĽóĽżĽëĽĐĽĂĽŻĽ˘ĽĂĽ×¤Î¤ßĄË"
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr "Éü¸ľÁ°¤ËĽćĄźĽśĽÇĽŁĽěĽŻĽČĽę¤ňşď˝ü"
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr "Á´ĽĐĽĂĽŻĽ˘ĽĂĽ×¤ÎÉü¸ľ"
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
msgid "Custom Restore"
msgstr "ĽŤĽšĽżĽŕÉü¸ľ"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "ĽŘĽëĽ×"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "¤â¤É¤ë"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "Ęݸ"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×š˝ĂŰ"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
msgstr "Éü¸ľ"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "źĄ"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -9961,7 +10397,7 @@ msgstr ""
"Éü¸ľ¤š¤ë¤Ë¤ĎĽĐĽĂĽŻĽ˘ĽĂĽ×¤ň¤Ţ¤şš˝Ăۤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤...\n"
"¤˘¤ë¤¤¤ĎĘݸŔčĽŃĽš¤ĎŔľ¤ˇ¤¤¤Ç¤š¤ŤĄŠ"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
@@ -9971,31 +10407,35 @@ msgstr ""
" ĘóšđĽáĄźĽë¤ĎÁ÷żŽ¤Ç¤­¤Ţ¤ť¤ó\n"
" sendmail¤ňŔßÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Ľ¤ĽóĽšĽČĄźĽë¤š¤ëĽŃĽĂĽąĄźĽ¸°ěÍ÷"
+#: ../../standalone/drakbackup_.c:2933
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "°Ę˛ź¤ÎĽŃĽĂĽąĄźĽ¸¤ŹĽ¤ĽóĽšĽČĄźĽë¤ľ¤ě¤Ţ¤š"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
+#, fuzzy
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
"FTP¤Ç¤ÎĽŐĽĄĽ¤ĽëĹžÁ÷Ăć¤ËĽ¨ĽéĄź.\n"
"FTP ŔßÄę¤ň¤Ę¤Ş¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤."
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
msgstr "Éü¸ľĽÇĄźĽż¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤¤ÍĄŁ"
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×ÍŃĽáĽÇĽŁĽ˘¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤¤ÍĄŁ"
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×¤š¤ëĽÇĄźĽż¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤..."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10003,75 +10443,75 @@ msgstr ""
"ŔßÄęĽŐĽĄĽ¤Ľë¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤ó\n"
"ĽŚĽŁĽśĄźĽÉ¤Ťžĺľé¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr "¤Ţ¤ŔłŤČŻĂć...ÂԤäƤƤŻ¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
msgid "Backup system files"
msgstr "ĽˇĽšĽĆĽŕĽŐĽĄĽ¤Ľë¤ňĽĐĽĂĽŻĽ˘ĽĂĽ×"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
msgid "Backup user files"
msgstr "ĽćĄźĽśĽŐĽĄĽ¤Ľë¤ňĽĐĽĂĽŻĽ˘ĽĂĽ×"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
msgid "Backup other files"
msgstr "¤˝¤ÎžĽŐĽĄĽ¤Ľë¤ňĽĐĽĂĽŻĽ˘ĽĂĽ×"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr "Á´ÂΤοʚԞőśˇ"
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr "FTP¤ÇĽŐĽĄĽ¤ĽëÁ÷żŽĂć"
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
msgid "Sending files..."
msgstr "ĽŐĽĄĽ¤ĽëÁ÷żŽĂć..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr "CDROM¤Ë´Ţ¤á¤ëĽÇĄźĽż°ěÍ÷"
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
msgid "Please enter the cd writer speed"
msgstr "CDĽéĽ¤ĽżĄź¤ÎÂŽĹ٤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr "CDĽéĽ¤Ľż¤ÎĽÇĽĐĽ¤ĽšĚž¤ňĆţÎĎĄĘÎă: 0,1,0)"
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
msgstr "Ľ¤ĽóĽšĽČĄźĽë¤ˇ¤ż¤¤ĽŃĽĂĽąĄźĽ¸¤ňÁޤó¤Ç˛ź¤ľ¤¤"
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
msgid "Backup Now from configuration file"
msgstr "ŔßÄęĽŐĽĄĽ¤Ľë¤Ť¤éşŁ¤š¤°ĽĐĽĂĽŻĽ˘ĽĂĽ×"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
msgid "View Backup Configuration."
msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×ŔßÄę¤ň¸Ť¤ë"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
msgid "Wizard Configuration"
msgstr "ĽŚĽŁĽśĄźĽÉŔßÄę"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
msgid "Advanced Configuration"
msgstr "žĺľéŔßÄę"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
msgstr "şŁ¤š¤°ĽŃĽĂĽŻĽ˘ĽĂĽ×"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -10131,7 +10571,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10145,7 +10585,7 @@ msgstr ""
" /etc/postfix/main.cf¤Î myhostname ¤Ť mydomain ¤ňŔßÄꤡ¤Ţ¤šĄŁ\n"
"\n"
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -10221,7 +10661,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -10272,13 +10712,18 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10308,7 +10753,7 @@ msgstr ""
" Free Software Foundation, Inc., 59 Temple Place - Suite 330, \n"
" Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -10385,7 +10830,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -10402,7 +10847,7 @@ msgstr ""
"Á°¤ËĄ˘¤Ţ¤şĽĎĄźĽÉĽÉĽéĽ¤ĽÖžĺ¤ËĽĐĽĂĽŻĽ˘ĽĂĽ×š˝ĂۤŹÉŹÍפˤʤę¤Ţ¤šĄŁ\n"
"\n"
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10423,7 +10868,7 @@ msgstr ""
"¤š¤ë¤Î¤ÇĄ˘¤¤¤Ţ¤ÎĽÇĄźĽż¤ĎÁ´ÉôžĂ¤¨¤Ţ¤šĄŁ¤Ç¤š¤Ť¤éĄ˘ĽĐĽĂĽŻ\n"
"Ľ˘ĽĂĽ×ĽÇĄźĽż¤ÎĽŐĽĄĽ¤Ľë¤Ďźę¤Ç˛ţĘѤˇ¤Ę¤¤¤Ű¤Ś¤Ź¸­ĚŔ¤Ç¤šĄŁ\n"
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -10501,99 +10946,531 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "%s ¤ÎĽ¤ĽóĽšĽČĄźĽë¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤żĄŁ°Ę˛ź¤ÎĽ¨ĽéĄź¤ŹČŻŔ¸:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "ĽłĽóĽ˝ĄźĽëĽÄĄźĽë"
+
+#: ../../standalone/drakbug_.c:53
+#, fuzzy
+msgid "HardDrake"
+msgstr "ĽĎĄźĽÉĽÉĽéĽ¤ĽÖ¤Ř"
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "Mandrake ĽłĽóĽľĽëĽĆĽŁĽóĽ°"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "MandrakeStore"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "ĽŢĽŚĽš"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "ĽęĽâĄźĽČĽ×ĽęĽóĽż"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "ĽˇĽ§Ľ˘Ěž"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Printerdrake"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "ĽÍĽĂĽČĽďĄźĽŻŔßÄ꼌ĽŁĽśĄźĽÉ"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "ǧžÚ"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "ĽŃĽĂĽąĄźĽ¸¤ňÁŞÂň"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "¤ŞÂÔ¤Á˛ź¤ľ¤¤"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Ľ˘ĽóĽ¤ĽóĽšĽČĄźĽë¸ĺ¤ÎşîśČ"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "ĽÝĄźĽČ"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "%s ¤ÎĽ¤ĽóĽšĽČĄźĽë¸ĺ¤ËĽšĽŻĽęĄźĽóĽˇĽçĽĂĽČ¤Ź˛ÄÇ˝¤Ç¤š"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "ĽÍĽĂĽČĽďĄźĽŻŔßÄę (%d Ľ˘ĽŔĽ×Ľż)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Ľ×ĽíĽŐĽŁĄźĽë: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Ľ×ĽíĽŐĽŁĄźĽëşď˝üĄÄĄÄ"
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "şď˝ü¤ˇ¤ż¤¤Ľ×ĽíĽŐĽŁĄźĽëĄ§"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "żˇľŹĽ×ĽíĽŐĽŁĄźĽëĄÄĄÄ"
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr "şîŔŽ¤š¤ëĽ×ĽíĽŐĽŁĄźĽë¤ÎĚžÁ°ĄĘżˇĽ×ĽíĽŐĽĄĽ¤Ľë¤Ď¸˝şß¤Î¤â¤Î¤ÎĽłĽÔĄź¤Ç¤šĄËĄ§"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "ĽŰĽšĽČĚž:"
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČ"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "ĽżĽ¤Ľ×: "
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Ľ˛ĄźĽČĽŚĽ§Ľ¤:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Ľ¤ĽóĽżĄźĽŐĽ§ĄźĽš:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "ĽšĽĆĄźĽżĽš: "
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "žŻĄš¤ŞÂÔ¤Á¤ň"
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČĽ˘ĽŻĽťĽš¤ÎŔßÄę"
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "LAN¤ÎŔßÄę"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "ĽÉĽéĽ¤ĽĐ"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Ľ¤ĽóĽżĄźĽŐĽ§ĄźĽš"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Ľ×ĽíĽČĽłĽë"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "žőÂÖ"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "LAN ŔßÄęĄÄĄÄ"
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "ĽŚĽŁĽśĄźĽÉ¤ÎľŻĆ°¤Ë¤Ď¤ł¤Á¤é¤ňĽŻĽęĽĂĽŻ -->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "ĽŚĽŁĽśĄźĽÉ..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "ĹŹÍŃ"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "žŻĄš¤ŞÂÔ¤Á¤ňĄÄĄÄŔßÄę¤ňĹŹÍѤˇ¤Ć¤¤¤Ţ¤š"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "ŔÜÂł´°Îť"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "ŔÜÂł¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤ó"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "ŔÜÂłĄÄĄÄ"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "ŔÜÂł¤ňŔÚĂÇĄÄĄÄ"
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+"ˇŮšđĄ˘Ę̤μ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤Ź¸Ą˝Đ¤ľ¤ě¤Ţ¤ˇ¤żĄŁĽÍĽĂĽČĽďĄźĽŻ¤ĎťČÍŃĂ植¤â¤ˇ¤ě¤Ţ"
+"¤ť¤ó"
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"ŔßÄęşŃ¤ß¤ÎĽ¤ĽóĽżĄźĽŐĽ§ĄźĽš¤Ź¤˘¤ę¤Ţ¤ť¤óĄŁ\n"
+"ĄÖŔßÄęĄ×¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ć¤Ţ¤ş¤˝¤ě¤é¤ňŔßÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "LAN¤ÎŔßÄę"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Ľ˘ĽŔĽ×Ľż %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "ĽÖĄźĽČĽ×ĽíĽČĽłĽë"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "ľŻĆ°ťţ¤ËłŤťĎ"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP ĽŻĽéĽ¤Ľ˘ĽóĽČ"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "¤¤¤Ţ¤š¤°Í­¸ú¤Ë"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "¤¤¤Ţ¤š¤°Ěľ¸ú¤Ë"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"¤ł¤ÎĽ¤ĽóĽżĄźĽŐĽ§ĄźĽš¤Ď¤Ţ¤ŔŔßÄꤾ¤ě¤Ć¤¤¤Ţ¤ť¤óĄŁ\n"
+"źçĽŚĽŁĽóĽÉĽŚ¤ÇŔßÄ꼌ĽŁĽśĄźĽÉ¤ňľŻĆ°¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤Ź¤˘¤ę¤Ţ¤ť¤óĄŁ\n"
+"ĄÖŔßÄęĄ×¤ňĽŻĽęĽĂĽŻ¤ˇ¤ĆşîŔŽ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂłŔßÄę"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂłŔßÄę"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "ŔÜÂł¤ÎźďÎŕ: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "ĽŃĽéĽáĄźĽż"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Ľ˛ĄźĽČĽŚĽ§Ľ¤"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Ľ¤ĄźĽľĽÍĽĂĽČĽŤĄźĽÉ"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP ĽŻĽéĽ¤Ľ˘ĽóĽČ"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "ťČ¤¤ĘýĄ§drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr ""
+"-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,-misc-fixed-medium-r-normal--14-*-"
+"75-75-c-*-jisx0208.1983-0,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "ĽâĽ¸ĽĺĄźĽëĚž"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "ĽľĽ¤Ľş"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "ĽÖĄźĽČĽÇĽŁĽšĽŻşîŔŽ"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "ĽÇĽŐĽŠĽëĽČ"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "DrakFloppyĽ¨ĽéĄźĄ§ %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "ĽŤĄźĽÍĽëĽĐĄźĽ¸ĽçĽó"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "°ěČĚ"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Ľ¨Ľ­ĽšĽŃĄźĽČ¸ţ¤ą"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrd Äɲäΰúżô"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "ĽâĽ¸ĽĺĄźĽëÄɲĂ"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "śŻŔŠ"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "ÉŹÍפʞěšç¤Î¤ß"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "scsi ĽâĽ¸ĽĺĄźĽë¤ĎČô¤Đ¤š"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "raid ĽâĽ¸ĽĺĄźĽë¤ĎČô¤Đ¤š"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "ĽâĽ¸ĽĺĄźĽë¤Îşď˝ü"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "˝ĐÎĎ"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "ĽÇĽŁĽšĽŻ¤ňşîŔŽ"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "ĽÇĽĐĽ¤Ľš %s ¤ËĽáĽÇĽŁĽ˘¤ĎĆţ¤Ă¤Ć¤¤¤Ţ¤š¤ŤĄŠ"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"ĽÇĽĐĽ¤Ľš %s¤ÎĽáĽÇĽŁĽ˘¤Ź¤˘¤ę¤Ţ¤ť¤óĄŁ\n"
+"ĽťĽĂĽČ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "%s ¤ňĽŐĽŠĄźĽŻ¤Ç¤­¤Ţ¤ť¤ó"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"°Ę˛ź¤Îmkbootdisk¤ň¤­¤Á¤ó¤ČĘĤ¸¤é¤ě¤Ţ¤ť¤ó: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr "Ľ¤ĽóĽšĽČĄźĽëşŃ¤ßĽŐĽŠĽóĽČ¤ň¸Ąş÷"
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr "Ľ¤ĽóĽšĽČĄźĽëşŃ¤ßĽŐĽŠĽóĽČ¤ňÁŞÂň¤ˇ¤Ę¤¤"
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr "¤š¤Ů¤Ć¤ÎĽŐĽŠĽóĽČ¤ňĽÁĽ§ĽĂĽŻ"
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
msgid "no fonts found"
msgstr "ĽŐĽŠĽóĽČ¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤ó"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "´°Îť"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr "ĽŢĽŚĽóĽČ¤ľ¤ě¤żĽŃĄźĽĆĽŁĽˇĽçĽó¤Ë¤ĎĽŐĽŠĽóĽČ¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤ó"
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr "Ŕľ¤ˇ¤¤ĽŐĽŠĽóĽČ¤ňÁޤÓÄž¤š"
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr "ĽŐĽŠĽóĽČ¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤óĄŁ\n"
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr "Ľ¤ĽóĽšĽČĄźĽëşŃ¤ß°ěÍ÷¤Ť¤éĽŐĽŠĽóĽČ¤ňĂľ¤š"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr "ĽŐĽŠĽóĽČ¤ňĽłĽÔĄź"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
msgid "True Type fonts installation"
msgstr "True Type ĽŐĽŠĽóĽČ¤ÎĽ¤ĽóĽšĽČĄźĽë"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr "ttmkfdir Ăć¤Ę¤Î¤ÇžŻĄš¤ŞÂÔ¤Á¤ň..."
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr "True Type Ľ¤ĽóĽšĽČĄźĽë´°Îť"
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr "ĽŐĽŠĽóĽČĘŃ´š"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr "type1inst š˝ĂŰĂć"
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr "Ghostscript ť˛žČĂć"
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr "ttf ĽŐĽŠĽóĽČĘŃ´š"
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr "pfm ĽŐĽŠĽóĽČĘŃ´š"
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr "°ěťţĽŐĽĄĽ¤Ľë¤ňşî¤é¤Ę¤¤"
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr "XFS şĆľŻĆ°"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr "ĽŐĽŠĽóĽČĽŐĽĄĽ¤Ľë¤ňşî¤é¤Ę¤¤"
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
msgid "xfs restart"
msgstr "xfs şĆľŻĆ°"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10607,107 +11484,107 @@ msgstr ""
"-ĽŐĽŠĽóĽČ¤ňÄĚžď¤Î¤ä¤ęĘý¤ÇĽ¤ĽóĽšĽČĄźĽë¤Ç¤­¤Ţ¤šĄŁ¤Č¤­¤É¤­Ą˘¤Ş¤Ť¤ˇ¤ĘĽŐĽŠĽóĽČ¤Ç "
"X ĽľĄźĽĐ¤ŹĽĎĽóĽ°¤š¤ëžěšç¤Ź¤˘¤ę¤Ţ¤šĄŁ"
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
msgid "Fonts Importation"
msgstr "ĽŐĽŠĽóĽČĆɤߚţ¤ß"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr "ĽŚĽŁĽóĽÉĽŚĽş¤ÎĽŐĽŠĽóĽČ¤ňźč¤Ă¤Ć¤Ż¤ë"
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr "ĽŐĽŠĽóĽČ¤ÎĽ˘ĽóĽ¤ĽóĽšĽČĄźĽë"
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "žĺľéĽŞĽ×ĽˇĽçĽó"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
msgstr "ĽŐĽŠĽóĽČ°ěÍ÷"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
msgid "Choose the applications that will support the fonts :"
msgstr "¤ł¤ÎĽŐĽŠĽóĽČ¤ňĽľĽÝĄźĽČ¤š¤ëĽ˘Ľ×ĽęĽąĄźĽˇĽçĽó¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤:"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
msgstr "°ěČ̼׼ęĽóĽż"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr "ĽŐĽŠĽóĽČĽŐĽĄĽ¤Ľë¤ŤĽÇĽŁĽěĽŻĽČĽę¤ňÁޤó¤ÇĄÖÄɲåפňĽŻĽęĽĂĽŻ"
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
msgstr "°ěÍ÷¤ÎĽ¤ĽóĽšĽČĄźĽë"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr "¤Ţ¤Á¤Ź¤¤¤Ę¤ą¤ě¤ĐĽŻĽęĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr "ĽŔĽá¤Ę¤é¤ł¤Á¤é¤ň"
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr "¤š¤Ů¤Ć¤ňČóÁŞÂň¤Ë"
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
msgid "Selected All"
msgstr "¤š¤Ů¤Ć¤ňÁŞÂň"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
msgstr "°ěÍ÷¤ňşď˝ü"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr "Ľ¤ĽËĽˇĽăĽëĽĆĽšĽČ"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
msgstr "ĽˇĽšĽĆĽŕžĺ¤ÎĽŐĽŠĽóĽČ¤ňĽłĽÔĄź"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr "ĽŐĽŠĽóĽČ¤ÎĽ¤ĽóĽšĽČĄźĽë¤ČĘŃ´š"
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
msgid "Post Install"
msgstr "Ľ¤ĽóĽšĽČĄźĽë¸ĺ¤ÎşîśČ"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
msgstr "ĽˇĽšĽĆĽŕ¤Ť¤éĽŐĽŠĽóĽČ¤ňşď˝ü"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
msgid "Post Uninstall"
msgstr "Ľ˘ĽóĽ¤ĽóĽšĽČĄźĽë¸ĺ¤ÎşîśČ"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤ÎśŚÍ­"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂłśŚÍ­¤Ď¸˝şßÍ­¸ú"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10719,31 +11596,31 @@ msgstr ""
"\n"
"¤É¤Ś¤ˇ¤Ţ¤š¤ŤĄŠ"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "Ěľ¸ú¤Ë"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "Ěľťë"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "şĆŔßÄę"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "ĽľĄźĽĐ¤ňĚľ¸ú¤Ë¤ˇ¤Ć¤¤¤Ţ¤šĄÄĄÄ"
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂłśŚÍ­¤ĎĚľ¸ú¤Ë¤Ę¤ę¤Ţ¤ˇ¤żĄŁ"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂłśŚÍ­¤Ď¸˝şßĚľ¸ú¤Ç¤š"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10755,19 +11632,19 @@ msgstr ""
"\n"
"¤É¤Ś¤ˇ¤Ţ¤š¤ŤĄŠ"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "Í­¸ú¤Ë"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "ĽľĄźĽĐ¤ňÍ­¸ú¤Ë¤ˇ¤Ć¤¤¤Ţ¤šĄÄĄÄ"
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂłśŚÍ­¤ŹÍ­¸ú¤Ç¤šĄŁ"
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10782,21 +11659,21 @@ msgstr ""
"ĂíĄ§ĽíĄźĽŤĽëĽ¨ĽęĽ˘ĽÍĽĂĽČĽďĄźĽŻ (LAN) ¤ň¤Ä¤Ż¤ë¤Ë¤ĎĄ˘ŔěÍѤμͼüȼ寧ĽŻĽ˘ĽŔĽ×Ľż"
"¤ŹÍפę¤Ţ¤šĄŁ"
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Ľ¤ĽóĽżĄźĽŐĽ§ĄźĽš %s (ĽâĽ¸ĽĺĄźĽë %s ¤ňťČÍŃ)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Ľ¤ĽóĽżĄźĽŐĽ§ĄźĽš %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "ĽÍĽĂĽČĽďĄźĽŻĽ˘ĽŔĽ×Ľż¤Ź¤˘¤ę¤Ţ¤ť¤óĄŞ"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10804,11 +11681,11 @@ msgstr ""
"ĽˇĽšĽĆĽŕžĺ¤ËĽ¤ĄźĽľĽÍĽĂĽČĽ˘ĽŔĽ×Ľż¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤óĄŁ ĽĎĄźĽÉĽŚĽ§Ľ˘ŔßÄęĽÄĄźĽë¤ňźÂ"
"šÔ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "ĽÍĽĂĽČĽďĄźĽŻĽ¤ĽóĽżĄźĽŐĽ§Ľ¤Ľš"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10823,7 +11700,7 @@ msgstr ""
"\n"
"¤ł¤ÎĽ˘ĽŔĽ×Ľż¤Ç LAN ¤ËŔÜÂł¤ˇ¤Ţ¤š¤ÍĄŁ"
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -10831,11 +11708,11 @@ msgstr ""
"ĽíĄźĽŤĽëĽ¨ĽęĽ˘ĽÍĽĂĽČĽďĄźĽŻ¤Ë¤Ä¤Ę¤Ź¤ëĽÍĽĂĽČĽďĄźĽŻĽ˘ĽŔĽ×Ľż¤ň\n"
"Áޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr "ĽÍĽĂĽČĽďĄźĽŻĽ¤ĽóĽżĄźĽŐĽ§ĄźĽš¤ĎŔßÄęşŃ¤ß¤Ç¤šŔßÄꤾ¤ě¤Ć¤Ţ¤ť¤ó"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10850,15 +11727,15 @@ msgstr ""
"\n"
"źęĆ°¤Ç¤ä¤ë¤ł¤Č¤â¤Ç¤­¤Ţ¤š¤ŹĄ˘¤˝¤ě¤Ę¤ę¤ÎĂÎźą¤ŹÉŹÍפǤš¤čĄŁ"
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr "źŤĆ°şĆŔßÄę"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr "¸˝şß¤ÎĽ¤ĽóĽżĄźĽŐĽ§ĄźĽšŔßÄę¤ňÉ˝ź¨"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10875,7 +11752,7 @@ msgstr ""
"IP °Ŕ­: %s\n"
"ĽÉĽéĽ¤ĽĐ: %s"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
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 C-Class Network that "
@@ -10893,32 +11770,32 @@ msgstr ""
"¤˘¤ë¤¤¤ĎĄ˘¤ł¤Á¤é¤ÇĽ¤ĽóĽżĄźĽŐĽ§ĄźĽš¤ČDHCPĽľĄźĽĐ¤ÎŔßÄę¤ň¤ä¤ë¤ł¤Č¤â¤Ç¤­¤Ţ¤šĄŁ\n"
"\n"
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr "CĽŻĽéĽšĽíĄźĽŤĽëĽÍĽĂĽČĽďĄźĽŻ"
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr "ĄĘ¤ł¤ÎĄËDHCP ĽľĄźĽĐ¤Î IP"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr "Ľ¤ĽóĽżĄźĽŐĽ§ĄźĽš¤ČDHCPĽľĄźĽĐ¤ÎşĆŔßÄę"
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "ĽíĄźĽŤĽëĽÍĽĂĽČĽďĄźĽŻ¤ŹĄÖ.0Ą×¤Ç˝Ş¤ď¤Ă¤Ć¤¤¤Ţ¤ť¤óĄŁĂćĂǤˇ¤Ţ¤šĄŁ"
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "¸˝şß¤Î %s ¤ÎŔßÄę¤Ç¤ĎLANĽ˘ĽÉĽěĽš¤Źž×Ćͤš¤ë¤Ť¤â¤ˇ¤ě¤Ţ¤ť¤óĄŞ\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "ĽŐĽĄĽ¤Ľ˘ĽŚĽŠĄźĽë¤ÎŔßÄę¤ň¸Ą˝ĐĄŞ"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10926,20 +11803,20 @@ msgstr ""
"ˇŮšđĄŞ´ű¸ĽŐĽĄĽ¤ĽäĽŚĽŠĄźĽë¤ÎŔßÄę¤ň¸Ą˝ĐĄŁ\n"
"Ľ¤ĽóĽšĽČĄźĽë¸ĺ¤ËĄ˘źęĆ°¤Ç˝¤Ŕľ¤ŹÍפ뤍đ⤡¤ě¤Ţ¤ť¤óĄŁ"
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "ŔßÄęĂć..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "ĽšĽŻĽęĽ×ĽČ¤ÎŔßÄꥢĽ˝ĽŐĽČĽŚĽ§Ľ˘¤ÎĽ¤ĽóĽšĽČĄźĽëĄ˘ĽľĄźĽĐ¤ÎľŻĆ°..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "ĽŃĽĂĽąĄźĽ¸ %s ¤ÎĽ¤ĽóĽšĽČĄźĽë¤ÇĚäÂęČŻŔ¸"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10949,23 +11826,23 @@ msgstr ""
"¤ł¤ě¤ÇźŤĆ°ĽÍĽĂĽČĽďĄźĽŻŔßÄęĄĘdhcp) ¤ňťČ¤Ă¤ĆĄ˘LAN žĺ¤Îž¤ÎĽŢĽˇĽó¤ČĽ¤ĽóĽżĄźĽÍĽĂ"
"ĽČŔÜÂł¤ňśŚÍ­¤Ç¤­¤Ţ¤šĄŁ"
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "ŔßÄę¤Ď¤š¤ó¤Ç¤¤¤Ţ¤š¤ŹĄ˘¤¤¤Ţ¤ĎĚľ¸ú¤Ë¤Ę¤Ă¤Ć¤¤¤Ţ¤šĄŁ"
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "ŔßÄę¤Ď¤š¤ó¤Ç¤¤¤ĆĄ˘¤¤¤Ţ¤ĎÍ­¸ú¤Ë¤Ę¤Ă¤Ć¤¤¤Ţ¤šĄŁ"
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂłśŚÍ­¤Ď¤Ţ¤Ă¤ż¤ŻŔßÄꤾ¤ě¤Ć¤¤¤Ţ¤ť¤óĄŁ"
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤ÎŔßÄę"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10980,214 +11857,6 @@ msgstr ""
"\n"
"ŔßÄ꼌ĽŁĽśĄźĽÉ¤ňľŻĆ°¤š¤ë¤Ë¤ĎĄÖŔßÄęĄ×¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ"
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "ĽÍĽĂĽČĽďĄźĽŻŔßÄę (%d Ľ˘ĽŔĽ×Ľż)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Ľ×ĽíĽŐĽŁĄźĽë: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Ľ×ĽíĽŐĽŁĄźĽëşď˝üĄÄĄÄ"
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "şď˝ü¤ˇ¤ż¤¤Ľ×ĽíĽŐĽŁĄźĽëĄ§"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "żˇľŹĽ×ĽíĽŐĽŁĄźĽëĄÄĄÄ"
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr "şîŔŽ¤š¤ëĽ×ĽíĽŐĽŁĄźĽë¤ÎĚžÁ°ĄĘżˇĽ×ĽíĽŐĽĄĽ¤Ľë¤Ď¸˝şß¤Î¤â¤Î¤ÎĽłĽÔĄź¤Ç¤šĄËĄ§"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "ĽŰĽšĽČĚž:"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČ"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "ĽżĽ¤Ľ×: "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Ľ˛ĄźĽČĽŚĽ§Ľ¤:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Ľ¤ĽóĽżĄźĽŐĽ§ĄźĽš:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "ĽšĽĆĄźĽżĽš: "
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "žŻĄš¤ŞÂÔ¤Á¤ň"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČĽ˘ĽŻĽťĽš¤ÎŔßÄę"
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "LAN¤ÎŔßÄę"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "ĽÉĽéĽ¤ĽĐ"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Ľ¤ĽóĽżĄźĽŐĽ§ĄźĽš"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Ľ×ĽíĽČĽłĽë"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "žőÂÖ"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "LAN ŔßÄęĄÄĄÄ"
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "ĽŚĽŁĽśĄźĽÉ¤ÎľŻĆ°¤Ë¤Ď¤ł¤Á¤é¤ňĽŻĽęĽĂĽŻ -->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "ĽŚĽŁĽśĄźĽÉ..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "ĹŹÍŃ"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "žŻĄš¤ŞÂÔ¤Á¤ňĄÄĄÄŔßÄę¤ňĹŹÍѤˇ¤Ć¤¤¤Ţ¤š"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "ŔÜÂł´°Îť"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "ŔÜÂł¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤ó"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "ŔÜÂłĄÄĄÄ"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "ŔÜÂł¤ňŔÚĂÇĄÄĄÄ"
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"ˇŮšđĄ˘Ę̤μ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤Ź¸Ą˝Đ¤ľ¤ě¤Ţ¤ˇ¤żĄŁĽÍĽĂĽČĽďĄźĽŻ¤ĎťČÍŃĂ植¤â¤ˇ¤ě¤Ţ"
-"¤ť¤ó"
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"ŔßÄęşŃ¤ß¤ÎĽ¤ĽóĽżĄźĽŐĽ§ĄźĽš¤Ź¤˘¤ę¤Ţ¤ť¤óĄŁ\n"
-"ĄÖŔßÄęĄ×¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ć¤Ţ¤ş¤˝¤ě¤é¤ňŔßÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "LAN¤ÎŔßÄę"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Ľ˘ĽŔĽ×Ľż %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "ĽÖĄźĽČĽ×ĽíĽČĽłĽë"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "ľŻĆ°ťţ¤ËłŤťĎ"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP ĽŻĽéĽ¤Ľ˘ĽóĽČ"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "¤¤¤Ţ¤š¤°Í­¸ú¤Ë"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "¤¤¤Ţ¤š¤°Ěľ¸ú¤Ë"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"¤ł¤ÎĽ¤ĽóĽżĄźĽŐĽ§ĄźĽš¤Ď¤Ţ¤ŔŔßÄꤾ¤ě¤Ć¤¤¤Ţ¤ť¤óĄŁ\n"
-"źçĽŚĽŁĽóĽÉĽŚ¤ÇŔßÄ꼌ĽŁĽśĄźĽÉ¤ňľŻĆ°¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤Ź¤˘¤ę¤Ţ¤ť¤óĄŁ\n"
-"ĄÖŔßÄęĄ×¤ňĽŻĽęĽĂĽŻ¤ˇ¤ĆşîŔŽ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂłŔßÄę"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂłŔßÄę"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "ŔÜÂł¤ÎźďÎŕ: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "ĽŃĽéĽáĄźĽż"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Ľ˛ĄźĽČĽŚĽ§Ľ¤"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ľ¤ĄźĽľĽÍĽĂĽČĽŤĄźĽÉ"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP ĽŻĽéĽ¤Ľ˘ĽóĽČ"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "ĽťĽ­ĽĺĽęĽĆĽŁĽěĽŮĽë¤ÎŔßÄęĂć"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "ĽłĽóĽČĽíĄźĽëĽťĽóĽżĄź"
@@ -11196,63 +11865,85 @@ msgstr "ĽłĽóĽČĽíĄźĽëĽťĽóĽżĄź"
msgid "Choose the tool you want to use"
msgstr "ťČÍѤš¤ëĽÄĄźĽë¤ňÁޤó¤Ç˛ź¤ľ¤¤"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\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 ""
+
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
msgstr "ĽŤĽĘĽŔĄĘĽąĄźĽÖĽëĄË"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+#, fuzzy
+msgid "USA (broadcast)"
msgstr "USA (bcast)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr "USA (ĽąĄźĽÖĽë)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr "USA (ĽąĄźĽÖĽë-hrc)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "China (broadcast)"
msgstr "Ăćšń (bcast)"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "Japan (broadcast)"
msgstr "ĆüËÜ (bcast)"
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr "ĆüËÜ (ĽąĄźĽÖĽë)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
msgstr "ĹěĽčĄźĽíĽĂĽŃ"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "ĽŐĽéĽóĽš"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
msgstr "Ľ˘Ľ¤ĽëĽéĽóĽÉ"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
msgstr "ŔžĽčĄźĽíĽĂĽŃ"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
msgstr "ĽŞĄźĽšĽČĽéĽęĽ˘"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr "ĽËĽĺĄźĽ¸ĄźĽéĽóĽÉ"
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr "ĆĽŐĽęĽŤ"
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr "Ľ˘ĽëĽźĽóĽÁĽó"
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
@@ -11260,27 +11951,44 @@ msgstr ""
"¤Ç¤Ď\n"
"ĽĆĽěĽÓĘýź°¤Čšń¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr "ĽĆĽěĽÓĘýź°Ą§"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr "Ăϰ襧"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr "ĽĆĽěĽÓĽÁĽăĽóĽÍĽë¤ňĂľ¤ˇ¤Ć¤¤¤Ţ¤š..."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr "ĽĆĽěĽÓĽÁĽăĽóĽÍĽë¤ňĂľ¤ˇ¤Ć¤¤¤Ţ¤š"
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "ĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽë¤ÇĽ¨ĽéĄź¤ŹČŻŔ¸:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -11324,7 +12032,7 @@ msgstr "ĽéĽ¤ĽÖĽ˘ĽĂĽ×Ľ°ĽěĄźĽÉ¤ňłŤťĎ¤Ç¤­¤Ţ¤ť¤ó!!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr "ĘŃšš¤Ź´°Îť¤ˇ¤Ţ¤ˇ¤ż¤ŹĄ˘Í­¸ú¤Ë¤š¤ë¤Ë¤Ď¤¤¤Ă¤ż¤óĽíĽ°Ľ˘ĽŚĽČ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -11334,7 +12042,7 @@ msgstr "Áޤó¤ŔĆü¤ÎĘŹ¤Ŕ¤ą¤ňÉ˝ź¨"
#: ../../standalone/logdrake_.c:102
msgid "/File/_New"
-msgstr "/ĽŐĽĄĽ¤Ľë(F)/żˇľŹ(N)"
+msgstr "/ĽŐĽĄĽ¤Ľë(F)/żˇľŹ(_N)"
#: ../../standalone/logdrake_.c:102
msgid "<control>N"
@@ -11342,7 +12050,7 @@ msgstr "<control>N"
#: ../../standalone/logdrake_.c:103
msgid "/File/_Open"
-msgstr "/ĽŐĽĄĽ¤Ľë(F)/łŤ¤Ż(O)"
+msgstr "/ĽŐĽĄĽ¤Ľë(F)/łŤ¤Ż(_O)"
#: ../../standalone/logdrake_.c:103
msgid "<control>O"
@@ -11350,7 +12058,7 @@ msgstr "<control>O"
#: ../../standalone/logdrake_.c:104
msgid "/File/_Save"
-msgstr "/ĽŐĽĄĽ¤Ľë(F)/Ęݸ(S)"
+msgstr "/ĽŐĽĄĽ¤Ľë(F)/Ęݸ(_S)"
#: ../../standalone/logdrake_.c:104
msgid "<control>S"
@@ -11358,7 +12066,7 @@ msgstr "<control>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
-msgstr "/ĽŐĽĄĽ¤Ľë(F)/Ę̤ÎĚžÁ°¤ÇĘݸ(A)"
+msgstr "/ĽŐĽĄĽ¤Ľë(F)/ĚžÁ°¤ň¤Ä¤ą¤ĆĘݸ(_A)"
#: ../../standalone/logdrake_.c:106
msgid "/File/-"
@@ -11372,13 +12080,9 @@ msgstr "/ĽŞĽ×ĽˇĽçĽó(_O)"
msgid "/Options/Test"
msgstr "/ĽŞĽ×ĽˇĽçĽó(O)/ĽĆĽšĽČ"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/ĽŘĽëĽ×(_H)"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
-msgstr "/ĽŘĽëĽ×(H)/¤ł¤ÎĽ˝ĽŐĽČ¤Ë¤Ä¤¤¤Ć(A)"
+msgstr "/ĽŘĽëĽ×(H)/žđĘó(_A)..."
#: ../../standalone/logdrake_.c:118
msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
@@ -11440,7 +12144,7 @@ msgstr "ĽŤĽěĽóĽŔ"
msgid "Content of the file"
msgstr "ĽŐĽĄĽ¤Ľë¤ÎĆâÍĆ"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr "Mail/SMS ˇŮšđ"
@@ -11449,11 +12153,11 @@ msgstr "Mail/SMS ˇŮšđ"
msgid "please wait, parsing file: %s"
msgstr "žŻĄš¤ŞÂÔ¤Á¤ňĄ˘ĽŐĽĄĽ¤Ľë %s ¤ňĂľ¤ˇ¤Ć¤¤¤Ţ¤šĄŁ"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
msgstr "Mail/SMS ˇŮšđ¤ÎŔßÄę"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
@@ -11463,63 +12167,95 @@ msgstr ""
"\n"
"¤ł¤ł¤Ç¤ĎˇŮšđĽˇĽšĽĆĽŕ¤ňŔßÄꤡ¤Ţ¤šĄŁ\n"
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "ĽÉĽáĽ¤ĽóĚž"
#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
+#, fuzzy
+msgid "Ftp Server"
+msgstr "NIS ĽľĄźĽĐ"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Postfix ĽáĄźĽëĽľĄźĽĐ, Inn ĽËĽĺĄźĽšĽľĄźĽĐ"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS ĽľĄźĽĐ"
#: ../../standalone/logdrake_.c:422
+#, fuzzy
+msgid "SSH Server"
+msgstr "NIS ĽľĄźĽĐ"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "ĽľĄźĽÓĽš"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Ľ×ĽęĽóĽżĽľĄźĽĐ"
+
+#: ../../standalone/logdrake_.c:431
msgid "service setting"
msgstr "ĽľĄźĽÓĽšŔßÄę"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr "°Ę˛ź¤ÇÁޤó¤ŔĽľĄźĽÓĽš¤Źťß¤Ţ¤Ă¤ż¤éˇŮĘ󤏽ФޤšĄŁ"
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
msgstr "ŔßÄę¤ÎĆɤߚţ¤ßĂć"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr "Éé˛Ů¤Ź¤ł¤ÎĂͤňžĺ˛ó¤Ă¤ż¤éˇŮĘ󤏽Фޤš"
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
msgstr "ˇŮšđ¤ÎŔßÄę"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr "ĽˇĽšĽĆĽŕ¤ÎˇŮšđĘýËĄ¤ňŔßÄę"
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "ĚžÁ°¤ň¤Ä¤ą¤ĆĘݸ..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "ĽŢĽŚĽš¤Îˇż¤Ď¤Ę¤ó¤Ç¤š¤ŤĄŠ"
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "serial_usb¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤ó\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "żżĂćĽÜĽżĽó¤ňĽ¨ĽßĽĺĽěĄźĽČ¤ˇ¤Ţ¤š¤ŤĄŠ"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Ľ×ĽęĽóĽż¤ÎžđĘó¤ňĆɤó¤Ç¤¤¤Ţ¤š..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "ĽÇĽĐĽ¤Ľš¤Î¸Ą˝ĐĂć¤Ç¤šĄÄĄÄ"
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -11564,6 +12300,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "ĽŐĽĄĽ¤Ľ˘ĽŚĽŠĄźĽë¤ÎŔßÄę"
@@ -11965,10 +12713,6 @@ msgid "Multimedia - Sound"
msgstr "ĽŢĽëĽÁĽáĽÇĽŁĽ˘ĄĄĽľĽŚĽóĽÉ"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "ĽćĄźĽĆĽŁĽęĽĆĽŁ"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "ĽÉĽ­ĽĺĽáĽóĽĆĄźĽˇĽçĽó"
@@ -12070,10 +12814,6 @@ msgstr ""
"ĽáĄźĽë¤äĽËĽĺĄźĽš¤ÎÁ÷źőżŽÍŃĽÄĄźĽë (pine, mutt, tin..) ¤ČĄ˘WebĽÖĽéĽŚĽşÍŃĽÄĄźĽë"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Ľ˘ĄźĽŤĽ¤ĽÖĽ˝ĽŐĽČĄ˘Ľ¨ĽßĽĺĽěĄźĽżĄ˘ĽâĽËĽżÍŃĽ˝ĽŐĽČ"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "¸ÄżÍ¤ÎşâĚł´ÉÍý"
@@ -12119,3297 +12859,264 @@ msgstr "ĽŢĽëĽÁĽáĽÇĽŁĽ˘ĄĄCD ¤ňžĆ¤Ż"
msgid "Scientific Workstation"
msgstr "˛ĘłŘĽďĄźĽŻĽšĽĆĄźĽˇĽçĽó"
-#~ msgid "About"
-#~ msgstr "žđĘó"
-
-#~ msgid " Help "
-#~ msgstr " ĽŘĽëĽ× "
-
-#~ msgid ""
-#~ "Can't access kernel modules corresponding to your kernel (file %s is "
-#~ "missing)"
-#~ msgstr ""
-#~ "ĽŤĄźĽÍĽë¤ËÂĐąţ¤ˇ¤żĽŤĄźĽÍĽëĽâĽ¸ĽĺĄźĽë¤ňĽ˘ĽŻĽťĽš¤Ç¤­¤Ţ¤ť¤óĄĘĽŐĽĄĽ¤Ľë%s¤Ź¤˘¤ę"
-#~ "¤Ţ¤ť¤ó)"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr ""
-#~ "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,-*-fixed-medium-r-"
-#~ "normal--24-*-100-100-c-*-jisx0208.1983-0,*"
-
-#~ msgid "None"
-#~ msgstr "¤Ę¤ˇ"
-
-#~ msgid "Choose a default printer!"
-#~ msgstr "ĽÇĽŐĽŠĽëĽČĽ×ĽęĽóĽż¤ňÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŞ"
-
-#~ msgid ""
-#~ "With remote CUPS servers, you do not have to configure any printer here; "
-#~ "CUPS servers inform your machine automatically about their printers. All "
-#~ "printers known to your machine currently are listed in the \"Default "
-#~ "printer\" field. Choose the default printer for your machine there and "
-#~ "click the \"Apply/Re-read printers\" button. Click the same button to "
-#~ "refresh the list (it can take up to 30 seconds after the start of CUPS "
-#~ "until all remote printers are visible). When your CUPS server is in a "
-#~ "different network, you have to give the CUPS server IP address and "
-#~ "optionally the port number to get the printer information from the "
-#~ "server, otherwise leave these fields blank."
-#~ msgstr ""
-#~ "ĽęĽâĄźĽČ¤Î CUPS ĽľĄźĽĐ¤Ę¤éĄ˘¤ł¤ł¤Ç¤ĎĽ×ĽęĽóĽżŔßÄę¤ĎÉÔÍפǤšĄŁ\n"
-#~ "CUPS ĽľĄźĽĐ¤ĎĽŢĽˇĽó¤ËźŤĆ°ĹŞ¤ËĽ×ĽęĽóĽżžđĘó¤ňĹϤˇ¤Ţ¤šĄŁ¤¤¤ŢĄ˘\n"
-#~ "¤˘¤Ę¤ż¤ÎĽŢĽˇĽó¤ŹĂΤäƤ¤¤ëĽ×ĽęĽóĽż¤Ź \"ĽÇĽŐĽŠĽëĽČĽ×ĽęĽóĽż\"\n"
-#~ "¤Ë˝Đ¤Ć¤¤¤Ţ¤šĄŁĽŢĽˇĽó¤ÎĽÇĽŐĽŠĽëĽČĽ×ĽęĽóĽż¤ňÁޤó¤ÇĄ˘\n"
-#~ "\"Ľ×ĽęĽóĽż¤ňĹŹÍŃ/şĆĆÉšţ\" ĽÜĽżĽó¤ň˛Ą¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ°ěÍ÷¤Îššżˇ\n"
-#~ "¤Ë¤â¤ł¤ÎĽÜĽżĽó¤ň˛Ą¤ˇ¤Ţ¤šĄĘĽęĽâĄźĽČĽ×ĽęĽóĽż¤Ź¸Ť¤¨¤ë¤Ţ¤ÇĄ˘CUPS \n"
-#~ "łŤťĎ¤Ť¤éşÇÂç30É䍤Ť¤ę¤Ţ¤šĄŁ\n"
-#~ "CUPS ĽľĄźĽĐ¤ŹĘ̤μͼüȼ寧ĽŻ¤Ë¤˘¤ë¤Ę¤éĄ˘CUPSĽľĄźĽĐ¤ÎIPĽ˘ĽÉĽěĽš\n"
-#~ "¤ČĄ˘žěšç¤Ë¤č¤Ă¤Ć¤ĎĽÝĄźĽČČÖšć¤ňťŘÄꤡ¤Ę¤¤¤ČĽľĄźĽĐ¤Ť¤éĽ×ĽęĽóĽżžđ\n"
-#~ "Ę󤏤â¤é¤¨¤Ţ¤ť¤óĄŁ¤˝¤Ś¤Ç¤Ę¤ą¤ě¤ĐĄ˘¤ł¤ł¤ĎśőÍó¤Ë¤ˇ¤Ţ¤šĄŁ"
-
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Ľ×ĽęĽóĽż¤ňĹŹÍŃ/şĆĆÉšţ"
-
-#~ msgid "Configure printing system"
-#~ msgstr "°őşţĽˇĽšĽĆĽŕŔßÄę"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "ĽâĽ¸ĽĺĄźĽë %s ¤ÎĽŞĽ×ĽˇĽçĽó¤ňťŘÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ msgid "Low"
-#~ msgstr "Ä㤤"
-
-#~ msgid "Medium"
-#~ msgstr "¤Ű¤É¤Ű¤É"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "¤ł¤ÎĽťĽ­ĽĺĽęĽĆĽŁĽěĽŮĽë¤Ď¤Á¤ç¤Ă¤Č¤č¤Ż¤Ę¤Ă¤Ć¤¤¤ĆĄ˘ˇŮšđ¤äĽÁĽ§ĽĂĽŻ¤Ź\n"
-#~ "Áý¤¨¤Ć¤¤¤Ţ¤šĄŁ"
-
-#~ msgid "Boot mode"
-#~ msgstr "ĽÖĄźĽČĽâĄźĽÉ"
-
-#~ msgid "Export"
-#~ msgstr "Ľ¨Ľ­ĽšĽÝĄźĽČ"
-
-#~ msgid "click here"
-#~ msgstr "¤ł¤ł¤ňĽŻĽęĽĂĽŻ"
-
-#~ msgid "mount failed"
-#~ msgstr "ĽŢĽŚĽóĽČ¤ËźşÇÔ"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "Linux ¤Ďťţ´Ö¤ňGMTĄ˘¤Ä¤Ţ¤ęĄÖĽ°ĽęĽËĽĂĽ¸É¸˝ŕťţĄ×¤Ç´ÉÍý¤ˇ¤Ć¤¤¤ĆĄ˘¤˝¤ě¤ň\n"
-#~ "¤˘¤Ę¤ż¤ÎÁޤó¤Ŕťţ´ÖÂӤˤ˘¤ď¤ť¤ĆĘŃ´š¤ˇ¤Ţ¤šĄŁ"
-
-#~ msgid ""
-#~ "You may choose to upload updated packages that have been released after "
-#~ "the\n"
-#~ "distribution has been made available. You will get security fixes or bug\n"
-#~ "fixes, but you need to have an Internet connection configured to "
-#~ "proceed.\n"
-#~ "Answer \"Yes\" to the dialog to choose an available mirror. After "
-#~ "choosing\n"
-#~ "a mirror, a packages selection tree appears to allow you to choose "
-#~ "packages\n"
-#~ "individually, package that need to be updated are already selected, but "
-#~ "you\n"
-#~ "may choose to install other package or deselect packages. Press \"Install"
-#~ "\"\n"
-#~ "to install the updated package or \"Cancel\" not to upgrade them. (this\n"
-#~ "*REALLY* need to be modified according to real DrakX, if you need other\n"
-#~ "help section, let us (DrakX team developer) known)."
-#~ msgstr ""
-#~ "ĽÇĽŁĽšĽČĽęĽÓĽĺĄźĽˇĽçĽó¸řłŤťţ°Ęšß¤Ëššżˇ¤ľ¤ě¤żĽŃĽĂĽąĄźĽ¸¤ňĽ˘ĽĂĽ×ĽíĄźĽÉ\n"
-#~ "¤š¤ë¤č¤Ś¤ËťŘÄę¤Ç¤­¤Ţ¤šĄŁĽťĽ­ĽĺĽęĽĆĽŁĽŐĽŁĽĂĽŻĽš¤äĽĐĽ°ĽŐĽŁĽĂĽŻĽš¤Ź¤Ç¤­\n"
-#~ "¤Ţ¤š¤ŹĄ˘¤ł¤ě¤Ë¤ĎĽ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤ŹÉŹÍפǤšĄŁ\n"
-#~ "ťČ¤¨¤ëĽßĽéĄźĽľĽ¤ĽČ¤ňÁŞ¤Ö¤Ë¤ĎĄ˘ĽŔĽ¤Ľ˘ĽíĽ°¤Ç \"¤Ď¤¤\" ¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "ĽŃĽĂĽąĄźĽ¸ÁŞÂňĽÄĽęĄź¤Ź˝Đ¤Ć¤­¤ĆĄ˘¸ÄĘ̤˼ѼüąĄźĽ¸¤ňÁŞ¤Ů¤ë¤č¤Ś¤Ë¤Ę¤ę¤Ţ¤šĄŁ\n"
-#~ "ššżˇ¤ŹÉŹÍפʼѼüąĄźĽ¸¤ĎÁŞÂňşŃ¤ß¤Ç¤š¤ŹĄ˘Âž¤ÎĽŃĽĂĽąĄźĽ¸¤ňÁޤó¤Ŕ¤ęĄ˘¤Ţ¤Ď¤ż\n"
-#~ "°ěÉô¤ňÁŞÂň˛ň˝ü¤Ç¤­¤Ţ¤šĄŁššżˇĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽë¤Ë¤Ď \"Ľ¤ĽóĽšĽČĄźĽë"
-#~ "\"\n"
-#~ "¤ň˛Ą¤ˇĄ˘ššżˇ¤ˇ¤Ę¤¤¤Ę¤é \"Ľ­ĽăĽóĽťĽë\" ¤ň˛Ą¤ˇ¤Ţ¤š (¤ł¤ě¤ĎËÜĘŞ¤Î DrakXĹŞ\n"
-#~ "¤Ë¤ĎŔäÂФËĘŃšš¤š¤Ů¤­¤ÇĄ˘¤â¤ˇÂž¤ÎĽŘĽëĽ×¤ŹÉŹÍפʤ饢DrakXłŤČŻĽÁĄźĽŕ¤Ţ¤Ç\n"
-#~ "¤´°ěĘó¤ňĄŁ"
-
-#~ 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\n"
-#~ "\n"
-#~ msgstr ""
-#~ "¤¤¤Ţ¤ÎĽ×ĽęĽóĽż¤ÇťČ¤¨¤ëĽŞĽ×ĽˇĽçĽó°ěÍ÷¤ň¸Ť¤ë¤Ë¤ĎĄ˘˛ź¤Î°ěÍ÷¤ňĆɤऍĄ˘¤˘¤ë¤¤¤Ď"
-#~ "ĄÖĽŞĽ×ĽˇĽçĽó°ěÍ÷¤ň°őşţĄ×ĽÜĽżĽó¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ%s\n"
-#~ "\n"
-
-#~ msgid ""
-#~ "This %s scanner uses parallel port, which is unsupported for the moment"
-#~ msgstr ""
-#~ "¤ł¤Î %s ĽšĽ­ĽăĽĘ¤ĎĽŃĽéĽěĽëĽÝĄźĽČ¤ňťČ¤Ś¤Î¤ÇĄ˘¤¤¤Ţ¤ĎĽľĽÝĄźĽČ¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤ó"
-
-#~ msgid "Connect to Internet"
-#~ msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČ¤Ř¤ÎŔÜÂł"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČ¤Ť¤éŔÚĂÇ"
-
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "ĽÍĽĂĽČĽďĄźĽŻŔÜÂł (LAN/Ľ¤ĽóĽżĄźĽÍĽĂĽČ)¤ÎŔßÄę"
-
-#~ msgid "authentification"
-#~ msgstr "ǧžÚ"
-
-#~ msgid "user"
-#~ msgstr "ĽćĄźĽś"
-
-#~ msgid "Scanning available nfs shared resource"
-#~ msgstr "nfs śŚÍ­ĽęĽ˝ĄźĽš¤ÇťČ¤¨¤ë¤â¤Î¤ňĽšĽ­ĽăĽóĂć"
-
-#~ msgid "Scanning available nfs shared resource of server %s"
-#~ msgstr "ĽľĄźĽĐ %s ¤Î nfs śŚÍ­ĽęĽ˝ĄźĽš¤ÇťČ¤¨¤ë¤â¤Î¤ňĽšĽ­ĽăĽóĂć"
-
-#~ msgid "Scanning available samba shared resource"
-#~ msgstr "samba śŚÍ­ĽęĽ˝ĄźĽš¤ÇťČ¤¨¤ë¤â¤Î¤ňĽšĽ­ĽăĽóĂć"
-
-#~ msgid "Scanning available samba shared resource of server %s"
-#~ msgstr "ĽľĄźĽĐ %s ¤Î samba śŚÍ­ĽęĽ˝ĄźĽš¤ÇťČ¤¨¤ë¤â¤Î¤ňĽšĽ­ĽăĽóĂć"
-
-#~ msgid "Removable media"
-#~ msgstr "ĽęĽŕĄźĽĐĽÖĽëĽáĽÇĽŁĽ˘"
-
-#~ msgid "Active"
-#~ msgstr "Ľ˘ĽŻĽĆĽŁĽÖ"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "ĄÖ%sĄ×Ľ×ĽęĽóĽż¤ŹĄ˘źĄ¤Î¤Č¤ł¤í¤Ç¸Ť¤Ä¤Ť¤ę¤Ţ¤ˇ¤ż"
-
-#~ msgid "Local Printer Device"
-#~ msgstr "ĽíĄźĽŤĽëĽ×ĽęĽóĽżĽÇĽĐĽ¤Ľš"
-
-#~ msgid "Printer Device"
-#~ msgstr "Ľ×ĽęĽóĽżĽÇĽĐĽ¤Ľš"
-
-#~ msgid "Device/file name missing!"
-#~ msgstr "ĽÇĽĐĽ¤Ľš/ĽŐĽĄĽ¤ĽëĚž¤Ź¤˘¤ę¤Ţ¤ť¤óĄŞ"
-
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "ĽęĽâĄźĽČCUPS ĽľĄźĽĐžĺ¤ÎĽ×ĽęĽóĽż"
-
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "ĽęĽâĄźĽČĽľĄźĽĐžĺ¤ÎĽ×ĽęĽóĽż"
-
-#~ msgid "Starting your connection..."
-#~ msgstr "ŔÜÂł¤ˇ¤Ć¤¤¤Ţ¤š..."
-
-#~ msgid "Closing your connection..."
-#~ msgstr "ŔÜÂł¤ňĘĤ¸¤Ć¤¤¤Ţ¤š..."
-
-#~ msgid ""
-#~ "The connection is not closed.\n"
-#~ "Try to do it manually by running\n"
-#~ "/etc/sysconfig/network-scripts/net_cnx_down\n"
-#~ "in root."
-#~ msgstr ""
-#~ "ŔÜÂł¤ŹĘĤ¸¤Ć¤¤¤Ţ¤ť¤óĄŁ\n"
-#~ "root ¤Ë¤Ę¤Ă¤ĆĄ˘°Ę˛ź¤ňźÂšÔ¤ˇ¤Ć¤ß¤Ć¤Ż¤Ŕ¤ľ¤¤Ą§\n"
-#~ "/etc/sysconfig/network-scripts/net_cnx_down"
-
-#~ msgid "The system is now disconnected."
-#~ msgstr "ĽˇĽšĽĆĽŕ¤ÎŔÜÂł¤ĎŔÚĂǤľ¤ě¤Ţ¤ˇ¤żĄŁ"
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Ľ¤ĽóĽšĽČĄźĽë¤š¤ëĽľĽ¤Ľş¤ňÁޤó¤Ç˛ź¤ľ¤¤"
-
-#~ msgid "Total size: "
-#~ msgstr "šçˇ×ĽľĽ¤Ľş: "
-
-#~ msgid "Please wait, "
-#~ msgstr "¤ˇ¤Đ¤é¤Ż¤ŞÂÔ¤Á˛ź¤ľ¤¤Ą¤"
-
-#~ msgid "Total time "
-#~ msgstr "šçˇ×ťţ´Ö "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "¤š¤Ç¤Ë¤˘¤ë X11 ¤ÎŔßÄę¤ňťČ¤¤¤Ţ¤š¤ŤĄŠ"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
-#~ msgstr ""
-#~ "Ľ×ĽęĽóĽż¤Ź¤Ä¤Ę¤Ź¤Ă¤Ć¤¤¤ëĽÇĽĐĽ¤Ľš¤Ď˛ż¤Ç¤š¤Ť\n"
-#~ "(Ăí°Ő /dev/lp0 ¤Ď LPT1: ¤Ë¤Ę¤ę¤Ţ¤š)ĄŠ\n"
-
-#~ msgid "%s"
-#~ msgstr "%s"
-
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr ""
-#~ "ˇŮšđĄ˘ĽÍĽĂĽČĽďĄźĽŻĽ˘ĽŔĽ×Ľż¤Ď¤â¤ŚŔßÄꤏ¤š¤ó¤Ç¤¤¤Ţ¤šĄŁ\n"
-#~ "ŔßÄę¤ň¤ä¤ę¤Ę¤Ş¤ˇ¤Ţ¤š¤čĄŁ"
-
-#~ msgid "New"
-#~ msgstr "żˇľŹ"
-
-#~ msgid "Remote"
-#~ msgstr "ĽęĽâĄźĽČ"
-
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr ""
-#~ "žĺ¤ÎĽÜĽżĽó¤ňĽŻĽęĽĂĽŻ¤š¤ë¤Ť\n"
-#~ "\n"
-#~ "\"New\"¤ňťČ¤¤¤Ţ¤š"
-
-#~ msgid "Use \"New\""
-#~ msgstr "\"New\"¤ňťČ¤¤¤Ţ¤š"
-
-#~ msgid "If the list above doesn't contain the wanted entry, enter it here:"
-#~ msgstr "žĺ¤Î°ěÍ÷¤Ë´őËž¤ÎĽ¨ĽóĽČĽę¤Ź¤Ę¤ą¤ě¤Đ¤ł¤ł¤ËĆţÎϤˇ¤Ţ¤ˇ¤ç¤Ś:"
-
-#~ msgid "Shared resource"
-#~ msgstr "śŚÍ­ĽęĽ˝ĄźĽš"
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "ÉÔĚŔ (%s)Ą¤¤â¤Ă¤ČŔľłÎ¤Ë\n"
-
-#~ msgid " ? (default %s) "
-#~ msgstr "? (ĽÇĽŐĽŠĽëĽČ¤Ď %s) "
-
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "¤É¤ě¤Ë¤ˇ¤Ţ¤š¤ŤĄŠĄĘĽÇĽŐĽŠĽëĽČ¤Ď %sĄ˘ÁŞ¤Đ¤Ę¤¤¤Ę¤éĄÖ¤Ę¤ˇĄ×ĄË"
-
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "/etc/sysconfig/autologin ¤ŹĆɤߤȤęÍѤ˳Ť¤ą¤Ţ¤ť¤ó: %s"
-
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "¤Ő¤Ä¤Ś¤ĎĄÖ/dev/hdaĄ×ĄĘĽ×ĽéĽ¤ĽŢĽęĽÁĽăĽÍĽë¤ÎĽŢĽšĽżĄźĽÉĽéĽ¤ĽÖĄË¤ŤĄ˘\n"
-#~ "ĄÖ/dev/sdaĄ× (şÇ˝é¤Î SCSI ĽÇĽŁĽšĽŻ) ¤ňÁŞ¤Ó¤Ţ¤šĄŁ\n"
-#~ "źŤżŽ¤Ź¤˘¤ëžěšç¤Ë¤Ŕ¤ąÂž¤ÎĂͤňĆţ¤ě¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "ĽÍĽĂĽČĽďĄźĽŻĽÇĽĐĽ¤Ľš %s ¤ňşĆľŻĆ°¤ˇ¤Ţ¤šĄŁ¤¤¤¤¤Ç¤š¤ÍĄŠ"
-
-#~ msgid "Do you want to restart the network"
-#~ msgstr "ĽÍĽĂĽČĽďĄźĽŻ¤ňşĆľŻĆ°¤ˇ¤Ć¤ß¤Ţ¤š¤ŤĄŠ"
-
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "¤č¤í¤ˇ¤¤¤Ç¤š¤ÍĄŠ"
-
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "ĽÍĽĂĽČĽďĄźĽŻĽÇĽĐĽ¤Ľš¤ňşĆľŻĆ°¤ˇ¤Ţ¤š¤č:\n"
-
-#~ msgid ""
-#~ "The following printers are configured.\n"
-#~ "You can add some more or modify the existing ones."
-#~ msgstr ""
-#~ "°Ę˛ź¤Î°őşţĽ­ĽĺĄź¤ŹŔßÄęşŃ¤ß¤Ç¤šĄŁ\n"
-#~ "°őşţĽ­ĽĺĄź¤ňÄɲåŚĘŃšš¤Ç¤­¤Ţ¤šĄŁ"
-
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "ŔÜÂłĽżĽ¤ĽŕĽ˘ĽŚĽČ (ÉĂ) [ ĽŮĄźĽżĄ˘Ě¤źÂÁő ]"
-
-#~ msgid ""
-#~ "The Mandrake Linux spreads among several CDROMs. It may be that drakX "
-#~ "has\n"
-#~ "selected packages on another CDROM than the installation CDROM, and when "
-#~ "it\n"
-#~ "needs that you put another one into the drive, it will eject the current "
-#~ "CDROM\n"
-#~ "and ask you for another one."
-#~ msgstr ""
-#~ "Mandrake Linux ¤ĎĘŁżô¤Î CDROM ¤Ë¤Ţ¤ż¤Ź¤Ă¤Ć¤¤¤Ţ¤šĄŁ¤Ç¤š¤Ť¤é drakX ¤Ź\n"
-#~ "Ľ¤ĽóĽšĽČĄźĽëCDROM°Ęł°¤ÎCDROM¤ËĆţ¤Ă¤żĽŃĽĂĽąĄźĽ¸¤ňÁޤó¤Ŕ¤Ť¤â¤ˇ¤ě¤Ţ¤ť¤óĄŁ\n"
-#~ "Ę̤ÎCDROM¤ŹÉŹÍפˤʤ俤饢¤¤¤Ţ¤ÎCDROM¤ĎĽ¤Ľ¸Ľ§ĽŻĽČ¤ľ¤ě¤ĆĄ˘Ę̤ΤňĆţ¤ě¤Ć\n"
-#~ "¤Ż¤ě¤ČşĹÂĽ¤Ź¤Ç¤Ţ¤šĄŁ"
-
-#~ msgid ""
-#~ "drakX just skips this test unless you purposely click on the "
-#~ "corresponding step\n"
-#~ "on the left. By default, drakX sees your mouse as a two-button mouse and\n"
-#~ "emulates the third button, and knows whether it's PS/2, serial or USB.\n"
-#~ "\n"
-#~ "Perhaps this is not what you want. In that case, you just have to select "
-#~ "the\n"
-#~ "right type for your mouse in the list which appears.\n"
-#~ "\n"
-#~ "You can now test your mouse. Use buttons and wheel to verify if settings "
-#~ "are\n"
-#~ "good. If not, you can click on \"Cancel\" to choose another driver."
-#~ msgstr ""
-#~ "drakX ¤ĎĄ˘ş¸¤ÎÂĐąţ¤š¤ëĽšĽĆĽĂĽ×¤ň°ŐżŢĹŞ¤ËĽŻĽęĽĂĽŻ¤ˇ¤Ć¤¤¤Ę¤¤¸Â¤ęĄ˘¤ł¤Î\n"
-#~ "ĽĆĽšĽČ¤ň¤Č¤Đ¤ˇ¤Ţ¤šĄŁĽÇĽŐĽŠĽëĽČ¤Ç¤Ď drakX ¤ĎĄ˘ĽŢĽŚĽš¤Ź2ĽÜĽżĽóĽŢĽŚĽš¤Ŕ\n"
-#~ "¤ČČ˝ĂǤˇ¤ĆĂćąűĽÜĽżĽó¤ĎĽ¨ĽßĽĺĽěĄźĽČ¤ˇ¤Ţ¤š¤ˇĄ˘¤˝¤ě¤Ź PS/2, ĽˇĽęĽ˘ĽëĄ˘ USB\n"
-#~ "¤Î¤É¤ě¤Ť¤ĎźŤĆ°Č˝Äꤡ¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "¤Ç¤âĄ˘¤ł¤ě¤Ď¤˘¤Ę¤ż¤Î¤Ű¤ˇ¤¤ŔßÄę¤Ç¤Ď¤Ę¤¤¤Ť¤â¤ˇ¤ě¤Ţ¤ť¤óĄŁ¤˝¤Îžěšç¤Ë¤ĎĄ˘\n"
-#~ "˝Đ¤Ć¤Ż¤ë°ěÍ÷¤Ť¤éĹŹŔڤʼ޼ŚĽš¤ÎźďÎŕ¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "\n"
-#~ "¤ľ¤˘Ą˘ĽŢĽŚĽš¤ňĽĆĽšĽČ¤ˇ¤Ć¤ß¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁĽÜĽżĽó¤äĽŰĽ¤ĄźĽë¤ňťČ¤Ă¤ĆŔßÄꤏ\n"
-#~ "ÂçžćÉפŤłÎǧ¤ˇ¤Ţ¤šĄŁ¤Ŕ¤á¤Ę¤éĄÖĽ­ĽăĽóĽťĽëĄ×¤ňÁޤó¤ÇĘ̤μɼ鼤ĽĐ¤Ë¤ˇ¤Ţ¤šĄŁ"
-
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "%s ¤ňĽÇĽŐĽŠĽëĽČĽ×ĽęĽóĽż¤Ë¤Ç¤­¤Ţ¤ť¤ó¤Ç¤ˇ¤żĄŞ"
-
-#~ msgid "Spooler: "
-#~ msgstr "ĽšĽ×ĄźĽé: "
-
-#~ msgid "Test the mouse here."
-#~ msgstr "ĽŢĽŚĽš¤ňĽĆĽšĽČ¤ˇ¤Ć¤ß¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ msgid "Press next to continue."
-#~ msgstr "ĄÖźĄĄ×¤ň˛Ą¤ˇ¤ĆŔč¤ËżĘ¤ß¤Ţ¤ˇ¤ç¤ŚĄŁ"
-
-#~ msgid "Default Runlevel"
-#~ msgstr "ĽÇĽŐĽŠĽëĽČ¤ÎĽéĽóĽěĽŮĽë"
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "/etc/fstab ¤ňššżˇ"
-
-#~ msgid "Format all"
-#~ msgstr "Á´¤Ć¤ňĽŐĽŠĄźĽŢĽĂĽČ"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "Á´¤Ć¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤ňĽŐĽŠĄźĽŢĽĂĽČ¤ˇ¤ż¸ĺ,"
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "¤ł¤ě¤é¤ÎĽŃĄźĽĆĽŁĽˇĽçĽóĂć¤ÎĽÇĄźĽż¤Ďźş¤ď¤ě¤Ţ¤š"
-
-#~ msgid "Reload"
-#~ msgstr "ĽęĽíĄźĽÉ"
-
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr "Ľ¤ĽóĽšĽČĄźĽë¤Îťţ¤ČĽˇĽšĽĆĽŕÍřÍŃťţ¤ËťČ¤¤¤ż¤¤¸Ŕ¸ě¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ msgid ""
-#~ "You need to accept the terms of the above license to continue "
-#~ "installation.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Accept\" if you agree with its terms.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Refuse\" if you disagree with its terms. Installation "
-#~ "will end without modifying your current\n"
-#~ "configuration."
-#~ msgstr ""
-#~ "Ľ¤ĽóĽšĽČĄźĽë¤ňÂł¤ą¤ë¤Ë¤ĎĄ˘žĺ¤ÎĽéĽ¤ĽťĽóĽš¤Îžňšŕ¤ËĆą°Ő¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "žňšŕ¤ËĆą°Ő¤š¤ë¤Ę¤éĄÖĆą°Ő¤š¤ëĄ×¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "Ćą°Ő¤Ç¤­¤Ę¤ą¤ě¤ĐĄÖľńČݥפňÁŞ¤Ó¤Ţ¤šĄŁĽ¤ĽóĽšĽČĄźĽë¤Ď˝ŞÎť¤ˇĄ˘¸˝şß¤ÎŔßÄę¤Ď\n"
-#~ "¤˝¤Î¤Ţ¤Ţ¤Ç¤š"
-
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr "žĺ¤ÎĽęĽšĽČ¤Ť¤éĄ˘źŤĘŹ¤ÎĽ­ĄźĽÜĄźĽÉÇŰĂÖ¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ msgid ""
-#~ "If you wish other languages (than the one you choose at\n"
-#~ "beginning of installation) will be available after installation, please "
-#~ "chose\n"
-#~ "them in list above. If you want select all, you just need to select \"All"
-#~ "\"."
-#~ msgstr ""
-#~ "¤Ű¤Ť¤Î¤ł¤Č¤ĐĄĘĽ¤ĽóĽšĽČĄźĽëłŤťĎťţ¤ËÁޤó¤Ŕ¤Î¤Č¤ĎĘ̤Τł¤Č¤ĐĄË¤ňËž¤ŕ\n"
-#~ "¤Ę¤éĄ˘žĺ¤Î°ěÍ÷¤Ť¤éÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁÁ´ÉôÁŞ¤Ö¤Č¤­¤Ë¤ĎĄ˘ĄÖÁ´ÉôĄ×¤ň\n"
-#~ "ÁŞ¤Ů¤Đ¤Ŕ¤¤¤¸¤ç¤Ś¤Ö¤Ç¤šĄŁ"
-
-#~ msgid ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!"
-#~ msgstr ""
-#~ "ÁŞÂň:\n"
-#~ "\n"
-#~ " - ĽŤĽšĽżĽŢĽ¤Ľş: GNU/Linux ¤ËžÜ¤ˇ¤ą¤ě¤ĐĄ˘źŤĘŹ¤ÎĽŢĽˇĽó¤Îźç¤ĘťČ¤¤Ęý¤Ë\n"
-#~ " ¤˘¤ď¤ť¤ĆÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁžÜ¤ˇ¤Ż¤Ď°Ę˛ź¤ňť˛žČ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " - Ľ¨Ľ­ĽšĽŃĄźĽČ: ¤ł¤ě¤ĎËÜĹö¤ËGNU/Linux¤ËžÜ¤ˇ¤¤żÍ¤ŹĄ˘Čóžď¤ËĆĂźě¤Ę\n"
-#~ " Ľ¤ĽóĽšĽČĄźĽë¤ň¤ˇ¤ż¤¤žěšç¤ËÁŞ¤Ó¤Ţ¤šĄŁĄÖĽŤĽšĽżĽŢĽ¤ĽşĄ×\n"
-#~ " ¤ÎĽ¤ĽóĽšĽČĄźĽë¤ČĆą¤¸¤ŻĄ˘źŤĘŹ¤ÎĽˇĽšĽĆĽŕ¤ÎťČ¤¤Ęý¤ňÁŞ¤Ů¤Ţ¤šĄŁ\n"
-#~ " ¤Ç¤âĄ˘´°Á´¤ËźŤżŽ¤Ź¤Ę¤¤¤Ę¤éĄ˘ŔäÂФˤł¤ě¤ĎťČ¤ď¤Ę¤¤¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŞ"
-
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "ĽŢĽˇĽó¤ÎťČ¤¤Ęý¤ÎÁŞÂňťčĄĘ¤ł¤ě¤Ď¤Ä¤Ţ¤ęĄ˘¤˘¤Ę¤ż¤ŹĽ¤ĽóĽšĽČĄźĽë¤ÎÁŞÂň¤Ç\n"
-#~ "ĄÖĽŤĽšĽżĽŕĄ×¤ŤĄÖĽ¨Ľ­ĽšĽŃĄźĽČĄ×¤ňÁޤó¤Ŕ¤éťČ¤¤¤Ţ¤šĄË¤Ď°Ę˛ź¤ÎÄ̤ę:\n"
-#~ "\n"
-#~ "\n"
-#~ " - ĽďĄźĽŻĽšĽĆĄźĽˇĽçĽó: ĽŢĽˇĽó¤ňźç¤ËĽÇĽšĽŻĽČĽĂĽ×¤Î°ěČĚÍřÍѤǝȤŚ¤Ę\n"
-#~ " ¤éĄ˘¤ł¤ě¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁĽŞĽŐĽŁĽšśČĚłĄ˘˛čÁü¤ÎĘÔ˝¸¤Ę¤É¤ÇĽŢĽˇĽó\n"
-#~ " ¤ňťČ¤Śžěšç¤Ë¤Ď¤ł¤ě¤Ç¤šĄŁĽłĽóĽŃĽ¤Ľé¤äłŤČŻÍѤμ楟ĽĆĽŁĽęĽĆĽŁ¤ĎĆţ\n"
-#~ " ¤ě¤Ţ¤ť¤óĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " - łŤČŻÍŃ: ĚžÁ°¤Î¤Č¤Ş¤ęĄŁ¤ł¤ÎĽŢĽˇĽó¤ňźç¤ËĽ˝ĽŐĽČłŤČŻ¤ÇťČ¤Ś¤Î¤Ę¤éĄ˘\n"
-#~ " ¤ł¤ě¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁĽ˝ĄźĽšĽłĄźĽÉ¤ňĽłĽóĽŃĽ¤ĽëĄ˘ĽÇĽĐĽĂĽ°Ą˘Ŕ°ˇÁ\n"
-#~ " ¤ˇ¤ż¤ęĄ˘Ľ˝ĽŐĽČĽŃĽĂĽąĄźĽ¸¤ňşî¤Ă¤ż¤ę¤š¤ë¤Î¤ËťČ¤ŚĽ˝ĽŐĽČ˝¸¤Ź¤š¤Ů¤Ć\n"
-#~ " Ľ¤ĽóĽšĽČĄźĽë¤ľ¤ě¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " - ĽľĄźĽĐÍŃ: Mandrake Linux¤ňĽ¤ĽóĽšĽČĄźĽë¤ˇ¤č¤Ś¤Č¤ˇ¤Ć¤¤¤ëĽŢĽˇĽó¤ňĄ˘\n"
-#~ " ĽľĄźĽĐŔěÍѤǝȤŚ¤Ä¤â¤ę¤Ę¤é¤ł¤ě¤Ç¤šĄŁĽŐĽĄĽ¤ĽëĽľĄźĽĐ (NFS¤äSMB)Ą˘\n"
-#~ " Ľ×ĽęĽóĽżĽľĄźĽĐĄĘUnix¤Îlp (ĽéĽ¤ĽóĽ×ĽęĽóĽż) Ľ×ĽíĽČĽłĽë¤ŤĽŚĽŁĽóĽÉĽŚĽş\n"
-#~ " ź°¤ÎSMBˇĐÍł¤Î°őşţĄËĄ˘Ç§žÚĽľĄźĽĐ (NIS)Ą˘ĽÇĄźĽżĽŮĄźĽšĽľĄźĽĐ¤Ę¤É¤Ç¤šĄŁ\n"
-#~ " ¤ł¤Îžěšç¤Ë¤ĎĄ˘KDE¤äGNOME¤Ę¤É¤Î¤ł¤ś¤Ť¤ˇ¤¤ÂĺĘŞ¤ĎĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ţ¤ť¤óĄŁ"
-
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "¤Ç¤ĎĽ¤ĽóĽšĽČĄźĽëĄŚĽ˘ĽĂĽ×Ľ°ĽěĄźĽÉ¤ˇ¤ż¤¤ĽŃĽĂĽąĄźĽ¸ˇ˛¤ňÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "\n"
-#~ "Áޤó¤Ŕ¤éĄ˘DrakX ¤Î¤Ű¤Ś¤ÇĄ˘¤˝¤ě¤ňĽ¤ĽóĽšĽČĄźĽë¤š¤ë¤Ŕ¤ą¤Î͞;¤Ź¤˘¤ë¤Ť\n"
-#~ "ĽÁĽ§ĽĂĽŻ¤ˇ¤Ţ¤šĄŁÉÔ­¤Ę¤éˇŮšđ¤ň˝Đ¤ˇ¤Ţ¤šĄŁ¤˝¤ě¤Ç¤âÂł¤ą¤ż¤ą¤ě¤ĐĄ˘DrakX\n"
-#~ "¤ĎźÂşÝ¤ÎĽ¤ĽóĽšĽČĄźĽë¤ËżĘ¤ß¤Ţ¤š¤ŹĄ˘˝ĹÍפǤʤ¤ĽŃĽĂĽąĄźĽ¸¤ĎÍî¤Č¤ˇ¤Ţ¤šĄŁ\n"
-#~ "°ěÍ÷¤ÎşÇ¸ĺ¤ËĄÖ¸ÄĘ̤μѼüąĄźĽ¸¤ňÁŞÂňĄ×¤Č¤¤¤Ś¤Î¤Ź¤˘¤ę¤Ţ¤šĄŁ¤ł¤ě¤ň\n"
-#~ "ÁŞ¤Ö¤ČĄ˘1000¸Ä°Ęžĺ¤ÎĽŃĽĂĽąĄźĽ¸¤ň¤ş¤Ă¤Č¸Ť¤Ć¤¤¤Ż¤ł¤Č¤Ë¤Ę¤ę¤Ţ¤š¤č..."
-
-#~ msgid ""
-#~ "You can now choose individually all the packages you\n"
-#~ "wish to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can expand or collapse the tree by clicking on options in the left "
-#~ "corner of\n"
-#~ "the packages window.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you prefer to see packages sorted in alphabetic order, click on the "
-#~ "icon\n"
-#~ "\"Toggle flat and group sorted\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want not to be warned on dependencies, click on \"Automatic\n"
-#~ "dependencies\". If you do this, note that unselecting one package may "
-#~ "silently\n"
-#~ "unselect several other packages which depend on it."
-#~ msgstr ""
-#~ "¤ł¤ł¤Ç¤ĎĽ¤ĽóĽšĽČĄźĽë¤ˇ¤ż¤¤ĽŃĽĂĽąĄźĽ¸¤ň¸ÄĘ̤ËÁŞ¤Ů¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "ĽŃĽĂĽąĄźĽ¸ĽŚĽŁĽóĽÉĽŚ¤Îş¸¤š¤ß¤Ë¤˘¤ëĽŞĽ×ĽˇĽçĽó¤ňĽŻĽęĽĂĽŻ¤š¤ë¤ČĄ˘ĽÄĽęĄź¤ň\n"
-#~ "¤Î¤Đ¤ˇ¤ż¤ę˝Ě¤á¤ż¤ę¤Ç¤­¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "ĽŃĽĂĽąĄźĽ¸¤ň abc ˝ç¤ËʤŮÂؤ¨¤ż¤ą¤ě¤ĐĄ˘ĄÖabc˝ç¤ČĽ°ĽëĄźĽ×˝çŔÚ¤ęÂؤ¨Ą×\n"
-#~ "Ľ˘Ľ¤ĽłĽó¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "°Í¸´Řˇ¸¤Ë¤Ä¤¤¤Ć¤ÎˇŮšđ¤Ź¤¤¤é¤Ę¤ą¤ě¤ĐĄ˘ĄÖ°Í¸´Řˇ¸źŤĆ°˝čÍýĄ×¤ň\n"
-#~ "ĽŻĽęĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ¤ł¤ě¤ňÁŞ¤Ö¤ČĄ˘¤˘¤ëĽŃĽĂĽąĄźĽ¸¤ňÁŞÂň˛ň˝ü\n"
-#~ "¤ˇ¤ż¤éĄ˘¤˝¤ě¤Ë°Í¸¤š¤ëĽŃĽĂĽąĄźĽ¸¤â¤Ŕ¤Ţ¤Ă¤Ć˛ň˝ü¤ľ¤ě¤Ţ¤šĄŁ"
-
-#~ msgid ""
-#~ "If you have all the CDs in the list above, click Ok. If you have\n"
-#~ "none of those CDs, click Cancel. If only some CDs are missing, unselect "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "žĺľ­¤Î°ěÍ÷¤ÎCD¤Ź¤š¤Ů¤Ć¤˝¤í¤Ă¤Ć¤¤¤ě¤ĐĄ˘Ok¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "CD¤Ź°ě¤Ä¤â¤Ę¤ą¤ě¤ĐĄ˘Ľ­ĽăĽóĽťĽë¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "źę¸ľ¤Ë¤Ę¤¤CD¤Ź¤˘¤ě¤ĐĄ˘¤˝¤ě¤ňÁŞÂň¤Ť¤é¤Ď¤ş¤ˇ¤Ć¤Ť¤éOk¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤šĄŁ"
-
-#~ msgid ""
-#~ "You can now test your mouse. Use buttons and wheel to verify\n"
-#~ "if settings are good. If not, you can click on \"Cancel\" to choose "
-#~ "another\n"
-#~ "driver.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you are installing on an Apple machine with a 1-button mouse, you "
-#~ "will\n"
-#~ "be given the opportunity to define some keyboard keys to emulate the 2nd\n"
-#~ "and 3rd mouse buttons. This will allow you to be able to access the "
-#~ "full\n"
-#~ "functionality of the mouse in both the Linux console and the X Window "
-#~ "GUI.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you have an ADB mouse, please select USB, as the Linux kernel will "
-#~ "take\n"
-#~ "care of mapping your mouse hardware correctly."
-#~ msgstr ""
-#~ "¤Ç¤ĎĽŢĽŚĽš¤ňĽĆĽšĽČ¤ˇ¤Ć¤ß¤Ţ¤ˇ¤ç¤ŚĄŁĽÜĽżĽó¤äĽŰĽ¤ĄźĽë¤ňťČ¤Ă¤Ć¤ß¤Ć\n"
-#~ "¤ł¤ÎŔßÄꤏ¤¤¤¤¤Ťťî¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁĽŔĽá¤Ę¤éĄÖĽ­ĽăĽóĽťĽëĄ×¤ňĽŻĽęĽĂĽŻ\n"
-#~ "¤ˇ¤ĆĘ̤μɼ鼤ĽĐ¤ňÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "¤â¤ˇĽ˘ĽĂĽ×Ľë¤ÎĽŢĽˇĽó¤ÇĽŢĽŚĽšĽÜĽżĽó¤Ź°ě¤Ä¤ˇ¤Ť¤Ę¤ą¤ě¤ĐĄ˘2ČÖĚܤČ3ČÖĚÜ\n"
-#~ "¤ÎĽŢĽŚĽšĽÜĽżĽó¤ňĽ¨ĽßĽĺĄźĽěĄźĽČ¤š¤ëĽ­Ąź¤ÎÁȤߚç¤ď¤ť¤ŹťŘÄę¤Ç¤­¤Ţ¤šĄŁ\n"
-#~ "¤ł¤ě¤Ç Linux ĽłĽóĽ˝ĄźĽë¤Ç¤â X ĽŚĽŁĽóĽÉĽŚ GUI ¤Ç¤âĄ˘ĽŢĽŚĽš¤ÎľĄÇ˝¤ň\n"
-#~ "´°Á´¤ËťČ¤¨¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "ADB ĽŢĽŚĽš¤ňťČ¤Ă¤Ć¤¤¤ë¤Č¤­¤Ď USB ¤ňÁŞÂň¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁLinux ĽŤĄźĽÍĽë\n"
-#~ "¤Î¤Ű¤Ś¤ÇĄ˘ĽŢĽŚĽš¤ÎĽĎĄźĽÉĽŚĽ§Ľ˘¤ÎĽŢĽĂĽÔĽóĽ°¤ň¤­¤Á¤ó¤Č˝čÍý¤ˇ¤Ţ¤šĄŁ"
-
-#~ msgid ""
-#~ "If you wish to connect your computer to the Internet or\n"
-#~ "to a local network please choose the correct option. Please turn on your "
-#~ "device\n"
-#~ "before choosing the correct option to let DrakX detect it automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you do not have any connection to the Internet or a local network, "
-#~ "choose\n"
-#~ "\"Disable networking\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you wish to configure the network later after installation, or if you "
-#~ "have\n"
-#~ "finished to configure your network connection, choose \"Done\"."
-#~ msgstr ""
-#~ "ĽŢĽˇĽó¤ňĽ¤ĽóĽżĄźĽÍĽĂĽČ¤ä LAN ¤Ë¤Ä¤Ę¤Ž¤ż¤¤¤Ę¤éĄ˘ÂĐąţ¤š¤ë\n"
-#~ "ĽŞĽ×ĽˇĽçĽó¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤Ą˘Ŕľ¤ˇ¤¤ĽŞĽ×ĽˇĽçĽó¤ňÁޤÖÁ°¤ËĄ˘¤˝¤ÎĽÇĽĐĽ¤Ľš\n"
-#~ "¤ÎĹŸť¤ň¤¤¤ě¤ĆĄ˘DrakX ¤ËźŤĆ°¸Ą˝Đ¤ľ¤ť¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "Ľ¤ĽóĽżĄźĽÍĽĂĽČ¤ä LAN ¤ËŔÜÂł¤ˇ¤Ę¤¤¤Ę¤éĄ˘ĄÖĽÍĽĂĽČĽďĄźĽŻ¤ňťČ¤ď¤Ę¤¤Ą×¤ň\n"
-#~ "ÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "ĽÍĽĂĽČĽďĄźĽŻŔßÄę¤ň¤˘¤Č¤Ţ¤ď¤ˇ¤Ë¤š¤ë¤ŤĄ˘¤˘¤ë¤¤¤Ď¤â¤ŚŔßÄꤡ˝Ş¤ď¤Ă¤Ć¤¤¤ë\n"
-#~ "¤Ę¤éĄÖ´°ÎťĄ×¤ňÁŞ¤Ó¤Ţ¤šĄŁ"
-
-#~ msgid ""
-#~ "No modem has been detected. Please select the serial port on which it is "
-#~ "plugged.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, the first serial port (called \"COM1\" under Microsoft\n"
-#~ "Windows) is called \"ttyS0\" under Linux."
-#~ msgstr ""
-#~ "ĽâĽÇĽŕ¤Ź¸Ą˝Đ¤Ç¤­¤Ţ¤ť¤óĄŁĽâĽÇĽŕ¤Î¤Ä¤Ę¤Ź¤Ă¤Ć¤¤¤ëĽˇĽęĽ˘ĽëĽÝĄźĽČ¤ň\n"
-#~ "Áޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "ť˛šÍ¤Ţ¤Ç¤ËĄ˘şÇ˝é¤ÎĽˇĽęĽ˘ĽëĽÝĄźĽČĄĘĽŚĽŁĽóĽÉĽŚĽş¤Ç¤ĎĄÖCOM1Ą×ĄË¤ĎĄ˘\n"
-#~ "Linux ¤Ç¤ĎĄÖttyS0Ą×¤Č¸Ć¤Đ¤ě¤Ţ¤šĄŁ"
-
-#~ msgid ""
-#~ "You may now enter dialup options. If you don't know\n"
-#~ "or are not sure what to enter, the correct informations can be obtained "
-#~ "from\n"
-#~ "your Internet Service Provider. If you do not enter the DNS (name "
-#~ "server)\n"
-#~ "information here, this information will be obtained from your Internet "
-#~ "Service\n"
-#~ "Provider at connection time."
-#~ msgstr ""
-#~ "¤ľ¤˘ĽŔĽ¤ĽäĽëĽ˘ĽĂĽ×¤ÎŔßÄę¤ň¤ˇ¤Ţ¤šĄŁ˛ż¤ňĆţÎϤˇ¤Ć¤¤¤¤¤Ť¤ď¤Ť¤é¤Ę¤¤Ą˘\n"
-#~ "¤Ţ¤ż¤ĎźŤżŽ¤Ź¤Ę¤¤¤Č¤­¤ĎĄ˘Ŕľ¤ˇ¤¤žđĘó¤ňĽ¤ĽóĽżĄźĽÍĽĂĽČ¤ÎĽ×ĽíĽĐĽ¤ĽŔ¤Ë\n"
-#~ "śľ¤ď¤Ă¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁDNS (ĽÍĄźĽŕĽľĄźĽĐ) žđĘó¤ň¤ł¤ł¤ÇĆţÎϤˇ¤Ę¤ą¤ě¤ĐĄ˘\n"
-#~ "¤ł¤ÎžđĘó¤ĎŔÜÂłťţ¤ËĽ¤ĽóĽżĄźĽÍĽĂĽČ¤ÎĽ×ĽíĽĐĽ¤ĽŔ¤Ť¤éźčĆŔ¤ľ¤ě¤Ţ¤šĄŁ"
-
-#~ msgid ""
-#~ "If your modem is an external modem, please turn on it now to let DrakX "
-#~ "detect it automatically."
-#~ msgstr ""
-#~ "ĽâĽÇĽŕ¤Źł°ÉŐ¤ą¤Ę¤éĄ˘¤¤¤ŢĹŸť¤ňĆţ¤ě¤ĆĄ˘DrakX¤ËźŤĆ°Ĺޤ˸Ą˝Đ¤ľ¤ť¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ msgid "Please turn on your modem and choose the correct one."
-#~ msgstr "ĽâĽÇĽŕ¤ÎĹŸť¤ňĆţ¤ě¤ĆĄ˘Ŕľ¤ˇ¤¤¤â¤Î¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ msgid ""
-#~ "If you are not sure if informations above are\n"
-#~ "correct or if you don't know or are not sure what to enter, the correct\n"
-#~ "informations can be obtained from your Internet Service Provider. If you "
-#~ "do not\n"
-#~ "enter the DNS (name server) information here, this information will be "
-#~ "obtained\n"
-#~ "from your Internet Service Provider at connection time."
-#~ msgstr ""
-#~ "žĺ¤ÎžđĘó¤ŹŔľ¤ˇ¤¤¤Ť¤É¤Ś¤Ť¤ď¤Ť¤é¤Ę¤¤Ą˘¤˘¤ë¤¤¤Ď˛ż¤ňĆţÎϤš¤ë¤Ť\n"
-#~ "¤ď¤Ť¤é¤Ę¤ą¤ě¤ĐĄ˘Ŕľ¤ˇ¤¤žđĘó¤ňĽ¤ĽóĽżĄźĽÍĽĂĽČ¤ÎĽ×ĽíĽĐĽ¤ĽŔĄĘISP) ¤Ë\n"
-#~ "śľ¤ď¤Ă¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁDNS (ĽÍĄźĽŕĽľĄźĽĐ) žđĘó¤ň¤ł¤ł¤ÇĆţÎϤˇ¤Ę¤ą¤ě¤ĐĄ˘\n"
-#~ "¤ł¤ÎžđĘó¤ĎŔÜÂłťţ¤ËĽ¤ĽóĽżĄźĽÍĽĂĽČ¤ÎĽ×ĽíĽĐĽ¤ĽŔ¤Ť¤éźčĆŔ¤ľ¤ě¤Ţ¤šĄŁ"
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, the correct informations can "
-#~ "be\n"
-#~ "obtained from your Internet Service Provider."
-#~ msgstr ""
-#~ "¤Ç¤ĎĄ˘ÉŹÍפʤéĽŰĽšĽČĚž¤ňĆţ¤ě¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ¤â¤ˇ¤ď¤Ť¤é¤Ę¤¤¤ŤĄ˘\n"
-#~ "˛ż¤ňĆţÎϤˇ¤Ć¤¤¤¤¤Ť¤ď¤Ť¤é¤Ę¤ą¤ě¤ĐĄ˘ISP¤ËŔľ¤ˇ¤¤žđĘó¤ňśľ¤ď¤Ă¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "¤˝¤ě¤Ç¤ĎĽÍĽĂĽČĽďĄźĽŻĽÇĽĐĽ¤Ľš¤ňŔßÄꤡ¤Ţ¤ˇ¤ç¤Ś:\n"
-#~ "\n"
-#~ " - IP Ľ˘ĽÉĽěĽš: ¤ď¤Ť¤é¤Ę¤ą¤ě¤ĐĄ˘ĽÍĽĂĽČĽďĄźĽŻ´ÉÍýźÔ¤Ë¤­¤¤¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ " ˛ź¤ÇĄÖźŤĆ° IPĄ× ĽŞĽ×ĽˇĽçĽó¤ňÁŞ¤Ö¤Ę¤éĄ˘ĆţÎϤˇ¤Ę¤¤¤Ç¤Ż¤Ŕ¤ľ¤¤\n"
-#~ "\n"
-#~ " - ĽÍĽĂĽČĽŢĽšĽŻ: ĄÖ255.255.255.0Ą×¤Ë¤ˇ¤Ć¤Ş¤Ż¤Î¤ŹĚľĆń¤Ç¤šĄŁźŤżŽ¤Ź¤Ę¤ą¤ě"
-#~ "¤Đ\n"
-#~ "ĽÍĽĂĽČĽďĄźĽŻ´ÉÍýźÔ¤Ë¤­¤¤¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " - źŤĆ° IP: ĽÍĽĂĽČĽďĄźĽŻ¤Ç BOOTP ¤Ť DHCP Ľ×ĽíĽČĽłĽë¤ňťČ¤Ă¤Ć¤¤¤ż¤é\n"
-#~ "¤ł¤ÎĽŞĽ×ĽˇĽçĽó¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ¤ł¤ě¤ňÁŞ¤Ö¤ČĄ˘ĄÖIP Ľ˘ĽÉĽěĽšĄ×¤ňťŘÄę\n"
-#~ "¤š¤ëÉŹÍפϤ˘¤ę¤Ţ¤ť¤óĄŁźŤżŽ¤Ź¤Ę¤ą¤ě¤ĐĄ˘ĽÍĽĂĽČĽďĄźĽŻ´ÉÍýźÔ¤Ë¤­¤¤¤Ć\n"
-#~ "¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, ask your network administrator."
-#~ msgstr ""
-#~ "¤ľ¤ĆĄ˘ÉŹÍפʤ韍ʏ¤ÎĽŰĽšĽČĚž¤ňĆţÎϤˇ¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "¤ď¤Ť¤é¤Ę¤¤¤ŤźŤżŽ¤Ź¤Ę¤ą¤ě¤ĐĽÍĽĂĽČĽďĄźĽŻ´ÉÍýźÔ¤Ë¤­¤¤¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, leave blank."
-#~ msgstr ""
-#~ "¤ł¤ł¤ÇÉŹÍפʤ饢ĽŰĽšĽČĚž¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ¤â¤ˇ\n"
-#~ "¤ď¤Ť¤é¤Ę¤¤¤ŤźŤżŽ¤Ź¤Ę¤ą¤ě¤ĐĄ˘śő¤ą¤Ć¤Ş¤­¤Ţ¤ˇ¤ç¤ŚĄŁ"
-
-#~ msgid ""
-#~ "You may now enter dialup options. If you're not sure what to enter, the\n"
-#~ "correct information can be obtained from your ISP."
-#~ msgstr ""
-#~ "¤Ç¤ĎĽŔĽ¤ĽäĽëĽ˘ĽĂĽ×¤ÎŔßÄę¤ň¤ˇ¤Ţ¤šĄŁ˛ż¤ňĆţÎϤˇ¤Ć¤¤¤¤¤Ť¤ď¤Ť¤é¤Ę¤ą¤ě¤ĐĄ˘\n"
-#~ "ISP¤ËŔľ¤ˇ¤¤žđĘó¤ňśľ¤ď¤Ă¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ msgid ""
-#~ "If you will use proxies, please configure them now. If you don't know if\n"
-#~ "you should use proxies, ask your network administrator or your ISP."
-#~ msgstr ""
-#~ "Ľ×ĽíĽ­Ľˇ¤ňťČ¤Ś¤Ę¤éĄ˘¤ł¤ł¤ÇŔßÄꤡ¤Ţ¤ˇ¤ç¤ŚĄŁĽ×ĽíĽ­Ľˇ¤ňťČ¤Ś¤Ť¤É¤Ś¤Ť\n"
-#~ "¤ď¤Ť¤é¤Ę¤ą¤ě¤ĐĄ˘ĽÍĽĂĽČĽďĄźĽŻ´ÉÍýźÔ¤ŤISP¤Ë¤­¤¤¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ msgid ""
-#~ "You can install cryptographic package if your internet connection has "
-#~ "been\n"
-#~ "set up correctly. First choose a mirror where you wish to download "
-#~ "packages and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤ÎŔßÄꤏŔľ¤ˇ¤ą¤ě¤ĐĄ˘¤ł¤ł¤Ç°ĹšćĽŃĽĂĽąĄźĽ¸¤ňĽ¤ĽóĽšĽČĄźĽë\n"
-#~ "¤Ç¤­¤Ţ¤šĄŁ¤Ţ¤şĽŃĽĂĽąĄźĽ¸¤ň¤Č¤Ă¤Ć¤Ż¤ëĽľĽ¤ĽČ¤ňÁޤó¤ÇĄ˘¤˝¤ě¤Ť¤éĽ¤ĽóĽšĽČĄźĽë\n"
-#~ "¤š¤ëĽŃĽĂĽąĄźĽ¸¤ňÁŞ¤Ó¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "¤Ę¤ŞĄ˘ĽľĽ¤ĽČ¤ÎÁŞÂň¤Č°ĹšćĽŃĽĂĽąĄźĽ¸¤ÎÁŞÂň¤ĎĄ˘źŤĘŹ¤Î¤Č¤ł¤í¤ÎËĄľŹŔŠ¤Ë¤˘¤Ă¤ż\n"
-#~ "¤â¤Î¤Ë¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ msgid "You can now select your timezone according to where you live."
-#~ msgstr "¤ľ¤ĆĄ˘źŤĘŹ¤Îľďžě˝ę¤Ë¤˘¤ď¤ť¤żĽżĽ¤ĽŕĽžĄźĽó¤ňÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁ"
-
-#~ msgid ""
-#~ "You can configure a local printer (connected to your computer) or remote\n"
-#~ "printer (accessible via a Unix, Netware or Microsoft Windows network)."
-#~ msgstr ""
-#~ "ŔßÄꤚ¤ëĽ×ĽęĽóĽż¤ĎĄ˘ĽíĄźĽŤĽëĽ×ĽęĽóĽżĄĘ¤ł¤ÎĽŢĽˇĽó¤ËÄžŔܤĤʤŹ¤Ă¤ż¤â¤ÎĄË¤Ç"
-#~ "¤â\n"
-#~ "ĽęĽâĄźĽČĽ×ĽęĽóĽż (Unix, Netware, MS Windows ¤ÎĽÍĽĂĽČĽďĄźĽŻˇĐÍł¤Î¤â¤ÎĄË¤Ç"
-#~ "¤â\n"
-#~ "¤Ť¤Ţ¤¤¤Ţ¤ť¤óĄŁ"
-
-#~ msgid ""
-#~ "If you wish to be able to print, please choose one printing system "
-#~ "between\n"
-#~ "CUPS and LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS is a new, powerful and flexible printing system for Unix systems "
-#~ "(CUPS\n"
-#~ "means \"Common Unix Printing System\"). It is the default printing system "
-#~ "in\n"
-#~ "Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR is the old printing system used in previous Mandrake Linux "
-#~ "distributions.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you don't have printer, click on \"None\"."
-#~ msgstr ""
-#~ "°őşţ¤Ç¤­¤ë¤č¤Ś¤Ë¤ˇ¤ż¤¤¤Ę¤é¤ĐĄ˘CUPS ¤Č LPR¤Î¤É¤Á¤é¤Ť¤Î°őşţĽˇĽšĽĆĽŕ¤ň\n"
-#~ "Áޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS ¤Ďżˇ¤ˇ¤¤Ą˘śŻÎϤǽŔĆđ¤Ę Unix ÍŃ°őşţĽˇĽšĽĆĽŕ¤Ç¤š (CUPS¤Č¤¤¤Ś¤Î¤Ď\n"
-#~ "ĄÖCommon Unix Printing SystemĄ×¤ÎÎŹ)ĄŁMandrake Linux¤Ç¤Ď¤ł¤ě¤ŹĽÇĽŐĽŠĽëĽČ\n"
-#~ "¤Ç¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR ¤Ď¸Ĺ¤¤°őşţĽˇĽšĽĆĽŕ¤ÇĄ˘ŔΤΠMandrake Linux ¤ÇťČ¤Ă¤Ć¤¤¤Ţ¤ˇ¤żĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "Ľ×ĽęĽóĽż¤ňťý¤Ă¤Ć¤¤¤Ę¤ą¤ě¤ĐĄ˘ĄÖ¤Ę¤ˇĄ×¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ"
-
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these types "
-#~ "requires\n"
-#~ "a different setup.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select \"Local\n"
-#~ "printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine, select\n"
-#~ "\"Remote printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Microsoft Windows "
-#~ "machine\n"
-#~ "(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
-#~ msgstr ""
-#~ "GNU/Linux ¤ĎłĆźď¤ÎĽ×ĽęĽóĽż¤ň°ˇ¤¨¤Ţ¤šĄŁ¤˝¤ě¤ž¤ěŔßÄꤏ¤Á¤Ź¤Ă¤Ć¤­¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "¤â¤ˇĽ×ĽęĽóĽż¤ŹĽŢĽˇĽó¤ËÄžŔܤĤʤŹ¤Ă¤Ć¤¤¤ë¤Ę¤éĄ˘ĄÖĽíĄźĽŤĽëĽ×ĽęĽóĽżĄ×¤ň\n"
-#~ "ÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "ĽęĽâĄźĽČ¤Î Unix ĽŢĽˇĽó¤Ë¤Ä¤Ę¤Ź¤Ă¤żĽ×ĽęĽóĽż¤ňĽ˘ĽŻĽťĽš¤ˇ¤ż¤¤žěšç¤Ë¤ĎĄ˘\n"
-#~ "ĄÖĽęĽâĄźĽČĽ×ĽęĽóĽżĄ×¤ňÁŞ¤Ó¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "ĽęĽâĄźĽČ¤Î MS Windows ĽŢĽˇĽó¤Ë¤Ä¤Ę¤Ź¤Ă¤żĽ×ĽęĽóĽż¤ňĽ˘ĽŻĽťĽš¤š¤ë¤Ę¤é\n"
-#~ "(¤˘¤ë¤¤¤Ď SMB Ľ×ĽíĽČĽłĽë¤ňťČ¤Ă¤ż Unix ĽŢĽˇĽó¤ÎĽ×ĽęĽóĽżĄËĄ˘Áޤ֤ΤĎ\n"
-#~ "ĄÖSMB/Windows 95/98/NTĄ×¤Ç¤šĄŁ"
-
-#~ msgid ""
-#~ "Please turn on your printer before continuing to let DrakX detect it.\n"
-#~ "\n"
-#~ "You have to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of printer: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you must have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer a more meaningful name, you "
-#~ "have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Description: this is optional but can be useful if several printers "
-#~ "are connected to your computer or if you allow\n"
-#~ " other computers to access to this printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Location: if you want to put some information on your\n"
-#~ " printer location, put it here (you are free to write what\n"
-#~ " you want, for example \"2nd floor\").\n"
-#~ msgstr ""
-#~ "¤ł¤ł¤Ç¤Ţ¤şĽ×ĽęĽóĽż¤ÎĹŸť¤ňĆţ¤ě¤ĆĄ˘DrakX ¤Ź¸Ą˝Đ¤Ç¤­¤ë¤č¤Ś¤Ë¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "\n"
-#~ "¤ľ¤é¤Ë¤¤¤Ż¤Ä¤ŤžđĘó¤ŹÍפę¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " * Ľ×ĽęĽóĽżĚž: Ľ×ĽęĽóĽż¤ÎĽšĽ×ĄźĽé¤ĎĄ˘ĽÇĽŐĽŠĽëĽČ¤ÎĽ×ĽęĽóĽżĚž¤Č¤ˇ¤ĆĄÖlpĄ×"
-#~ "¤ň\n"
-#~ " ťČ¤¤¤Ţ¤šĄŁ¤Ŕ¤Ť¤éĄÖlpĄ×¤Č¤¤¤ŚĽ×ĽęĽóĽż¤ŹÉŹÍפǤšĄŁ¤â¤ˇĽ×ĽęĽóĽż¤Ź\n"
-#~ " °ěÂć¤Ŕ¤ą¤Ç¤âĄ˘ĚžÁ°¤ĎĘŁżôťý¤ż¤ť¤é¤ě¤Ţ¤šĄŁ¤ż¤ŔĄ˘¤˝¤ě¤ňĽŃĽ¤Ľ×ʸťúĄÖĄĂĄ×"
-#~ "¤Ç\n"
-#~ " śčŔÚ¤ě¤Đ¤¤¤¤¤Î¤Ç¤šĄŁ¤Ç¤š¤Ť¤éĄ˘¤â¤Ă¤Č°ŐĚŁ¤Î¤˘¤ëĚžÁ°¤Ë¤ˇ¤ż¤ą¤ě¤ĐĄ˘\n"
-#~ " ¤˝¤ě¤ň¤Ţ¤şťý¤Ă¤Ć¤­¤Ţ¤ˇ¤ç¤ŚĄŁĄÖMy printer|lpĄ×¤Č¤¤¤ŚśńšçĄŁ\n"
-#~ " ĚžÁ°¤ËĄÖlpĄ×¤Î¤Ä¤¤¤żĽ×ĽęĽóĽż¤ŹĽÇĽŐĽŠĽëĽČ¤ÎĽ×ĽęĽóĽż¤Ë¤Ę¤ę¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " * ŔâĚŔ: ¤ł¤ě¤Ď¤Ę¤Ż¤Ć¤â¤¤¤¤¤Ç¤š¤ŹĄ˘ĘŁżô¤ÎĽ×ĽęĽóĽż¤ňťý¤Ă¤Ć¤¤¤ż¤ęĄ˘¤Ű¤Ť"
-#~ "¤Î\n"
-#~ " ĽŢĽˇĽó¤Ź¤ł¤ÎĽ×ĽęĽóĽż¤ËĽ˘ĽŻĽťĽš¤š¤ë¤Č¤­¤ËĘŘÍř¤Ç¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " * žě˝ę: ¤â¤ˇĽ×ĽęĽóĽż¤Îžě˝ę¤Ë¤Ä¤¤¤ĆžđĘó¤ňĆţ¤ě¤ż¤ą¤ě¤ĐĄ˘¤ł¤ł¤Ë\n"
-#~ " ĆţÎϤˇ¤Ţ¤ˇ¤ç¤ŚĄĘĄÖĆ󳏥פȤŤšĽ¤­¤Ęľ­˝Ň¤Ç¤Ť¤Ţ¤¤¤Ţ¤ť¤óĄËĄŁ\n"
-
-#~ msgid ""
-#~ "You need to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of queue: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you need have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer to have a more meaningful "
-#~ "name, you have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ " \n"
-#~ " * Spool directory: it is in this directory that printing jobs are "
-#~ "stored. Keep the default choice\n"
-#~ " if you don't know what to use\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printer Connection: If your printer is physically connected to your "
-#~ "computer, select \"Local printer\".\n"
-#~ " If you want to access a printer located on a remote Unix machine, "
-#~ "select \"Remote lpd printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to access a printer located on a remote Microsoft "
-#~ "Windows machine (or on Unix machine using SMB\n"
-#~ " protocol), select \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to acces a printer located on NetWare network, select "
-#~ "\"NetWare\".\n"
-#~ msgstr ""
-#~ "¤ł¤ł¤Ç¤¤¤í¤¤¤ížđĘó¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " * Ľ­ĽĺĄź¤ÎĚžÁ°: Ľ×ĽęĽóĽż¤ÎĽšĽ×ĄźĽé¤ĎĄ˘ĽÇĽŐĽŠĽëĽČ¤Ç¤ĎĄÖlpĄ×¤ňťČ¤¤¤Ţ"
-#~ "¤šĄŁ\n"
-#~ " ¤Ŕ¤Ť¤éĄÖlpĄ×¤Č¤¤¤ŚĽ×ĽęĽóĽż¤ŹÉŹÍפǤšĄŁ\n"
-#~ " ¤â¤ˇĽ×ĽęĽóĽż¤Ź°ěÂć¤Ŕ¤ą¤Ç¤âĄ˘ĚžÁ°¤ĎĘŁżôťý¤ż¤ť¤é¤ě¤Ţ¤šĄŁ¤ż¤ŔĄ˘¤˝¤ě¤ň\n"
-#~ " ĽŃĽ¤Ľ×ʸťúĄÖĄĂĄ×¤ÇśčŔÚ¤ě¤Đ¤¤¤¤¤Î¤Ç¤šĄŁ¤Ç¤š¤Ť¤éĄ˘¤â¤Ă¤Č°ŐĚŁ¤Î¤˘¤ë\n"
-#~ " ĚžÁ°¤Ë¤ˇ¤ż¤ą¤ě¤ĐĄ˘¤˝¤ě¤ň¤Ţ¤şťý¤Ă¤Ć¤­¤Ţ¤ˇ¤ç¤ŚĄŁĄÖMy printer|lpĄ×¤Č\n"
-#~ " ¤¤¤ŚśńšçĄŁ\n"
-#~ " ĚžÁ°¤ËĄÖlpĄ×¤Î¤Ä¤¤¤żĽ×ĽęĽóĽż¤ŹĽÇĽŐĽŠĽëĽČ¤ÎĽ×ĽęĽóĽż¤Ë¤Ę¤ę¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " * ĽšĽ×ĄźĽëĽÇĽŁĽěĽŻĽČĽę: ¤ł¤ÎĽÇĽŁĽěĽŻĽČĽę¤Ë°őşţĽ¸ĽçĽÖ¤ŹĘݸ¤ľ¤ě¤Ţ¤šĄŁ\n"
-#~ " ˛ż¤ňťČ¤Ś¤Ů¤­¤Ť¤ď¤Ť¤é¤Ę¤ą¤ě¤ĐĽÇĽŐĽŠĽëĽČ¤Î¤Ţ¤Ţ¤Ë¤ˇ¤Ć¤Ş¤­¤Ţ¤ˇ¤ç¤Ś\n"
-#~ "\n"
-#~ "\n"
-#~ " * Ľ×ĽęĽóĽżŔÜÂł: Ľ×ĽęĽóĽż¤ŹĽŢĽˇĽó¤ËÄžŔܤĤʤŹ¤Ă¤Ć¤¤¤ëžěšç¤ĎĄ˘\n"
-#~ " ĄÖĽíĄźĽŤĽëĽ×ĽęĽóĽżĄ×¤ňÁŞ¤Ó¤Ţ¤šĄŁĽęĽâĄźĽČ¤ÎUnixĽŢĽˇĽóžĺ¤ÎĽ×ĽęĽóĽż¤ň\n"
-#~ " ťČ¤Ś¤Ë¤ĎĄ˘ĄÖĽęĽâĄźĽČlpdĽ×ĽęĽóĽżĄ×¤ňÁŞ¤Ó¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " ĽęĽâĄźĽČ¤ÎĽŚĽŁĽóĽÉĽŚĽşĽŢĽˇĽóĄĘ¤Ţ¤ż¤ĎSMB Ľ×ĽíĽČĽłĽëťČÍѤÎUnixĽŢĽˇĽó\n"
-#~ " žĺ¤ÎĽ×ĽęĽóĽż¤ňĽ˘ĽŻĽťĽš¤š¤ë¤Ë¤ĎĄ˘ĄÖSMB/Windows 95/98/NTĄ×¤ňÁޤӤŢ"
-#~ "¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " NetWare ĽÍĽĂĽČĽďĄźĽŻžĺ¤ÎĽ×ĽęĽóĽż¤ňĽ˘ĽŻĽťĽš¤ˇ¤ż¤ą¤ě¤ĐĄ˘\n"
-#~ " ĄÖNetWareĄ×¤ňÁŞ¤Ó¤Ţ¤šĄŁ\n"
-
-#~ msgid ""
-#~ "Your printer has not been detected. Please enter the name of the device "
-#~ "on\n"
-#~ "which it is connected.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, most printers are connected on the first parallel port. "
-#~ "This\n"
-#~ "one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
-#~ "Windows."
-#~ msgstr ""
-#~ "Ľ×ĽęĽóĽż¤Ź¸Ą˝Đ¤Ç¤­¤Ţ¤ť¤óĄŁĽ×ĽęĽóĽż¤ŹŔÜÂł¤ľ¤ě¤żĽÇĽĐĽ¤ĽšĚž¤ňĆţÎϤˇ¤Ć\n"
-#~ "¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "¤Á¤Ę¤ß¤ËĄ˘Ľ×ĽęĽóĽż¤Ď¤Ő¤Ä¤Ś¤ĎşÇ˝é¤ÎĽŃĽéĽěĽëĽÝĄźĽČ¤Ë¤Ä¤Ę¤Ź¤Ă¤Ć¤¤¤ë¤â¤Î¤Ç"
-#~ "¤šĄŁ\n"
-#~ "¤ł¤ě¤ĎGNU/Linux ¤Ç¤ĎĄÖ/dev/lp0Ą×¤Ŕ¤ˇĄ˘ĽŚĽŁĽóĽÉĽŚĽş¤Ç¤ĎĄÖLPT1Ą×¤Ë¤Ę¤ę¤Ţ¤šĄŁ"
-
-#~ msgid "You must now select your printer in the above list."
-#~ msgstr "¤ľ¤˘žĺ¤Î°ěÍ÷¤Ť¤éźŤĘŹ¤ÎĽ×ĽęĽóĽż¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ msgid ""
-#~ "Please select the right options according to your printer.\n"
-#~ "Please see its documentation if you don't know what choose here.\n"
-#~ "\n"
-#~ "\n"
-#~ "You will be able to test your configuration in next step and you will be "
-#~ "able to modify it if it doesn't work as you want."
-#~ msgstr ""
-#~ "źŤĘŹ¤ÎĽ×ĽęĽóĽż¤Ë¤˘¤Ă¤żĄ˘Ŕľ¤ˇ¤¤ĽŞĽ×ĽˇĽçĽó¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "¤Ę¤Ë¤ňÁޤ֤Ť¤ď¤Ť¤é¤Ę¤ą¤ě¤ĐĄ˘Ľ×ĽęĽóĽż¤ÎťńÎÁ¤ň¸Ť¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "źĄ¤ÎĽšĽĆĽĂĽ×¤ÇŔßÄę¤ňĽĆĽšĽČ¤Ç¤­¤Ţ¤š¤ˇĄ˘¤˝¤ě¤Źť×¤¤Ä̤ę¤ËľĄÇ˝¤ˇ¤Ę¤ą¤ě¤Đ\n"
-#~ "¤˝¤ł¤ÇĘѤ¨¤é¤ě¤Ţ¤šĄŁ"
-
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "¤Ç¤ĎMandrake LinuxĽˇĽšĽĆĽŕ¤ÎrootĽŃĽšĽďĄźĽÉ¤ňŔßÄꤡ¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "ĽŃĽšĽďĄźĽÉ¤Ď 2 ˛óĆţÎϤˇ¤ĆĄ˘ĽżĽ¤Ľ×ĽßĽš¤Ź¤Ę¤¤¤Ť¤É¤Ś¤Ť¤ňłÎǧ¤ˇ¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "Root¤Č¤¤¤Ś¤Î¤ĎĽˇĽšĽĆĽŕ¤Î´ÉÍýźÔ¤ÇĄ˘ĽˇĽšĽĆĽŕ¤ÎŔßÄę¤ňĘѤ¨¤é¤ě¤ëÍŁ°ě¤Î\n"
-#~ "żÍĘŞ¤Ç¤šĄŁ¤Ç¤š¤Ť¤éĄ˘¤ł¤ÎĽŃĽšĽďĄźĽÉ¤ňĆţÎϤš¤ë¤Č¤­¤ĎĂí°Ő¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŞ\n"
-#~ "root¸˘¸Â¤ňÉÔŔľ¤ËťČ¤Ś¤ČĄ˘¤ł¤ÎĽˇĽšĽĆĽŕ¤äĄ˘ĽÍĽĂĽČĽďĄźĽŻ¤Ç¤Ä¤Ę¤Ź¤Ă¤żÂž¤Î\n"
-#~ "ĽˇĽšĽĆĽŕ¤ä¤˝¤ÎĽÇĄźĽż¤Ë˝ĹÂç¤Ę´í¸ą¤ňľÚ¤Ü¤š¤ł¤Č¤Ë¤Ę¤ę¤Ť¤Í¤Ţ¤ť¤óĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "ĽŃĽšĽďĄźĽÉ¤ĎĄ˘Ľ˘ĽëĽŐĽĄĽŮĽĂĽČ¤äżôťú¤ňşŽ¤ź¤ż¤â¤Î¤Ë¤ˇ¤ĆĄ˘şÇÄă¤Ç¤â 8 ʸťú\n"
-#~ "ÉŹÍפǤšĄŁ*ŔäÂФË*ĽáĽâ¤Ă¤Ć¤Ş¤¤¤ż¤ę¤ˇ¤Ć¤Ď¤¤¤ą¤Ţ¤ť¤óĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "¤Ç¤âÄš¤š¤Ž¤ż¤ę¤ä¤ä¤ł¤ˇ¤š¤Ž¤ż¤ę¤š¤ëĽŃĽšĽďĄźĽÉ¤âĽŔĽá¤Ç¤š¤čĄŁźŤĘŹ¤Ç¤Ď\n"
-#~ "łÚ¤Ëť×¤¤¤Ŕ¤ť¤ëÉŹÍפŹ¤˘¤ę¤Ţ¤šĄŁ"
-
-#~ msgid ""
-#~ "If your network uses the LDAP (or NIS) protocol for authentication, "
-#~ "select\n"
-#~ "\"LDAP\" (or \"NIS\") as authentication. If you don't know, ask your "
-#~ "network\n"
-#~ "administrator.\n"
-#~ "\n"
-#~ "If your computer is not connected to any administrated network, you may "
-#~ "want to\n"
-#~ "choose \"Local files\" for authentication."
-#~ msgstr ""
-#~ "ĽÍĽĂĽČĽďĄźĽŻ¤ÇǧžÚ¤Ë LDAP (¤Ţ¤ż¤Ď NIS) ¤ňťČ¤Ă¤Ć¤¤¤ë¤Ę¤éĄ˘Ç§žÚ¤Î¤Č¤ł¤í¤Ç\n"
-#~ "\"LDAP\" (¤Ţ¤ż¤Ď \"NIS\") ¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ¤ď¤Ť¤é¤Ę¤ą¤ě¤ĐĄ˘ĽÍĽĂĽČĽďĄźĽŻ\n"
-#~ "¤Î´ÉÍýźÔ¤Ë¤­¤­¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "\n"
-#~ "¤â¤ˇĽłĽóĽÔĽĺĄźĽż¤Ź´ÉÍýźÔ¤Ä¤­ĽÍĽĂĽČĽďĄźĽŻ¤Ë¤Ä¤Ę¤Ź¤Ă¤Ć¤¤¤Ę¤¤¤Ę¤é\n"
-#~ "ǧžÚ¤Ë¤Ď \"ĽíĄźĽŤĽëĽŐĽĄĽ¤Ľë\" ¤ňÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁ"
-
-#~ msgid ""
-#~ "You may now create one or more \"regular\" user account(s), as\n"
-#~ "opposed to the \"privileged\" user account, root. You can create\n"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "¤Ç¤Ď¤ł¤ł¤ÇĄ˘ĄÖÄĚžď¤ÎĄ×ĽćĄźĽśĽ˘ĽŤĽŚĽóĽČ¤ň¤Ä¤Ż¤ę¤Ţ¤šĄŁ\n"
-#~ "¤ł¤ě¤ĎĄÖĆø˘Ą×ĽćĄźĽśĽ˘ĽŤĽŚĽóĽČ¤Îroot ¤Č¤Ď¤Á¤Ź¤¤¤Ţ¤šĄŁ¤ł¤ÎĽˇĽšĽĆĽŕ¤ň\n"
-#~ "ťČ¤ŚżÍ¤ż¤Á¤ËĄ˘¤˝¤ě¤ž¤ěĘĚĄš¤ÎĽ˘ĽŤĽŚĽóĽČ¤ň¤Ä¤Ż¤ë¤č¤Ś¤Ë¤ˇ¤Ţ¤šĄŁłĆĽ˘ĽŤĽŚ\n"
-#~ "ĽóĽČ¤ĎĆČźŤ¤Î´Äś­ŔßÄęĄĘĽ°ĽéĽŐĽŁĽĂĽŻ´Äś­Ą˘Ľ×ĽíĽ°ĽéĽŕŔßÄę¤Ę¤ÉĄË¤ňťý¤ÁĄ˘\n"
-#~ "¤˝¤ě¤ž¤ěźŤÁ°¤ÎĄÖĽŰĄźĽŕĽÇĽŁĽěĽŻĽČĽęĄ×¤ňťý¤Ă¤Ć¤˝¤ł¤Ë¤ł¤Ś¤¤¤ŚŔßÄę¤ňĘݸ\n"
-#~ "¤ˇ¤Ć¤Ş¤­¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "¤Ţ¤ş¤ĎźŤĘŹÍѤμ˘ĽŤĽŚĽóĽČ¤ň¤Ä¤Ż¤Ă¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŞĄĄĽćĄźĽś¤Ź¤˘¤Ę¤ż°ěżÍ¤Ç¤âĄ˘\n"
-#~ "¤Ő¤Ŕ¤óĽˇĽšĽĆĽŕ¤ňťČ¤Ś¤Č¤­¤Ë¤ĎĄ˘root¤ňťČ¤Ă¤Ć¤Ď*¤¤¤ą¤Ţ¤ť¤óĄŞ*\n"
-#~ "¤ł¤ě¤ň¤ä¤ë¤ČĄ˘ĽťĽ­ĽĺĽęĽĆĽŁžĺ¤ÎĽęĽšĽŻ¤Ź¤­¤ď¤á¤ĆÂ礭¤Ż¤Ę¤ę¤Ţ¤šĄŁ¤Á¤ç¤Ă¤Č\n"
-#~ "¤ˇ¤żĽżĽ¤Ľ×ĽßĽš¤ÇĄ˘ĽˇĽšĽĆĽŕ¤ň˛ő¤š¤Ş¤˝¤ě¤â˝Đ¤Ć¤­¤Ţ¤š¤čĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "¤ˇ¤ż¤Ź¤Ă¤ĆĄ˘¤Ő¤Ä¤Ś¤Ď¤ł¤ł¤Ç¤Ä¤Ż¤ëĽćĄźĽśĽ˘ĽŤĽŚĽóĽČ¤ÇĽˇĽšĽĆĽŕ¤ňťČ¤¤¤Ţ¤ˇ¤ç\n"
-#~ "¤ŚĄŁroot¤ÇĽíĽ°Ľ¤Ľó¤š¤ë¤Î¤ĎĄ˘ĽˇĽšĽĆĽŕ´ÉÍý¤ČĽáĽóĽĆĽĘĽóĽš¤Î¤Č¤­¤Ŕ¤ą¤Ç¤šĄŁ"
-
-#~ msgid ""
-#~ "Creating a boot disk is strongly recommended. If you can't\n"
-#~ "boot your computer, it's the only way to rescue your system without\n"
-#~ "reinstalling it."
-#~ msgstr ""
-#~ "ľŻĆ°ĽÇĽŁĽšĽŻ¤ĎŔ§Čó¤Č¤â¤Ä¤Ż¤Ă¤Ć¤Ş¤¤¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁĽŢĽˇĽó¤ňľŻĆ°¤Ç¤­¤Ę¤Ż\n"
-#~ "¤Ę¤Ă¤ż¤éĄ˘¤ł¤ě¤ŹşĆĽ¤ĽóĽšĽČĄźĽë¤ť¤ş¤ËĽÇĽŁĽšĽŻ¤ňľß¤ŚÍŁ°ě¤ÎźęĂʤǤšĄŁ"
-
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <number>: use the corresponding text mode.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories\n"
-#~ "stored in \"/tmp\" when you boot your system, select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the\n"
-#~ "BIOS about the amount of RAM present in your computer. As consequence, "
-#~ "Linux may\n"
-#~ "fail to detect your amount of RAM correctly. If this is the case, you "
-#~ "can\n"
-#~ "specify the correct amount or RAM here. Please note that a difference of "
-#~ "2 or 4\n"
-#~ "MB between detected memory and memory present in your system is normal."
-#~ msgstr ""
-#~ "LILO ¤Č grub ¤ÎźçÍ×ĽŞĽ×ĽˇĽçĽó¤Ď°Ę˛ź¤Î¤Č¤Ş¤ę¤Ç¤š:\n"
-#~ " - ĽÖĄźĽČĽÇĽĐĽ¤Ľš: ĽÖĄźĽČĽťĽŻĽż¤ňťý¤ÄĽÇĽĐĽ¤ĽšĚž¤ňŔßÄęĄĘ¤ż¤Č¤¨¤ĐĽĎĄźĽÉ\n"
-#~ "ĽÇĽŁĽšĽŻ¤ÎĽŃĄźĽĆĽŁĽˇĽçĽóĄËĄŁźŤżŽ¤Ź¤Ę¤¤¸Â¤ęĄ˘ĄÖ/dev/hdaĄ×¤ňÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " - ĽÇĽŐĽŠĽëĽČĽ¤ĽáĄźĽ¸ľŻĆ°¤ÎÂÔ¤Áťţ´Ö: ĽÖĄźĽČĽíĄźĽŔ¤ŹşÇ˝é¤ÎĽ¤ĽáĄźĽ¸¤ňľŻĆ°\n"
-#~ "¤š¤ë¤Ţ¤Ç¤ÎÂÔ¤Áťţ´Ö¤ň1/10ÉĂĂą°Ě¤ÇťŘÄꤡ¤Ţ¤šĄŁ¤ł¤ě¤ĎĄ˘Ľ­ĄźĽÜĄźĽÉ¤ŹÍ­¸ú¤Ë\n"
-#~ "¤Ę¤Ă¤Ć¤š¤°¤ËĽĎĄźĽÉĽÇĽŁĽšĽŻ¤Ť¤éľŻĆ°¤š¤ëĽˇĽšĽĆĽŕ¤Ę¤É¤ÇĘŘÍř¤Ç¤šĄŁ¤ł¤Î\n"
-#~ "ĄÖÂÔ¤Áťţ´ÖĄ×¤ŹĚľľ­Ćţ¤Ŕ¤Ă¤ż¤ęĽźĽí¤Ŕ¤Ă¤ż¤ę¤ˇ¤ż¤éĄ˘ĽÖĄźĽČĽíĄźĽŔ¤ĎÂÔ¤Á¤Ţ¤ť"
-#~ "¤óĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " - ĽÓĽÇĽŞĽâĄźĽÉĄ§ľŻĆ°ťţ¤ËťČ¤Ś VGA ĽĆĽ­ĽšĽČĽâĄźĽÉ¤ňťŘÄꤡ¤Ţ¤šĄŁťČ¤¨¤ë¤Î"
-#~ "¤Ď\n"
-#~ "°Ę˛ź¤ÎĂͤǤšĄ§\n"
-#~ "\n"
-#~ " * ĽÎĄźĽŢĽë: ÄĚžď¤Î 80x25 ¤ÎĽĆĽ­ĽšĽČĽâĄźĽÉ\n"
-#~ "\n"
-#~ " * <żôťú>: żôťú¤ËÂĐąţ¤ˇ¤żĽĆĽ­ĽšĽČĽâĄźĽÉ\n"
-#~ "\n"
-#~ " - ľŻĆ°¤Î¤ż¤Ó¤Ë \"/tmp\" ¤ňĽŻĽęĽ˘: ĽˇĽšĽĆĽŕľŻĆ°ťţ¤Ë \"/tmp\" Ćâ¤ÎÁ´ĽŐĽĄĽ¤"
-#~ "Ľë¤äĽÇĽŁĽěĽŻĽČĽę¤ň\n"
-#~ "žĂľî¤ˇ¤ż¤ą¤ě¤Đ¤ł¤ÎĽŞĽ×ĽˇĽçĽó¤ňÁŞ¤Ó¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " - ÉŹÍפ˹ţ¤¸¤Ć¸ˇĚŠ¤Ę RAM ťŘÄę: ťÄÇ°¤Ę¤Ź¤éĄ˘BIOS ¤ËĽŢĽˇĽóžĺ¤Î RAM ¤Î\n"
-#~ "ŔľłÎ¤ĘÎ̤ň¤­¤ŻĘýËĄ¤ĎĹý°ě¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤óĄŁ¤ł¤Î¤ż¤á Linux ¤ĎĄ˘RAM¤Î\n"
-#~ "Î̤ňŔľłÎ¤Ë¸Ą˝Đ¤Ç¤­¤Ę¤¤¤Ť¤â¤ˇ¤ě¤Ţ¤ť¤óĄŁ¤ł¤ÎžěšçĄ˘¤ł¤ł¤ÇŔľłÎ¤Ę RAM ¤Î\n"
-#~ "Î̤ň¤ł¤ł¤ÇťŘÄę¤Ç¤­¤Ţ¤šĄŁ¤Ę¤ŞĄ˘¸Ą˝Đ¤ľ¤ě¤żRAM¤ČźÂşÝ¤ÎRAM¤Ź 2-4 MB ¤Ű¤É\n"
-#~ "¤ş¤ě¤Ć¤¤¤ë¤Î¤Ď¤Ţ¤Ă¤ż¤ŻĚäÂę¤Ę¤¤źŤÁł¤Ę¤ł¤Č¤Ç¤šĄŁ"
-
-#~ msgid ""
-#~ "SILO is a bootloader for SPARC: it is able to boot\n"
-#~ "either GNU/Linux or any other operating system present on your computer.\n"
-#~ "Normally, these other operating systems are correctly detected and\n"
-#~ "installed. If this is not the case, you can add an entry by hand in this\n"
-#~ "screen. Be careful as to choose the correct parameters.\n"
-#~ "\n"
-#~ "\n"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "anyone, in which case you can delete the corresponding entries. But\n"
-#~ "in this case, you will need a boot disk in order to boot them!"
-#~ msgstr ""
-#~ "SILO ¤ĎSPARCÍѤμ֥źĽČĽíĄźĽŔ¤Ç¤šĄŁĽłĽóĽÔĽĺĄźĽżžĺ¤ÎGNU/Linux\n"
-#~ "¤Ę¤ÉłĆźďOS¤ňľŻĆ°¤Ç¤­¤Ţ¤šĄŁ\n"
-#~ "ÉáÄ̤ϥ˘¤ł¤ě¤é¤ÎOS¤ĎźŤĆ°Ĺޤˤ­¤Á¤ó¤Č¸Ą˝Đ¤ľ¤ě¤ĆĽ¤ĽóĽšĽČĄźĽë¤ľ¤ě¤Ţ¤šĄŁ\n"
-#~ "¤ł¤ě¤ŹĽŔĽá¤Ę¤éĄ˘¤ł¤ł¤ÇźęĆ°¤ÇĽ¨ĽóĽČĽę¤ňÄɲ䡤ޤˇ¤ç¤ŚĄŁĽŃĽéĽáĄźĽż¤ň\n"
-#~ "¤Ţ¤Á¤Ź¤¨¤Ę¤¤¤č¤ŚĂí°Ő¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "ž¤ÎOS¤Ë¤Ďž¤ÎżÍ¤ŹĽ˘ĽŻĽťĽš¤Ç¤­¤Ę¤¤¤č¤Ś¤Ë¤ˇ¤ż¤¤¤ł¤Č¤â¤˘¤ę¤Ţ¤šĄŁ¤ł¤Î\n"
-#~ "žěšç¤Ë¤Ď¤˝¤ÎOS¤ÎĽ¨ĽóĽČĽę¤ňşď˝ü¤ˇ¤Ć¤Ş¤­¤Ţ¤ˇ¤ç¤ŚĄŁ¤ż¤Ŕ¤ˇ¤ł¤Îžěšç¤ĎĄ˘\n"
-#~ "¤˝¤ÎOS¤ňťČ¤Ś¤Č¤­¤Ë¤ĎľŻĆ°ĽÇĽŁĽšĽŻ¤ŹÍפę¤Ţ¤š¤čĄŞ"
-
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ "SILO ¤ÎźçÍ×ĽŞĽ×ĽˇĽçĽó¤Ď°Ę˛ź¤Î¤Č¤Ş¤ę¤Ç¤š:\n"
-#~ " - ĽÖĄźĽČĽíĄźĽŔ¤ÎĆłĆţ: GNU/Linux ¤ňľŻĆ°¤š¤ë¤Î¤ËÉŹÍפȤʤëžđĘó¤ňĂÖ¤Żžě˝ę"
-#~ "¤ň\n"
-#~ "Ćţ¤ě¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ¤Ę¤Ë¤ň¤š¤ě¤Đ¤¤¤¤¤Ť¤Ď¤Ă¤­¤ę¤ČĘŹ¤Ť¤é¤Ę¤¤žěšç¤ĎĄ˘\n"
-#~ "ĄÖĽÉĽéĽ¤ĽÖ¤ÎşÇ˝é¤ÎĽťĽŻĽż(MBR)Ą×¤ňÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " - ĽÇĽŐĽŠĽëĽČĽ¤ĽáĄźĽ¸ľŻĆ°¤ÎÂÔ¤Áťţ´Ö: ĽÖĄźĽČĽíĄźĽŔ¤ŹşÇ˝é¤ÎĽ¤ĽáĄźĽ¸¤ňľŻĆ°\n"
-#~ "¤š¤ë¤Ţ¤Ç¤ÎÂÔ¤Áťţ´Ö¤ň1/10ÉĂĂą°Ě¤ÇťŘÄꤡ¤Ţ¤šĄŁ¤ł¤ě¤ĎĄ˘Ľ­ĄźĽÜĄźĽÉ¤ŹÍ­¸ú¤Ë\n"
-#~ "¤Ę¤Ă¤Ć¤š¤°¤ËĽĎĄźĽÉĽÇĽŁĽšĽŻ¤Ť¤éľŻĆ°¤š¤ëĽˇĽšĽĆĽŕ¤Ę¤É¤ÇĘŘÍř¤Ç¤šĄŁ¤ł¤Î\n"
-#~ "ĄÖÂÔ¤Áťţ´ÖĄ×¤ŹĚľľ­Ćţ¤Ŕ¤Ă¤ż¤ęĽźĽí¤Ŕ¤Ă¤ż¤ę¤ˇ¤ż¤éĄ˘ĽÖĄźĽČĽíĄźĽŔ¤ĎÂÔ¤Á¤Ţ¤ť¤óĄŁ"
-
-#~ msgid ""
-#~ "Now it's time to configure the X Window System, which is the\n"
-#~ "core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "¤Ç¤ĎXĽŚĽŁĽóĽÉĽŚĽˇĽšĽĆĽŕ¤ÎŔßÄę¤ň¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ¤ł¤ě¤ĎGNU/Linux GUI (Ľ°ĽéĽŐĽŁĽŤ"
-#~ "Ľë\n"
-#~ "ĽćĄźĽśĽ¤ĽóĽżĄźĽŐĽ§ĄźĽšĄË¤ÎłËż´ÉôĘŹ¤Ç¤šĄŁ¤ł¤Î¤ż¤á¤Ë¤Ď¤Ţ¤şĄ˘ĽÓĽÇĽŞĽŤĄźĽÉ¤Č\n"
-#~ "ĽâĽËĽż¤ÎŔßÄę¤ň¤ˇ¤Ţ¤šĄŁ¤ŹĄ˘ĹÓĂ楢¤Ű¤Č¤ó¤É¤ĎźŤĆ°˛˝¤ľ¤ě¤Ć¤¤¤ë¤Î¤ÇĄ˘ÄĚžď¤Ę¤é\n"
-#~ "Ăą¤ËĄ˘ˇë˛Ě¤ň¸Ť¤Ć¤˝¤ÎŔßÄę¤ňžľÇ§¤š¤ë¤Ŕ¤ą¤Ç¤š¤ß¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "ŔßÄꤏ˝Ş¤ď¤Ă¤ż¤éĄ˘X¤Ź¤ż¤Á¤˘¤Ź¤ę¤Ţ¤šĄĘ¤˘¤Ę¤ż¤Ź¤˝¤Ś¤š¤ë¤Ę¤ČDrakX¤ËĚżÎᤡ¤Ę"
-#~ "¤¤\n"
-#~ "¸Â¤ęĄËĄŁ¤ł¤ě¤ÇŔßÄꤏŔľ¤ˇ¤¤¤Ť¤ňłÎǧ¤Ç¤­¤Ţ¤šĄŁŔľ¤ˇ¤Ż¤Ę¤ą¤ě¤ĐĄ˘Ěá¤Ă¤Ć¤­¤Ć\n"
-#~ "¤ä¤ę¤Ę¤Ş¤ť¤Ţ¤šĄŁ¤ł¤ě¤Ď˛żĹ٤Ǥ⚼¤­¤Ę¤Ŕ¤ą¤Ç¤­¤Ţ¤šĄŁ"
-
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ "X ¤ÎŔßÄꤏ¤Ş¤Ť¤ˇ¤ą¤ě¤ĐĄ˘¤ł¤ÎĽŞĽ×ĽˇĽçĽó¤ňťČ¤Ă¤ĆĄ˘XĽŚĽŁĽóĽÉĽŚĽˇĽšĽĆĽŕ¤ň\n"
-#~ "Ŕľ¤ˇ¤ŻŔßÄꤡФˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "Ľ°ĽéĽŐĽŁĽŤĽëĄŚĽíĽ°Ľ¤Ľó¤ŹšĽ¤­¤Ę¤éĄ˘ĄÖ¤Ď¤¤Ą×¤ňÁŞ¤Ó¤Ţ¤šĄŁ¤˝¤Ś¤Ç¤Ę¤ą¤ě¤Đ\n"
-#~ "ĄÖ¤¤¤¤¤¨Ą×¤ňÁŞ¤Ó¤Ţ¤šĄŁ"
-
-#~ msgid ""
-#~ "You can choose a security level for your system. Please refer to the "
-#~ "manual for complete\n"
-#~ " information. Basically, if you don't know what to choose, keep the "
-#~ "default option.\n"
-#~ msgstr ""
-#~ "ĽŢĽˇĽó¤ÎĽťĽ­ĽĺĽęĽĆĽŁ¤ÎĽěĽŮĽë¤ňÁŞ¤Ů¤Ţ¤šĄŁžÜ¤ˇ¤¤ŔâĚŔ¤ĎĽŢĽËĽĺĽ˘Ľë¤ňť˛žČĄŁ\n"
-#~ "´đËÜĹŞ¤Ë¤ĎĄ˘¤É¤ě¤ňÁŞ¤Ů¤Đ¤¤¤¤¤Ť¤ď¤Ť¤é¤Ę¤ą¤ě¤ĐĽÇĽŐĽŠĽëĽČ¤Î¤Ţ¤Ţ¤Ë¤ˇ¤Ţ¤šĄŁ\n"
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
-#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
-#~ msgstr ""
-#~ "ĽˇĽšĽĆĽŕ¤ňşĆľŻĆ°¤ˇ¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "şĆľŻĆ°¤ˇ¤ż¤éĄ˘żˇ¤ˇ¤¤ Mandrake Linux ĽˇĽšĽĆĽŕ¤ŹźŤĆ°Ĺޤˤż¤Á¤˘¤Ź¤ę¤Ţ¤šĄŁ\n"
-#~ "Ę̤ÎOS¤ň¤ż¤Á¤˘¤˛¤ż¤¤¤Č¤­¤Ë¤ĎĄ˘ÄɲäÎŔâĚŔ¤ňĆɤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr "linux¤ÎĘŁŔ˝ÍѤ˥˘źŤĆ°Ľ¤ĽóĽšĽČĄźĽëĽÇĽŁĽšĽŻ¤ň¤Ä¤Ż¤ę¤Ţ¤š¤ŤĄŠ"
-
-#~ msgid "Czech (Programmers)"
-#~ msgstr "ĽÁĽ§ĽłĄĘĽ×ĽíĽ°ĽéĽŢĄË"
-
-#~ msgid "Slovakian (Programmers)"
-#~ msgstr "ĽšĽíĽĐĽ­Ľ˘ĄĘĽ×ĽíĽ°ĽéĽŢĄË"
-
-#~ msgid "ADSL configuration"
-#~ msgstr "ADSL¤ÎŔßÄę"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Remote queue"
-#~ msgstr "ĽęĽâĄźĽČĽ­ĽĺĄź"
-
-#~ msgid "Remote queue name missing!"
-#~ msgstr "ĽęĽâĄźĽČĽ­ĽĺĄźĚž¤Ź¤˘¤ę¤Ţ¤ť¤óĄŞ"
-
-#~ msgid ""
-#~ "Here you can specify any arbitrary command line into which the job should "
-#~ "be piped instead of being sent directly to a printer."
-#~ msgstr ""
-#~ "¤ł¤ł¤Ç¤ĎĄ˘Ľ¸ĽçĽÖ¤ňĽ×ĽęĽóĽż¤ËÁ÷¤ëÁ°¤ËĄ˘Ç¤°Ő¤ÎĽłĽŢĽóĽÉ¤ËĽŃĽ¤Ľ×¤š¤ë¤č¤ŚťŘÄę¤Ç"
-#~ "¤­¤Ţ¤šĄŁ"
-
-#~ msgid "Command line"
-#~ msgstr "ĽłĽŢĽóĽÉĽéĽ¤Ľó"
-
-#~ msgid "A command line must be entered!"
-#~ msgstr "ĽłĽŢĽóĽÉĽéĽ¤Ľó¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŞ"
-
-#~ msgid "Option %s->{ARGS}[%s]{'comment'} must be an integer number!"
-#~ msgstr "Option %s->{ARGS}[%s]{'comment'} ¤ĎŔľżô¤Ë¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤!"
-
-#~ msgid "Option %s->{ARGS}[%s]{'comment'} must be a number!"
-#~ msgstr "Option %s->{ARGS}[%s]{'comment'} ¤Ďżôťú¤Ë¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤!"
-
-#~ msgid "Option %s->{ARGS}[%s]{'comment'} out of range!"
-#~ msgstr "Option %s->{ARGS}[%s]{'comment'} ¤ŹČĎ°Ďł°¤Ç¤š!"
-
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ "ĽęĽâĄźĽČ CUPS ĽľĄźĽĐ¤ÎžěšçĄ˘¤ł¤ł¤Ç¤ĎĽ×ĽęĽóĽż¤ÎŔßÄę¤ĎÉÔÍפǤšĄŁ\n"
-#~ "Ľ×ĽęĽóĽż¤ĎźŤĆ°¸Ą˝Đ¤ľ¤ě¤Ţ¤šĄŁ¤ż¤Ŕ¤ˇĽľĄźĽĐ¤ŹĘ̤μͼüȼ寧ĽŻžĺ¤Ë\n"
-#~ "¤˘¤ë¤ČĽŔĽá¤Ç¤šĄŁ¤ł¤Î¤Č¤­¤ĎĄ˘CUPSĽľĄźĽĐ¤ÎIPĽ˘ĽÉĽěĽš¤ČĄ˘ÉŹÍפʤé\n"
-#~ "ĽÝĄźĽČČÖšć¤ňťŘÄꤡ¤Ţ¤ˇ¤ç¤ŚĄŁ"
-
-#~ msgid "Enter Printer Name and Comments"
-#~ msgstr "Ľ×ĽęĽóĽż¤ÎĚžÁ°¤ČĽłĽáĽóĽČ¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "ŔßÄęĽŐĽĄĽ¤Ľë¤ÎĆâÍƤŹ˛ňźá¤Ç¤­¤Ţ¤ť¤óĄŁ"
-
-#~ msgid "Unrecognized config file"
-#~ msgstr "ŔßÄęĽŐĽĄĽ¤Ľë¤ŹĘѤǤš"
-
-#~ msgid "Name of the profile to create:"
-#~ msgstr "ÁϤëĽ×ĽíĽŐĽŁĄźĽëĚž:"
-
-#~ msgid "Adapter"
-#~ msgstr "Ľ˘ĽŔĽ×Ľż"
-
-#~ msgid "Disable network"
-#~ msgstr "ĽÍĽĂĽČĽďĄźĽŻ¤ňĚľ¸ú¤Ë¤š¤ë"
-
-#~ msgid "Enable network"
-#~ msgstr "ĽÍĽĂĽČĽďĄźĽŻ¤ňÍ­¸ú¤Ë¤š¤ë"
-
-#~ msgid "Network Monitoring"
-#~ msgstr "ĽÍĽĂĽČĽďĄźĽŻ¤Î´Ćťë"
-
-#~ msgid "Profile "
-#~ msgstr "Ľ×ĽíĽ¤ĄźĽë "
-
-#~ msgid "Statistics"
-#~ msgstr "Ĺýˇ×"
-
-#~ msgid "Sending Speed:"
-#~ msgstr "Á÷żŽÂŽĹŮĄ§"
-
-#~ msgid "Receiving Speed:"
-#~ msgstr "źőżŽÂŽĹŮĄ§"
-
-#~ msgid "Logs"
-#~ msgstr "ĽíĽ°"
-
-#~ msgid "Connecting to Internet "
-#~ msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČ¤ŘŔÜÂł"
-
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČ¤Ť¤éŔÚĂÇ"
-
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČ¤Ť¤é¤ÎŔÚĂǤ˟şÇÔ"
-
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČ¤Ť¤é¤ÎŔÚĂÇ´°Îť"
-
-#~ msgid "Connection complete."
-#~ msgstr "ŔÜÂł´°Îť"
-
-#~ msgid ""
-#~ "Connection failed.\n"
-#~ "Verify your configuration in the Mandrake Control Center."
-#~ msgstr ""
-#~ "ŔÜÂłźşÇÔĄŁ\n"
-#~ "Mandrake ĽłĽóĽČĽíĄźĽëĽťĽóĽżĄź¤ÇŔßÄę¤ňłÎǧ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ msgid "sent: "
-#~ msgstr "Á÷żŽşŃ¤ßĄ§"
-
-#~ msgid "received: "
-#~ msgstr "źőżŽşŃ¤ßĄ§"
-
-#~ msgid "average"
-#~ msgstr "ĘżśŃ"
-
-#~ msgid ""
-#~ "You can now test your mouse. Use buttons and wheel to verify\n"
-#~ "if settings are good. If not, you can click on \"Cancel\" to choose "
-#~ "another\n"
-#~ "driver."
-#~ msgstr ""
-#~ "¤ľ¤˘Ą˘ĽŢĽŚĽš¤ňĽĆĽšĽČ¤ˇ¤Ć¤ß¤Ţ¤ˇ¤ç¤ŚĄ˘ĽÜĽżĽó¤äĽŰĽ¤ĄźĽë¤ňťČ¤Ă¤Ć¤ß¤ĆĄ˘\n"
-#~ "ŔßÄꤏ¤ł¤ě¤Ç¤¤¤¤¤Ť¸Ť¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁĽŔĽá¤Ę¤éĄÖĽ­ĽăĽóĽťĽëĄ×¤ň˛Ą¤ˇ¤ĆĄ˘\n"
-#~ "ĽÉĽéĽ¤ĽĐ¤ňÁޤÓÄž¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "DSL (¤Ţ¤ż¤Ď ADSL) ŔÜÂł"
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr "CUPS ¤ÇĽ×ĽęĽóĽż¤ňĽ˘ĽŻĽťĽš¤š¤ë¤Ę¤éĄ˘ÄžŔÜ URI ¤ňťŘÄę¤Ç¤­¤Ţ¤šĄŁ"
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "ASCIIĽĆĽšĽČĽÚĄźĽ¸¤ň°őşţ¤ˇ¤Ć¤ß¤ë"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "PostScriptĽĆĽšĽČĽÚĄźĽ¸¤ň°őşţ¤ˇ¤Ć¤ß¤ë"
-
-#~ msgid "Paper Size"
-#~ msgstr "Íѝ漾Ľ¤Ľş"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "Ľ¸ĽçĽÖ¤Î¸ĺ¤ÇĽÚĄźĽ¸ÇӽФˇ¤Ţ¤š¤ŤĄŠ"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "UniprintĽÉĽéĽ¤ĽĐĽŞĽ×ĽˇĽçĽó"
-
-#~ msgid "Color depth options"
-#~ msgstr "ż§żźĹŮĽŞĽ×ĽˇĽçĽó"
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "ĽĆĽ­ĽšĽČ¤ňPostScript¤Ç°őşţ¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "ʸťú¤ÎĽ¸ĽăĽŽĄź¤ň¤Ę¤Ş¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "˝ĐÎĎĽÚĄźĽ¸¤˘¤ż¤ę¤ÎĽÚĄźĽ¸żô"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "ş¸ąŚ¤ÎÍžÇň¤ňĽÝĽ¤ĽóĽČżôĄĘ1/72Ľ¤ĽóĽÁĄË¤ÇťŘÄę"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "žĺ˛ź¤ÎÍžÇň¤ňĽÝĽ¤ĽóĽČżôĄĘ1/72Ľ¤ĽóĽÁĄË¤ÇťŘÄę"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "¤˝¤Îž GhostScriptĽŞĽ×ĽˇĽçĽó"
-
-#~ msgid "Extra Text options"
-#~ msgstr "¤˝¤ÎžĽĆĽ­ĽšĽČĽŞĽ×ĽˇĽçĽó"
-
-#~ msgid "Reverse page order"
-#~ msgstr "şÇ¸ĺ¤ÎĽÚĄźĽ¸¤Ť¤é°őşţ"
-
-#~ msgid "CUPS starting"
-#~ msgstr "CUPS łŤťĎ"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "ĽęĽâĄźĽČĽ×ĽęĽóĽż¤ÎŔÜÂł¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤"
-
-#~ msgid ""
-#~ "Every printer need a name (for example lp).\n"
-#~ "Other parameters such as the description of the printer or its location\n"
-#~ "can be defined. What name should be used for this printer and\n"
-#~ "how is the printer connected?"
-#~ msgstr ""
-#~ "Ľ×ĽęĽóĽż¤Ď¤˝¤ě¤ž¤ěĚžÁ°¤ŹÍפę¤Ţ¤šĄĘ¤ż¤Č¤¨¤Đlp)ĄŁ\n"
-#~ "¤Ű¤Ť¤Ë¤âĄ˘Ľ×ĽęĽóĽż¤ÎźďÎŕ¤äĽŢĽˇĽó¤Ř¤Î¤Ä¤Ę¤Ź¤ę¤Ť¤ż¤Ę¤É¤ÎĽŃĽéĽáĄźĽż¤Ź\n"
-#~ "ŔßÄę¤Ç¤­¤Ţ¤šĄŁ¤ł¤ÎĽ×ĽęĽóĽż¤Ď¤Ę¤ó¤Č¤¤¤ŚĚžÁ°¤Ë¤ˇ¤Ţ¤š¤ŤĄŠ ¤˝¤ˇ¤ĆĽŢĽˇĽó¤Č¤Ď¤É"
-#~ "¤Ś¤Ä¤Ę¤Ź¤Ă¤Ć¤¤¤Ţ¤š¤ŤĄŠ"
-
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a\n"
-#~ "name (often lp) and a spool directory associated with it. What\n"
-#~ "name and directory should be used for this queue and how is the printer "
-#~ "connected?"
-#~ msgstr ""
-#~ "¤˘¤é¤ć¤ëĽ×ĽęĽóĽČĽ­ĽĺĄź(Ľ×ĽęĽóĽČĽ¸ĽçĽÖ¤Ź´ÉÍý¤ľ¤ě¤ë)¤ĎĚžÁ°(¤ż¤¤¤Ć¤¤¤Ď\n"
-#~ " lp)¤Č¤˝¤ě¤Ë´ŘϢ¤ˇ¤Ć¤¤¤ëĽšĽ×ĄźĽëĽÇĽŁĽěĽŻĽČĽę¤ŹÉŹÍפǤšĄŁ¤ł¤ÎĽ­ĽĺĄź¤Ç\n"
-#~ "ťČ¤ŚĚžÁ°¤ČĽÇĽŁĽěĽŻĽČĽę¤Ď˛ż¤Ë¤ˇ¤Ţ¤š¤ŤĄŠ\n"
-#~ "¤Ţ¤żĽ×ĽęĽóĽż¤Ď¤É¤ŚŔÜÂł¤ľ¤ě¤Ć¤¤¤Ţ¤š¤ŤĄŠ"
-
-#~ msgid "Name of queue"
-#~ msgstr "Ľ­ĽĺĄź¤ÎĚžÁ°Ą§"
-
-#~ msgid "Spool directory"
-#~ msgstr "ĽšĽ×ĄźĽë¤ÎĽÇĽŁĽěĽŻĽČĽęĄ§"
-
-#~ msgid "Disable"
-#~ msgstr "Ěľ¸ú¤Ë"
-
-#~ msgid "Enable"
-#~ msgstr "Í­¸ú¤Ë"
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ msgstr ""
-#~ "šâĽťĽ­ĽĺĽęĽĆĽŁĽˇĽšĽĆĽŕ¤Ë¤ˇ¤ż¤ą¤ě¤ĐĄ˘ĄÖĽˇĽăĽÉĽŚĽŐĽĄĽ¤Ľë¤ňťČ¤ŚĄ×¤Č\n"
-#~ "ĄÖMD5 ĽŃĽšĽďĄźĽÉ¤ňťČ¤ŚĄ×¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ msgid ""
-#~ "If your network uses NIS, select \"Use NIS\". If you don't know, ask "
-#~ "your\n"
-#~ "network administrator."
-#~ msgstr ""
-#~ "¤â¤ˇĽÍĽĂĽČĽďĄźĽŻ¤Ç NIS ¤ňťČ¤Ă¤Ć¤¤¤ë¤Ę¤éĄÖNIS ¤ňťČ¤ŚĄ×¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "¤ď¤Ť¤é¤Ę¤ą¤ě¤ĐĽÍĽĂĽČĽďĄźĽŻ´ÉÍýźÔ¤Ë¤­¤¤¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ msgid "yellow pages"
-#~ msgstr "Ľ¤Ľ¨ĽíĄźĽÚĄźĽ¸"
-
-#~ msgid "Provider dns 1"
-#~ msgstr "Ľ×ĽíĽĐĽ¤ĽŔ¤Î dns 1"
-
-#~ msgid "Provider dns 2"
-#~ msgstr "Ľ×ĽíĽĐĽ¤ĽŔ¤Î dns 2"
-
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr "¤É¤Î¤č¤Ś¤Ë¤ˇ¤ĆĽ¤ĽóĽżĄźĽÍĽĂĽČ¤ËŔÜÂł¤ˇ¤Ţ¤š¤Ť?"
-
-#~ msgid "cannot fork: "
-#~ msgstr "ĽŐĽŠĄźĽŻÉÔ˛ÄÇ˝Ą§"
-
-#~ msgid "Configure..."
-#~ msgstr "ŔßÄęĂć..."
-
-#~ msgid "Selected size %d%s"
-#~ msgstr "ÁŞ¤Đ¤ě¤żĽľĽ¤ĽşĄ§%d%s"
-
-#~ msgid "Opening your connection..."
-#~ msgstr "ŔÜÂł¤ňłŤťĎ..."
-
-#~ msgid "This startup script try to load your modules for your usb mouse."
-#~ msgstr "¤ł¤ÎľŻĆ°ĽšĽŻĽęĽ×ĽČ¤ĎUSBĽŢĽŚĽšÍѤμ⼸ĽĺĄźĽë¤ňĽíĄźĽÉ¤ˇ¤Ţ¤šĄŁ"
-
-#~ msgid "Configuration de Lilo/Grub"
-#~ msgstr "Lilo ¤ÎŔßÄę/Grub"
-
-#~ msgid "Boot style configuration"
-#~ msgstr "ľŻĆ°Ęýź°¤ÎŔßÄę"
-
-#~ msgid ""
-#~ "Now that your Internet connection is configured,\n"
-#~ "your computer can be configured to share its Internet connection.\n"
-#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
-#~ "(LAN).\n"
-#~ "\n"
-#~ "Would you like to setup the Internet Connection Sharing?\n"
-#~ msgstr ""
-#~ "¤ľ¤˘Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤ÎŔßÄꤏ˝Ş¤ď¤ę¤Ţ¤ˇ¤żĄŁ¤Ű¤Ť¤ÎĽŢĽˇĽó¤Ź\n"
-#~ "¤ł¤ÎĽŢĽˇĽóˇĐÍł¤ÇĽ¤ĽóĽżĄźĽÍĽĂĽČ¤ËŔÜÂł¤š¤ë¤č¤Ś¤ËŔßÄę¤Ç¤­¤Ţ¤š\n"
-#~ "ĂíĄ§ĽíĄźĽŤĽëĽ¨ĽęĽ˘ĽÍĽĂĽČĽďĄźĽŻ (LAN) ¤ň¤Ä¤Ż¤ë¤Ë¤ĎĄ˘ŔěÍѤμͼüȼ寧ĽŻĽ˘ĽŔ"
-#~ "Ľ×Ľż¤ŹÍפę¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤ÎśŚÍ­¤ňŔßÄꤡ¤Ţ¤š¤ŤĄŠ\n"
-
-#~ msgid "Welcome to the Internet Connection Sharing utility!"
-#~ msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂłśŚÍ­ĽćĄźĽĆĽŁĽęĽĆĽŁ¤Ř¤č¤Ś¤ł¤˝ĄŞ"
-
-#~ msgid "Automatic dependencies"
-#~ msgstr "°Í¸´Řˇ¸¤ÎźŤĆ°˛ňˇč"
-
-#~ msgid "Configure LILO/GRUB"
-#~ msgstr "LILO/GRUB ¤ÎŔßÄę"
-
-#~ msgid "Create a boot floppy"
-#~ msgstr "ľŻĆ°ĽÇĽŁĽšĽŻşîŔŽ"
-
-#~ msgid "Choice"
-#~ msgstr "ÁŞÂň"
-
-#~ msgid "horizontal nice looking aurora"
-#~ msgstr "żĺĘż¤Ç¤­¤ě¤¤¤Ë¸Ť¤¨¤ëaurora"
-
-#~ msgid "vertical traditional aurora"
-#~ msgstr "˝žÍ衿¤ÎżâÄž¤Ę aurora"
-
-#~ msgid "gMonitor"
-#~ msgstr "gĽâĽËĽż"
-
-#~ msgid ""
-#~ "You can now select some miscellaneous options for your system.\n"
-#~ "\n"
-#~ "* Use hard drive optimizations: this option can improve hard disk "
-#~ "performance but is only for advanced users. Some buggy\n"
-#~ " chipsets can ruin your data, so beware. Note that the kernel has a "
-#~ "builtin blacklist of drives and chipsets, but if\n"
-#~ " you want to avoid bad surprises, leave this option unset.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Choose security level: you can choose a security level for your system. "
-#~ "Please refer to the manual for complete\n"
-#~ " information. Basically, if you don't know what to choose, keep the "
-#~ "default option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the BIOS about the amount of RAM present in\n"
-#~ " your computer. As consequence, Linux may fail to detect your amount of "
-#~ "RAM correctly. If this is the case, you can\n"
-#~ " specify the correct amount or RAM here. Please note that a difference "
-#~ "of 2 or 4 MB between detected memory and memory\n"
-#~ " present in your system is normal.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Removable media automounting: if you would prefer not to manually mount "
-#~ "removable media (CD-Rom, floppy, Zip, etc.) by\n"
-#~ " typing \"mount\" and \"umount\", select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories stored in \"/tmp\" when you boot your system,\n"
-#~ " select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Enable num lock at startup: if you want NumLock key enabled after "
-#~ "booting, select this option. Please note that you\n"
-#~ " should not enable this option on laptops and that NumLock may or may "
-#~ "not work under X."
-#~ msgstr ""
-#~ "¤Ç¤Ď¤˝¤Îž¤ÎĽŞĽ×ĽˇĽçĽó¤ň¤¤¤Ż¤Ä¤ŤŔßÄꤡ¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "\n"
-#~ " - ĽĎĄźĽÉĽÇĽŁĽšĽŻşÇĹŹ˛˝¤ň¤š¤ë: ¤ł¤ÎĽŞĽ×ĽˇĽçĽó¤ĎĄ˘ĽĎĄźĽÉĽÇĽŁĽšĽŻŔ­Ç˝\n"
-#~ " ¤ň˛ţÁą¤ˇ¤Ć¤Ż¤ě¤Ţ¤š¤ŹĄ˘šâĹ٤ʼ楟ĽśŔěÍѤǤšĄŁ°ěÉô¤ÎĽÁĽĂĽ×ĽťĽĂĽČ¤Ŕ¤Č\n"
-#~ " ĽÇĽŁĽšĽŻžĺ¤ÎĽÇĄźĽż¤Ź˛ő¤ě¤Ţ¤šĄŁĽŤĄźĽÍĽë¤Ç¤âĄ˘ş¤¤Ă¤żĽÁĽĂĽ×ĽťĽĂĽČ¤ä\n"
-#~ " ĽÉĽéĽ¤ĽÖ¤ÎĽÖĽéĽĂĽŻĽęĽšĽČ¤Ďťý¤Ă¤Ć¤¤¤Ţ¤š¤ŹĄ˘Äˤ¤Ěܤˤ˘¤¤¤ż¤Ż¤Ę¤ą¤ě¤Đ\n"
-#~ " Čň¤ą¤ż¤Ű¤Ś¤ŹĚľĆń¤Ç¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " - ĽťĽ­ĽĺĽęĽĆĽŁĽěĽŮĽë¤ÎÁŞÂň: ĽˇĽšĽĆĽŕ¤ÎĽťĽ­ĽĺĽęĽĆĽŁĽěĽŮĽë¤ňÁŞ¤Ů¤Ţ¤šĄŁ\n"
-#~ " žÜ¤ˇ¤Ż¤ĎĽŢĽËĽĺĽ˘Ľë¤ňť˛žČ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ´đËÜĹŞ¤Ë¤ĎĄ˘¤č¤Ż¤ď¤Ť¤é¤Ę¤ą¤ě\n"
-#~ " ¤ĐĽÇĽŐĽŠĽëĽČ¤Î¤Ţ¤Ţ¤Ç¤¤¤­¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " - ÉŹÍפʤéŔľłÎ¤ĘRAMĽľĽ¤Ľş: ťÄÇ°¤Ę¤Ź¤é¤¤¤Ţ¤ÎĽŃĽ˝ĽłĽó¤ÎŔ¤łŚ¤Ç¤ĎĄ˘BIOS¤Ë\n"
-#~ " ĽˇĽšĽĆĽŕžĺ¤ÎRAM¤ÎÎ̤ˤĤ¤¤Ć¤Ţ¤Č¤â¤ËĘš¤ŻĘýËĄ¤Ź¤˘¤ę¤Ţ¤ť¤óĄŁ¤ł¤Îˇë˛ĚĄ˘\n"
-#~ " Linux¤ĎĽŢĽˇĽóžĺ¤ÎRAM¤ň¤­¤Á¤ó¤Č¸Ą˝Đ¤Ç¤­¤Ę¤¤¤ł¤Č¤Ź¤˘¤ę¤Ţ¤šĄŁ¤ł¤Îžěšç\n"
-#~ " ¤Ë¤ĎĄ˘Ŕľ¤ˇ¤¤Î̤ňťŘÄꤡ¤Ţ¤šĄŁ\n"
-#~ " Ăí°ŐĄ§ 2 or 4 MB ¤Ż¤é¤¤¤Î¤ş¤ě¤Ďľ¤¤Ë¤ˇ¤Ę¤Ż¤ĆÂçžćÉפǤšĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " - ĽęĽŕĄźĽĐĽÖĽëĽáĽÇĽŁĽ˘¤ÎźŤĆ°ĽŢĽŚĽóĽČ: ĽęĽŕĄźĽĐĽÖĽëĽÉĽéĽ¤ĽÖĄĘCD-ROM¤ä\n"
-#~ " ĽŐĽíĽĂĽÔĄźĄ˘ZIP¤Ę¤ÉĄË¤ňĄÖmountĄ×¤äĄÖumountĄ×ĽłĽŢĽóĽÉ¤ÇźęĆ°ĽŢĽŚĽóĽČ\n"
-#~ " ¤š¤ë¤Î¤ŹĚĚĹݤʤ饢¤ł¤ÎĽŞĽ×ĽˇĽçĽó¤ňÁŞ¤Ó¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "* ľŻĆ°¤Î¤ż¤Ó¤ËĄÖ/tmpĄ×¤ňśő¤Ë: ¤â¤ˇĽˇĽšĽĆĽŕ¤ňľŻĆ°¤š¤ë¤ż¤Ó¤ËĄÖ/tmpĄ×¤Î\n"
-#~ "ĽŐĽĄĽ¤Ľë¤äĽÇĽŁĽěĽŻĽČĽę¤ňžĂľî¤š¤ë¤Ë¤ĎĄ˘¤ł¤ÎĽŞĽ×ĽˇĽçĽó¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " - ľŻĆ°ťţ¤ËNum Lock¤ňĽŞĽó¤Ë¤š¤ë: ľŻĆ°ťţ¤ËNumber Lock¤ňĽŞĽó¤Ë¤ˇ¤ż¤ą¤ě¤Đ\n"
-#~ " ¤ł¤ÎĽŞĽ×ĽˇĽçĽó¤ňÁŞ¤Ó¤Ţ¤šĄĘĂí°ŐĄ§ĽéĽĂĽ×ĽČĽĂĽ×¤Ç¤ĎĄ˘¤ł¤ÎĽŞĽ×ĽˇĽçĽó¤ň\n"
-#~ " ĽŞĽó¤Ë¤ˇ¤Ć¤Ď¤¤¤ą¤Ţ¤ť¤óĄŁ¤Ţ¤żĄ˘XĽŚĽŁĽóĽÉĽŚ¤Ç¤ĎNum Lock¤ĎťČ¤¨¤Ę¤¤¤ł\n"
-#~ " ¤Č¤Ź¤˘¤ę¤Ţ¤šĄËĄŁ"
-
-#~ msgid "Sorry, the mail configuration is not yet implemented. Be patient."
-#~ msgstr "¤´¤á¤ó¤Ę¤ľ¤¤Ą˘ĽáĄźĽë¤ÎŔßÄę¤Ď¤Ţ¤Ŕ¤Ç¤­¤Ţ¤ť¤óĄŁ¤´ÍƟϤňĄŁ"
-
-#~ msgid ""
-#~ "Welcome to The Network Configuration Wizard.\n"
-#~ "Which components do you want to configure?\n"
-#~ msgstr ""
-#~ "ĽÍĽĂĽČĽďĄźĽŻŔßÄ꼌ĽŁĽśĄźĽÉ¤Ř¤č¤Ś¤ł¤˝ĄŁ\n"
-#~ "¤É¤ÎĽłĽóĽÝĄźĽÍĽóĽČ¤ňŔßÄꤡ¤ż¤¤¤Ç¤š¤Ť?\n"
-
-#~ msgid "Internet/Network access"
-#~ msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČ/ĽÍĽĂĽČĽďĄźĽŻ¤Ř¤ÎĽ˘ĽŻĽťĽš"
-
-#~ msgid "Miscellaneous"
-#~ msgstr "¤˝¤Îž¤â¤í¤â¤í"
-
-#~ msgid "Miscellaneous questions"
-#~ msgstr "¤˝¤Îž¤ÎźÁĚä"
-
-#~ msgid "Can't use supermount in high security level"
-#~ msgstr "ĽšĄźĽŃĄźĽŢĽŚĽóĽČ¤Ďšâ¤¤ĽťĽ­ĽĺĽęĽĆĽŁĽěĽŮĽë¤Ç¤ĎťČ¤¨¤Ţ¤ť¤ó"
-
-#~ msgid ""
-#~ "beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
-#~ "If you want to be root, you have to login as a user and then use \"su\".\n"
-#~ "More generally, do not expect to use your machine for anything but as a "
-#~ "server.\n"
-#~ "You have been warned."
-#~ msgstr ""
-#~ "Ăí°Ő: ¤ł¤ÎĽťĽ­ĽĺĽęĽĆĽŁĽěĽŮĽë¤Ç¤ĎĄ˘ĽłĽóĽ˝ĄźĽë¤Ç¤ÎĽëĄźĽČĽíĽ°Ľ¤Ľó¤Ď\n"
-#~ "ľö˛Ä¤ľ¤ě¤Ţ¤ť¤óĄŞ\n"
-#~ "root ¤Ë¤Ę¤ę¤ż¤¤¤Č¤­¤ĎĄ˘ĽćĄźĽś¤ÇĽíĽ°Ľ¤Ľó¤ˇ¤ĆĄÖsuĄ×¤ňťČ¤ŚÉŹÍפŹ¤˘¤ę¤Ţ¤šĄŁ\n"
-#~ "°ěČĚĹŞ¤Ë¤ĎĄ˘ĽľĄźĽĐ¤ň˝ü¤Ż˛ż¤Ť¤ŹĽŢĽˇĽó¤ňťČ¤¨¤ë¤Č´üÂÔ¤ľ¤ť¤Ę¤¤¤ż¤á¤Ç¤šĄŁ\n"
-#~ "ˇŮšđ¤ˇ¤Ţ¤ˇ¤ż¤čĄŁ"
-
-#~ msgid ""
-#~ "Be carefull, having numlock enabled causes a lot of keystrokes to\n"
-#~ "give digits instead of normal letters (eg: pressing `p' gives `6')"
-#~ msgstr ""
-#~ "Ăí°ŐĄ˘numlock ¤ňÍ­¸ú¤Ë¤š¤ë¤ČĄ˘¤¤¤Ż¤Ä¤Ť¤ÎĽ­ĄźĽšĽČĽíĄźĽŻ¤ĎÉáÄ̤Îʸťú\n"
-#~ "¤Î¤Ť¤ď¤ę¤Ëżôťú¤ňĘÖ¤ˇ¤Ţ¤š(Î㥧ĄÖpĄ×¤ňÂǤĤȥÖ6Ą×¤ňĘÖ¤ˇ¤Ţ¤š)"
-
-#~ msgid "not connected"
-#~ msgstr "ŔÜÂł¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤ó"
-
-#~ msgid "Actions"
-#~ msgstr "¤Ő¤ë¤Ţ¤¤"
-
-#~ msgid "Scientific applications"
-#~ msgstr "˛ĘłŘĽ˘Ľ×ĽęĽąĄźĽˇĽçĽó"
-
-#~ msgid "File/Print/Samba"
-#~ msgstr "ĽľĄźĽĐĄ˘ĽŐĽĄĽ¤Ľë/°őşţ/Samba"
-
-#~ msgid "DNS/DHCP "
-#~ msgstr "ĽľĄźĽĐĄ˘DNS/DHCP"
-
-#~ msgid "First DNS Server"
-#~ msgstr "ĽŐĽĄĄźĽšĽČ DNS ĽľĄźĽĐ"
-
-#~ msgid "Second DNS Server"
-#~ msgstr "ĽťĽŤĽóĽÉ DNS ĽľĄźĽĐ"
-
-#~ msgid "using module"
-#~ msgstr "ĽâĽ¸ĽĺĄźĽë¤ňťČÍŃ"
-
-#~ msgid "Development, Database"
-#~ msgstr "ĽÇĄźĽżĽŮĄźĽšłŤČŻÍŃ"
-
-#~ msgid "Development, Integrated Environment"
-#~ msgstr "łŤČŻĄ˘Ĺýšç´Äś­"
-
-#~ msgid "Development, Standard tools"
-#~ msgstr "łŤČŻÍŃĄ˘É¸˝ŕĽÄĄźĽë"
-
-#~ msgid ""
-#~ "\n"
-#~ "Warning:\n"
-#~ "Applying the changes while running may crash your X environnement."
-#~ msgstr ""
-#~ "\n"
-#~ "ˇŮšđ:\n"
-#~ "źÂšÔĂć¤ËĘŃšš¤ňĹŹÍѤš¤ë¤ČĄ˘X ´Äś­¤ŹĽŻĽéĽĂĽˇĽĺ¤š¤ë¤Ť¤â¤ˇ¤ě¤Ţ¤ť¤óĄŁ"
-
-#~ msgid ""
-#~ "\n"
-#~ "If you continue, I will shut down your %s environnement"
-#~ msgstr ""
-#~ "\n"
-#~ "Âł¤ą¤ë¤Ę¤éĄ˘%s ´Äś­¤ňĽˇĽăĽĂĽČĽŔĽŚĽó¤ˇ¤Ţ¤š"
-
-#~ msgid "eth%s"
-#~ msgstr "eth%s"
-
-#~ msgid "loopback"
-#~ msgstr "ĽëĄźĽ×ĽĐĽĂĽŻ"
-
-#~ msgid "Which bootloader(s) do you want to use?"
-#~ msgstr "¤É¤ÎĽÖĄźĽČĽíĄźĽŔ¤ňťČ¤¤¤Ţ¤š¤Ť"
-
-#~ msgid "Auto install floppy"
-#~ msgstr "ĆłĆţŔßÄęĽŐĽíĽĂĽÔ"
-
-#~ msgid "Try to find a modem?"
-#~ msgstr "ĽâĽÇĽŕ¤ň¸Ąş÷¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#~ msgid "Configure an ISDN connection"
-#~ msgstr "ISDN ŔÜÂł¤ÎŔßÄę"
-
-#~ msgid "Disable Internet Connection"
-#~ msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤ňĚľ¸ú¤Ë¤š¤ë"
-
-#~ msgid "Configure local network"
-#~ msgstr "LAN ŔßÄę"
-
-#~ msgid "Configure the Internet connection / Configure local Network"
-#~ msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂłŔßÄ꥿LAN ŔßÄę"
-
-#~ msgid ""
-#~ "Local networking has already been configured.\n"
-#~ "Do you want to:"
-#~ msgstr ""
-#~ "ĽíĄźĽŤĽëĽÍĽĂĽČĽďĄźĽŻ¤ĎŔßÄęşŃ¤ß¤Ç¤šĄŁ\n"
-#~ "°Ę˛ź¤ň¤ˇ¤ż¤¤¤Ç¤š¤ŤĄ§"
-
-#~ msgid "Reconfigure using wizard..."
-#~ msgstr "ĽŚĽŁĽśĄźĽÉ¤ňťČ¤Ă¤ĆŔßÄęĂć..."
-
-#~ msgid "Graphics Manipulation"
-#~ msgstr "˛čÁüÁŕşî"
-
-#~ msgid "Multimedia"
-#~ msgstr "ĽŢĽëĽÁĽáĽÇĽŁĽ˘"
-
-#~ msgid "Sciences"
-#~ msgstr "˛ĘłŘ"
-
-#~ msgid ""
-#~ "Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and "
-#~ "file transfer tools"
-#~ msgstr ""
-#~ "xchat, licq, gaim¤Ę¤É¤ÎĽÁĽăĽĂĽČÍŃĽ˝ĽŐĽČ (IRC ¤äĽ¤ĽóĽšĽżĽóĽČĽáĽĂĽťĄźĽ¸) ¤Č"
-#~ "ĽŐĽĄĽ¤ĽëĹžÁ÷ĽÄĄźĽë"
-
-#~ msgid "Communication facilities"
-#~ msgstr "ÄĚżŽ´ŘϢ"
-
-#~ msgid "KDE"
-#~ msgstr "KDE"
-
-#~ msgid "Gnome"
-#~ msgstr "Gnome"
-
-#~ msgid "Internet Tools"
-#~ msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČĽÄĄźĽë"
-
-#~ msgid "Databases clients and servers (mysql and postgresql)"
-#~ msgstr "ĽÇĄźĽżĽŮĄźĽšĽŻĽéĽ¤Ľ˘ĽóĽČ¤ČĽľĄźĽĐ (mysql, postgresql)"
-
-#~ msgid "Development C/C++"
-#~ msgstr "łŤČŻÍŃ C/C++"
-
-#~ msgid "Configure timezone"
-#~ msgstr "ĽżĽ¤ĽŕĽžĄźĽóŔßÄę"
-
-#~ msgid "Network adaptater 1 (eth0):"
-#~ msgstr "ĽÍĽĂĽČĽďĄźĽŻĽ˘ĽŔĽ×Ľż 1ĄĘeth0ĄË"
-
-#~ msgid "(may cause data corruption)"
-#~ msgstr "ĄĘĽÇĄźĽż¤Ź˛ő¤ě¤ë¤Ş¤˝¤ě¤Ź¤˘¤ę¤Ţ¤šĄË"
-
-#~ msgid "Enable num lock at startup"
-#~ msgstr "ľŻĆ°ťţ¤Ënum lock¤ňĽŞĽó¤Ë¤š¤ë"
-
-#~ msgid "Confirm Password"
-#~ msgstr "ĽŃĽšĽďĄźĽÉ¤ÎŔßÄę"
-
-#~ msgid "DNS server:"
-#~ msgstr "DNS ĽľĄźĽĐ:"
-
-#~ msgid "Gateway device:"
-#~ msgstr "Ľ˛ĄźĽČĽŚĽ§Ľ¤ĽÇĽĐĽ¤Ľš:"
-
-#~ msgid "default"
-#~ msgstr "ĽÇĽŐĽŠĽëĽČ"
-
-#~ msgid "What is your system used for?"
-#~ msgstr "ĽˇĽšĽĆĽŕ¤ÎťČ¤¤Ęý¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ msgid "Select the size you want to install"
-#~ msgstr "Ľ¤ĽóĽšĽČĄźĽë¤š¤ëĽľĽ¤Ľş¤ňÁޤó¤Ç˛ź¤ľ¤¤"
-
-#~ msgid "Use diskdrake"
-#~ msgstr "diskdrake¤ňťČ¤Ś"
-
-#~ msgid "Customized"
-#~ msgstr "ĽŤĽšĽżĽŢĽ¤Ľş"
-
-#~ msgid ""
-#~ "Are you sure you are an expert? \n"
-#~ "You will be allowed to make powerful but dangerous things here.\n"
-#~ "\n"
-#~ "You will be asked questions such as: ``Use shadow file for passwords?'',\n"
-#~ "are you ready to answer that kind of questions?"
-#~ msgstr ""
-#~ "¤˘¤Ę¤żĄ˘ËÜĹö¤ËĽŰĽóĽČ¤ÎĽ¨Ľ­ĽšĽŃĄźĽČ¤Ç¤ˇ¤ç¤Ś¤Í¤§ĄŁ\n"
-#~ "¤ł¤ě¤ňÁŞ¤Ö¤ČĄ˘śŻÎϤʤŔ¤ą¤Ë¤¨¤é¤Ż´í¸ą¤Ę¤Ţ¤Í¤Ź¤Ç¤­¤Á¤ă¤¤¤Ţ¤š¤čĄŁ\n"
-#~ "ĄÖĽŃĽšĽďĄźĽÉ¤ňĽˇĽăĽÉĽŚ¤Ë¤ˇ¤Ţ¤š¤ŤĄ×¤Č¤¤¤Ă¤żźÁĚä¤ňżÖ¤Ť¤ě¤Ţ¤šĄŁ ¤ł¤Î¤č¤Ś¤ĘźÁ"
-#~ "Ěä¤ËĽŰĽóĽČ¤ËĹú¤¨¤é¤ě¤ë¤ó¤Ç¤š¤ŤĄŁ"
-
-#~ msgid "Use shadow file"
-#~ msgstr "ĽˇĽăĽÉĽŚĽŐĽĄĽ¤Ľë¤ňťČ¤Ś"
-
-#~ msgid "MD5"
-#~ msgstr "MD5"
-
-#~ msgid "Use MD5 passwords"
-#~ msgstr "MD5 ĽŃĽšĽďĄźĽÉ¤ňťČ¤Ś"
-
-#~ msgid "Search"
-#~ msgstr "¸Ąş÷"
-
-#~ msgid "Package"
-#~ msgstr "ĽŃĽĂĽąĄźĽ¸"
-
-#~ msgid "Tree"
-#~ msgstr "ĽÄĽęĄź"
-
-#~ msgid "Sort by"
-#~ msgstr "°Ę˛ź¤ÎĽ­Ąź¤ÇĽ˝ĄźĽČĄ§"
-
-#~ msgid "Category"
-#~ msgstr "źďÎŕ"
-
-#~ msgid "Installed packages"
-#~ msgstr "Ľ¤ĽóĽšĽČĄźĽëşŃ¤ß¤ÎĽŃĽĂĽąĄźĽ¸"
-
-#~ msgid "Available packages"
-#~ msgstr "Ľ¤ĽóĽšĽČĄźĽë¤ˇ¤Ć¤¤¤Ę¤¤ĽŃĽĂĽąĄźĽ¸"
-
-#~ msgid "Show only leaves"
-#~ msgstr "žÜşŮÉôĘŹ¤Ŕ¤ąÉ˝ź¨"
-
-#~ msgid "Expand all"
-#~ msgstr "ĽÄĽęĄź¤ň´°Á´¤Ë¤Î¤Đ¤ˇ¤­¤ë"
-
-#~ msgid "Collapse all"
-#~ msgstr "ĽÄĽęĄź¤ň´°Á´¤Ë˝Ě¤á¤ë"
-
-#~ msgid "Add location of packages"
-#~ msgstr "ĽŃĽĂĽąĄźĽ¸¤Î°ĚĂÖ¤ňÄɲĂÉ˝ź¨"
-
-#~ msgid "Update location"
-#~ msgstr "Ľ˘ĽĂĽ×ĽÇĄźĽČ¤š¤ë°ĚĂÖ"
-
-#~ msgid "Find Package"
-#~ msgstr "ĽŃĽĂĽąĄźĽ¸¤Î¸Ąş÷"
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "fsck źşÇÔĄ˘exit code %d ¤Ţ¤ż¤Ď signal %d"
-#~ msgid "Find Package containing file"
-#~ msgstr "°Ę˛ź¤ÎĽŐĽĄĽ¤Ľë¤ň´Ţ¤ŕĽŃĽĂĽąĄźĽ¸¤Î¸Ąş÷Ą§"
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Ľ°ĽéĽŐĽŁĽĂĽŻĽŤĄźĽÉ id: %s\n"
-#~ msgid "Toggle between Installed and Available"
-#~ msgstr "Ľ¤ĽóĽšĽČĄźĽëşŃ¤ß¤Č̤Ľ¤ĽóĽšĽČĄźĽë¤ňŔÚ¤ęÂؤ¨"
+#~ msgid "Choose options for server"
+#~ msgstr "ĽľĄźĽĐ¤ÎĽŞĽ×ĽˇĽçĽó¤ňÁޤó¤Ç˛ź¤ľ¤¤"
-#~ msgid "Checking dependencies"
-#~ msgstr "ĽŃĽĂĽąĄźĽ¸¤Î°Í¸´Řˇ¸¤ňÄ´¤Ů¤Ć¤¤¤Ţ¤š"
+#~ msgid "Monitor not configured"
+#~ msgstr "ĽâĽËĽż¤ŹŔßÄꤾ¤ě¤Ć¤Ţ¤ť¤ó"
-#~ msgid "The following packages are going to be uninstalled"
-#~ msgstr "°Ę˛ź¤ÎĽŃĽĂĽąĄźĽ¸¤ĎĽ˘ĽóĽ¤ĽóĽšĽČĄźĽë¤Ç¤­¤Ţ¤ť¤ó"
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Ľ°ĽéĽŐĽŁĽĂĽŻĽŤĄźĽÉ¤ŹŔßÄꤾ¤ě¤Ć¤Ţ¤ť¤ó"
-#~ msgid "Regexp"
-#~ msgstr "ŔľľŹÉ˝¸˝"
-
-#~ msgid "Which package are looking for"
-#~ msgstr "¤É¤ÎĽŃĽĂĽąĄźĽ¸¤ň¤ľ¤Ź¤ˇ¤Ć¤¤¤Ţ¤š¤Ť"
-
-#~ msgid "No match"
-#~ msgstr "°ěĂפš¤ë¤â¤Î¤Ź¤˘¤ę¤Ţ¤ť¤ó"
-
-#~ msgid "No more match"
-#~ msgstr "¤ł¤ě°Ęžĺ¤Ď¤ß¤Ä¤Ť¤ę¤Ţ¤ť¤ó"
-
-#~ msgid ""
-#~ "rpmdrake is currently in ``low memory'' mode.\n"
-#~ "I'm going to relaunch rpmdrake to allow searching files"
-#~ msgstr ""
-#~ "rpmdrake ¤Ď¸˝şßĄ˘ĽáĽâĽęÉÔ­¤Ë¤Ę¤Ă¤Ć¤¤¤Ţ¤šĄŁ\n"
-#~ "°ě˛órpmdrake¤ň¤ż¤Á¤˘¤˛¤Ę¤Ş¤ˇ¤ĆĄ˘ĽŐĽĄĽ¤Ľë¤Î¸Ąş÷¤ňÂł¤ą¤Ţ¤š¤Í"
-
-#~ msgid "Which file are you looking for?"
-#~ msgstr "¤É¤ÎĽŐĽĄĽ¤Ľë¤ň¤ľ¤Ź¤ˇ¤Ć¤¤¤Ţ¤š¤Ť"
-
-#~ msgid "What are looking for?"
-#~ msgstr "¤Ę¤Ë¤ň¤ľ¤Ź¤ˇ¤Ć¤¤¤Ţ¤š¤Ť"
-
-#~ msgid "Give a name (eg: `extra', `commercial')"
-#~ msgstr "ĚžÁ°¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄĘÎ㥧ĄÖĽ¨Ľ­ĽšĽČĽéĄ×ĄÖžŚÍѥץË"
-
-#~ msgid "Directory"
-#~ msgstr "ĽÇĽŁĽěĽŻĽČĽę"
-
-#~ msgid "No cdrom available (nothing in /mnt/cdrom)"
-#~ msgstr "CDROM¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤óĄĘ/mnt/cdrom¤Ë¤Ę¤Ë¤â¤˘¤ę¤Ţ¤ť¤óĄË"
-
-#~ msgid "URL of the directory containing the RPMs"
-#~ msgstr "RPMĽŃĽĂĽąĄźĽ¸¤Î¤˘¤ëĽÇĽŁĽěĽŻĽČĽę¤ÎURL"
-
-#~ msgid ""
-#~ "For FTP and HTTP, you need to give the location for hdlist\n"
-#~ "It must be relative to the URL above"
-#~ msgstr ""
-#~ "FTP ¤Č HTTP¤Ë¤Ä¤¤¤Ć¤ĎĄ˘hdlist¤Î°ĚĂÖ¤ňťŘÄꤡ¤Ę¤Ż¤Ć¤Ď¤Ę¤ę¤Ţ¤ť¤óĄŁ\n"
-#~ "žĺ¤ÎURL¤Č¤ÎÁęÂĐ°ĚĂ֤ǝŘÄꤡ¤Ţ¤š"
-
-#~ msgid "Please submit the following information"
-#~ msgstr "°Ę˛ź¤ÎžđĘó¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#~ msgid "%s is already in use"
-#~ msgstr "%s ¤Ď¤š¤Ç¤ËťČ¤ď¤ě¤Ć¤¤¤Ţ¤š"
-
-#~ msgid "Updating the RPMs base"
-#~ msgstr "RPM¤ÎĽŮĄźĽš¤ňššżˇĂć"
-
-#~ msgid "Going to remove entry %s"
-#~ msgstr "Ľ¨ĽóĽČĽę %s ¤ňžĂ¤ˇ¤Ţ¤š"
-
-#~ msgid "Finding leaves"
-#~ msgstr "ĽÄĽęĄź¤ÎžÜşŮ¤ň¸Ąş÷Ăć"
-
-#~ msgid "Finding leaves takes some time"
-#~ msgstr "ĽÄĽęĄź¤ÎžÜşŮ¤ň¸Ť¤Ä¤ą¤ë¤Î¤Ďťţ´Ö¤Ź¤Ť¤Ť¤ę¤Ţ¤š"
-
-#~ msgid "I have found an ISDN Card:\n"
-#~ msgstr "ISDNĽŤĄźĽÉ¤ň¤ß¤Ä¤ą¤Ţ¤ˇ¤ż:\n"
-
-#~ msgid "Other countries"
-#~ msgstr "ž¤Îšń"
-
-#~ msgid "In which country are you located ?"
-#~ msgstr "¤˘¤Ę¤ż¤Ź¤¤¤ë¤Î¤Ď¤É¤Îšń¤Ç¤š¤ŤĄŠ"
-
-#~ msgid "Alcatel modem"
-#~ msgstr "AlcatelĽâĽÇĽŕ"
-
-#~ msgid "ECI modem"
-#~ msgstr "ECI ĽâĽÇĽŕ"
-
-#~ msgid ""
-#~ "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
-#~ msgstr ""
-#~ "¤â¤ˇadslĽâĽÇĽŕ¤ŹalcatelŔ˝¤Ę¤éĄ˘alcatel¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ¤˝¤Ś¤Ç¤Ę¤ą¤ě¤Đ\n"
-#~ "ECI ¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤"
-
-#~ msgid "don't use pppoe"
-#~ msgstr "pppoe¤ňťČ¤ď¤Ę¤¤"
-
-#~ msgid "i18n (important)"
-#~ msgstr "i18n (˝ĹÍ×)"
-
-#~ msgid "i18n (very nice)"
-#~ msgstr "i18n (¤Č¤Ć¤âÁą¤¤)"
-
-#~ msgid "i18n (nice)"
-#~ msgstr "i18n (Áą¤¤)"
-
-#~ msgid "Which serial port is your mouse connected to?"
-#~ msgstr "ĽŢĽŚĽš¤Ď¤É¤ÎĽˇĽęĽ˘ĽëĽÝĄźĽČ¤Ë¤Ä¤Ę¤Ź¤Ă¤Ć¤¤¤Ţ¤š¤ŤĄŠ"
-
-#~ msgid "Czech"
-#~ msgstr "ĽÁĽ§Ľł"
-
-#~ msgid "Slovakian"
-#~ msgstr "ĽšĽíĽĐĽ­Ľ˘"
-
-#~ msgid "Could not install ipchains RPM with urpmi."
-#~ msgstr "ipchains RPM ¤ň urpmi ¤ÇĽ¤ĽóĽšĽČĄźĽë¤Ç¤­¤Ţ¤ť¤óĄŁ"
-
-#~ msgid "Could not install dhcp RPM with urpmi."
-#~ msgstr "dhcp RPM ¤ň urpmi ¤ÇĽ¤ĽóĽšĽČĄźĽë¤Ç¤­¤Ţ¤ť¤óĄŁ"
-
-#~ msgid "Could not install linuxconf RPM with urpmi."
-#~ msgstr "linuxconf RPM ¤ň urpmi ¤ÇĽ¤ĽóĽšĽČĄźĽë¤Ç¤­¤Ţ¤ť¤óĄŁ"
-
-#~ msgid "Could not install bind RPM with urpmi."
-#~ msgstr "bind RPM ¤ň urpmi ¤ÇĽ¤ĽóĽšĽČĄźĽë¤Ç¤­¤Ţ¤ť¤óĄŁ"
-
-#~ msgid "Could not install caching-nameserver RPM with urpmi."
-#~ msgstr "caching-nameserver RPM ¤ň urpmi ¤ÇĽ¤ĽóĽšĽČĄźĽë¤Ç¤­¤Ţ¤ť¤óĄŁ"
-
-#~ msgid ""
-#~ "The system is now connected to Internet! Congratulation.\n"
-#~ "Feel free to launch draknet at any time to setup your connection.\n"
-#~ msgstr ""
-#~ "ĽŢĽˇĽó¤ĎĚľťöĽ¤ĽóĽżĄźĽÍĽĂĽČ¤ËŔÜÂł¤ľ¤ě¤Ţ¤ˇ¤żĄŁ¤Ş¤á¤Ç¤Č¤ŚĄŞ\n"
-#~ "ŔÜÂłŔßÄę¤Ë¤ĎĄ˘¤¤¤Ä¤Ç¤â draknet ¤ňľŻĆ°¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-
-# NOTE: this message will be displayed at boot time; that is
-# only the ascii charset will be available on most machines
-# so use only 7bit for this message (and do transliteration or
-# leave it in English, as it is the best for your language)
-#
-#~ msgid ""
-#~ "Welcome to %s the operating system chooser!\n"
-#~ "\n"
-#~ msgstr ""
-#~ "%s operating system chooser-he youkosou!\n"
-#~ "\n"
-
-#~ msgid "Reconfigure local network"
-#~ msgstr "LAN ¤ňşĆŔßÄꤚ¤ë"
-
-#~ 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 carefully this document. This document is a license agreement "
-#~ "between you and \n"
-#~ "MandrakeSoft S.A., 43, rue d'Aboukir, 75002 Paris - France, 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. 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"
-#~ "Some versions of the Software Products may contain components which are "
-#~ "not governed by the GPL \n"
-#~ "License or similar agreements. Each such component is then governed by "
-#~ "the terms and conditions \n"
-#~ "of its own specific license. Please read carefully and comply with such "
-#~ "specific licenses before \n"
-#~ "you install, use or redistribute the said components. Such licenses will "
-#~ "in general prevent the \n"
-#~ "transfer, duplication (except for backup purposes), redistribution, "
-#~ "reverse engineering, \n"
-#~ "de-assembly, \n"
-#~ "de-compilation or modification of the component. Any breach of agreement "
-#~ "will immediately terminate \n"
-#~ "your rights under the specific license. Unless the specific license terms "
-#~ "grant you such rights, \n"
-#~ "you usually cannot install the programs on more than one system, or adapt "
-#~ "it to be used on a \n"
-#~ "network. \n"
-#~ "In doubt, please contact directly the distributor or editor of the "
-#~ "component. Transfer to third \n"
-#~ "parties or copying of such components including the documentation is "
-#~ "usually forbidden.\n"
-#~ "\n"
-#~ "\n"
-#~ "3. 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,\n"
-#~ "by all means and for all purposes.\n"
-#~ "\"Mandrake\", \"Mandrake Linux\" and associated logos are trademarks of "
-#~ "MandrakeSoft S.A. All rights \n"
-#~ "are \n"
-#~ "reserved. The duplication is forbidden without prior written consent by "
-#~ "MandrakeSoft S.A.\n"
-#~ "\n"
-#~ "\n"
-#~ "4. Limited Warranty\n"
-#~ "\n"
-#~ "The Software Products and attached documentation are provided \"as is\", "
-#~ "with no warranty, to the \n"
-#~ "extent permitted by law. Should the Software Products be defective, "
-#~ "MandrakeSoft S.A. will at its \n"
-#~ "own will either replace the Software Products, or reimburse the paid "
-#~ "fee.\n"
-#~ "This limited warranty is void if you fail to comply to the "
-#~ "recommendations, instructions and \n"
-#~ "conditions \n"
-#~ "of use listed in the documentation or license agreements of the Software "
-#~ "Products.\n"
-#~ "To the extent permitted by law, MandrakeSoft S.A. will in no "
-#~ "circumstances be liable for any \n"
-#~ "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"
-#~ "judgement, or any other consequential loss) arising out of the use or "
-#~ "inability to use the \n"
-#~ "Software \n"
-#~ "Products, even if MandrakeSoft S.A. has been advised of the possibility "
-#~ "or occurance 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 \n"
-#~ "damages for loss of business, interruption of business, financial loss, "
-#~ "legal fees and penalties \n"
-#~ "resulting from a court judgement, or any other consequential loss) "
-#~ "arising out of the possession \n"
-#~ "and \n"
-#~ "use of software components or arising out of downloading software "
-#~ "components from one of \n"
-#~ "Mandrake Linux \n"
-#~ "sites which are prohibited or restricted in some countries by local "
-#~ "laws. This limited liability \n"
-#~ "applies to, but is not restricted to, the strong cryptography components "
-#~ "included in the Software \n"
-#~ "Products.\n"
-#~ "\n"
-#~ "\n"
-#~ "5. Governing Laws \n"
-#~ "\n"
-#~ "If any portion of this agreement is held void, illegal or inapplicable by "
-#~ "a court judgement, 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, \n"
-#~ "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"
-#~ "43, rue d'Aboukir, 75002 Paris - France\n"
-#~ msgstr ""
-#~ " 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 carefully this document. This document is a license agreement "
-#~ "between you and \n"
-#~ "MandrakeSoft S.A., 43, rue d'Aboukir, 75002 Paris - France, 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. 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"
-#~ "Some versions of the Software Products may contain components which are "
-#~ "not governed by the GPL \n"
-#~ "License or similar agreements. Each such component is then governed by "
-#~ "the terms and conditions \n"
-#~ "of its own specific license. Please read carefully and comply with such "
-#~ "specific licenses before \n"
-#~ "you install, use or redistribute the said components. Such licenses will "
-#~ "in general prevent the \n"
-#~ "transfer, duplication (except for backup purposes), redistribution, "
-#~ "reverse engineering, \n"
-#~ "de-assembly, \n"
-#~ "de-compilation or modification of the component. Any breach of agreement "
-#~ "will immediately terminate \n"
-#~ "your rights under the specific license. Unless the specific license terms "
-#~ "grant you such rights, \n"
-#~ "you usually cannot install the programs on more than one system, or adapt "
-#~ "it to be used on a \n"
-#~ "network. \n"
-#~ "In doubt, please contact directly the distributor or editor of the "
-#~ "component. Transfer to third \n"
-#~ "parties or copying of such components including the documentation is "
-#~ "usually forbidden.\n"
-#~ "\n"
-#~ "\n"
-#~ "3. 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,\n"
-#~ "by all means and for all purposes.\n"
-#~ "\"Mandrake\", \"Mandrake Linux\" and associated logos are trademarks of "
-#~ "MandrakeSoft S.A. All rights \n"
-#~ "are \n"
-#~ "reserved. The duplication is forbidden without prior written consent by "
-#~ "MandrakeSoft S.A.\n"
-#~ "\n"
-#~ "\n"
-#~ "4. Limited Warranty\n"
-#~ "\n"
-#~ "The Software Products and attached documentation are provided \"as is\", "
-#~ "with no warranty, to the \n"
-#~ "extent permitted by law. Should the Software Products be defective, "
-#~ "MandrakeSoft S.A. will at its \n"
-#~ "own will either replace the Software Products, or reimburse the paid "
-#~ "fee.\n"
-#~ "This limited warranty is void if you fail to comply to the "
-#~ "recommendations, instructions and \n"
-#~ "conditions \n"
-#~ "of use listed in the documentation or license agreements of the Software "
-#~ "Products.\n"
-#~ "To the extent permitted by law, MandrakeSoft S.A. will in no "
-#~ "circumstances be liable for any \n"
-#~ "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"
-#~ "judgement, or any other consequential loss) arising out of the use or "
-#~ "inability to use the \n"
-#~ "Software \n"
-#~ "Products, even if MandrakeSoft S.A. has been advised of the possibility "
-#~ "or occurance 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 \n"
-#~ "damages for loss of business, interruption of business, financial loss, "
-#~ "legal fees and penalties \n"
-#~ "resulting from a court judgement, or any other consequential loss) "
-#~ "arising out of the possession \n"
-#~ "and \n"
-#~ "use of software components or arising out of downloading software "
-#~ "components from one of \n"
-#~ "Mandrake Linux \n"
-#~ "sites which are prohibited or restricted in some countries by local "
-#~ "laws. This limited liability \n"
-#~ "applies to, but is not restricted to, the strong cryptography components "
-#~ "included in the Software \n"
-#~ "Products.\n"
-#~ "\n"
-#~ "\n"
-#~ "5. Governing Laws \n"
-#~ "\n"
-#~ "If any portion of this agreement is held void, illegal or inapplicable by "
-#~ "a court judgement, 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, \n"
-#~ "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"
-#~ "43, rue d'Aboukir, 75002 Paris - France\n"
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "˛ňÁüĹ٤ŹÁŞÂň¤ľ¤ě¤Ć¤Ţ¤ť¤ó"
#~ msgid ""
-#~ "Your computer can be configured to share its Internet connection.\n"
#~ "\n"
+#~ "try to change some parameters"
#~ msgstr ""
-#~ "ĽłĽóĽÔĽĺĄźĽż¤ĎĽ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤ňśŚÍ­¤š¤ë¤č¤Ś¤ËŔßÄę¤Ç¤­¤Ţ¤šĄŁ\n"
#~ "\n"
+#~ "¤¤¤Ż¤Ä¤ŤĽŃĽéĽáĄźĽż¤ňĘѤ¨¤Ć¤ß¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#~ msgid "Everything has been configured.\n"
-#~ msgstr "ŔßÄꤏÁ´Éô˝Ş¤ď¤ę¤Ţ¤ˇ¤żĄŁ\n"
+#~ msgid "An error occurred:"
+#~ msgstr "Ľ¨ĽéĄźČŻŔ¸"
-#~ msgid "Connect to Internet with a normal modem"
-#~ msgstr "ÉáÄ̤μâĽÇĽŕ¤ÇĽ¤ĽóĽżĄźĽÍĽĂĽČ¤ËŔÜÂł"
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "¤˘¤Č %d ÉäÇĚá¤ę¤Ţ¤š"
-#~ msgid "Connect to Internet using ISDN"
-#~ msgstr "ISDN¤ňťČ¤Ă¤ĆĽ¤ĽóĽżĄźĽÍĽĂĽČ¤ËŔÜÂł"
+#~ msgid "Is this the correct setting?"
+#~ msgstr "ŔßÄę¤Ď¤ł¤ě¤Ç¤¤¤¤¤Ç¤š¤ŤĄŠ"
-#~ msgid "Connect to Internet using DSL (or ADSL)"
-#~ msgstr "DSL(¤Ţ¤ż¤ĎADSL)¤ňťČ¤Ă¤ĆĽ¤ĽóĽżĄźĽÍĽĂĽČ¤ËŔÜÂł"
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Ľ¨ĽéĄźČŻŔ¸Ą¤¤¤¤Ż¤Ä¤Ť¤ÎĽŃĽéĽáĄźĽż¤ňĘѤ¨¤Ć¤ß¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#~ msgid "Connect to Internet using Cable"
-#~ msgstr "ĽąĄźĽÖĽë¤ňťČ¤Ă¤ĆĽ¤ĽóĽżĄźĽÍĽĂĽČ¤ËŔÜÂł"
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 ĽľĄźĽĐ: %s"
-#~ msgid ""
-#~ "Time (secs) of inactivity after which\n"
-#~ "it hangs up. (leave blank to disable it)"
-#~ msgstr ""
-#~ "°ěÄęťţ´ÖĄĘÉĂĄËłčĆ°¤Ź¤Ę¤¤¤ČĄ˘źŤĆ°ĹޤËĹĹĎäňŔÚ¤ę¤Ţ¤šĄŁ\n"
-#~ "ÉĂżô¤ňťŘÄꤡ¤Ţ¤ˇ¤ç¤Ś (źŤĆ°ŔÚĂǤˇ¤ż¤Ż¤Ę¤ą¤ě¤ĐśőÇň¤Î¤Ţ¤ŢĄË"
+#~ msgid "Show all"
+#~ msgstr "Á´¤Ć¤ňÉ˝ź¨"
-#~ msgid "Germany (1TR6)"
-#~ msgstr "ĽÉĽ¤ĽÄ (1TR6)"
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "X Window System ¤ÎŔßÄę¤Î˝ŕČ÷"
-#~ msgid "What do you wish to do?"
+#~ msgid "What do you want to do?"
#~ msgstr "¤É¤Ś¤ˇ¤Ţ¤š¤ŤĄŠ"
-#~ msgid "Install/Rescue"
-#~ msgstr "Ľ¤ĽóĽšĽČĄźĽëĄżĽěĽšĽ­ĽĺĄź"
+#~ msgid "Change Monitor"
+#~ msgstr "ĽâĽËĽż¤ÎĘŃšš"
-#~ msgid "Rescue"
-#~ msgstr "ĽěĽšĽ­ĽĺĄź"
+#~ msgid "Change Graphics card"
+#~ msgstr "Ľ°ĽéĽŐĽŁĽĂĽŻĽŤĄźĽÉ¤ÎĘŃšš"
-#~ msgid "Which partition type do you want?"
-#~ msgstr "¤É¤ÎĽŃĄźĽĆĽŁĽˇĽçĽóĽżĽ¤Ľ×¤Ë¤ˇ¤Ţ¤š¤ŤĄŠ"
+#~ msgid "Change Server options"
+#~ msgstr "ĽľĄźĽĐĽŞĽ×ĽˇĽçĽó¤ÎĘŃšš"
-#~ msgid ""
-#~ "Choose \"Install\" if there are no previous versions of GNU/Linux\n"
-#~ "installed, or if you wish to use multiple distributions or versions.\n"
-#~ "\n"
-#~ "Choose \"Rescue\" if you wish to rescue a version of Mandrake Linux "
-#~ "already installed.\n"
-#~ "\n"
-#~ "\n"
-#~ "Select:\n"
-#~ "\n"
-#~ " - Recommended: If you have never installed GNU/Linux before, choose "
-#~ "this.\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!\n"
-#~ msgstr ""
-#~ "GNU/Linux¤ÎĽ¤ĽóĽšĽČĄźĽë¤Ź˝é¤á¤Ć¤ŤĄ˘ĘŁżô¤ÎĽÇĽŁĽšĽČĽęĽÓĽĺĄźĽˇĽçĽó¤ä\n"
-#~ "ĽĐĄźĽ¸ĽçĽó¤ČśŚÂ¸¤ľ¤ť¤ż¤¤¤Č¤­¤Ë¤ĎĄ˘ĄÖĽ¤ĽóĽšĽČĄźĽëĄ×¤ňÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "\n"
-#~ "¤š¤Ç¤ËĽ¤ĽóĽšĽČĄźĽë¤ş¤ß¤ÎMandrake Linux¤ňľßşŃ¤ˇ¤ż¤¤¤Ę¤éĄ˘ĄÖĽěĽšĽ­ĽĺĄźĄ×¤ň\n"
-#~ "ÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "ÁŞÂň¤ÎĚÜ°Â:\n"
-#~ "\n"
-#~ " - Á´źŤĆ°(żäžŠ): GNU/Linux¤ÎĽ¤ĽóĽšĽČĄźĽë¤Ź˝é¤á¤Ć¤Ę¤éĄ˘¤ł¤ě¤ňÁŞ¤Ó¤Ţ¤ˇ¤ç"
-#~ "¤ŚĄŁ\n"
-#~ "\n"
-#~ " - ĽŤĽšĽżĽŢĽ¤Ľş: GNU/Linux ¤ËžÜ¤ˇ¤ą¤ě¤ĐĄ˘źŤĘŹ¤ÎĽŢĽˇĽó¤Îźç¤ĘťČ¤¤Ęý¤Ë\n"
-#~ " ¤˘¤ď¤ť¤ĆÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁžÜ¤ˇ¤Ż¤Ď°Ę˛ź¤ňť˛žČ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "\n"
-#~ " - Ľ¨Ľ­ĽšĽŃĄźĽČ: ¤ł¤ě¤ĎËÜĹö¤ËGNU/Linux¤ËžÜ¤ˇ¤¤żÍ¤ŹĄ˘Čóžď¤ËĆĂźě¤Ę\n"
-#~ " Ľ¤ĽóĽšĽČĄźĽë¤ň¤ˇ¤ż¤¤žěšç¤ËÁŞ¤Ó¤Ţ¤šĄŁĄÖĽŤĽšĽżĽŢĽ¤ĽşĄ×\n"
-#~ " ¤ÎĽ¤ĽóĽšĽČĄźĽë¤ČĆą¤¸¤ŻĄ˘źŤĘŹ¤ÎĽˇĽšĽĆĽŕ¤ÎťČ¤¤Ęý¤ňÁŞ¤Ů¤Ţ¤šĄŁ\n"
-#~ " ¤Ç¤âĄ˘´°Á´¤ËźŤżŽ¤Ź¤Ę¤¤¤Ę¤éĄ˘ĄÖŔäÂФ˥פł¤ě¤ĎťČ¤ď¤Ę¤¤¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŞ\n"
+#~ msgid "Change Resolution"
+#~ msgstr "˛ňÁüĹ٤ÎĘŃšš"
-#~ msgid ""
-#~ "At this point, you may choose what partition(s) to use to install\n"
-#~ "your Mandrake Linux system if they have been already defined (from a\n"
-#~ "previous install of GNU/Linux or from another partitioning tool). In "
-#~ "other\n"
-#~ "cases, hard drive partitions must be defined. This operation consists of\n"
-#~ "logically dividing the computer's hard drive capacity into separate\n"
-#~ "areas for use.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you have to create new partitions, use \"Auto allocate\" to "
-#~ "automatically\n"
-#~ "create partitions for GNU/Linux. You can select the disk for partitioning "
-#~ "by\n"
-#~ "clicking on \"hda\" for the first IDE drive,\n"
-#~ "\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
-#~ "\n"
-#~ "\n"
-#~ "Two common partition are: the root partition (/), which is the starting\n"
-#~ "point of the filesystem's directory hierarchy, and /boot, which contains\n"
-#~ "all files necessary to start the operating system when the\n"
-#~ "computer is first turned on.\n"
-#~ "\n"
-#~ "\n"
-#~ "Because the effects of this process are usually irreversible, "
-#~ "partitioning\n"
-#~ "can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-#~ "simplifies the process so that it must not be. Consult the documentation\n"
-#~ "and take your time before proceeding.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can reach any option using the keyboard: navigate through the "
-#~ "partitions\n"
-#~ "using Tab and Up/Down arrows. 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"
-#~ msgstr ""
-#~ "GNU/LinuxÍѤμѥźĽĆĽŁĽˇĽçĽó¤Î˝ŕČ÷¤Ź¤Ç¤­¤Ć¤¤¤ě¤ĐĄĘÁ°¤Ë GNU/Linux \n"
-#~ "¤ňĽ¤ĽóĽšĽČĄźĽë¤ˇ¤ż¤ęĄ˘\n"
-#~ "Ę̤μ楟ĽĆĽŁĽęĽĆĽŁ¤ÇĽŃĄźĽĆĽŁĽˇĽçĽó¤ňşî¤Ă¤żžěšçĄËĄ˘¤É¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤Ë\n"
-#~ "Mandrake LinuxĽˇĽšĽĆĽŕ¤ňĽ¤ĽóĽšĽČĄźĽë¤š¤ë¤Ť¤ňÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "¤â¤ˇĽŃĄźĽĆĽŁĽˇĽçĽó¤ňşî¤Ă¤Ć¤¤¤Ę¤ą¤ě¤ĐĄ˘ĽĎĄźĽÉĽÇĽŁĽšĽŻ¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤ň\n"
-#~ "¤ł¤ł¤Çşî¤ę¤Ţ¤šĄŁĽŃĄźĽĆĽŁĽˇĽçĽó¤Č¤¤¤Ś¤Î¤ĎĄ˘ĽłĽóĽÔĽĺĄźĽż¤ÎĽĎĄźĽÉĽÇĽŁĽšĽŻ\n"
-#~ "¤ňĚÜĹŞ¤Ë¤˘¤ď¤ť¤ĆĎŔÍýĹŞ¤ËśčŔڤ뤳¤Č¤Ç¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "żˇ¤ˇ¤ŻĽŃĄźĽĆĽŁĽˇĽçĽó¤ň¤Ä¤Ż¤ë¤Ę¤éĄ˘ĄÖźŤĆ°łä¤ęĹö¤ĆĄ×¤ňÁŞ¤Ů¤ĐĄ˘źŤĆ°ĹޤË\n"
-#~ "LinuxÍѤμѥźĽĆĽŁĽˇĽçĽó¤Ź¤Ç¤­¤˘¤Ź¤ę¤Ţ¤šĄŁĽŃĄźĽĆĽŁĽˇĽçĽó¤ň¤Ä¤Ż¤ëĽĎĄźĽÉ\n"
-#~ "ĽÇĽŁĽšĽŻ¤ňÁŞ¤Ö¤Č¤­¤ĎĄ˘şÇ˝é¤ÎIDEĽÉĽéĽ¤ĽÖ¤ŹĄÖhdaĄ×Ą˘2ČÖĚܤŹĄÖhdbĄ×Ą˘şÇ˝é\n"
-#~ "¤ÎSCSIĽÉĽéĽ¤ĽÖ¤ŹĄÖsdaĄ×Ą˘¤Č¤¤¤Śśńšç¤Ë¤Ę¤ę¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "¤č¤Ż¤˘¤ëĽŃĄźĽĆĽŁĽˇĽçĽó¤ÎŔÚ¤ęĘý¤Č¤ˇ¤Ć¤ĎĄ˘rootĽŃĄźĽĆĽŁĽˇĽçĽó(/) ¤Č\n"
-#~ "bootĽŃĄźĽĆĽŁĽˇĽçĽó(/boot) ¤ňşî¤ę¤Ţ¤šĄŁroot¤ĎĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕ¤Î\n"
-#~ "ĽÇĽŁĽěĽŻĽČĽę¤Î¤Ć¤Ă¤Ú¤ó¤ÇĄ˘/boot¤Ë¤ĎĽłĽóĽÔĽĺĄźĽż¤ÎĽšĽ¤ĽĂĽÁ¤ňĆţ¤ě¤ż\n"
-#~ "¤Č¤­¤ËľŻĆ°¤ËÉŹÍפʼռĄĽ¤Ľë¤ŹĂÖ¤¤¤Ć¤˘¤ë¤Č¤ł¤í¤Ç¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "ĽŃĄźĽĆĽŁĽˇĽçĽó¤ňŔÚ¤ë¤ČĄ˘¤Ő¤Ä¤Ś¤Ď¤˝¤ł¤ÎĽÇĄźĽż¤ĎÁ´ÉôžĂ¤¨¤ĆĄ˘¤â¤Č¤Ë\n"
-#~ "Ěá¤ę¤Ţ¤ť¤óĄŁ¤Ŕ¤Ť¤éĽŃĄźĽĆĽŁĽˇĽçĽó¤ňŔÚ¤ë¤Î¤ĎĄ˘˝éż´źÔ¤Ë¤Ď¤Ş¤Ă¤Ť¤Ę¤¤\n"
-#~ "¤Ç¤š¤ˇĄ˘¤Č¤Ă¤Ć¤âľ¤Čč¤ě¤š¤ë¤â¤Î¤Ç¤šĄŁ¤˝¤Ś¤Ę¤é¤Ę¤¤¤č¤Ś¤ËĄ˘DiskDrake\n"
-#~ "¤Ď¤ł¤ÎĽ×ĽíĽťĽš¤ň¤Ę¤ë¤Ů¤Ż´ĘĂą¤Ë¤ˇ¤Ţ¤šĄŁ¤Ţ¤ş¤ĎĽÉĽ­ĽĺĽáĽóĽĆĄźĽˇĽçĽó¤ň\n"
-#~ "Ćɤó¤ÇĄ˘Ŕč¤ËżĘ¤ŕÁ°¤Ë¤¸¤Ă¤Ż¤ęľ¤¤ňÍî¤ÁĂ夹¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "¤É¤ÎĽŞĽ×ĽˇĽçĽó¤âĄ˘Ľ­ĄźĽÜĄźĽÉ¤ÇÁŞ¤Ů¤Ţ¤šĄŁĽŃĄźĽĆĽŁĽˇĽçĽó¤ňÁŞ¤Ö¤Ë¤ĎĄ˘\n"
-#~ "ĽżĽÖ¤Čžĺ˛ź¤ÎĽŤĄźĽ˝ĽëĽ­Ąź¤ňťČ¤¤¤Ţ¤ˇ¤ç¤ŚĄŁĽŃĄźĽĆĽŁĽˇĽçĽó¤ňÁޤó¤Ŕ¤éĄ˘\n"
-#~ "źĄ¤ÎĽ­Ąź¤ŹťČ¤¨¤Ţ¤šĄ§\n"
-#~ "\n"
-#~ "- Ctrl-c żˇ¤ˇ¤¤ĽŃĄźĽĆĽŁĽˇĽçĽó¤ňşî¤ëĄĘśő¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤ňÁޤó¤ŔžěšçĄË\n"
-#~ "\n"
-#~ "- Ctrl-d ¤˝¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤ňşď˝ü\n"
-#~ "\n"
-#~ "- Ctrl-m ĽŢĽŚĽóĽČĽÝĽ¤ĽóĽČ¤ÎŔßÄę\n"
+#~ msgid "Show information"
+#~ msgstr "žđĘó¤ňÉ˝ź¨"
-#~ msgid ""
-#~ "Any partitions that have been newly defined must be formatted for\n"
-#~ "use (formatting meaning creating a filesystem). At this time, you may\n"
-#~ "wish to re-format some already existing partitions to erase the data\n"
-#~ "they contain. Note: it is not necessary to re-format pre-existing\n"
-#~ "partitions, particularly if they contain files or data you wish to keep.\n"
-#~ "Typically retained are /home and /usr/local."
-#~ msgstr ""
-#~ "żˇ¤ˇ¤Żşî¤Ă¤żĽŃĄźĽĆĽŁĽˇĽçĽó¤Ď¤š¤Ů¤ĆĄ˘ĽŐĽŠĄźĽŢĽĂĽČ¤ˇ¤Ę¤¤¤ČťČ¤¨¤Ţ¤ť¤ó\n"
-#~ "ĄĘĽŐĽŠĄźĽŢĽĂĽČ¤Č¤¤¤Ś¤Î¤ĎĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕ¤ň¤Ä¤Ż¤ë¤ł¤Č¤Ç¤šĄËĄŁ¤ľ¤é¤Ë\n"
-#~ "´ű¸¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤ňĽŐĽŠĄźĽŢĽĂĽČ¤ˇ¤ĆĄ˘¤˝¤ł¤ÎĽÇĄźĽż¤ňžĂľî¤â¤Ç¤­¤Ţ¤šĄŁ\n"
-#~ "Ăí°ŐĄ§´ű¸¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤ĎĄ˘ĽŐĽŠĄźĽŢĽĂĽČ¤ˇ¤Ę¤Ş¤šÉŹÍפϤ˘¤ę¤Ţ¤ť¤óĄŁ\n"
-#~ "ĆäËĘݸ¤ˇ¤ż¤¤ĽÇĄźĽżĄĘ/home ¤Č /usr/local¤Ę¤ÉĄË¤Ź¤˘¤ě¤ĐĄ˘ĽŐĽŠĄźĽŢĽĂĽČ\n"
-#~ "¤ˇ¤Ć¤Ď¤¤¤ą¤Ţ¤ť¤óĄŁ"
-
-#~ msgid ""
-#~ "The packages selected are now being installed. This operation\n"
-#~ "should take a few minutes unless you have chosen to upgrade an\n"
-#~ "existing system, in that case it can take more time even before\n"
-#~ "upgrade starts."
-#~ msgstr ""
-#~ "Áޤó¤ŔĽŃĽĂĽąĄźĽ¸¤ňĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ć¤¤¤Ţ¤šĄŁ¤ł¤ě¤Ë¤ĎżôĘŹ¤Ť¤Ť¤ę¤Ţ¤š¤čĄŁ\n"
-#~ "´ű¸ĽˇĽšĽĆĽŕ¤ÎĽ˘ĽĂĽ×Ľ°ĽěĄźĽÉ¤ňÁޤó¤Ŕžěšç¤ĎĄ˘ťöÁ°¤ËÄ´¤Ů¤ë¤ł¤Č¤ŹÂż¤¤¤Î\n"
-#~ "¤ÇĄ˘¤â¤Ă¤Č¤Ť¤Ť¤ę¤Ţ¤šĄŁ"
+#~ msgid "Test again"
+#~ msgstr "¤â¤Ś°ě˛óĽĆĽšĽČ"
#~ msgid ""
-#~ "If DrakX failed to find your mouse, or if you want to\n"
-#~ "check what it has done, you will be presented the list of mice\n"
-#~ "above.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you agree with DrakX's settings, just click 'Ok'.\n"
-#~ "Otherwise you may choose the mouse that more closely matches your own\n"
-#~ "from the menu above.\n"
-#~ "\n"
-#~ "\n"
-#~ "In case of a serial mouse, you will also have to tell DrakX\n"
-#~ "which serial port it is connected to."
+#~ "Your HP multi-function device was configured automatically to be able to "
+#~ "scan. Now you can scan from the command line with \"ptal-hp %s scan ..."
+#~ "\". Scanning via a graphical interface or from the GIMP is not supported "
+#~ "yet for your device. More information you will find in the \"/usr/share/"
+#~ "doc/hpoj-0.8/ptal-hp-scan.html\" file on your system. If you have an HP "
+#~ "LaserJet 1100 or 1200 you can only scan when you have the scanner option "
+#~ "installed.\n"
+#~ "\n"
+#~ "Do not use \"scannerdrake\" for this device!"
#~ msgstr ""
-#~ "¤â¤ˇ DrakX ¤ŹĽŢĽŚĽš¤ň¸Ť¤Ä¤ą¤é¤ě¤Ę¤Ť¤Ă¤ż¤ęĄ˘˛ż¤ŹÁŞ¤Đ¤ě¤ż¤ŤĽÁĽ§ĽĂĽŻ\n"
-#~ "¤ˇ¤ż¤Ť¤Ă¤ż¤ę¤š¤ë¤Č¤­¤ĎĄ˘žĺ¤ËĽŢĽŚĽš¤Î°ěÍ÷¤Ź˝Đ¤Ć¤Ż¤ë¤Ď¤ş¤Ç¤šĄŁ\n"
+#~ "HP ÂżľĄÇ˝ĽÇĽĐĽ¤Ľš¤ňźŤĆ°ŔßÄꤡ¤ĆĄ˘ĽšĽ­ĽăĽĘ¤âťČ¤¨¤ë¤č¤Ś¤Ë¤ˇ¤Ţ¤ˇ¤żĄŁ¤ł¤ě¤ÇĽł"
+#~ "ĽŢĽóĽÉĽéĽ¤Ľó¤Ť¤é\"ptal-hp %s scan ...\"¤ÇĽšĽ­ĽăĽó¤Ź¤Ç¤­¤Ţ¤šĄŁĽ°ĽéĽŐĽŁĽĂĽŻ"
+#~ "Ľ¤ĽóĽżĄźĽŐĽ§ĄźĽš¤äGIMP¤Ť¤é¤ÎĽšĽ­ĽăĽó¤ĎĄ˘¤ł¤ÎĽÇĽĐĽ¤Ľš¤Ç¤Ď¤Ţ¤ŔĽľĽÝĄźĽČ¤ľ¤ě¤Ć"
+#~ "¤¤¤Ţ¤ť¤óĄŁžÜ¤ˇ¤Ż¤Ď\"/usr/share/doc/hpoj-0.8/ptal-hp-scan.html\" ¤ňť˛žČ¤ˇ¤Ć"
+#~ "¤Ż¤Ŕ¤ľ¤¤ĄŁHP LaserJet 1100 ¤Ť 1200 ¤Îžěšç¤Ë¤ĎĄ˘ĽšĽ­ĽăĽĘĽŞĽ×ĽˇĽçĽó¤ŹĽ¤ĽóĽš"
+#~ "ĽČĄźĽë¤ˇ¤Ć¤¤¤Ę¤¤¤ČĽŔĽá¤Ç¤šĄŁ\n"
#~ "\n"
-#~ "\n"
-#~ "DrakX ¤Î¤ä¤Ă¤żŔßÄę¤Ç¤č¤ą¤ě¤ĐĄ˘ĄÖOKĄ×¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "ŔßÄꤏ¤Á¤Ź¤Ă¤Ć¤¤¤ż¤éĄ˘źŤĘŹ¤ÎĽŢĽŚĽš¤Ë¤¤¤Á¤Đ¤ó\n"
-#~ "śá¤¤źďÎŕ¤ÎĽŢĽŚĽš¤ňĽáĽËĽĺĄź¤Ť¤éÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "ĽˇĽęĽ˘ĽëĽŢĽŚĽš¤ňťČ¤Ă¤Ć¤¤¤ë¤Č¤­¤Ë¤ĎĄ˘¤˝¤ě¤Ź¤Ä¤Ę¤Ź¤Ă¤Ć¤¤¤ëĽˇĽęĽ˘ĽëĽÝĄźĽČ\n"
-#~ "¤âťŘÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
+#~ "¤ł¤ÎĽÇĽĐĽ¤Ľš¤Ç¤Ď\"scannerdrake\" ¤ĎťČ¤ď¤Ę¤¤¤Ç¤Ż¤Ŕ¤ľ¤¤!"
-#~ msgid ""
-#~ "This section is dedicated to configuring a local area\n"
-#~ "network (LAN) or a modem.\n"
-#~ "\n"
-#~ "Choose \"Local LAN\" and DrakX will\n"
-#~ "try to find an Ethernet adapter on your machine. PCI adapters\n"
-#~ "should be found and initialized automatically.\n"
-#~ "However, if your peripheral is ISA, autodetection will not work,\n"
-#~ "and you will have to choose a driver from the list that will appear "
-#~ "then.\n"
-#~ "\n"
-#~ "\n"
-#~ "As for SCSI adapters, you can let the driver probe for the adapter\n"
-#~ "in the first time, otherwise you will have to specify the options\n"
-#~ "to the driver that you will have fetched from documentation of your\n"
-#~ "hardware.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you install a Mandrake Linux system on a machine which is part\n"
-#~ "of an already existing network, the network administrator will\n"
-#~ "have given you all necessary information (IP address, network\n"
-#~ "submask or netmask for short, and hostname). If you're setting\n"
-#~ "up a private network at home for example, you should choose\n"
-#~ "addresses.\n"
-#~ "\n"
-#~ "\n"
-#~ "Choose \"Dialup with modem\" and the Internet connection with\n"
-#~ "a modem will be configured. DrakX will try to find your modem,\n"
-#~ "if it fails you will have to select the right serial port where\n"
-#~ "your modem is connected to."
-#~ msgstr ""
-#~ "¤ł¤ł¤Ç¤ĎĄ˘ĽíĄźĽŤĽëĽ¨ĽęĽ˘ĽÍĽĂĽČĽďĄźĽŻĄĘLANĄË¤ŤĽâĽÇĽŕ¤ÎŔßÄę¤ň¤ˇ¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "ĄÖĽíĄźĽŤĽë LANĄ×¤ňÁŞ¤Ö¤ČĄ˘DrakX ¤ĎĽŢĽˇĽó¤ÎĽ¤ĄźĽľĽÍĽĂĽČĽ˘ĽŔĽ×Ľż¤ňĂľ¤ˇ\n"
-#~ "¤Ţ¤šĄŁPCI¤ÎĽ˘ĽŔĽ×Ľż¤ĎźŤĆ°Ĺޤ˸Ť¤Ä¤Ť¤Ă¤ĆŔßÄꤾ¤ě¤ë¤Ď¤ş¤Ç¤šĄŁ\n"
-#~ "¤â¤ˇ¤ŞťČ¤¤¤ÎĽ˘ĽŔĽ×Ľż¤ŹISA ¤Ę¤éĄ˘źŤĆ°¤Ç¤Ď¸Ą˝Đ¤Ç¤­¤Ţ¤ť¤óĄŁ¤ł¤ÎžěšçĄ˘\n"
-#~ "¤˘¤Č¤Ť¤é°ěÍ÷É˝¤Ź˝Đ¤Ć¤Ż¤ë¤Î¤ÇĄ˘¤˝¤ł¤Ť¤éÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "SCSIĽ˘ĽŔĽ×Ľż¤ÎžěšçĄ˘¤Č¤ę¤˘¤¨¤şĽÉĽéĽ¤ĽĐ¤ËĽ˘ĽŔĽ×Ľż¤ňĂľ¤ľ¤ť¤Ć¤ß¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "ĽŔĽá¤Ę¤éĄ˘źŤĘŹ¤ÇĽÉĽéĽ¤ĽĐ¤ÎĽŞĽ×ĽˇĽçĽó¤ňťŘÄꤡ¤Ţ¤šĄŁťŘÄ꼪Ľ×ĽˇĽçĽó¤ĎĄ˘\n"
-#~ "źŤĘŹ¤ÎĽĎĄźĽÉĽŚĽ§Ľ˘¤ÎÉŐ°ʸ˝ń¤ÇÄ´¤Ů¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "¤ł¤ÎĽŢĽˇĽó¤Ź¤š¤Ç¤Ë´ű¸¤ÎĽÍĽĂĽČĽďĄźĽŻ¤Ë¤Ä¤Ę¤Ź¤Ă¤Ć¤¤¤ë¤Ę¤éĄ˘ĽÍĽĂĽČĽďĄźĽŻ\n"
-#~ "´ÉÍýźÔ¤ËÉŹÍפʞđĘó¤ňśľ¤ď¤Ă¤Ć¤¤¤ë¤Ď¤ş¤Ç¤š(IP Ľ˘ĽÉĽěĽšĄ˘ĽÍĽĂĽČĽďĄźĽŻ¤Î\n"
-#~ "ĽľĽÖĽŢĽšĽŻĄĘÄ̞μͼüȼ޼šĽŻĄËĄ˘ĽŰĽšĽČĚž)ĄŁźŤÂđ¤Ę¤É¤ÇźŤĘŹ¤Ŕ¤ą¤ÎĽÍĽĂĽČ\n"
-#~ "ĽďĄźĽŻ¤ňşî¤í¤Ś¤Č¤ˇ¤Ć¤¤¤ë¤Ę¤éĄ˘Ľ˘ĽÉĽěĽš¤Ę¤É¤ĎźŤĘŹ¤ÇÁŞ¤Ó¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "ĄÖĽâĽÇĽŕ¤Ë¤č¤ëĽŔĽ¤Ľ˘ĽëĽ˘ĽĂĽ×Ą×¤ňÁŞ¤Ö¤ČĄ˘ĽâĽÇĽŕ¤Ë¤č¤ëĽ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł\n"
-#~ "¤ŹŔßÄꤾ¤ě¤Ţ¤šĄŁDrakX ¤ĎĽâĽÇĽŕ¤ňĂľ¤ˇ¤Ţ¤š¤ŹĄ˘¤ł¤ě¤ŹźşÇÔ¤ˇ¤ż¤éĄ˘ĽâĽÇĽŕ¤Î\n"
-#~ "¤Ä¤Ę¤Ź¤Ă¤Ć¤¤¤ëĽˇĽęĽ˘ĽëĽÝĄźĽČ¤ňźŤĘŹ¤ÇťŘÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
+#~ msgid "Use Hard Drive with daemon"
+#~ msgstr "ĽÇĄźĽâĽó¤ÇĽĎĄźĽÉĽÉĽéĽ¤ĽÖ¤ňťČ¤Ś"
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these\n"
-#~ "types require a different setup. Note however that the print\n"
-#~ "spooler uses 'lp' as the default printer name; so you\n"
-#~ "must have one printer with such a name; but you can give\n"
-#~ "several names, separated by '|' characters, to a printer.\n"
-#~ "So, if you prefer to have a more meaningful name you just have\n"
-#~ "to put it first, eg: \"My Printer|lp\".\n"
-#~ "The printer having \"lp\" in its name(s) will be the default printer.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select\n"
-#~ "\"Local printer\". You will then have to tell which port your\n"
-#~ "printer is connected to, and select the appropriate filter.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine,\n"
-#~ "you will have to select \"Remote lpd\". In order to make\n"
-#~ "it work, no username or password is required, but you will need\n"
-#~ "to know the name of the printing queue on this server.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a SMB printer (which means, a printer located\n"
-#~ "on a remote Windows 9x/NT machine), you will have to specify its\n"
-#~ "SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
-#~ "plus the username, workgroup and password required in order to\n"
-#~ "access the printer, and of course the name of the printer. The same goes\n"
-#~ "for a NetWare printer, except that you need no workgroup information."
-#~ msgstr ""
-#~ "GNU/Linux ¤Ç¤Ď¤¤¤í¤ó¤ĘĽ×ĽęĽóĽż¤ŹťČ¤¨¤Ţ¤šĄŁ¤ŹĄ˘¤˝¤ě¤ž¤ěŔßÄꤏ¤Á¤Ź¤¤¤Ţ¤šĄŁ\n"
-#~ "¤ż¤Ŕ¤ˇĄ˘°őşţĽšĽ×ĄźĽé¤ĎĽÇĽŐĽŠĽëĽČ¤ÎĽ×ĽęĽóĽżĚž¤Č¤ˇ¤ĆĄÖlpĄ×¤ňťČ¤¤¤Ţ¤šĄŁ\n"
-#~ "¤Ŕ¤Ť¤éĄ˘lp¤Č¤¤¤ŚĚžÁ°¤ÎĽ×ĽęĽóĽż¤Ź°ě¤Ä¤ĎÉŹÍפǤšĄŁ¤Ç¤âĄ˘°ě¤Ä¤ÎĽ×ĽęĽóĽż\n"
-#~ "¤ËĘŁżô¤ÎĚžÁ°¤ň¤Ä¤ą¤ë¤ł¤Č¤â¤Ç¤­¤Ţ¤šĄŁ¤ł¤Î¤Č¤­¤ĎĄÖ|Ą×¤ÇśčŔÚ¤ę¤Ţ¤šĄŁ\n"
-#~ "¤Ŕ¤Ť¤éĄ˘Ľ×ĽęĽóĽż¤Ë¤ď¤Ť¤ę¤ä¤š¤¤ĚžÁ°¤ň¤Ä¤ą¤ż¤ą¤ě¤ĐĄ˘¤˝¤ě¤ňŔč¤Ë˝ń¤¤¤Ć\n"
-#~ "¤Ş¤ą¤Đ¤š¤ß¤Ţ¤šĄŁ¤ż¤Č¤¨¤ĐĄÖMy Printer|lpĄ×¤Č¤¤¤Śśńšç¤ËĄŁ\n"
-#~ "ĚžÁ°¤ÎĂć¤ËĄÖlpĄ×¤Ź´Ţ¤Ţ¤ě¤ëĽ×ĽęĽóĽż¤ŹĽÇĽŐĽŠĽëĽČ¤Ë¤Ę¤ę¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "Ľ×ĽęĽóĽż¤ŹÄžŔÜĽłĽóĽÔĽĺĄźĽż¤Ë¤Ä¤Ę¤Ź¤Ă¤Ć¤¤¤ě¤ĐĄ˘ĄÖĽíĄźĽŤĽëĽ×ĽęĽóĽżĄ×¤ň\n"
-#~ "ÁŞ¤Ó¤Ţ¤šĄŁ¤ł¤ÎžěšçĄ˘Ľ×ĽęĽóĽż¤Î¤Ä¤Ę¤Ź¤Ă¤Ć¤¤¤ëĽÝĄźĽČ¤ňťŘÄꤡ¤ĆĄ˘ĹŹŔÚ¤Ę\n"
-#~ "ĽŐĽŁĽëĽż¤ňÁŞ¤Ó¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "ĽÍĽĂĽČĽďĄźĽŻžĺ¤Î¤Ű¤Ť¤ÎUnixĽŢĽˇĽó¤Ë¤Ä¤Ę¤Ź¤Ă¤żĽ×ĽęĽóĽż¤ňťČ¤Ś¤Ę¤éĄ˘\n"
-#~ "ĄÖĽęĽâĄźĽČ lpdĄ×¤ňÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁ¤ł¤ě¤ňťČ¤Ś¤Ë¤ĎĄ˘ĽćĄźĽśĚž¤äĽŃĽšĽďĄźĽÉ¤Ď\n"
-#~ "¤¤¤ę¤Ţ¤ť¤ó¤ŹĄ˘¤˝¤ÎĽľĄźĽĐžĺ¤Î°őşţĽ­ĽĺĄź¤ÎĚžÁ°¤ŹÍפę¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "SMBĽ×ĽęĽóĽż¤ňťČ¤Ś¤Ę¤éĄĘ¤Ä¤Ţ¤ęĽÍĽĂĽČĽďĄźĽŻžĺ¤ÎĽŚĽŁĽóĽÉĽŚĽş9x/NTĽŢĽˇĽó\n"
-#~ "¤Ë¤Ä¤Ę¤Ź¤Ă¤żĽ×ĽęĽóĽż¤ňťČ¤Ś¤Č¤¤¤Ś°ŐĚŁ¤Ç¤šĄËĄ˘¤˝¤ÎĽŢĽˇĽó¤ÎSMB ĚžĄĘ¤ł¤ě\n"
-#~ "¤ĎTCP/IPĚž¤Č¤ĎĘĚĘŞ¤Ç¤šĄË¤ČĄ˘žěšç¤Ë¤č¤Ă¤Ć¤ĎIPĽ˘ĽÉĽěĽš¤ŹÉŹÍפˤʤę¤Ţ¤šĄŁ\n"
-#~ "¤ľ¤é¤ËĽćĄźĽśĚžĄ˘ĽďĄźĽŻĽ°ĽëĄźĽ×Ěž¤ČĽŃĽšĽďĄźĽÉĄ˘¤ľ¤é¤Ë¤ĎĽ×ĽęĽóĽżĚž¤Ź\n"
-#~ "¤Ę¤¤¤ČĽ×ĽęĽóĽż¤ËĽ˘ĽŻĽťĽš¤Ç¤­¤Ţ¤ť¤óĄŁNetWare Ľ×ĽęĽóĽż¤âĄ˘ĽďĄźĽŻĽ°ĽëĄźĽ×¤Ď\n"
-#~ "ÉÔÍפʤŔ¤ą¤ÇĄ˘¤Ű¤Č¤ó¤ÉĆą¤¸¤Ç¤šĄŁ"
-
-#~ msgid ""
-#~ "It is strongly recommended that you answer \"Yes\" here. If you install\n"
-#~ "Microsoft Windows at a later date it will overwrite the boot sector.\n"
-#~ "Unless you have made a bootdisk as suggested, you will not be able to\n"
-#~ "boot into GNU/Linux any more."
-#~ msgstr ""
-#~ "¤ł¤ł¤Ç¤ĎĄÖ¤Ď¤¤Ą×¤ČĹú¤¨¤ë¤Î¤ňśŻ¤ŻżäžŠ¤ˇ¤Ţ¤šĄŁ¸ĺ¤Ť¤éMSĽŚĽŁĽóĽÉĽŚĽş¤ň\n"
-#~ "Ľ¤ĽóĽšĽČĄźĽë¤ˇ¤ż¤éĄ˘ĽÖĄźĽČĽťĽŻĽż¤Ďžĺ˝ń¤­¤ľ¤ě¤Ţ¤šĄŁ¤˝¤Ś¤Ę¤Ă¤ż¤éĄ˘\n"
-#~ "ĽÖĄźĽČĽÇĽŁĽšĽŻ¤ňşî¤Ă¤Ć¤Ş¤Ť¤Ę¤¤¤ČĄ˘Linux¤ŹÎŠ¤Ážĺ¤˛¤é¤ě¤Ę¤Ż¤Ę¤ę¤Ţ¤š¤čĄŁ"
+#~ msgid "Use FTP with daemon"
+#~ msgstr "ĽÇĄźĽâĽó¤Ç FTP ¤ňťČ¤Ś"
-#~ msgid "Move your wheel!"
-#~ msgstr "ĽŰĽ¤ĄźĽë¤ň¤Ţ¤ď¤ˇ¤Ć¤ß¤Ţ¤ˇ¤ç¤ŚĄŞ"
+#~ msgid "Package List to Install"
+#~ msgstr "Ľ¤ĽóĽšĽČĄźĽë¤š¤ëĽŃĽĂĽąĄźĽ¸°ěÍ÷"
-#~ msgid "Forget the changes?"
-#~ msgstr "ĘŃšš¤ňÁ´ÉôÇË´ţ¤ˇ¤Ţ¤š¤ŤĄŠ"
+#~ msgid "proftpd"
+#~ msgstr "proftpd"
-#~ msgid "What is the type of your mouse?"
-#~ msgstr "ĽŢĽŚĽš¤Îˇż¤Ď¤Ę¤ó¤Ç¤š¤ŤĄŠ"
-
-#~ msgid "Automatic resolutions"
-#~ msgstr "˛ňÁüĹ٤ΟŤĆ°ŔßÄę"
-
-#~ msgid ""
-#~ "To find the available resolutions I will try different ones.\n"
-#~ "Your screen will blink...\n"
-#~ "You can switch if off if you want, you'll hear a beep when it's over"
-#~ msgstr ""
-#~ "Í­¸ú¤Ę˛ňÁüĹ٤ňĆŔ¤ë¤ż¤á¤ËĘ̤ÎĘýËĄ¤ňťî¤ˇ¤Ć¤ß¤Ţ¤šĄŁ\n"
-#~ "ĽšĽŻĽęĄźĽó¤ŹĚŔĚǤˇ¤Ţ¤š...\n"
-#~ "¤¤¤ä¤Ę¤éĽâĽËĽż¤ÎĽšĽ¤ĽĂĽÁ¤ňŔڤäƤâ¤Ŕ¤¤¤¸¤ç¤Ś¤ÖĄŁ˝Ş¤ď¤Ă¤ż¤é beep ˛ť\n"
-#~ "¤ÇĂΤ餝¤Ţ¤šĄŁ"
-
-#~ msgid ""
-#~ "I can try to find the available resolutions (eg: 800x600).\n"
-#~ "Sometimes, though, it may hang the machine.\n"
-#~ "Do you want to try?"
-#~ msgstr ""
-#~ "Í­¸ú¤Ę˛ňÁüĹŮ(Îă: 800x600)¤ňźŤĆ°ĹޤËĂľ¤ť¤Ţ¤šĄŁ\n"
-#~ "¤ŹĄ˘¤ł¤ě¤ÇĽŢĽˇĽó¤Źťß¤Ţ¤Ă¤Ć¤ˇ¤Ţ¤Ś¤Ť¤â¤ˇ¤ě¤Ţ¤ť¤óĄŁ\n"
-#~ "Ăľ¤ˇ¤Ć¤ß¤Ţ¤ˇ¤ç¤Ś¤ŤĄŠ"
-
-#~ msgid ""
-#~ "No valid modes found\n"
-#~ "Try with another video card or monitor"
-#~ msgstr ""
-#~ "Í­¸ú¤ĘĽâĄźĽÉ¤Ź¸ŤÉŐ¤Ť¤ę¤Ţ¤ť¤ó\n"
-#~ "ž¤ÎĽÓĽÇĽŞĽŤĄźĽÉ/ĽâĽËĽż¤Çťî¤ˇ¤Ć˛ź¤ľ¤¤ĄŁ"
+#~ msgid "sshd"
+#~ msgstr "sshd"
-#~ msgid "Automatical resolutions search"
-#~ msgstr "˛ňÁüĹ٤ΟŤĆ°¸Ąş÷"
+#~ msgid "webmin"
+#~ msgstr "webmin"
-#~ msgid "pump"
-#~ msgstr "pump"
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
-#~ msgid "dhcpxd"
-#~ msgstr "dhcpxd"
+#~ msgid "Setting security level"
+#~ msgstr "ĽťĽ­ĽĺĽęĽĆĽŁĽěĽŮĽë¤ÎŔßÄęĂć"
-#~ msgid "dhcp-client"
-#~ msgstr "dhcp-client"
+#~ msgid "Graphics card"
+#~ msgstr "Ľ°ĽéĽŐĽŁĽĂĽŻĽŤĄźĽÉ"
-#~ msgid "Apple ADB Mouse"
-#~ msgstr "Apple ADB ĽŢĽŚĽš"
+#~ msgid "Select a graphics card"
+#~ msgstr "Ľ°ĽéĽŐĽŁĽĂĽŻĽŤĄźĽÉ¤ňÁŞÂň¤ˇ¤Ć˛ź¤ľ¤¤"
-#~ msgid "Apple ADB Mouse (2 Buttons)"
-#~ msgstr "Apple ADB ĽŢĽŚĽšĄĘ2ĽÜĽżĽóĄË"
+#~ msgid "Choose a X driver"
+#~ msgstr "X ĽÉĽéĽ¤ĽĐ¤ňÁޤó¤Ç˛ź¤ľ¤¤"
-#~ msgid "Apple ADB Mouse (3+ Buttons)"
-#~ msgstr "Apple ADB ĽŢĽŚĽšĄĘ3ĽÜĽżĽó°ĘžĺĄË"
+#~ msgid "X driver"
+#~ msgstr "X ĽÉĽéĽ¤ĽĐ"
-#~ msgid "Apple USB Mouse"
-#~ msgstr "Apple USBĽŢĽŚĽš"
-
-#~ msgid "Apple USB Mouse (2 Buttons)"
-#~ msgstr "Apple USBĽŢĽŚĽšĄĘ2ĽÜĽżĽóĄË"
-
-#~ msgid "Apple USB Mouse (3+ Buttons)"
-#~ msgstr "Apple USBĽŢĽŚĽšĄĘ3ĽÜĽżĽó°ĘžĺĄË"
-
-#~ msgid "ASCII MieMouse"
-#~ msgstr "ASCII MieMouse"
-
-#~ msgid "Genius NetMouse Pro"
-#~ msgstr "Genius NetMouse Pro"
-
-#~ msgid "ATI Bus Mouse"
-#~ msgstr "ATI ĽĐĽšĽŢĽŚĽš"
-
-#~ msgid "Microsoft Bus Mouse"
-#~ msgstr "ĽŢĽ¤ĽŻĽíĽ˝ĽŐĽČĄŚĽĐĽšĽŢĽŚĽš"
-
-#~ msgid "Logitech Bus Mouse"
-#~ msgstr "ĽíĽ¸ĽĆĽĂĽŻĄŚĽĐĽšĽŢĽŚĽš"
-
-#~ msgid "USB Mouse (3 buttons or more)"
-#~ msgstr "USBĽŢĽŚĽšĄĘ3ĽÜĽżĽó°ĘžĺĄË"
-
-#~ msgid "Microsoft Rev 2.1A or higher (serial)"
-#~ msgstr "Microsoft Rev 2.1A °Ęžĺ(serial)"
-
-#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-#~ msgstr "Logitech MouseMan+/FirstMouse+ (ĽˇĽęĽ˘Ľë)"
-
-#~ msgid "ASCII MieMouse (serial)"
-#~ msgstr "ASCII MieMouse (ĽˇĽęĽ˘Ľë)"
-
-#~ msgid "Genius NetMouse (serial)"
-#~ msgstr "Genius NetMouse (ĽˇĽęĽ˘Ľë)"
-
-#~ msgid "Generic Mouse (serial)"
-#~ msgstr "ČĆÍŃĽŢĽŚĽš (ĽˇĽęĽ˘Ľë)"
-
-#~ msgid "Microsoft compatible (serial)"
-#~ msgstr "ĽŢĽ¤ĽŻĽíĽ˝ĽŐĽČ¸ß´šĄĘĽˇĽęĽ˘ĽëĄË"
-
-#~ msgid "Generic 3 Button Mouse (serial)"
-#~ msgstr "ČĆÍѤÎ3ĽÜĽżĽóĽŢĽŚĽš (ĽˇĽęĽ˘Ľë)"
-
-#~ msgid "Kensington Thinking Mouse (serial)"
-#~ msgstr "Kensington Thinking Mouse (ĽˇĽęĽ˘Ľë)"
-
-#~ msgid ""
-#~ "I need to configure your network adapter to be able to connect to "
-#~ "internet."
+#~ msgid "Warning: testing this graphics card may freeze your computer"
#~ msgstr ""
-#~ "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤Ë¤ĎĄ˘ĽÍĽĂĽČĽďĄźĽŻĽ˘ĽŔĽ×Ľż¤ňŔßÄꤚ¤ëÉŹÍפŹ¤˘¤ę¤Ţ¤šĄŁ"
+#~ "ˇŮšđĄ§¤ł¤ÎĽ°ĽéĽŐĽŁĽĂĽŻĽŤĄźĽÉ¤ňĽĆĽšĽČ¤š¤ë¤ČĽŢĽˇĽó¤ŹĽŐĽęĄźĽş¤š¤ë¤Ť¤â¤ˇ¤ě¤Ţ¤ť"
+#~ "¤ó"
-#~ msgid ""
-#~ "Please choose which network adapter do you want to use to connect to "
-#~ "internet.\n"
-#~ "If you don't know, choose eth0.\n"
-#~ msgstr ""
-#~ "Ľ¤ĽóĽżĄźĽÍĽĂĽČ¤Ë¤Ä¤Ę¤°¤ż¤á¤ÎĽÍĽĂĽČĽďĄźĽŻĽ˘ĽŔĽ×Ľż¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "¤ď¤Ť¤é¤Ę¤ą¤ě¤ĐĄ˘eth0 ¤ňÁޤó¤Ç¤Ş¤­¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "ĽšĽżĽóĽŔĄźĽÉ VGA, 640x480 ¤Ç 60Hz"
-#~ msgid "nfs mount failed"
-#~ msgstr "nfs ĽŢĽŚĽóĽČ¤ËźşÇÔ"
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "ĽšĄźĽŃĄź VGA, 800x600 ¤Ç 56 Hz"
-#~ msgid ""
-#~ "DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
-#~ "By default, the 4.0 server is used unless your card is not supported.\n"
-#~ "\n"
-#~ "Do you want to keep XFree 3.3?"
-#~ msgstr ""
-#~ "DrakX ¤ĎĄ˘XFree 3.3¤ČXFree 4.0ΞĘý¤ÎŔßÄęĽŐĽĄĽ¤Ľë¤ň¤Ä¤Ż¤ę¤Ţ¤šĄŁ¤Ç¤â\n"
-#~ "ĽÇĽŐĽŠĽëĽČ¤Ç¤ĎÂĐąţĽÓĽÇĽŞĽŤĄźĽÉ¤ŹĚľ¤¤¸Â¤ęĄ˘4.0ĽľĄźĽĐ¤Î¤Ű¤Ś¤ňťČ¤¤¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "XFree 3.3 ¤Î¤Ţ¤Ţ¤Ë¤ˇ¤Ć¤Ş¤­¤Ţ¤š¤Ť?"
-
-#~ msgid "Cryptographic"
-#~ msgstr "°Ĺšć˛˝"
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514 ¸ß´š, 1024x768 at 87 Hz Ľ¤ĽóĽżĄźĽěĄźĽš (no 800x600)"
-#~ msgid "Configure LAN"
-#~ msgstr "LAN ¤ÎŔßÄę"
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "ĽšĄźĽŃĄź VGA, 1024x768 ¤Ç 87 Hz Ľ¤ĽóĽżĄźĽěĄźĽš, 800x600 ¤Ç 56 Hz"
-#~ msgid "Do not set up networking"
-#~ msgstr "ĽÍĽĂĽČĽďĄźĽŻŔßÄę¤ň¤ˇ¤Ę¤¤"
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "łČÄĽ ĽšĄźĽŃĄź VGA, 800x600 ¤Ç 60 Hz, 640x480 ¤Ç 72 Hz"
-#~ msgid "Do you want to configure a local network for your system?"
-#~ msgstr "ĽˇĽšĽĆĽŕ¤ÎĽíĄźĽŤĽë LAN ĽÍĽĂĽČĽďĄźĽŻ¤ňŔßÄꤡ¤Ţ¤š¤ŤĄŠ"
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "1024x768 at 60 Hz, 800x600 at 72 Hz¤ÎĽÎĽóĽ¤ĽóĽżĄźĽěĽšSVGA"
-#~ msgid "Show less"
-#~ msgstr "łľÎŹ¤ÇÉ˝ź¨"
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "1280x1024 at 70 Hz¤ÎHigh Frequency SVGA"
-#~ msgid "Show more"
-#~ msgstr "žÜşŮ¤ňÉ˝ź¨"
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "1280x1024 at 60 Hz¤Ź˛ÄÇ˝¤ĘĽŢĽëĽÁĽšĽ­ĽăĽóĽâĽËĽż"
-#~ msgid "Take over the hard drive"
-#~ msgstr "ĽĎĄźĽÉĽÉĽéĽ¤ĽÖ¤ň°ú¤­ˇŃ¤°"
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "1280x1024 at 74 Hz¤Ź˛ÄÇ˝¤ĘĽŢĽëĽÁĽšĽ­ĽăĽóĽâĽËĽż"
-#~ msgid "URI for Local printer"
-#~ msgstr "ĽíĄźĽŤĽëĽ×ĽęĽóĽż¤ÎURI"
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "1280x1024 at 76 Hz¤Ź˛ÄÇ˝¤ĘĽŢĽëĽÁĽšĽ­ĽăĽóĽâĽËĽż"
-#~ msgid "URI for Network printer"
-#~ msgstr "ĽÍĽĂĽČĽďĄźĽŻĽ×ĽęĽóĽż¤ÎURI"
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "1600x1200 at 70 Hz ¤Ź˛ÄÇ˝¤ĘĽâĽËĽż"
-#~ msgid "Local Printer Device (URI)"
-#~ msgstr "ĽíĄźĽŤĽëĽ×ĽęĽóĽżĽÇĽĐĽ¤Ľš (URI)"
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "1600x1200 at 76 Hz ¤Ź˛ÄÇ˝¤ĘĽâĽËĽż"
#~ msgid ""
-#~ "What URI device is your printer connected to\n"
-#~ "(note that parallel:/dev/lp0 is equivalent to LPT1:)?"
-#~ msgstr ""
-#~ "Ľ×ĽęĽóĽż¤Ź¤Ä¤Ę¤Ź¤Ă¤Ć¤¤¤ëĽÇĽĐĽ¤Ľš¤Ď˛ż¤Ç¤š¤Ť\n"
-#~ "(Ăí°Ő ĽŃĽéĽěĽë¤Î/dev/lp0 ¤Ď LPT1: ¤Ë¤Ę¤ę¤Ţ¤š)ĄŠ\n"
-
-#~ msgid "Network Printer Options (URI)"
-#~ msgstr "Netware Ľ×ĽęĽóĽż¤ÎĽŞĽ×ĽˇĽçĽó (URI)"
-
-#~ msgid "tie"
-#~ msgstr "ĽÍĽŻĽżĽ¤"
-
-#~ msgid "brunette"
-#~ msgstr "ĽÖĽëĽÍĽĂĽČ"
-
-#~ msgid "girl"
-#~ msgstr "˝÷¤ÎťŇ"
-
-#~ msgid "woman-blond"
-#~ msgstr "ĽÖĽíĽóĽÉ˝÷Ŕ­"
-
-#~ msgid "automagic"
-#~ msgstr "ĽŞĄźĽČĽŢĽ¸ĽĂĽŻ"
-
-#~ msgid "Have you been provided with a hostname?"
-#~ msgstr "ĽŰĽšĽČĽÍĄźĽŕ¤ňÄ󜥤ľ¤ě¤Ć¤¤¤Ţ¤š¤ŤĄŠ"
-
-#~ msgid "Local Area Network specification"
-#~ msgstr "ĽíĄźĽŤĽëĽ¨ĽęĽ˘ĽÍĽĂĽČĽďĄźĽŻ¤ÎžÜşŮ"
-
-#~ msgid "You may now decide which class C network to use.\n"
-#~ msgstr "¤É¤ÎĽŻĽéĽšCĽÍĽĂĽČĽďĄźĽŻ¤ňťČ¤Ś¤Ťˇč¤á¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-
-#~ msgid "Internet Connection Sharing - setup of %s"
-#~ msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČśŚÍ­ŔÜÂł - %s ¤ÎŔßÄę"
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "¤˘¤Ę¤ż¤ÎÁޤó¤ŔĽ°ĽëĄźĽ×¤ÎÁíĽľĽ¤Ľş¤ĎĄ˘¤Ŕ¤¤¤ż¤¤ %d MB¤Ë¤Ę¤ę¤Ţ¤šĄŁ\n"
#~ msgid ""
-#~ "The following interface is about to be configured:\n"
-#~ "\n"
-#~ "%s\n"
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
-#~ "źĄ¤ÎĽ¤ĽóĽżĄźĽŐĽ§ĄźĽš¤ňŔßÄꤡ¤č¤Ś¤Č¤ˇ¤Ć¤Ţ¤šĄ§\n"
-#~ "\n"
-#~ "%s\n"
+#~ "Ľ¤ĽóĽšĽČĄźĽëÎ̤ň¸ş¤é¤ˇ¤ż¤ą¤ě¤ĐĄ˘ĽŃĽĂĽąĄźĽ¸¤ÎĽŃĄźĽťĽóĽČżô¤ň\n"
+#~ "ťŘÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
#~ "\n"
+#~ "¤ł¤ě¤ň˛ź¤˛¤ë¤ČĄ˘¤¤¤Á¤Đ¤ó˝ĹÍפʤâ¤Î¤Ŕ¤ą¤ŹĽ¤ĽóĽšĽČĄźĽë¤ľ¤ě¤Ţ¤šĄŁ\n"
+#~ "100%% ¤ňťŘÄꤚ¤ë¤ČĄ˘Áޤó¤ŔĽŃĽĂĽąĄźĽ¸¤ň¤š¤Ů¤ĆĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ţ¤šĄŁ"
-#~ msgid "Everything configured!"
-#~ msgstr "Á´¤Ć¤ňŔßÄꤡ¤Ţ¤ˇ¤żĄŞ"
-
-#~ msgid "What is your keyboard layout?"
-#~ msgstr "Ľ­ĄźĽÜĄźĽÉĽěĽ¤Ľ˘ĽŚĽČ¤Ď˛ż¤Ç¤š¤ŤĄŠ"
-
-#~ msgid "pptp alcatel"
-#~ msgstr "pptp alcatel"
-
-#~ msgid "Try to find PCMCIA cards?"
-#~ msgstr "PCMCIAĽŤĄźĽÉ¤ň¤ľ¤Ź¤ˇ¤Ć¤ß¤Ţ¤ˇ¤ç¤Ś¤ŤĄŠ"
-
-#~ msgid "Try to find %s devices?"
-#~ msgstr "%sĽÇĽĐĽ¤Ľš¤ň¤ľ¤Ź¤ˇ¤Ć¤ß¤Ţ¤š¤ŤĄŠ"
-
-#~ msgid "Small(%dMB)"
-#~ msgstr "şÇžŽ(%dMB)"
-
-#~ msgid ""
-#~ "Do you want to configure a dialup connection with modem for your system?"
-#~ msgstr "ĽˇĽšĽĆĽŕ¤ÎĽâĽÇĽŕ¤Ë¤č¤ëĽŔĽ¤Ľ˘ĽëĽ˘ĽĂĽ×ĽÍĽĂĽČĽďĄźĽŻ¤ňŔßÄꤡ¤Ţ¤š¤ŤĄŠ"
-
-#~ msgid "Do you want to configure a ISDN connection for your system?"
-#~ msgstr "ĽˇĽšĽĆĽŕ¤ÎISDNŔÜÂł¤ňŔßÄꤡ¤Ţ¤š¤ŤĄŠ"
-
-#~ msgid "Try to find PCI devices?"
-#~ msgstr "PCIĽÇĽĐĽ¤Ľš¤ň¤ľ¤Ź¤ˇ¤Ć¤ß¤Ţ¤š¤ŤĄŠ"
-
-#~ msgid "Searching root partition."
-#~ msgstr "ĽëĄźĽČĽŃĄźĽĆĽŁĽˇĽçĽó¤ň¸Ąş÷"
-
-#~ msgid "%s: This is not a root partition, please select another one."
-#~ msgstr "%s: ¤ł¤ě¤ĎĽëĄźĽČĽŃĄźĽĆĽŁĽˇĽçĽó¤Ç¤Ď¤˘¤ę¤Ţ¤ť¤óĄ¤¤Ű¤Ť¤ňÁޤó¤Ç˛ź¤ľ¤¤ĄŁ"
-
-#~ msgid "Please choose a partition to use as your root partition."
-#~ msgstr "¤É¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤ňĽëĄźĽČĽŃĄźĽĆĽŁĽˇĽçĽó¤Ë¤ˇ¤Ţ¤š¤Ť"
-
-#~ msgid "Autologin at startup"
-#~ msgstr "ľŻĆ°ťţ¤ÎźŤĆ°ĽíĽ°Ľ¤Ľó"
-
-#~ msgid "Autologin - Choose default user"
-#~ msgstr "źŤĆ°ĽíĽ°Ľ¤Ľó - ĽÇĽŐĽŠĽëĽČĽćĄźĽś¤ňÁŞÂň"
-
-#~ msgid "You don't have any windows partitions!"
-#~ msgstr "ĽŚĽŁĽóĽÉĽŚĽş¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤Ź¤˘¤ę¤Ţ¤ť¤óĄŞ"
-
-#~ msgid "You don't have any enough room for Lnx4win"
-#~ msgstr "Linux4Win¤ŹĆţ¤ë¤Ŕ¤ą¤Îśő¤­¤Ź¤˘¤ę¤Ţ¤ť¤óĄŞ"
-
-#~ msgid ", %U MB"
-#~ msgstr ", %U MB"
-
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is then suggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-# When possible cp437 accentuated letters can be used too.
-#
#~ msgid ""
-#~ "Welcome to LILO the operating system chooser!\n"
-#~ "\n"
-#~ "To list the possible choices, press <TAB>.\n"
+#~ "You have space on your disk for only %d%% of these packages.\n"
#~ "\n"
-#~ "To load one of them, write its name and press <ENTER> or wait %d seconds "
-#~ "for default boot.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "LILO operating system chooser-he youkosou!\n"
-#~ "\n"
-#~ "<TAB>: Ichiran Hyouji\n"
-#~ "\n"
-#~ "Ichiran kara erande <ENTER> wo oshimasu. %d byou de Default ni narimasu.\n"
-#~ "\n"
-
-#~ msgid "SILO main options"
-#~ msgstr "SILO ĽáĽ¤ĽóĽŞĽ×ĽˇĽçĽó"
-
-#~ msgid ""
-#~ "Here are the following entries in SILO.\n"
-#~ "You can add some more or change the existing ones."
-#~ msgstr ""
-#~ "SILO ¤Ë¤Ď°Ę˛ź¤ÎĽ¨ĽóĽČĽę¤Ź¤˘¤ę¤Ţ¤šĄŁ\n"
-#~ "¤Ű¤Ť¤ÎĽ¨ĽóĽČĽę¤ň˛Ă¤¨¤ë¤ŤĘŃšš¤š¤ë¤ł¤Č¤Ź¤Ç¤­¤Ţ¤šĄŁ"
-
-#~ msgid "This label is already in use"
-#~ msgstr "¤ł¤ÎĽéĽŮĽë¤Ď¤š¤Ç¤ËťČ¤ď¤ě¤Ć¤¤¤Ţ¤š"
-
-#~ msgid "Installation of SILO failed. The following error occured:"
-#~ msgstr "SILO ¤ÎĽ¤ĽóĽšĽČĄźĽë¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤żĄŁ°Ę˛ź¤ÎĽ¨ĽéĄź¤ŹČŻŔ¸:"
-
-#~ msgid ""
-#~ "DrakX will attempt at first to look for one or more PCI\n"
-#~ "SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-#~ "to use, it will insert it (them) automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-#~ "doesn't know which driver to use for this card, or if you have no\n"
-#~ "SCSI adapters at all, you will then be prompted on whether you have\n"
-#~ "one or not. If you have none, answer \"No\". If you have one or more,\n"
-#~ "answer \"Yes\". A list of drivers will then pop up, from which you\n"
-#~ "will have to select one.\n"
-#~ "\n"
-#~ "\n"
-#~ "After you have selected the driver, DrakX will ask if you\n"
-#~ "want to specify options for it. First, try and let the driver\n"
-#~ "probe for the hardware: it usually works fine.\n"
-#~ "\n"
-#~ "\n"
-#~ "If not, do not forget the information on your hardware that you\n"
-#~ "could get from your documentation or from Windows (if you have it\n"
-#~ "on your system), as suggested by the installation guide. These\n"
-#~ "are the options you will need to provide to the driver."
-#~ msgstr ""
-#~ "DrakX ¤Ď¤Ţ¤şĄ˘PCIĽĐĽš¤ÎSCSIĽ˘ĽŔĽ×Ľż¤ňĂľ¤ˇ¤Ë¤¤¤­¤Ţ¤šĄŁĽ˘ĽŔĽ×Ľż¤Ź¤ß¤Ä\n"
-#~ "¤Ť¤Ă¤ĆĄ˘ťČ¤ŚĽÉĽéĽ¤ĽĐ¤Ź¤ď¤Ť¤ě¤ĐĄ˘¤˝¤ě¤ňźŤĆ°ĹޤËÁȤߚţ¤ß¤Ţ¤šĄŁĽ˘ĽŔĽ×Ľż\n"
-#~ "¤Ź¤ż¤Ż¤ľ¤ó¤˘¤Ă¤Ć¤âÂçžćÉפǤšĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "¤â¤ˇISAĽĐĽš¤ÎSCSIĽ˘ĽŔĽ×Ľż¤ňťČ¤Ă¤Ć¤¤¤ż¤ęĄ˘PCIĽĐĽš¤ÎSCSIĽ˘ĽŔĽ×Ľż¤Ç¤â\n"
-#~ "DrakX¤ËĽÉĽéĽ¤ĽĐ¤Ź¤ď¤Ť¤é¤Ę¤Ť¤Ă¤ż¤ę¤š¤ë¤Č¤­Ą˘¤Ţ¤ż¤ĎSCSIĽ˘ĽŔĽ×Ľż¤Ź¤Ę¤¤\n"
-#~ "¤Č¤­¤Ë¤ĎĄ˘Ľ×ĽíĽóĽ×ĽČ¤Ź˝Đ¤Ć¤­¤ĆĄ˘SCSIĽ˘ĽŔĽ×Ľż¤Ź¤˘¤ë¤Ť¤É¤Ś¤Ť¤­¤­¤Ţ¤šĄŁ\n"
-#~ "¤Ę¤ą¤ě¤ĐĄÖ¤¤¤¤¤¨Ą×¤ČĹú¤¨¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ¤˘¤ě¤ĐĄÖ¤Ď¤¤Ą×¤ČĹú¤¨¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "¤š¤ë¤ČĽÉĽéĽ¤ĽĐ¤Î°ěÍ÷É˝¤Ź˝Đ¤Ć¤Ż¤ë¤Î¤ÇĄ˘ĹŹŔڤʤâ¤Î¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "ĽÉĽéĽ¤ĽĐ¤ňÁޤó¤Ŕ¤éĄ˘¤˝¤ÎĽÉĽéĽ¤ĽĐ¤ÇĽŞĽ×ĽˇĽçĽó¤ňťŘÄꤡ¤ż¤¤¤Ť¤É¤Ś¤Ť¤ň\n"
-#~ "DrakX¤Ź¤­¤¤¤Ć¤­¤Ţ¤šĄŁşÇ˝é¤ĎĄ˘ĽÉĽéĽ¤ĽĐ¤ËĽĎĄźĽÉĽŚĽ§Ľ˘¤ňĽ×ĽíĄźĽÖ¤ľ¤ť¤Ć\n"
-#~ "¤ß¤Ţ¤ˇ¤ç¤ŚĄŁ¤ż¤¤¤Ź¤¤¤Ď¤ł¤ě¤Ç¤Ś¤Ţ¤Ż¤¤¤­¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "¤ł¤ě¤ŹĽŔĽá¤Ę¤éĄ˘¤˝¤ÎĽ˘ĽŔĽ×Ľż¤Ë¤Ä¤¤¤ĆĽÉĽ­ĽĺĽáĽóĽĆĄźĽˇĽçĽó¤Ë˝ń¤¤¤Ć¤˘¤Ă¤ż\n"
-#~ "¤ł¤Č¤äĄ˘ĽŚĽŁĽóĽÉĽŚĽş¤ÎĽ×ĽíĽŃĽĆĽŁ¤ÎžđĘó¤Ę¤É¤ňť×¤¤¤Ŕ¤ˇ¤Ć¤ß¤Ţ¤ˇ¤ç¤ŚĄŁĽ¤Ľó\n"
-#~ "ĽšĽČĄźĽëĽŹĽ¤ĽÉ¤Ç¤âĄ˘¤ł¤ě¤ňšľ¤¨¤Ć¤Ş¤Ż¤č¤Ś¤Ë¤ŞžŠ¤á¤ˇ¤Ţ¤ˇ¤ż¤č¤ÍĄŁ¤˝¤ÎžđĘó\n"
-#~ "¤ňĽÉĽéĽ¤ĽĐ¤Ë¤ď¤ż¤ˇ¤Ć¤ä¤ë¤ł¤Č¤Ë¤Ę¤ę¤Ţ¤šĄŁ"
-
-#~ msgid "Shutting down"
-#~ msgstr "ĽˇĽăĽĂĽČĽŔĽŚĽóĂć"
-
-#~ msgid "useless"
-#~ msgstr "ĚľÍŃ"
-
-#~ msgid ""
-#~ "Some true type fonts from windows have been found on your computer.\n"
-#~ "Do you want to use them? Be sure you have the right to use them under "
-#~ "Linux."
-#~ msgstr ""
-#~ "ĽłĽóĽÔĽĺĄźĽżžĺ¤ËĽŚĽŁĽóĽÉĽŚĽş¤Ť¤é¤Î True Type ĽŐĽŠĽóĽČ¤ň¸ŤÉŐ¤ą¤Ţ¤ˇ¤żĄŁ\n"
-#~ "¤ł¤ě¤é¤ňťČ¤¤¤Ţ¤š¤Ť? ¤˘¤Ę¤ż¤Ź Linux žĺ¤Ç¤ł¤ě¤é¤ňťČ¤Ś¸˘Íř¤Ź¤˘¤ë¤Ť¤ňłÎ¤Ť¤á¤Ć"
-#~ "˛ź¤ľ¤¤ĄŁ"
-
-#~ msgid ""
-#~ "Choose \"Install\" if there are no previous versions of Linux\n"
-#~ "installed, or if you wish to use multiple distributions or versions.\n"
-#~ "\n"
-#~ "\n"
-#~ "Choose \"Upgrade\" if you wish to update a previous version of Mandrake "
-#~ "Linux:\n"
-#~ "5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-#~ "2000\n"
-#~ "or 7.0 (Air)."
-#~ msgstr ""
-#~ "Linux¤ÎĽ¤ĽóĽšĽČĄźĽë¤Ź˝é¤á¤Ć¤ŤĄ˘¤Ű¤Ť¤ÎLinuxĽÇĽŁĽšĽČĽęĽÓĽĺĄźĽˇĽçĽó¤ä\n"
-#~ "ĽĐĄźĽ¸ĽçĽó¤ČśŚÂ¸¤ľ¤ť¤ż¤¤¤Č¤­¤Ë¤ĎĄ˘ĄÖĽ¤ĽóĽšĽČĄźĽëĄ×¤ňÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "Mandrake Linux: 5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus),\n"
-#~ "6.1 (Helios), Gold 2000, 7.0 (Air)¤Ę¤ÉĄ˘¸Ĺ¤¤Mandrake Linux¤ň\n"
-#~ "Ľ˘ĽĂĽ×Ľ°ĽěĄźĽÉ¤š¤ë¤Ę¤éĄÖĽ˘ĽĂĽ×Ľ°ĽěĄźĽÉĄ×¤ňÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁ"
-
-#~ msgid "Do you want to use LILO?"
-#~ msgstr "LILO ¤ňťČ¤¤¤Ţ¤š¤ŤĄŠ"
-
-#~ msgid ""
-#~ "You may now select the packages you wish to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "First you can select group of package to install or upgrade. After that\n"
-#~ "you can select more packages according to the total size you wish to\n"
-#~ "select.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you are in expert mode, you can select packages individually.\n"
-#~ "Please note that some packages require the installation of others.\n"
-#~ "These are referred to as package dependencies. The packages you select,\n"
-#~ "and the packages they require will be automatically selected for\n"
-#~ "install. It is impossible to install a package without installing all\n"
-#~ "of its dependencies."
-#~ msgstr ""
-#~ "¤Ç¤ĎĽ¤ĽóĽšĽČĄźĽë¤š¤ëĽŃĽĂĽąĄźĽ¸¤ÎÁŞÂň¤Ë°Ü¤ę¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "¤Ţ¤ş¤ĎĄ˘Ľ¤ĽóĽšĽČĄźĽë¤äĽ˘ĽĂĽ×Ľ°ĽěĄźĽÉ¤ˇ¤ż¤¤ĽŃĽĂĽąĄźĽ¸¤ň¤Ş¤Ş¤ś¤Ă¤Ń¤Ë\n"
-#~ "Ľ°ĽëĄźĽ×¤ÇÁŞ¤Ó¤Ţ¤šĄŁ¤˝¤Î¸ĺ¤ÇĄ˘ĽŃĽĂĽąĄźĽ¸¤ÎĽľĽ¤Ľş¤Ę¤É¤Ť¤é¤â¤Ă¤ČşŮ¤Ť¤¤\n"
-#~ "ÁŞÂň¤Ź¤Ç¤­¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "Ľ¨Ľ­ĽšĽŃĄźĽČĄŚĽâĄźĽÉ¤Ę¤éĄ˘¸ÄĘ̤μѼüąĄźĽ¸¤ňÁŞ¤Ů¤Ţ¤šĄŁ\n"
-#~ "ĽŃĽĂĽąĄźĽ¸¤ÎĂć¤Ë¤ĎĄ˘Âž¤ÎĽŃĽĂĽąĄźĽ¸¤Ź¤Ę¤¤¤ČťČ¤¨¤Ę¤¤¤â¤Î¤Ź¤˘¤ę¤Ţ¤šĄŁ\n"
-#~ "¤ł¤ě¤ňĽŃĽĂĽąĄźĽ¸¤Î°Í¸´Řˇ¸¤Č¤¤¤¤¤Ţ¤šĄŁ¤ł¤ł¤Ç¤ĎĽŃĽĂĽąĄźĽ¸¤ňÁŞ¤Ö¤ČĄ˘\n"
-#~ "¤˝¤ě¤ËÉŹÍפʼѼüąĄźĽ¸¤âźŤĆ°ĹޤËÁŞ¤Đ¤ě¤ĆĽ¤ĽóĽšĽČĄźĽë¤ľ¤ě¤Ţ¤šĄŁ\n"
-#~ "°Í¸´Řˇ¸¤Ź´°Á´¤Ë˛ňˇč¤ľ¤ě¤Ę¤¤¤ČĄ˘ĽŃĽĂĽąĄźĽ¸¤ĎĽ¤ĽóĽšĽČĄźĽë¤Ç¤­¤Ţ¤ť¤óĄŁ"
-
-#~ msgid ""
-#~ "LILO (the LInux LOader) can boot Linux and other operating systems.\n"
-#~ "Normally they are correctly detected during installation. If you don't\n"
-#~ "see yours detected, you can add one or more now.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you don't want that everybody could access at one of them, you can "
-#~ "remove\n"
-#~ "it now (a boot disk will be needed to boot it)."
-#~ msgstr ""
-#~ "LILO (LInux LOader) ¤ĎĄ˘Linux¤ä¤˝¤Îž¤ÎOS¤ňĽÖĄźĽČ¤Ç¤­¤Ţ¤šĄŁ\n"
-#~ "ĽÇĽŁĽšĽŻžĺ¤ÎłĆźď¤ÎOS¤ĎĄ˘ÉáÄ̤ϼ¤ĽóĽšĽČĄźĽë¤ÎĂć¤Ç¤­¤Á¤ó¤Č¸Ą˝Đ¤ľ¤ě¤Ć¤¤¤Ţ"
-#~ "¤šĄŁ\n"
-#~ "¤Ç¤â¸Ą˝Đ¤ľ¤ě¤Ć¤¤¤Ę¤¤¤č¤Ś¤Ę¤éĄ˘¤ł¤ł¤ÇÄɲäǤ­¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "¤ß¤ó¤Ę¤ËĽ˘ĽŻĽťĽš¤ˇ¤Ć¤Ű¤ˇ¤Ż¤Ę¤¤OS¤Ź¤˘¤Ă¤ż¤éĄ˘¤ł¤ł¤Ť¤é¤Ďşď˝ü¤ˇ¤Ć¤Ş¤­¤Ţ¤šĄŁ\n"
-#~ "ĄĘ¤˝¤ÎOS¤ňΊ¤Ážĺ¤˛¤ë¤Ë¤ĎĽÖĄźĽČĽÇĽŁĽšĽŻ¤ŹÉŹÍפˤʤę¤Ţ¤šĄË"
-
-#~ msgid ""
-#~ "Now that you've selected desired groups, please choose \n"
-#~ "how many packages you want, ranging from minimal to full \n"
-#~ "installation of each selected groups."
-#~ msgstr ""
-#~ "şŁĄ˘Íߤˇ¤¤Ľ°ĽëĄźĽ×¤ÎÁŞÂň¤ň¤ˇ¤Ć¤ë¤Č¤ł¤í¤Ç¤šĄŁ\n"
-#~ "ÁŞÂň¤ˇ¤ż¤˝¤ě¤ž¤ě¤ÎĽ°ĽëĄźĽ×¤ÇşÇžŽĄÁşÇÂ缤ĽóĽšĽČĽěĄźĽˇĽçĽó¤ÎČϰϤÇ\n"
-#~ "¤É¤Î¤Ż¤é¤¤¤ÎĽŃĽĂĽąĄźĽ¸¤ŹÉŹÍפŤÁޤó¤Ç˛ź¤ľ¤¤ĄŁ"
-
-#~ msgid "Choose other CD to install"
-#~ msgstr "Ľ¤ĽóĽšĽČĄźĽë¤ˇ¤ż¤¤Âž¤Î CD ¤ňÁŞÂň"
-
-#~ msgid ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Recommended: If you have never installed Linux before.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Customized: If you are familiar with Linux, you will be able to \n"
-#~ "select the usage for the installed system between normal, development or\n"
-#~ "server. Choose \"Normal\" for a general purpose installation of your\n"
-#~ "computer. You may choose \"Development\" if you will be using the "
-#~ "computer\n"
-#~ "primarily for software development, or choose \"Server\" if you wish to\n"
-#~ "install a general purpose server (for mail, printing...).\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: If you are fluent with GNU/Linux and want to perform\n"
-#~ "a highly customized installation, this Install Class is for you. You "
-#~ "will\n"
-#~ "be able to select the usage of your installed system as for \"Customized"
-#~ "\"."
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
#~ msgstr ""
-#~ "¤ł¤ó¤ĘĘýżË¤ňĚܰ¤ËÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤:\n"
-#~ "\n"
-#~ " - żäžŠ: Linux¤ÎĽ¤ĽóĽšĽČĄźĽë¤Ź˝é¤á¤Ć¤Ę¤é¤ł¤ěĄŁ\n"
-#~ "\n"
+#~ "ĽÇĽŁĽšĽŻžĺ¤Ëśő¤­Îΰč¤Ë¤ĎĄ˘¤ł¤ě¤é¤ÎĽŃĽĂĽąĄźĽ¸¤Î %d%% ¤ˇ¤ŤĆţ¤ę¤Ţ¤ť¤óĄŁ\n"
#~ "\n"
-#~ " - ĽŤĽšĽżĽŕÁŞÂň: Linux¤ËžÜ¤ˇ¤ą¤ě¤ĐĄ˘ĽˇĽšĽĆĽŕ¤ÎťČ¤¤Ęý¤Ëąţ¤¸¤ĆĄÖĽÎĄźĽŢ"
-#~ "ĽëĄ×\n"
-#~ "ĄÖłŤČŻÍѥץּľĄźĽĐĄ×¤ÎĂ植¤éÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁ¤Ő¤Ä¤Ś¤ÎĽˇĽšĽĆĽŕ¤Ë¤ˇ¤ż¤ą¤ě¤ĐĄ˘\n"
-#~ "ĄÖĽÎĄźĽŢĽëĄ×¤Ź¤¤¤¤¤Ç¤ˇ¤ç¤ŚĄŁźç¤ËĽ˝ĽŐĽČłŤČŻ¤ň¤š¤ë¤Ä¤â¤ę¤Ę¤éĄ˘ĄÖłŤČŻÍѥפň\n"
-#~ "ÁŞ¤Ó¤Ţ¤šĄŁ¤˘¤ë¤¤¤ĎĄ˘ČĆÍŃĽľĄźĽĐĄĘĽáĄźĽëÍŃĄ˘°őşţÍѤʤɤʤɥˤȤˇ¤ĆťČ¤Ś¤Ę¤é\n"
-#~ "ĄÖĽľĄźĽĐĄ×¤Ź¤Ş¤š¤š¤á¤Ç¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " - Ľ¨Ľ­ĽšĽŃĄźĽČĄ§Expert: GNU/Linux ĽĐĽęĽĐĽę¤ÇĄ˘şŮ¤Ť¤¤ĽŤĽšĽżĽŢĽ¤Ľş¤ň¤ˇ¤ż\n"
-#~ "¤ą¤ě¤ĐĄ˘¤ł¤ÎĽ¤ĽóĽšĽČĄźĽë¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ¤ł¤Î¤Č¤­Ą˘ĽˇĽšĽĆĽŕ¤ÎťČĹÓ¤Ď\n"
-#~ "ĄÖĽŤĽšĽżĽŢĽ¤ĽşĄ×¤Ë¤Ę¤ę¤Ţ¤šĄŁ"
-
-#~ msgid "Downloading cryptographic packages"
-#~ msgstr "°Ĺšć´ŘϢ¤ÎĽŃĽĂĽąĄźĽ¸¤ňĽŔĽŚĽóĽíĄźĽÉĂć"
+#~ "Ľ¤ĽóĽšĽČĄźĽëÎ̤ň¸ş¤é¤ˇ¤ż¤ą¤ě¤ĐĄ˘ĽŃĄźĽťĽóĽČżô¤ňťŘÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
+#~ "¤ł¤ě¤ň˛ź¤˛¤ë¤ČĄ˘¤¤¤Á¤Đ¤ó˝ĹÍפʤâ¤Î¤Ŕ¤ą¤ŹĽ¤ĽóĽšĽČĄźĽë¤ľ¤ě¤Ţ¤šĄŁ\n"
+#~ "%d%% ¤ňťŘÄꤚ¤ë¤ČĄ˘şÇÂç¸Â¤ÎĽŃĽĂĽąĄźĽ¸¤ňĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ţ¤šĄŁ"
-#~ msgid "Setup SCSI"
-#~ msgstr "SCSI ¤ÎŔßÄę"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "źĄ¤ÎĽšĽĆĽĂĽ×¤Ç¤Ď¤â¤Ă¤ČşŮ¤Ť¤¤ÁŞÂň¤Ź˝ĐÍč¤Ţ¤š"
-#~ msgid "Installation CD Nr %s"
-#~ msgstr "Ľ¤ĽóĽšĽČĽěĄźĽˇĽçĽó CD Nr %s"
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Ľ¤ĽóĽšĽČĄźĽë¤š¤ëĽŃĽĂĽąĄźĽ¸Ăć¤Îłäšç"
-#~ msgid "Which language do you want?"
-#~ msgstr "¤É¤Î¸Ŕ¸ě¤ňťČ¤¤¤Ţ¤š¤ŤĄŠ"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "ĽťĽ­ĽĺĽęĽĆĽŁ¤Îżĺ˝ŕ¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤"
-#~ msgid "What usage do you want?"
-#~ msgstr "¤É¤ÎťČÍŃËĄ¤ňÁŞ¤Ó¤Ţ¤š¤ŤĄŠ"
+#~ msgid "hide expert mode"
+#~ msgstr "Ľ¨Ľ­ĽšĽŃĄźĽČĽâĄźĽÉ¤ňąŁ¤š"
-#~ msgid "Choose install or upgrade"
-#~ msgstr "ĆłĆţ/łČÄĽ¤ÎÁŞÂň"
-
-#~ msgid "A entry %s already exists"
-#~ msgstr "Ľ¨ĽóĽČĽę %s ¤Ď¤š¤Ç¤Ë¸şß¤ˇ¤Ţ¤š"
+#~ msgid "show expert mode"
+#~ msgstr "Ľ¨Ľ­ĽšĽŃĄźĽČĽâĄźĽÉ¤ňÉ˝ź¨"
#~ msgid ""
-#~ "Enter a floppy to create an HTP enabled boot\n"
-#~ "(all data on floppy will be lost)"
+#~ "If '%s' is a removable peripheral,\n"
+#~ " verify that a media is inserted."
#~ msgstr ""
-#~ "HTP ¤ÎťČ¤¨¤ëĽÖĄźĽČĽÇĽŁĽšĽŻÍѤμռíĽĂĽÔĄź¤ňĽÉĽéĽ¤ĽÖ¤ËÁŢĆţ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤\n"
-#~ "ĽŐĽíĽĂĽÔĄźžĺ¤ÎÁ´¤Ć¤ÎĽÇĄźĽż¤Ďźş¤ď¤ě¤Ţ¤š"
-
-#~ msgid "It is necessary to restart installation booting on the floppy"
-#~ msgstr "ĽŐĽíĽĂĽÔĄź¤ÇľŻĆ°¤ˇ¤ĆĽ¤ĽóĽšĽČĄźĽë¤ň¤ä¤ę¤Ę¤Ş¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#~ msgid "It is necessary to restart installation with the new parameters"
-#~ msgstr "ĽŃĽéĽáĄźĽż¤ňĘѤ¨¤ĆĽ¤ĽóĽšĽČĄźĽë¤ň¤ä¤ę¤Ę¤Ş¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
+#~ "¤â¤ˇ %s ¤ŹĂĺĂŚ˛ÄÇ˝¤ĘľĄ´ď¤Ę¤éĄ˘\n"
+#~ "ĽáĽÇĽŁĽ˘¤ŹÁŢĆţ¤ľ¤ě¤Ć¤¤¤ë¤ŤłÎǧ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
#~ msgid ""
-#~ "Failed to create an HTP boot floppy.\n"
-#~ "You may have to restart installation and give ``%s'' at the prompt"
+#~ "WARNING! This will format '%s'.\n"
+#~ "All data will be erased on the peripheral '%s'.\n"
+#~ "If you want to continue, press OK. "
#~ msgstr ""
-#~ "HTP ĽÖĄźĽČĽŐĽíĽĂĽÔĄź¤Ź¤Ä¤Ż¤ě¤Ţ¤ť¤ó¤Ç¤ˇ¤żĄŁ\n"
-#~ "Ľ¤ĽóĽšĽČĄźĽë¤ň¤ä¤ę¤Ę¤Ş¤ˇ¤ĆĄ˘Ľ×ĽíĽóĽ×ĽČ¤ÇĄČ%sĄÉ¤ČĆţÎϤˇ¤Ć¤ß¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ msgid "User name:"
-#~ msgstr "ĽćĄźĽśĚž:"
-
-#~ msgid "Password:"
-#~ msgstr "ĽŃĽšĽďĄźĽÉ:"
+#~ "Ăí°ŐĄŞĄĄ¤ł¤ÎÁŕşî¤ň¤š¤ë¤Č '%s'¤ĎĽŐĽŠĄźĽŢĽĂĽČ¤ľ¤ě¤Ţ¤šĄŁ\n"
+#~ "źţĘŐľĄ´ď '%s'žĺ¤ÎĽÇĄźĽż¤Ď¤š¤Ů¤ĆžĂľî¤ľ¤ě¤Ţ¤šĄŁ\n"
+#~ "¤˝¤ě¤Ç¤âÂł¤ą¤ë¤Ę¤éĄ˘OK ¤ň˛Ą¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#~ msgid "developer"
-#~ msgstr "łŤČŻźÔ"
+#~ msgid "unknown"
+#~ msgstr "ÉÔžÜ"
-#~ msgid "beginner"
-#~ msgstr "˝éż´źÔ"
+#~ msgid "Select a module or write his name:"
+#~ msgstr "ĽâĽ¸ĽĺĄźĽë¤ňÁޤ֤ŤĚžÁ°¤ňťŘÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤:"
-#~ msgid "Linear (needed for some SCSI drives)"
-#~ msgstr "ĽęĽËĽ˘ (SCSI ĽÉĽéĽ¤ĽÖ¤Î°ěÉô¤ÇÉŹÍ×)"
-
-#~ msgid "linear"
-#~ msgstr "ĽęĽËĽ˘"
+#~ msgid "Category"
+#~ msgstr "ĽŤĽĆĽ´ĽęĄź"
-#~ msgid "After %s partition %s,"
-#~ msgstr "%s ĽŃĄźĽĆĽŁĽˇĽçĽó¤Ť¤é %s,"
+#~ msgid "preload module"
+#~ msgstr "ĽâĽ¸ĽĺĄźĽë¤ÎĽ×ĽęĽíĄźĽÉ"
-#~ msgid "changing type of"
-#~ msgstr "ĽżĽ¤Ľ×¤ÎĘŃšš"
+#~ msgid "click on a category"
+#~ msgstr "ĽŤĽĆĽ´ĽęĄź¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#~ msgid "resizing"
-#~ msgstr "ĽęĽľĽ¤ĽşĂć"
+#~ msgid "Remove"
+#~ msgstr "źč¤ę˝ü¤Ż"
-#~ msgid "Size: %s MB"
-#~ msgstr "ĽľĽ¤Ľş: %s MB"
+#~ msgid "Tool for boot disk creation"
+#~ msgstr "ĽÖĄźĽČĽÇĽŁĽšĽŻşîŔŽĽÄĄźĽë"
-#~ msgid "Bad kickstart file %s (failed %s)"
-#~ msgstr "ÉÔŔľ¤ĘĽ­ĽĂĽŻĽšĽżĄźĽČĽŐĽĄĽ¤Ľë %s (%s źşÇÔ)"
+#~ msgid "Show expert mode"
+#~ msgstr "Ľ¨Ľ­ĽšĽŃĄźĽČĽâĄźĽÉ¤ňÉ˝ź¨"
-#~ msgid "Too many packages chosen: %dMB doesn't fit in %dMB"
-#~ msgstr "Áޤó¤ŔĽŃĽĂĽąĄźĽ¸¤ŹÂż¤š¤Ž¤Ţ¤šĄŁ%dMB ¤˘¤ë¤Î¤Ç %dMB ¤Ë¤Ş¤ľ¤Ţ¤ę¤Ţ¤ť¤óĄŁ"
+#~ msgid "modules"
+#~ msgstr "ĽâĽ¸ĽĺĄźĽë"
-#~ msgid "Going to install %d MB. You can choose to install more programs"
-#~ msgstr "%d MB ¤ňĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ţ¤šĄŁ¤Ű¤Ť¤ÎĽ×ĽíĽ°ĽéĽŕ¤ňĽ¤ĽóĽšĽČĄźĽë˝ĐÍč¤Ţ¤š"
+#~ msgid "Boot disk maker. Still in early stage.\n"
+#~ msgstr "ĽÖĄźĽČĽÇĽŁĽšĽŻşîŔŽĽ˝ĽŐĽČĄŁ¤Ţ¤ŔłŤČŻ˝é´ü¤Ç¤šĄŁ\n"
-#~ msgid "Installation CD Nr 1"
-#~ msgstr "Ľ¤ĽóĽšĽČĽěĄźĽˇĽçĽó CD Nr 1"
+#~ msgid "experts only"
+#~ msgstr "Ľ¨Ľ­ĽšĽŃĄźĽČŔěÍŃ"
-#~ msgid "Local LAN"
-#~ msgstr "ĽíĄźĽŤĽë LAN"
+#~ msgid "/File/_Preferences"
+#~ msgstr "/ĽŐĽĄĽ¤Ľë(F)/Ľ×ĽěĽŐĽĄĽěĽóĽš(_P)"
diff --git a/perl-install/share/po/ko.po b/perl-install/share/po/ko.po
index 3c0726443..5366696ef 100644
--- a/perl-install/share/po/ko.po
+++ b/perl-install/share/po/ko.po
@@ -1,39 +1,67 @@
-# Korean translation of DrakeX.
-# Copyright (C) 1999 Free Software Foundation, Inc.
-# Copyright (c) 1999 MandrakeSoft
-# sangkim@dreamwiz.com, 1999.
-# Ricky Jang <ricky@iolinux.co.kr>, 2000
-# Jaegeum Choe <baedaron@hananet.net>, 2001
+# Korean translation of drakbootdisk.
+# Copyright (C) 2001 Free Software Foundation, Inc.
+# Jaegeum Choe <baedaron@hananet.net>, 2001.
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX 1.1.5\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2001-09-24 01:16--500\n"
+"Project-Id-Version: drakfloppy 0.42\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2001-08-23 20:00+0900\n"
"Last-Translator: Jaegeum Choe <baedaron@hananet.net>\n"
-"Language-Team: Korean <baedaron@hananet.net>\n"
+"Language-Team: Korean\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=euc-kr\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "¸đľç Çěľĺ¸Ś ľś¸łŔűŔ¸ˇÎ źłÁ¤"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Xinerama ČŽŔĺ ťçżë"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Ą¸%sĄšÄŤľĺ¸¸ źłÁ¤ (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "16 MB ŔĚťó"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "X ź­šö źąĹĂ"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X ź­šö"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "´ŮÁß Çěľĺ źłÁ¤"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -41,43 +69,44 @@ msgstr ""
"´ÔŔÇ ˝Ă˝şĹŰŔş ´ŮÁß Çěľĺ źłÁ¤Ŕť ÁöżřÇŐ´Ď´Ů.\n"
"žîśť°Ô ÇϽðڽŔ´Ďąî?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "ą×ˇĄÇČ ÄŤľĺ"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "ą×ˇĄÇČ ÄŤľĺŔÇ ¸Ţ¸đ¸Ž żëˇŽŔť źąĹĂÇĎźźżä"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "ą×ˇĄÇČ ÄŤľĺ źąĹĂ"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "XFree źłÁ¤"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "X ź­šö źąĹĂ"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "žî´Ŕ XFree źłÁ¤Ŕť źąĹĂÇϽðڽŔ´Ďąî?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X ź­šö"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "¸đľç Çěľĺ¸Ś ľś¸łŔűŔ¸ˇÎ źłÁ¤"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "X ź­šö źąĹĂ"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Xinerama ČŽŔĺ ťçżë"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X ź­šö"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Ą¸%sĄšÄŤľĺ¸¸ źłÁ¤ (%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "žî´Ŕ XFree źłÁ¤Ŕť źąĹĂÇϽðڽŔ´Ďąî?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s¸Ś ťçżëÇŃ 3D ÇĎľĺżţžî °ĄźÓ"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -86,32 +115,17 @@ msgstr ""
"´ÔŔÇ ÄŤľĺ´Â XFree %sˇÎ¸¸ °Ą´ÉÇŃ 3D ÇĎľĺżţžî °ĄźÓąâ´ÉŔĚ ÁöżřľË´Ď´Ů.\n"
"´ÔŔÇ ÄŤľĺ´Â žîÂź¸é ş¸´Ů ÇâťóľČ 2D źş´ÉŔť ş¸ŔĎ źö ŔÖ´Â XFree %sŔť ÁöżřÇŐ´Ď´Ů."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "´ÔŔÇ ÄŤľĺ´Â XFree %sˇÎ 3D ÇĎľĺżţžî °ĄźÓąâ´ÉŔť ÁöżřÇŐ´Ď´Ů."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s¸Ś ťçżëÇŃ 3D ÇĎľĺżţžî °ĄźÓ"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"´ÔŔÇ ÄŤľĺ´Â XFree %sˇÎ¸¸ °Ą´ÉÇŃ 3D ÇĎľĺżţžî °ĄźÓąâ´ÉŔĚ ÁöżřľË´Ď´Ů.\n"
-"ÁÖŔÇ: ŔĚ°ÍŔş ˝ÇÇčŔűŔÎ ÁöżřŔĚ¸ç ´ÔŔÇ ÄÄÇťĹ͸Ś ¸ŘĂß°Ô ÇŇ źö ŔÖ˝Ŕ´Ď´Ů."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s¸Ś ťçżëÇŃ ˝ÇÇčŔű 3D ÇĎľĺżţžî °ĄźÓ"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -122,31 +136,58 @@ msgstr ""
"ÁÖŔÇ: ŔĚ°ÍŔş ˝ÇÇčŔűŔÎ ÁöżřŔĚ¸ç ´ÔŔÇ ÄÄÇťĹ͸Ś ¸ŘĂß°Ô ÇŇ źö ŔÖ˝Ŕ´Ď´Ů.\n"
"´ÔŔÇ ÄŤľĺ´Â žîÂź¸é ş¸´Ů ÇâťóľČ 2D źş´ÉŔť ş¸ŔĎ źö ŔÖ´Â XFree %sŔť ÁöżřÇŐ´Ď´Ů."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"´ÔŔÇ ÄŤľĺ´Â XFree %sˇÎ¸¸ °Ą´ÉÇŃ 3D ÇĎľĺżţžî °ĄźÓąâ´ÉŔĚ ÁöżřľË´Ď´Ů.\n"
+"ÁÖŔÇ: ŔĚ°ÍŔş ˝ÇÇčŔűŔÎ ÁöżřŔĚ¸ç ´ÔŔÇ ÄÄÇťĹ͸Ś ¸ŘĂß°Ô ÇŇ źö ŔÖ˝Ŕ´Ď´Ů."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (źłÄĄ ÇĽ˝Ă ľĺśóŔĚšö)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree źłÁ¤"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "ą×ˇĄÇČ ÄŤľĺŔÇ ¸Ţ¸đ¸Ž żëˇŽŔť źąĹĂÇĎźźżä"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "ź­šö żÉźÇŔť źąĹĂÇĎźźżä"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"şŻ°ćťçÇ×Ŕť ŔúŔĺÇŇąîżä?\n"
+"ÇöŔç źłÁ¤:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "¸đ´ĎĹ͸Ś źąĹĂÇĎźźżä"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "¸đ´ĎĹÍ"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "ťçżëŔÚ Á¤ŔÇ"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "ŔĎšÝ ¸śżě˝ş"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "ľÇľš¸Žąâ"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -168,510 +209,325 @@ msgstr ""
"´ÔŔÇ ¸đ´ĎĹÍ°Ą ČŃźŐľÉ źö ŔÖ˝Ŕ´Ď´Ů.\n"
"Ŕß ¸đ¸Ł°Ú´Ů¸é, žČŔüÇĎ°Ô łˇŔş źłÁ¤°ŞŔť źąĹĂÇĎźźżä"
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "źöĆň ÁÖĆÄźö"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "źöÁ÷ ÁÖĆÄźö"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "¸đ´ĎĹÍ°Ą źłÁ¤ľÇÁö žĘžŇ˝Ŕ´Ď´Ů."
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "ą×ˇĄÇČ ÄŤľĺ°Ą žĆÁ÷ źłÁ¤ľÇÁö žĘžŇ˝Ŕ´Ď´Ů."
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "ÇŘťóľľ°Ą źąĹĂľÇÁö žĘžŇ˝Ŕ´Ď´Ů."
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "ŔĚ źłÁ¤Ŕť Ĺ×˝şĆŽÇŘ ş¸˝Ă°Ú˝Ŕ´Ďąî?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "ÁÖŔÇ : ŔĚ ą×ˇĄÇČ ÄŤľĺ¸Ś Ĺ×˝şĆŽÇϸé ÄÄÇťĹÍ°Ą ¸ŘĂâÁöľľ ¸đ¸¨´Ď´Ů."
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "źłÁ¤ Ĺ×˝şĆŽ"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 ťöťó (8 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"ŔϺΠŔÎŔÚ°ŞľéŔť şŻ°ćÇŘ ş¸źźżä."
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "3¸¸2Ăľ ťöťó (15 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "6¸¸5Ăľ ťöťó (16 bits)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "%d ĂĘ ł˛žŇ˝Ŕ´Ď´Ů."
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "Ăľ6šé¸¸ ťöťó (24bits)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "ŔĚ źłÁ¤ŔĚ ¸Â˝Ŕ´Ďąî?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "40žď ťöťó (32 bits)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů. ŔϺΠŔÎŔÚ°ŞŔť şŻ°ćÇŘ ş¸źźżä."
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "ÇŘťóľľ"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "ÇŘťóľľ"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "ÇŘťóľľżÍ ťöťóŔť źąĹĂÇĎźźżä"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "ą×ˇĄÇČ ÄŤľĺ: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 ź­šö: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Ăß°Ą żÉźÇ"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "ĂëźŇ"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "ČŽŔÎ"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "ŔüšŽ°Ą ¸đľĺ"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "¸đľÎ ÇĽ˝Ă"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "ŔĚ źłÁ¤Ŕť Ĺ×˝şĆŽÇŘ ş¸˝Ă°Ú˝Ŕ´Ďąî?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "ÇŘťóľľ"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "źłÁ¤ Ĺ×˝şĆŽ"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Ĺ°ş¸ľĺ ÇüĹÂ: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "¸śżě˝ş Ážˇů: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "¸śżě˝ş ŔĺÄĄ: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "¸đ´ĎĹÍ: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "¸đ´ĎĹÍ źöĆňÁÖĆÄźö: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "¸đ´ĎĹÍ źöÁ÷ÁÖĆÄźö: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "ą×ˇĄÇČ ÄŤľĺ: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "ą×ˇĄÇČ ÄŤľĺ ID: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "şńľđżŔ ¸Ţ¸đ¸Ž: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "ťöťó ˝Éľľ: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "ÇŘťóľľ: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 ź­šö: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 ľĺśóŔĚšö: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "X-Window źłÁ¤ ÁŘşńÁß"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "žîśť°Ô ÇϽðڽŔ´Ďąî?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "¸đ´ĎĹÍ şŻ°ć"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "ą×ˇĄÇČ ÄŤľĺ şŻ°ć"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "ź­šö żÉźÇ şŻ°ć"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "ÇŘťóľľ şŻ°ć"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Á¤ş¸ ş¸ąâ"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "´Ů˝Ă Ĺ×˝şĆŽ"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Ážˇá"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"şŻ°ćťçÇ×Ŕť ŔúŔĺÇŇąîżä?\n"
-"ÇöŔç źłÁ¤:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "˝ĂŔ۽à šŮˇÎ X ˝ÇÇŕ"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"şÎĆýÿĄ ŔÚľżŔ¸ˇÎ XŔŠľľżě°Ą ˝ĂŔ۾ǾľˇĎ ÇŇźö ŔÖ˝Ŕ´Ď´Ů.\n"
"´Ů˝Ă şÎĆĂÇßŔťś§ ŔÚľżŔ¸ˇÎ XŔŠľľ°Ą ˝ĂŔŰľÇąć żřÇĎźźżä?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "şŻ°ćťçÇ×Ŕť ŔűżëÇϡÁ¸é %sˇÎ ŔçˇÎą×ŔÎ ÇĎźźżä."
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "ˇÎą×žĆżôÇĎ°í Crtl-Alt-BackSpaceĹ°¸Ś ´Š¸Łźźżä."
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 ťöťó (8 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "3¸¸2Ăľ ťöťó (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "6¸¸5Ăľ ťöťó (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "Ăľ6šé¸¸ ťöťó (24bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "40žď ťöťó (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "16 MB ŔĚťó"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "ÇĽÁŘ VGA, 640x480 @ 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "˝´ĆŰ VGA, 800x600 @ 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 ČŁČŻ, 1024x768 @ 87 Hz interlaced (800x600 žČľĘ)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "˝´ĆŰ VGA, 1024x768 @ 87 Hz interlaced, 800x600 @ 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "ČŽŔĺ ˝´ĆŰ VGA, 800x600 @ 60 Hz, 640x480 @ 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "şńŔÎĹ͡šŔĚ˝ş SVGA, 1024x768 @ 60 Hz, 800x600 @ 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "°íÁÖĆÄźö SVGA, 1024x768 @ 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "1280x1024 @ 60 Hz Áöżř ´ŮÁßÁÖĆÄźö ¸đ´ĎĹÍ"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "1280x1024 @ 74 Hz Áöżř ´ŮÁßÁÖĆÄźö ¸đ´ĎĹÍ"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "1280x1024 @ 76 Hz Áöżř ´ŮÁßÁÖĆÄźö ¸đ´ĎĹÍ"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "1600x1200 @ 70 Hz ťçżë °Ą´É ¸đ´ĎĹÍ"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "1600x1200 @ 76 Hz ťçżë °Ą´É ¸đ´ĎĹÍ"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "şÎĆŽ ĆÄĆźźÇŔÇ Ăššř° ź˝ĹÍ"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "ľĺśóŔĚşęŔÇ Ăššř° ź˝ĹÍ(MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "SILO źłÄĄ"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "şÎĆŽˇÎ´ő¸Ś žîľđżĄ źłÄĄÇĎ°í ˝ÍŔ¸źźżä?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "LILO/GRUB źłÄĄ"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "ĹŘ˝şĆŽ ¸Ţ´ş LILO"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "ą×ˇĄÇČ ¸Ţ´ş LILO"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "ľľ˝ş/ŔŠľľżěÁź­ şÎĆĂ(loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "şÎĆŽˇÎ´ő ÁÖ żÉźÇľé"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "ťçżëÇŇ şÎĆŽˇÎ´ő"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "şÎĆŽˇÎ´ő źłÄĄ"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "şÎĆŽ ŔĺÄĄ"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (żŔˇĄľČ BIOSľéżĄźą ŔŰľżÇĎÁö žĘŔťźöľľ ŔÖ˝Ŕ´Ď´Ů.)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "ÄŢĆŃľĺ ¸đľĺ"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "ÄŢĆŃĆŽ ¸đľĺ"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "şńľđżŔ ¸đľĺ"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "ąâşť ŔĚšĚÁöˇÎ şÎĆĂľÉ ś§ąîÁö ÁöżŹ˝Ă°Ł"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "žĎČŁ"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "žĎČŁ (ČŽŔÎ)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "¸íˇÉÇŕ żÉźÇŔť ÁŚÇŃÇŐ´Ď´Ů."
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "ÁŚÇŃ"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "şÎĆýà /tmp ľđˇşĹ与 ŔÚľż ĂťźŇ"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "żÉźÇ: Á¤ČŽÇŃ ¸Ţ¸đ¸Ž żëˇŽ (%d MB šß°ß)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "´ŮÁß profiles Çăżë"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "¸Ţ¸đ¸Ž żëˇŽ¸Ś MBˇÎ ŔÔˇÂÇĎźźżä"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "żÉźÇ: Ą¸¸íˇÉÇŕ żÉźÇÁŚÇŃĄšŔş žĎČŁžřŔĚ ťçżëľÉźö žř˝Ŕ´Ď´Ů."
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "´Ů˝Ă ˝ĂľľÇĎźźżä."
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "žĎČŁ°Ą ŔĎÄĄÇĎÁö žĘ˝Ŕ´Ď´Ů."
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "ĂĘąâČ­ ¸Ţ˝ĂÁö"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Ćßżţžî ż­ąâ ÁöżŹ"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "ÄżłÎ şÎĆŽ ÁŚÇѽðŁ"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "CD şÎĆĂ Çăżë?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "OF şÎĆĂ Çăżë?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "ąâşť OS?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -680,83 +536,83 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"¸î °ĄÁö Ç׸ńŔĚ żŠąâżĄ ÇĽ˝ĂľÇ°í ŔÖ˝Ŕ´Ď´Ů.\n"
"´ő Ăß°ĄÇĎ°ĹłŞ, ąâÁ¸ŔÇ °ÍľéŔť źöÁ¤ÇŇźö ŔÖ˝Ŕ´Ď´Ů."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Ăß°Ą"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "żĎˇá"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "şŻ°ć"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "žîś˛ ÁžˇůŔÇ Ç׸ńŔť Ăß°ĄÇϽðڽŔ´Ďąî?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "¸Ž´Ş˝ş"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "ąâŸ OS (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "ąâŸ OS (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "ąâŸ OS (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "ŔĚšĚÁö"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "ˇçĆŽ"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Ăß°Ą"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "ĂĘąâČ­ ˇĽľđ˝şĹŠ"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "ŔĐąâ-ž˛ąâ"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Ĺ×ŔĚşí"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Ŕ§Çč"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Ç׸ń¸í"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "ąâşť°Ş"
@@ -781,61 +637,82 @@ msgid "You must specify a kernel image"
msgstr ""
#: ../../any.pm_.c:340
-#, fuzzy
msgid "You must specify a root partition"
-msgstr "˝şżŇ ĆÄĆźźÇŔş šÝľĺ˝Ă ÇĘżäÇŐ´Ď´Ů."
+msgstr "ˇçĆŽ ĆÄĆźźÇŔş šÝľĺ˝Ă ÁöÁ¤ľÇžîžß ÇŐ´Ď´Ů."
#: ../../any.pm_.c:341
msgid "This label is already used"
msgstr "ŔĚ Ç׸ń¸íŔş ŔĚšĚ ťçżëľÇ°í ŔÖ˝Ŕ´Ď´Ů."
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "%s %s ŔÎĹÍĆäŔĚ˝ş°Ą °¨ÁöľÇžú˝Ŕ´Ď´Ů."
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "śÇ ´Ů¸Ľ°ÍŔĚ źłÄĄľÇžî ŔÖ˝Ŕ´Ďąî?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "śÇ ´Ů¸Ľ %s ŔÎĹÍĆäŔĚ˝ş°Ą źłÄĄľÇžî ŔÖ˝Ŕ´Ďąî?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "žĆ´ĎżŔ"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "żš"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "ÇĎľĺżţžî Á¤ş¸ ş¸ąâ"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "%sÄŤľĺ ľĺśóŔĚšö %s źłÄĄÁß"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(%s ¸đľâ ťçżë)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"ŔĚÁŚ %s ľĺśóŔĚšöżĄ żÉźÇŔť ÁöÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů.\n"
+"żÉźÇŔş ``Ŕ̸§=°Ş Ŕ̸§2=°Ş2 ...''Çü˝ÄŔ¸ˇÎ ÁöÁ¤ÇŐ´Ď´Ů..\n"
+"°ĄˇÉ, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "¸đľâ żÉźÇľé:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "žîś˛ %s ľĺśóŔĚšö¸Ś ˝ĂľľÇŘ şž´Ďąî?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -852,37 +729,15 @@ msgstr ""
"ŔÚľż°ËťöŔş žîÂź´Ů°Ą ÄÄÇťĹ͸Ś ¸ŘĂß°Ô ÇŇ źöľľ ŔÖ˝Ŕ´Ď´Ů.ÇĎÁö¸¸,\n"
"ŔĺÄĄ¸Ś ČŃźŐÇĎÁö´Â žĘ˝Ŕ´Ď´Ů."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "ŔÚľż°Ëťö"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "żÉźÇ ÁöÁ¤"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"ŔĚÁŚ %s ľĺśóŔĚšöżĄ żÉźÇŔť ÁöÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů.\n"
-"żÉźÇŔş ``Ŕ̸§=°Ş Ŕ̸§2=°Ş2 ...''Çü˝ÄŔ¸ˇÎ ÁöÁ¤ÇŐ´Ď´Ů..\n"
-"°ĄˇÉ, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "¸đľâ żÉźÇľé:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -891,49 +746,54 @@ msgstr ""
"%s ¸đľâŔť ŔĐžîľéŔĚ´ÂľĽ ˝ÇĆĐÇß˝Ŕ´Ď´Ů.\n"
"´Ů¸Ľ °ŞŔ¸ˇÎ ´Ů˝Ă ˝ĂľľÇŘ ş¸˝Ă°Ú˝Ŕ´Ďąî?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
-msgstr ""
+msgstr "X ÇÁˇÎą×ˇĽ ž×źź˝ş"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
-msgstr ""
+msgstr "RPM ľľą¸ ž×źź˝ş"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
-msgstr ""
+msgstr "Ą¸suĄšÇăżë"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
-msgstr ""
+msgstr "˝Ă˝şĹŰ °ü¸ŽĆÄŔĎ ž×źź˝ş"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(ŔĚšĚ %s´Â(Ŕş) Ăß°ĄľÇžú˝Ŕ´Ď´Ů.)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "ŔĚ žĎČŁ´Â łĘšŤ ´ÜźřÇŐ´Ď´Ů."
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "ťçżëŔÚ¸íŔť ŔÔˇÂÇŘ ÁÖźźżä"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "ťçżëŔÚ¸íŔş żľšŽ źŇšŽŔÚłŞ źýŔÚ, '-' ą×¸Ž°í '_' ¸¸ Ć÷ÇԾɟö ŔÖ˝Ŕ´Ď´Ů."
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "ŔĚ ťçżëŔÚ¸íŔş ŔĚšĚ Ăß°ĄľÇžî ŔÖ˝Ŕ´Ď´Ů."
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "ŔĚ ťçżëŔÚ¸íŔş ŔĚšĚ Ăß°ĄľÇžî ŔÖ˝Ŕ´Ď´Ů."
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "ťçżëŔÚ Ăß°Ą"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -942,32 +802,32 @@ msgstr ""
"ťçżëŔÚ ŔÔˇÂ\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "ťçżëŔÚ Çă°Ą"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "˝ÇÁŚ Ŕ̸§"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "ťçżëŔÚ¸í"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "¸íˇÉ ÇŘźŽąâ"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "žĆŔĚÄÜ"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "ŔÚľżˇÎą×ŔÎ"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -975,123 +835,98 @@ msgstr ""
"ŔÚľżŔ¸ˇÎ ĆŻÁ¤ ťçżëŔڡΟ­ ˇÎą×ŔξǾľˇĎ ÇŇ źö ŔÖ˝Ŕ´Ď´Ů.\n"
"Ŕ̡ą ĆŻźşŔť żřÇĎźźżä?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "ąâşť ťçżëŔÚ¸Ś źąĹĂÇĎźźżä:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "ťçżëÇŇ ŔŠľľżě ¸Ĺ´ĎŔú¸Ś źąĹĂÇĎźźżä:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr "ťçżëÇŇ žđžî¸Ś źąĹĂÇŘ ÁÖźźżä."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr "źłÄĄČÄ ´Ů¸Ľ ´Ů¸Ľ žđžî¸Ś źąĹĂÇŇźö ŔÖ˝Ŕ´Ď´Ů."
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "¸đľÎ"
-#: ../../any.pm_.c:955
-#, fuzzy
+#: ../../any.pm_.c:973
msgid "Allow all users"
-msgstr "ťçżëŔÚ Ăß°Ą"
+msgstr "¸đľç ťçżëŔÚ Çăżë"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "ťçżëŔÚ Á¤ŔÇ"
-
-#: ../../any.pm_.c:955
-#, fuzzy
+#: ../../any.pm_.c:973
msgid "No sharing"
-msgstr "ĆÄŔĎ °řŔŻ"
+msgstr "şń°řŔŻ"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
-#, fuzzy, c-format
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
+#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr ""
-"ŔĚ ĆŃĹ°Áö´Â šÝľĺ˝Ă ž÷ą×ˇšŔĚľĺľÇžîžß ÇŐ´Ď´Ů.\n"
-"Á¤¸ťˇÎ źąĹĂŔť ÇŘÁŚÇϽðڽŔ´Ďąî?"
+msgstr "ĆŃĹ°Áö %s°Ą ÇĘżäÇŐ´Ď´Ů. źłÄĄÇĎ°Ú˝Ŕ´Ďąî?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr ""
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
+msgstr "NFSżÍ ťďšŮ Áß, žî´Ŕ °ÍŔť ŔĚżëÇϽðڽŔ´Ďąî?"
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
-msgstr ""
+msgstr "ÇĘźö ĆŃĹ°Áö %s°Ą žř˝Ŕ´Ď´Ů."
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "ĂëźŇ"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
-msgstr ""
+msgstr "ťçżëŔھ塚ŔĚĹŠ ˝ÇÇŕ"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "ş¸žČżĄ ˝Ĺ°ćžČž¸"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "ĂÖŔú"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "ÇĽÁŘ"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "łôŔ˝"
-#: ../../any.pm_.c:1039
-#, fuzzy
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
-msgstr "łôŔ˝"
+msgstr "´ő łôŔ˝"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "ĂÖ°í"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1101,7 +936,7 @@ msgstr ""
"żëŔĚÇĎ°ÚÁö¸¸ ¸Ĺżě šÎ°¨ÇĎ°Ô ŔŰľżÇŐ´Ď´Ů: ŔÎĹÍłÝŔĚłŞ ł×ĆŽż÷żĄ żŹ°áľČ ˝Ă˝şĹŰżë\n"
"Ŕ¸ˇÎ´Â ťçżëÇĎÁö ¸śźźżä. žĎČŁąâ´ÉŔĚ žř˝Ŕ´Ď´Ů."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1109,7 +944,7 @@ msgstr ""
"žĎČŁąâ´ÉŔĚ ŔűżëľÇÁö¸¸, ł×ĆŽż÷żĄ żŹ°áľČ ÄÄÇťĹ͡ΠťçżëÇϹ⿥´Â žĆÁ÷ ŔűŔýÇĎÁö žĘ"
"˝Ŕ´Ď´Ů."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1118,53 +953,54 @@ msgstr ""
"ŔĚ ľîąŢŔş ĹŹśóŔĚžđĆŽˇÎź­ ŔÎĹͳݿĄ Á˘źÓÇĎ´ÂľĽ Ŕű´çÇŃ ÇĽÁŘ ş¸žČľîąŢŔÔ´Ď´Ů.\n"
"ŔĚ ľîąŢşÎĹÍ ŔűÁ¤ÇŃ ˝Ă˝şĹŰ ş¸žČ ÁĄ°Ëąâ´ÉŔĚ ŔÖ˝Ŕ´Ď´Ů. "
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"ŔĚ ş¸žČľîąŢŔ¸ˇÎ ŔĚ ˝Ă˝şĹŰŔť ź­šöˇÎ żîżëÇŇ źö ŔÖ°Ô ľË´Ď´Ů.\n"
"ŔĚ ş¸žČľîąŢŔş żÜşÎŔÇ ĹŹśóŔĚžđĆŽľéŔÇ Á˘źÓŔť šŢžĆľéŔĚ´ÂľĽ ŔÖžîź­ \n"
"ĂćşĐČ÷ łôŔş ş¸žČľîąŢŔÔ´Ď´Ů. "
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"ş¸žČ 4 ľîąŢŔĚ ŔűżëľË´Ď´Ů. ˝Ă˝şĹŰŔĚ żĎŔüČ÷ żÜşÎÁ˘ąŮżĄź­ °Ý¸ŽľË´Ď´Ů.\n"
"ĂÖ°í ş¸žČ źöÁŘŔÔ´Ď´Ů."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "ş¸žČ ´Ü°č¸Ś źąĹĂÇŘ ÁÖźźżä"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "ş¸žČ źöÁŘ"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "ź­šöżĄ ´ëÇŘ libsafe ťçżë"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr "šöĆŰ łŃħŔĚłŞ Çü˝ÄČ­ šŽŔÚż­ °ř°ÝŔť ¸ˇ´Â śóŔ̺ꡯ¸Ž."
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1173,11 +1009,6 @@ msgid ""
"wait %d seconds for default boot.\n"
"\n"
msgstr ""
-"%s żîżľĂźÁŚ źąĹù⿥ żŔ˝Ĺ °ÍŔť ČŻżľÇŐ´Ď´Ů!\n"
-"\n"
-"Ŕ§ ¸Ž˝şĆŽżĄź­ żîżľĂźÁŚ¸Ś źąĹĂÇĎźźżä.\n"
-"ą×ˇ¸Áö žĘŔ¸¸é %dĂĘ ČÄżĄ ąâşť°ŞŔ¸ˇÎ şÎĆĂÇŐ´Ď´Ů.\n"
-"\n"
# NOTE: this message will be displayed by grub at boot time; that is
# using the BIOS font; that means cp437 charset on 99.99% of PC computers
@@ -1189,52 +1020,52 @@ 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_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
-msgstr "żîżľĂźÁŚ źąĹĂŔÚ GRUBżĄ żŔ˝Ĺ°É ČŻżľÇŐ´Ď´Ů."
+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_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "%cĹ°żÍ %c¸Ś ťçżëÇĎżŠ šÝŔüľČ Ç׸ńŔť źąĹĂÇĎźźżä."
+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_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "źąĹĂľČ żîżľĂźÁŚˇÎ şÎĆĂÇҡÁ¸é żŁĹ͸Ś, źöÁ¤ÇҡÁ¸é 'e'¸Ś ´­ˇŻÁÖźźżä."
+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_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
-msgstr "şÎĆĂŔü ¸íˇÉľé śÇ´Â, ¸íˇÉÇŕŔť Ŕ§ÇŘź­´Â 'c'´­ˇŻÁÖźźżä."
+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_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "šÝŔüľČ Ç׸ńŔ¸ˇÎ %dĂĘČÄ ŔÚľżŔ¸ˇÎ şÎĆþ˴ϴŮ."
+msgstr ""
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "/bootżĄ °ř°ŁŔĚ şÎÁˇÇŐ´Ď´Ů."
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "ľĽ˝şĹŠĹž"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "˝ĂŔŰ ¸Ţ´ş"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Ą¸%sĄšĆÄĆźźÇżĄ şÎĆŽˇÎ´ő¸Ś źłÄĄÇŇ źö žř˝Ŕ´Ď´Ů.\n"
@@ -1247,15 +1078,19 @@ msgstr "žĆÁ÷ ľľżň¸ťŔĚ ÁŘşńľÇÁö žĘžŇ˝Ŕ´Ď´Ů.\n"
msgid "Boot Style Configuration"
msgstr "şÎĆĂ ˝şĹ¸ŔĎ źłÁ¤"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/ĆÄŔĎ(_F)"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/ĆÄŔĎ(F)/Ážˇá(_Q)"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1290,14 +1125,14 @@ msgstr "Yaboot ¸đľĺ"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"ÇöŔç şÎĆŽ °ü¸ŽŔڡΠ%s¸Ś ťçżëÇĎ°í ŔÖ˝Ŕ´Ď´Ů.\n"
"źłÁ¤ ¸śšýťç¸Ś ˝ÇÇŕÇϡÁ¸é Ą¸źłÁ¤ĄšŔť ´Š¸Łźźżä."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "źłÁ¤"
@@ -1307,7 +1142,7 @@ msgid "System mode"
msgstr "˝Ă˝şĹŰ ¸đľĺ"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "˝ĂŔŰÇŇ ś§ X-Window ˝ÇÇŕ"
#: ../../bootlook.pm_.c:148
@@ -1318,14 +1153,16 @@ msgstr "žĆ´ĎżŔ, ŔÚľżˇÎą×ŔÎŔť ťçżëÇĎÁö žĘ˝Ŕ´Ď´Ů."
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "żš, ŔÚľżˇÎą×ŔÎŔť ťçżëÇŐ´Ď´Ů."
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "ČŽŔÎ"
@@ -1374,68 +1211,61 @@ msgstr "´őŔĚťó ĆÄĆźźÇŔť Ăß°ĄÇŇ źö žř˝Ŕ´Ď´Ů."
msgid "Screenshots will be available after install in %s"
msgstr "źłÄĄČÄ ´Ů¸Ľ ´Ů¸Ľ žđžî¸Ś źąĹĂÇŇźö ŔÖ˝Ŕ´Ď´Ů."
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
-#, fuzzy
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "ÇÁśű˝ş"
#: ../../crypto.pm_.c:13
msgid "Costa Rica"
-msgstr ""
+msgstr "ÄÚ˝şĹ¸¸ŽÄŤ"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
-#, fuzzy
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "ş§ąâżĄ"
#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
msgid "Czech Republic"
-msgstr ""
+msgstr "ĂźÄÚ °řČ­ąš"
#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-#, fuzzy
msgid "Germany"
msgstr "ľśŔĎ"
#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-#, fuzzy
msgid "Greece"
msgstr "ą×¸Ž˝ş"
#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-#, fuzzy
msgid "Norway"
msgstr "łë¸ŁżţŔĚ"
#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-#, fuzzy
msgid "Sweden"
msgstr "˝şżţľ§"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
-msgstr ""
+msgstr "ł×´úśőľĺ"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
-#, fuzzy
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "ŔĚĹť¸ŽžĆ"
#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-#, fuzzy
msgid "Austria"
-msgstr "˝Ă¸Žžó ¸śżě˝ş"
+msgstr "żŔ˝şĆŽ¸ŽžĆ"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
-msgstr ""
+msgstr "šĚąš"
#: ../../diskdrake/hd_gtk.pm_.c:94
msgid "Please make a backup of your data first"
msgstr "¸ŐŔú ľĽŔĚĹ͸Ś šéž÷ÇĎźźżä."
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "ÁÖŔÇąí°Ô ŔĐŔ¸źźżä!"
@@ -1449,11 +1279,12 @@ msgstr ""
"¸é ĂćşĐÇÔ)\n"
"Ŕť ł˛ąâľľˇĎ ÁÖŔÇÇĎźźżä."
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "żŔˇů"
@@ -1461,11 +1292,11 @@ msgstr "żŔˇů"
msgid "Wizard"
msgstr "¸śšýťç"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "ÇŕľżŔť źąĹĂÇĎźźżä"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1477,143 +1308,148 @@ msgstr ""
"¸ŐŔú ą× ĆÄĆźźÇŔÇ ĹŠąâ¸Ś ÁśÁ¤ÇŇ °ÍŔť ąÇŔĺÇŐ´Ď´Ů.\n"
"(ą×°ÍŔť ĹŹ¸ŻÇŃČÄ, \"ĹŠąâÁśÁ¤\"Ŕť ĹŹ¸ŻÇĎźźżä.)"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "ĆÄĆźźÇŔť ĹŹ¸ŻÇĎźźżä"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "ťóźźźł¸í"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "ŔúłÎČ­ FS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "˝şżŇ"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "şó°ř°Ł"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "ąâŸ"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "ĆÄŔϽýşĹŰ ŔŻÇü:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "ťýźş"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "ŔŻÇü"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "´ë˝ĹżĄ Ą¸%sĄš¸Ś ťçżëÇŐ´Ď´Ů"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "ťčÁŚ"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Ą¸žđ¸śżîĆŽĄš¸Ś ¸ŐŔú ťçżëÇĎźźżä"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "%sŔÇ ĆÄĆźźÇ ŔŻÇüŔť şŻ°ćČÄ ŔĚ ĆÄĆźźÇłťŔÇ ¸đľç ŔڡḌ ŔŇ°Ô ľË´Ď´Ů."
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "ĆÄĆźźÇ źąĹĂ"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Ăß°Ą ĆÄĆźźÇ źąĹĂ"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Ážˇá"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "ŔüšŽ°Ą ¸đľĺˇÎ ŔüČŻ"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "ŔĎšÝ ¸đľĺˇÎ ŔüČŻ"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "ľÇľš¸Žąâ"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "°čźÓÇϽðڽŔ´Ďąî?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "ŔúŔĺÇĎÁö žĘ°í ÁžˇáÇϽðڽŔ´Ďąî?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "ĆÄĆźźÇŔť ąâˇĎÇĎÁö žĘ°í ÁžˇáÇϽðڽŔ´Ďąî?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "Ą¸/etc/fstabĄšŔÇ şŻ°ćťçÇ×Ŕť ŔúŔĺÇϽðڽŔ´Ďąî?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "ŔÚľż ÇŇ´ç"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "¸đľÎ ťčÁŚ"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Ăß°Ą żÉźÇ"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "ÇĎľĺ ľđ˝şĹŠ Á¤ş¸"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "¸đľç ÁÖĆÄĆźźÇŔĚ ťçżëÁßŔÔ´Ď´Ů."
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "´őŔĚťó ĆÄĆźźÇŔť Ăß°ĄÇŇ źö žř˝Ŕ´Ď´Ů."
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1621,31 +1457,31 @@ msgstr ""
"´ő ¸šŔş ĆÄĆźźÇŔť ¸¸ľĺ˝ÇˇÁ¸é, ČŽŔĺ ĆÄĆźźÇŔť ¸¸ľéźö ŔÖľľˇĎ ÁÖĆÄĆźźÇ ÇĎłŞ¸Ś Áöżě"
"źźżä."
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "ĆÄĆźźÇ Ĺ×ŔĚşí ŔúŔĺ"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "ĆÄĆźźÇ Ĺ×ŔĚşí şšą¸"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "ĆÄĆźźÇ Ĺ×ŔĚşí ŔŔąŢóĥ"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "ĆÄĆźźÇ Ĺ×ŔĚşí ´Ů˝Ă ŔĐąâ"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "ĹťÂř˝Ä šĚľđžî ŔÚľż ¸śżîĆŽ"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "ĆÄŔĎŔť źąĹĂÇĎźźżä."
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1653,11 +1489,11 @@ msgstr ""
"šéž÷ ĆÄĆźźÇ Ĺ×ŔĚşí ĹŠąâ°Ą °°Áö žĘ˝Ŕ´Ď´Ů.\n"
"°čźÓ ÇϽðڽŔ´Ďąî?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "°ć°í"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1665,122 +1501,129 @@ msgstr ""
"ÇáÎÇÇ ľđ˝şĹŠ¸Ś ľĺśóŔ̺꿥 łÖŔ¸źźżä\n"
"ÇáÎÇÇ ľđ˝şĹŠŔÇ ¸đľç ŔڡḌ ŔŇ°Ô ľË´Ď´Ů."
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "ĆÄĆźźÇ Ĺ×ŔĚşí şšą¸ ˝Ăľľ Áß..."
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "ŔÚźźÇŃ Á¤ş¸"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "¸śżîĆŽ Ŕ§ÄĄ"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "żÉźÇľé"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "ĹŠąâÁśÁ¤"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "ŔĚľż"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Ć÷¸Ë"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "¸śżîĆŽ"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "RAIDżĄ Ăß°Ą"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "LVMżĄ Ăß°Ą"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "žđ¸śżîĆŽ"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "RAIDˇÎşÎĹÍ ÁŚ°Ĺ"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "LVMŔ¸ˇÎşÎĹÍ ÁŚ°Ĺ"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "RAID źöÁ¤"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "ˇçÇÁšéŔ¸ˇÎ ťçżë"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "ťő ĆÄĆźźÇ ¸¸ľéąâ"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "˝ĂŔŰ ź˝ĹÍ: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "ĹŠąâ(MB) :"
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "ĆÄŔϽýşĹŰ ŔŻÇü: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "¸śżîĆŽ Ŕ§ÄĄ: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "ťçżëŔÚ Á¤ŔÇ"
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+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/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "ˇçÇÁšé ĆÄŔĎŔť ÁŚ°ĹÇŐ´Ďąî?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "ĆÄĆźźÇ ŔŻÇü şŻ°ć"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "žîś˛ ĆÄŔĎ ˝Ă˝şĹŰŔť żřÇĎźźżä?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "EXT2żĄź­ EXT3ˇÎ şŻ°ć"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "%sĆÄŔĎŔť žîľđżĄ ˇçÇÁšéŔ¸ˇÎ ¸śżîĆŽ ÇϽðڽŔ´Ďąî?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "ŔĺÄĄ %s¸Ś žîľđżĄ ¸śżîĆŽ ÇϽðڽŔ´Ďąî?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1789,125 +1632,130 @@ msgstr ""
"´Ů.\n"
"loopbackŔť ¸ŐŔú ÁŚ°ĹÇĎźźżä."
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "ľľ˝ş ĆÄŔϽýşĹŰŔÇ šüŔ§ °čťęÁß"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "ĹŠąâşŻ°ć"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "ŔĚ ĆÄĆźźÇŔş ĹŠąâşŻ°ćŔĚ ÇăżëľÇÁö žĘ˝Ŕ´Ď´Ů."
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "ŔĚ ĆÄĆźźÇŔÇ ¸đľç ľĽŔĚŸ¸Ś šéž÷ÇĎżŠžß ÇŐ´Ď´Ů."
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "%s ĆÄĆźźÇŔÇ ĹŠąâ¸Ś şŻ°ćÇϸé, ¸đľç ľĽŔĚŸ¸Ś ŔҰԾ˴ϴŮ."
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "ťőˇÎżî ĹŠąâ¸Ś źąĹĂÇŘ ÁÖźźżä"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "ťőˇÎżî żëˇŽ(MB):"
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "žîś˛ ľđ˝şĹŠ¸Ś ŔĚľżÇĎ°í ˝ÍŔ¸˝Ę´Ďąî?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "ź˝ĹÍ"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "žîś˛ ź˝Ĺ͸Ś ŔĚľżÇĎ°í ˝ÍŔ¸˝Ę´Ďąî?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "ŔĚľż Áß"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "ĆÄĆźźÇ ŔĚľż Áß..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Ăß°ĄÇŇ ąâÁ¸ RAID¸Ś źąĹĂÇĎźźżä."
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "ťőˇÎ ¸¸ľéąâ"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Ăß°ĄÇŇ LVM¸Ś źąĹĂÇĎźźżä"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "LVM Ŕ̸§?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "ŔĚ ĆÄĆźźÇŔş loopbackŔ¸ˇÎ ťçżëľÉ źö žř˝Ŕ´Ď´Ů."
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "ˇçÇÁšé"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "ˇçÇÁšé ĆÄŔĎ Ŕ̸§: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "ĆÄŔĎ Ŕ̸§Ŕť ŔÔˇÂÇĎźźżä."
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "´Ů¸Ľ ˇçÇÁšéŔĚ ŔĚ ĆÄŔĎŔť ťçżëÇĎ°í ŔÖ˝Ŕ´Ď´Ů, ´Ů¸Ľ °ÍŔť źąĹĂÇŘ ÁÖźźżä."
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "ĆÄŔĎŔĚ ŔĚšĚ Á¸ŔçÇŐ´Ď´Ů. ą×°ÍŔť ťçżëÇŐ´Ďąî?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "¸śżîĆŽ żÉźÇľé:"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "´ŮžçÇŃ"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "ŔĺÄĄ"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "ˇšş§"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "ĹŠąâ"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "ÁÖŔÇ : ŔĚ ÁśŔŰŔş Ŕ§ÇčÇŐ´Ď´Ů."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "žîś˛ ŔŻÇüŔÇ ĆÄĆźźÇŔÔ´Ďąî?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "ĆŃĹ°Áö %s°Ą ÇĘżäÇŐ´Ď´Ů. źłÄĄÇĎ°Ú˝Ŕ´Ďąî?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1918,7 +1766,7 @@ msgstr ""
"žř˝Ŕ´Ď´Ů. ( 1024 ˝Ç¸°´ő ŔĚÇĎżĄź­¸¸ °Ą´ÉÇŐ´Ď´Ů.\n"
"LILO¸Ś ťçżëÇŃ´Ů°í ÇĎ´őśóľľ ľżŔŰÇĎÁö žĘ°í, LILO ŔÚĂź¸Ś ťçżëÇŇźöľľ žř˝Ŕ´Ď´Ů."
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1929,7 +1777,7 @@ msgstr ""
"ľűśóź­ /boot ĆÄĆźźÇŔť °ĄÁúźö žř˝Ŕ´Ď´Ů.\n"
"LILO şÎĆŽ ¸Ĺ´ĎŔú¸Ś ťçżëÇϡÁ ÇѴٸé, ÁÖŔÇÇŘź­ /boot ĆÄĆźźÇŔť Ăß°ĄÇĎźźżä."
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1939,129 +1787,129 @@ msgstr ""
"žîś°ÇŃ şÎĆŽˇÎ´őľľ /boot ĆÄĆźźÇ žřŔĚ´Â ŔĚ°ÍŔť Ăł¸ŽÇĎÁö ¸řÇŐ´Ď´Ů.\n"
"ą×ˇŻšÇˇÎ /boot ĆÄĆźźÇŔť Ăß°ĄÇĎ´Â °ÍŔť ŔŘÁö ¸śźźżä."
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "%s ľĺśóŔĚşęŔÇ ĆÄĆźźÇ Ĺ×ŔĚşíŔť ŔúŔĺÇŐ´Ď´Ů."
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "şŻ°ćľČ°ÍŔť ŔűżëÇĎąâ Ŕ§ÇŘźą ¸ŽşÎĆĂŔĚ ÇĘżäÇŐ´Ď´Ů."
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "%s ĆÄĆźźÇŔť Ć÷¸ËÇϸé, ¸đľç ľĽŔĚŸ¸Ś ŔŇ°Ô ľË´Ď´Ů."
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Ć÷¸Ë Áß"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "loopback ĆÄŔĎ %s Ć÷¸ĹÁß"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "%s ĆÄĆźźÇ Ć÷¸ËÁß"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "ĆÄŔĎ źűąâąâ"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "ťő ĆÄĆźźÇŔ¸ˇÎ ĆÄŔĎ żČąâąâ"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"ľđˇşĹ与 %sżĄ´Â ŔĚšĚ ľĽŔĚĹÍ°Ą ŔÖ˝Ŕ´Ď´Ů.\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "ťő ĆÄĆźźÇŔ¸ˇÎ ĆÄŔĎ żČąâ´Â Áß"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "%s şšťç Áß"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "%s ÁŚ°Ĺ Áß"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "ŔĺÄĄ: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS ľĺśóŔĚşę šŽŔÚ: %s (´ÜÁö ĂßĂřŔĎ ťÓŔÓ)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "ŔŻÇü: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Ŕ̸§:"
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "˝ĂŔŰ: ź˝ĹÍ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "ĹŠąâ: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s ź˝ĹÍ"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "%d ˝Ç¸°´őşÎĹÍ %d ˝Ç¸°´őąîÁö\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Ć÷¸ËľÇžúŔ˝\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Ć÷¸Ë žČľÇžúŔ˝\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "¸śżîĆŽ ľÇžúŔ˝\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "ˇšŔĚľĺ ŔĺÄĄ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2070,7 +1918,7 @@ msgstr ""
"ˇçÇÁšé ĆÄŔĎ(ľé):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2078,27 +1926,27 @@ msgstr ""
"ąâşťŔűŔ¸ˇÎ şÎĆþǴ ĆÄĆźźÇ\n"
" (lilo¸Ś Ŕ§ÇŃ°ÍŔĚ žĆ´Ďśó MS-DOS boot¸Ś Ŕ§ÇŃ°ÍŔÓ)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "%s ľîąŢ\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "ĹŠąâ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "ˇšŔĚľĺ-ľđ˝şĹŠ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "ˇçÇÁšé ĆÄŔĎ Ŕ̸§: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2109,7 +1957,7 @@ msgstr ""
"ŔĚ ĆÄĆźźÇŔş ľĺśóŔĚšö ĆÄĆźźÇŔÔ´Ď´Ů.\n"
"ą×łÉ ľÎ´Â °ÍŔĚ ÁÁ˝Ŕ´Ď´Ů.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2121,64 +1969,64 @@ msgstr ""
"ĆÄĆźźÇŔş ˝Ă˝şĹŰŔť \n"
"ľŕžó şÎĆĂÇĎąâ Ŕ§ÇŃ °ÍŔÔ´Ď´Ů.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "ĹŠąâ : %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Ŕ§ÄĄ: %s ˝Ç¸°ĹÍ, %s Çěľĺ, %s ź˝ĹÍ\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Á¤ş¸: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-ľđ˝şĹŠ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "ĆÄĆźźÇ Ĺ×ŔĚşí ŔŻÇü: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "%d šö˝şťóżĄź­ ID %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "żÉźÇľé: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "ĆÄŔϽýşĹŰ ŔŻÇü: "
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "ŔĚ žĎČŁ´Â łĘšŤ ´ÜźřÇŐ´Ď´Ů.( Ŕűžîľľ %d ąŰŔÚ´Â łŃžîžß ÇŐ´Ď´Ů)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "žĎČŁ°Ą ŔĎÄĄÇĎÁö žĘ˝Ŕ´Ď´Ů."
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2187,36 +2035,65 @@ msgid "Change type"
msgstr "ŔŻÇü şŻ°ć"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "¸ĹĂź¸Ś ĹŹ¸ŻÇĎźźżä."
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "ťçżëŔÚ ŔÎÁő"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "ŔÎĹÍłÝ"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "ťçżëŔÚ¸í"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
#, fuzzy
+msgid "Username"
+msgstr "ťçżëŔÚ¸í"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS ľľ¸ŢŔÎ"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
-msgstr "DNS ź­šö"
+msgstr "ź­šö °Ëťö"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s Ć÷¸Ë ˝ÇĆĐ(ľĺśóŔĚşę %s)"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "%s´Â %s ŔŻÇüŔ̚ǡΠĆ÷¸ËÇŇźö žř˝Ŕ´Ď´Ů."
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "ĆÄŔϽýşĹŰ ÁĄ°ËŔĚ ÁžˇáÄÚľĺ %d śÇ´Â ˝Ăą×łÎ %dˇÎ ˝ÇĆĐÇĎż´˝Ŕ´Ď´Ů."
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "%s¸Ś žđ¸śżîĆŽÁß żŔˇůšßťý: %s"
@@ -2233,68 +2110,321 @@ msgstr ""
msgid "server"
msgstr "ź­šö"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "16MB šĚ¸¸ŔÇ ĆÄĆźźÇżĄ´Â JFS ĆÄŔĎ ˝Ă˝şĹŰŔť ťçżëÇŇ źö žř˝Ŕ´Ď´Ů."
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "32MB šĚ¸¸ŔÇ ĆÄĆźźÇżĄ´Â ReiserFS ĆÄŔĎ ˝Ă˝şĹŰŔť ťçżëÇŇ źö žř˝Ŕ´Ď´Ů."
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "¸śżîĆŽ Ŕ§ÄĄ´Â šÝľĺ˝Ă Ą¸/ĄšˇÎ ˝ĂŔŰÇĎżŠžß ÇŐ´Ď´Ů."
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "¸śżîĆŽ Ŕ§ÄĄ %s°Ą ŔĚšĚ Á¸ŔçÇŐ´Ď´Ů.\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr " %s ¸śżîĆŽ Ć÷ŔÎĆŽˇÎ LVM łí¸ŽşźˇýŔť ťçżëÇŇ źö´Â žř˝Ŕ´Ď´Ů. "
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "ŔĚ ľđˇşĹ与´Â ˇçĆŽ ĆÄŔϽýşĹŰ žČżĄ ŔÖžîžß ÇŐ´Ď´Ů."
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"ŔĚ ¸śżîĆŽ Ŕ§ÄĄżĄ´Â ĆŽˇç ĆÄŔϽýşĹŰ (ext2, reiserfs)ŔĚ ¸śżîĆŽ ľÇžîžß ÇŐ´Ď´Ů.\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr " %s ¸śżîĆŽ Ć÷ŔÎĆŽˇÎ LVM łí¸ŽşźˇýŔť ťçżëÇŇ źö´Â žř˝Ŕ´Ď´Ů. "
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "ŔÚľżÇŇ´çŔť ťçżëÇϹ⿥´Â °ř°ŁŔĚ şÎÁˇÇŐ´Ď´Ů."
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
-msgstr ""
+msgstr "ÇŇ ŔĎ žřŔ˝."
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "%s¸Ś ž˛ąâŔ§ÇŘ żŠ´ÂÁß żŔˇůšßťý: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"żŔˇů šßťý - ťőˇÎżî ĆÄŔĎ ˝Ă˝şĹŰŔť ¸¸ľé žîś˛ żĂšŮ¸Ľ ŔĺÄĄľľ ĂŁŔť źö žř˝Ŕ´Ď´Ů.ŔĚ "
"šŽÁŚ¸Ś ÇŘ°áÇϽáÁ¸é, ÇĎľĺżţžî¸Ś ÁĄ°ËÇŘ ş¸˝Ăąâ šŮśř´Ď´Ů."
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "žîś˛ ĆÄĆźźÇľľ Á¸ŔçÇĎÁö žĘ˝Ŕ´Ď´Ů."
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "ŔÚľż°Ëťö"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "ŔĎšÝ ¸śżě˝ş"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "ÄŤľĺ ¸Ţ¸đ¸Ž (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "źłÁ¤ ŔĐąâ"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "ŔŻÇü şŻ°ć"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Ážˇá"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/ľľżň¸ť(_H)"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/ľľżň¸ť(_H)"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/ľľżň¸ť(H)/ŔĚ ÇÁˇÎą×ˇĽŔş(_A)..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "¸đľâ"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "ÄŤľĺ ¸Ţ¸đ¸Ž (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "ĂëźŇ"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "Module"
+msgstr "¸đľâ"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "źł¸í"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "ťçżëŔÚ ŔÎÁő"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "ĆÄŔĎŔť źąĹĂÇĎźźżä."
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "°ÔŔĚĆŽżţŔĚ ŔĺÄĄ"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 šöĆ°"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "ÇĎľĺ ľđ˝şĹŠ źąĹĂ"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "ÇĎľĺżţžî Á¤ş¸ ş¸ąâ"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Á¤ş¸ ş¸ąâ"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "¸śżě˝ş źłÁ¤"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "%s Ć÷ĆŽżĄź­ šß°ß"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "ąâ´ŮˇÁ ÁÖźźżä"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d ĂĘ"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "ÇÁ¸°ĹÍ Ą¸%sĄš ÁŚ°Ĺ Áß ..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "ŔÚľż°Ëťö"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2308,7 +2438,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2418,9 +2548,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2710,7 +2839,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2722,9 +2851,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2771,21 +2899,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2801,9 +2928,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"ŔĚÁŚ ÇĎľĺľđ˝şĹŠŔÇ žîľđżĄ ¸Ž´Ş˝ş ¸ÇľĺˇšŔĚĹŠ¸Ś źłÄĄÇŇÁö¸Ś\n"
"źąĹĂÇŘžß ÇŐ´Ď´Ů. ¸¸žŕ ÇĎľĺľđ˝şĹŠ°Ą żĎŔüČ÷ şńžî ŔÖ°ĹłŞ śÇ´Â\n"
@@ -2893,9 +3020,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3081,38 +3207,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3274,11 +3394,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3331,7 +3451,7 @@ msgstr ""
"GNU/LinuxżĄ ´ëÇŘź­ Ŕß ¸đ¸Ľ´Ů¸é, ÁúšŽżĄ ´äÇĎąâ°Ą ¸Ĺżě žîˇÁżď źö ŔÖ˝Ŕ´Ď´Ů.\n"
"ľűśóź­ ČŽ˝ĹŔĚ ź­Áö žĘ´Â´Ů¸é ŔĚ źłÄĄšćšýŔť źąĹĂÇĎÁö ¸śźźżä."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3356,7 +3476,7 @@ msgstr ""
"ÁöżřľÇ´Â ¸đľç Ĺ°ş¸ľĺ ¸ńˇĎŔť ş¸ˇÁ¸é, Ą¸Ăß°ĄÁ¤ş¸Ąš¸Ś\n"
"´Š¸Łźźżä."
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3383,7 +3503,7 @@ msgstr ""
"żŠˇŻ°łŔÇ Ăß°Ą žđžî¸Ś źąĹĂÇŇ źöľľ ŔÖ˝Ŕ´Ď´Ů. žđžî źąĹĂŔť łĄ¸śĂĆŔ¸¸é,\n"
"Ą¸ČŽŔÎĄšŔť ´­ˇŻź­ °čźÓ ÁřÇŕÇĎźźżä."
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3411,7 +3531,7 @@ msgstr ""
"¸¸žŕ ÁŚ´ëˇÎ ŔŰľżÇĎąâ žĘŔ¸¸é,Ą¸ĂëźŇĄššöĆ° Ŕ§żĄź­ ˝şĆäŔĚ˝ş Ĺ°łŞ żŁĹÍ Ĺ°¸Ś\n"
"´Š¸Ł°í ´Ů˝Ă źąĹĂÇϽù⠚ٜř´Ď´Ů."
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3419,23 +3539,23 @@ msgstr ""
"Á¤ČŽÇŃ Ć÷ĆŽ¸Ś źąĹĂÇĎźźżä. żš¸Ś ľéžî, MS ŔŠľľżěÁź­ COM1Ŕş\n"
"¸Ž´Ş˝şżĄź­´Â ttyS0ˇÎ ¸í¸íľË´Ď´Ů."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3457,7 +3577,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3479,7 +3599,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3487,7 +3607,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3508,7 +3628,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3530,7 +3650,7 @@ msgstr ""
"ŔÖŔť °ÍŔÔ´Ď´Ů. ą×ˇą °ćżě, ÇŘ´ç Ç׸ńŔť Áöżěźźżä. ą×ˇŻłŞ ą×ˇ¸°ÔÇϸé,\n"
"ą× żîżľĂźÁŚ¸Ś şÎĆĂÇĎąâ Ŕ§ÇŘź­´Â şÎĆĂ ľđ˝şĹŠ°Ą ŔÖžîžß ÇŐ´Ď´Ů!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3544,29 +3664,28 @@ msgstr ""
"ÁöąÝ šŤžůŔť šŻ°í ŔÖ´ÂÁö ÁśÂ÷ ¸đ¸Ł°Ú´Ů¸é,\n"
"Ą¸ľđ˝şĹŠŔÇ Ăš ź˝ĹÍ(MBR)Ąš¸Ś źąĹĂÇĎźźżä."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3575,7 +3694,8 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
+#, fuzzy
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3600,7 +3720,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"ľĺˇšŔĚĹŠX°Ą ˝Ă˝şĹŰťóżĄ ŔÖ´Â ¸đľç ÇĎľĺ ľđ˝şĹŠ¸Ś °ËťöÇĎ°í\n"
@@ -3631,7 +3751,7 @@ msgstr ""
"śÇ´Â (ŔŠľľżěÁî°Ą źłÄĄľÇžî Ŕִٸé) MS ŔŠľľżěÁź­ žîśť°Ô żŠąâżĄ ÇĘżäÇŃ \n"
"Á¤ş¸¸Ś žËžĆ łž źö ŔÖ´ÂÁö ĂŁžĆ ş¸źźżä."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3641,9 +3761,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3655,7 +3774,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" 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"
@@ -3681,7 +3800,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3708,19 +3827,18 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
#, fuzzy
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3728,12 +3846,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3776,7 +3893,7 @@ msgstr ""
"°ÍŔÔ´Ď´Ů. šöĆ°Ŕť ĹŹ¸ŻÇĎżŠ °üˇĂ ŔÎŔÚŔť şŻ°ćÇŇ źöľľ\n"
"ŔÖ˝Ŕ´Ď´Ů."
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -3786,7 +3903,7 @@ msgstr ""
"ÁÖŔÇ:\n"
"ľđ˝şĹŠťóŔÇ ¸đľç ľĽŔĚĹÍ´Â źŐ˝ÇľÇ¸ç, żľżřČ÷ şšą¸°Ą şŇ°Ą´ÉÇŘ Áý´Ď´Ů!"
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3804,7 +3921,7 @@ msgstr ""
"ŔĚ ŔŰž÷Ŕť ĂëźŇÇϡÁ¸é, ÁöąÝ Ą¸ĂëźŇĄš¸Ś ´Š¸Łźźżä. žîś°ÇŃ ľĽŔĚĹÍżÍ ĆÄĆźźÇľľ\n"
"źŐťóľÇÁö žĘŔť °ÍŔÔ´Ď´Ů."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3812,12 +3929,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3842,20 +3959,20 @@ msgstr ""
"\n"
"Á¤¸ťˇÎ ŔĚ ź­šöľéŔť źłÄĄÇŐ´Ďąî?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "NIS ľľ¸ŢŔÎ žřŔĚ´Â şęˇÎľĺÄÉ˝şĆŽ¸Ś ťçżëÇŇ źö žř˝Ŕ´Ď´Ů."
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "ÇáÎÇÇ ľđ˝şĹŠ¸Ś %s ľĺśóŔ̺꿥 łÖŔ¸źźżä"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "ŔĚ ÇáÎÇÇ ľđ˝şĹŠ´Â FAT Ć÷¸ËŔĚ žĆ´Ő´Ď´Ů."
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3863,7 +3980,7 @@ msgstr ""
"ŔĚ ŔúŔĺľČ ĆŃĹ°Áö źąĹøńˇĎŔť ťçżëÇҡÁ¸é, ``linux defcfg=floppy''śó°í ŔÔˇÂÇĎżŠ "
"źłÄĄŔť ˝ĂŔŰÇĎźźżä."
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "%s ĆÄŔĎŔť ŔĐ´ÂÁß żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů."
@@ -3893,7 +4010,7 @@ msgstr "˝şżŇ ĆÄĆźźÇŔş šÝľĺ˝Ă ÇĘżäÇŐ´Ď´Ů."
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -3901,59 +4018,59 @@ msgstr ""
"\n"
"°čźÓ ÁřÇŕÇŐ´Ďąî?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Ą¸/boot/efiĄšżĄ ¸śżîĆŽľČ FAT ĆÄĆźźÇŔĚ ŔÖžîžß¸¸ ÇŐ´Ď´Ů."
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "şó °ř°Ł ťçżë"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "ťőˇÎżî ĆÄĆźźÇŔť ¸¸ľé źö ŔÖ´Â °ř°ŁŔĚ şÎÁˇÇŐ´Ď´Ů."
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "ąâÁ¸ŔÇ ĆÄĆźźÇ ťçżë"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "ťçżëÇŇ ąâÁ¸ŔÇ ĆÄĆźźÇŔĚ žř˝Ŕ´Ď´Ů."
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "ŔŠľľżěÁî ĆÄĆźźÇŔť ˇçÇÁšéŔ¸ˇÎ ťçżë"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "žî´Ŕ ĆÄĆźźÇŔť Linux4WinżëŔ¸ˇÎ ťçżëÇĎ°Ú˝Ŕ´Ďąî?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "ĹŠąâ źąĹĂ"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "ˇçĆŽ ĆÄĆźźÇ ĹŠąâ(MB): "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "˝şżŇ ĆÄĆźźÇ ĹŠąâ(MB): "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "ŔŠľľżěÁî ĆÄĆźźÇŔÇ şó °ř°Ł ťçżëÇĎźźżä."
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "žîś˛ ĆÄĆźźÇŔÇ ĹŠąâ¸Ś ÁśÁ¤ÇϽðڽŔ´Ďąî?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "ŔŠľľżěÁî ĆÄŔĎ ˝Ă˝şĹŰŔÇ šüŔ§ °čťęÁß"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -3962,12 +4079,15 @@ msgstr ""
"FAT ĹŠąâ ÁśÁ¤ąâ°Ą ´ÔŔÇ ĆÄĆźźÇŔť Ăł¸ŽÇŇ źö žř˝Ŕ´Ď´Ů.\n"
"´ŮŔ˝ŔÇ żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"ŔŠľľżěÁî ĆÄĆźźÇŔĚ ˝ÉÇĎ°Ô Áś°˘łŞ ŔÖ˝Ŕ´Ď´Ů. ¸ŐŔú ``ľđ˝şĹŠ Áś°˘ ¸đŔ˝''Ŕť ÇĎźźżä."
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -3987,55 +4107,55 @@ msgstr ""
"źłÄĄ¸Ś ´Ů˝Ă ˝ĂŔŰÇĎźźżä. śÇÇŃ ľĽŔĚĹÍľľ šéž÷ÇŘ ľÎźźżä.\n"
"ÁŘşńľĆŔ¸¸é, Ą¸ČŽŔÎĄšŔť ´Š¸Łźźżä."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "ŔŠľľżěÁîżëŔ¸ˇÎ žî´Ŕ żëˇŽŔť ŔŻÁöÇϽðڽŔ´Ďąî?"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "ĆÄĆźźÇ %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FATĹŠąâÁśÁ¤ ˝ÇĆĐ: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"loopbackˇÎ ťçżëÇĎ°ĹłŞ ĹŠąâ¸Ś ÁśÁ¤ÇŇ FAT ĆÄĆźźÇŔĚ žř˝Ŕ´Ď´Ů. (śÇ´Â ľđ˝şĹŠ °ř°Ł"
"ŔĚ şÎÁˇÇŐ´Ď´Ů.)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "ŔüĂź ľđ˝şĹŠ ťčÁŚ"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "ŔŠľľżěÁî(TM) ÁŚ°Ĺ"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
"ÇĎľĺ ľĺśóŔĚşę°Ą ÇĎłŞ ŔĚťó ŔÖ˝Ŕ´Ď´Ů. žî´Ŕ °ÍżĄ ¸Ž´Ş˝ş¸Ś źłÄĄÇϽðڽŔ´Ďąî?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "%s ľĺśóŔĚşę ťóŔÇ ¸đľç ąâÁ¸ ĆÄĆźźÇ°ú ľĽŔĚĹÍ°Ą źŐ˝ÇľÉ °ÍŔÔ´Ď´Ů."
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "ťçżëŔÚ Á¤ŔÇ ĆÄĆźźÇ łŞ´Šąâ"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "fdisk ťçżë"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4044,11 +4164,11 @@ msgstr ""
"ŔĚÁŚ %sŔÇ ĆÄĆźźÇ ŔŰž÷Ŕť ÇŇ źö ŔÖ˝Ŕ´Ď´Ů.\n"
"¸śÄŁ ČÄ, 'w'¸Ś ´­ˇŻ ŔúŔĺÇϴ°ÍŔť ŔŘÁö¸śźźżä."
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "ŔŠľľżěÁî ĆÄĆźźÇżĄ ĂćşĐÇŃ °ř°ŁŔĚ žř˝Ŕ´Ď´Ů."
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "źłÄĄżĄ ÇĘżäÇŃ °ř°ŁŔť ĂŁŔť źö žř˝Ŕ´Ď´Ů."
@@ -4056,16 +4176,16 @@ msgstr "źłÄĄżĄ ÇĘżäÇŃ °ř°ŁŔť ĂŁŔť źö žř˝Ŕ´Ď´Ů."
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "ľĺˇšŔĚĹŠX ĆÄĆźźÇ ¸śšýťç°Ą ´ŮŔ˝ŔÇ źÖˇçźÇŔť šß°ßÇß˝Ŕ´Ď´Ů:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "ĆÄĆźźÇ łŞ´Šąâ ˝ÇĆĐ: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "ł×ĆŽż÷ Č°źşČ­ Áß..."
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "ł×ĆŽż÷ ÇŘÁŚ Áß..."
@@ -4077,12 +4197,12 @@ msgstr ""
"żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů. ą×ˇŻłŞ ŔűŔýČ÷ Ăł¸ŽÇŇ źö žř˝Ŕ´Ď´Ů.\n"
"Ŕ§ÇëŔť °¨źöÇҡÁ¸é °čźÓÇĎźźżä."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "¸śżîĆŽ Ć÷ŔÎĆŽ Áßşš %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4094,12 +4214,12 @@ msgstr ""
"ŔĚšĚ źłÄĄ°Ą żĎˇáľČ ÄÄÇťĹÍżĄź­ Ą¸rpm -qpl Mandrake/RPMS/*.rpmĄš¸íˇÉŔ¸ˇÎ ÁĄ°Ë"
"ÇŘ ş¸źźżä.\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "%sżĄ żŔ˝Ĺ°ÍŔť ČŻżľÇŐ´Ď´Ů."
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "ÇáÎÇÇ ľĺśóŔ̺긌 ťçżëÇŇ źö žř˝Ŕ´Ď´Ů."
@@ -4109,9 +4229,9 @@ msgstr "ÇáÎÇÇ ľĺśóŔ̺긌 ťçżëÇŇ źö žř˝Ŕ´Ď´Ů."
msgid "Entering step `%s'\n"
msgstr "%s ´Ü°čˇÎ łŃžî°Š´Ď´Ů.\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4122,198 +4242,153 @@ msgstr ""
"ĹŘ˝şĆŽ ¸đľĺˇÎ źłÄĄÇϡÁ¸é, CDROMŔ¸ˇÎ şÎĆĂČÄ Ą¸F1ĄšŔť ´Š¸Ł°í Ą¸textĄšśó°í ŔÔˇÂ"
"ÇĎźźżä."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "źłÄĄ ŔŻÇü"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "´ŮŔ˝ źłÄĄ ŔŻÇüÁß ÇĎłŞ¸Ś źąĹĂÇŘ ÁÖźźżä."
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "źąĹĂÇŃ ĆŃĹ°Áö ą×ˇěŔÇ ŔüĂź ĹŠąâ°Ą %d MBżĄ °Ąąő˝Ŕ´Ď´Ů.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"ŔĚ żëˇŽş¸´Ů Ŕű°Ô źłÄĄÇĎ°í ˝Í´Ů¸é,\n"
-"źłÄĄÇĎ°íŔÚ ÇĎ´Â ĆŃĹ°ÁöľéŔÇ šéşĐŔ˛Ŕť źąĹĂÇĎźźżä.\n"
-"\n"
-"šéşĐŔ˛ŔĚ łˇŔ¸¸é, °ĄŔĺ ÁßżäÇŃ ĆŃĹ°Áöľé¸¸ źłÄĄľË´Ď´Ů;\n"
-"šéşĐŔ˛ 100%%´Â źąĹĂľČ ¸đľç ĆŃĹ°ÁöľéŔť źłÄĄÇŐ´Ď´Ů."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"źąĹĂľČ ĆŃĹ°ÁöľéŔÇ %d%%żĄ ÇŘ´çÇĎ´Â ľđ˝şĹŠ °ř°Ł¸¸ ł˛žĆ ŔÖ˝Ŕ´Ď´Ů.\n"
-"\n"
-"ŔĚ żëˇŽş¸´Ů Ŕű°Ô źłÄĄÇĎ°í ˝Í´Ů¸é,\n"
-"źłÄĄÇĎ°íŔÚ ÇĎ´Â ĆŃĹ°ÁöľéŔÇ šéşĐŔ˛Ŕť źąĹĂÇĎźźżä.\n"
-"šéşĐŔ˛ŔĚ łˇŔ¸¸é, °ĄŔĺ ÁßżäÇŃ ĆŃĹ°Áöľé¸¸ źłÄĄľË´Ď´Ů;\n"
-"šéşĐŔ˛ %d%%´Â °Ą´ÉÇŃ ¸đľç ĆŃĹ°ÁöľéŔť źłÄĄÇŐ´Ď´Ů."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "´ŮŔ˝ ´Ü°čżĄź­ Ăß°ĄˇÎ ŔÚźźČ÷ źąĹĂÇŇ źö ŔÖ˝Ŕ´Ď´Ů."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "źłÄĄÇŇ ĆŃĹ°ÁöŔÇ šéşĐŔ˛"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "ĆŃĹ°Áö ą×ˇě źąĹĂ"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "°łş° ĆŃĹ°Áö źąĹĂ"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "ŔüĂź ĹŠąâ: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Ŕ߸řľČ ĆŃĹ°Áö"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Ŕ̸§: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "šöÁŻ: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "ĹŠąâ: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Áßżäźş: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "ľđ˝şĹŠ °ř°ŁŔĚ şÎÁˇÇĎąâ ś§šŽżĄ ŔĚ ĆŃĹ°Áö¸Ś źąĹĂÇŇ źö žř˝Ŕ´Ď´Ů."
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "´ŮŔ˝ ĆŃĹ°ÁöľéŔĚ źłÄĄľÉ °ÍŔÔ´Ď´Ů."
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "´ŮŔ˝ ĆŃĹ°ÁöľéŔĚ ÁŚ°ĹľÉ °ÍŔÔ´Ď´Ů."
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "ŔĚ ĆŃĹ°Áö¸Ś źąĹĂ/šö¸˛ ÇŇźö žř˝Ŕ´Ď´Ů."
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "ŔĚ°ÍŔş ÇĘźöŔűŔÎ ĆŃĹ°ÁöŔÔ´Ď´Ů. šÝľĺ˝Ă źąĹþǞîžß ÇŐ´Ď´Ů."
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "ŔĚ ĆŃĹ°Áö¸Ś źąĹĂÇŘÁŚÇŇ źö žř˝Ŕ´Ď´Ů. ŔĚšĚ źłÄĄ ľÇžú˝Ŕ´Ď´Ů."
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"ŔĚ ĆŃĹ°Áö´Â šÝľĺ˝Ă ž÷ą×ˇšŔĚľĺľÇžîžß ÇŐ´Ď´Ů.\n"
"Á¤¸ťˇÎ źąĹĂŔť ÇŘÁŚÇϽðڽŔ´Ďąî?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "ŔĚ ĆŃĹ°Áö¸Ś źąĹĂÇŘÁŚÇŇźö žř˝Ŕ´Ď´Ů. šÝľĺ˝Ă ž÷ą×ˇšŔĚľĺľÇžîžß ÇŐ´Ď´Ů."
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "ŔÚľżŔ¸ˇÎ źąĹĂľČ ĆŃĹ°Áöľé ş¸ŔĚąâ"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "źłÄĄ"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "ÇáÎÇÇżĄ ŔúŔĺ/ŔűŔç"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "źąĹĂľČ ĆŃĹ°Áö ¸ńˇĎ ž÷ľĽŔĚĆŽ Áß"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "ĂÖźŇ źłÄĄ"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "źłÄĄÇĎ°íŔÚ ÇĎ´Â ĆŃĹ°Áö¸Ś źąĹĂÇĎźźżä."
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "źłÄĄÁß"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "°čťę Áß"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "ł˛Ŕş ˝Ă°Ł "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "źłÄĄ ÁŘşńÁßŔÔ´Ď´Ů. Ŕá˝Ă ąâ´Ů¸Žźźżä."
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d ĆŃĹ°Áö"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "%s ĆŃĹ°Áö źłÄĄÁß"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "ľżŔÇ"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "°ĹşÎ"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4327,17 +4402,17 @@ msgstr ""
"Ą¸%sĄšśó°í ž˛żŠÁř CDROMŔť ľĺśóŔ̺꿥 łÖŔş ČÄ, Ą¸ČŽŔÎĄšŔť ´­ˇŻ ÁÖźźżä.\n"
"¸¸žŕ CDROMŔť °ĄÁö°í ŔÖÁö žĘ´Ů¸é, Ą¸ĂëźŇĄš¸Ś ´­ˇŻ Ăß°Ą źłÄĄ¸Ś ĂëźŇÇĎźźżä."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "°čźÓ ÁřÇŕÇŐ´Ďąî?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "ĆŃĹ°Áö¸Ś Á¤ˇÄÇĎ´Â Áß żŔˇůšßťý:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "´ŮŔ˝ ĆŃĹ°Áö¸Ś źłÄĄÁß żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů: "
@@ -4382,11 +4457,11 @@ msgstr "żŔˇů šßťý"
msgid "Do you really want to leave the installation?"
msgstr "Á¤¸ťˇÎ Ą¸%sĄšÇÁ¸°Ĺ͸Ś ÁŚ°ĹÇŐ´Ďąî?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "ťçżë ľżŔÇź­"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4401,7 +4476,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -4507,113 +4582,117 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Ĺ°ş¸ľĺ"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Ĺ°ş¸ľĺ ˇšŔ̞ƿô źąĹĂ"
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "ÁöżřľÇ´Â Ĺ°ş¸ľĺ ¸ńˇĎŔĚ żŠąâżĄ ŔÖ˝Ŕ´Ď´Ů."
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "źłÄĄ ŔŻÇüŔť źąĹĂÇŘ ÁÖźźżä."
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "źłÄĄ/ž÷ľĽŔĚĆŽ"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "źłÄĄÇŐ´Ďąî žĆ´Ď¸é ž÷ľĽŔĚĆŽ ÇŐ´Ďąî?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "ąÇŔĺ"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "ŔüšŽ°Ą"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade"
msgstr "ž÷ľĽŔĚĆŽ"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr "źąĹĂľČ ĆŃĹ°Áö ¸ńˇĎ ž÷ľĽŔĚĆŽ Áß"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "žîś˛ ÁžˇůŔÇ ¸śżě˝ş¸Ś ťçżëÇϽʴϹî?"
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "¸śżě˝ş Ć÷ĆŽ"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "žîś˛ ˝Ă¸Žžó Ć÷ĆŽżĄ ¸śżě˝ş°Ą żŹ°áľÇžî ŔÖłŞżä?"
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "šöĆ° żĄšÄˇšŔĚźÇ"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "šöĆ° 2 żĄšÄˇšŔĚźÇ"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "šöĆ° 3 żĄšÄˇšŔĚźÇ"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "PCMCIS ÄŤľĺ ČŻ°ćźłÁ¤Áß..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "IDE źłÁ¤Áß"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "ťçżë°Ą´ÉÇŃ ĆÄĆźźÇŔĚ žř˝Ŕ´Ď´Ů."
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "¸śżîĆŽ Ŕ§ÄĄ¸Ś ĂŁąâŔ§ÇŘ ĆÄĆźźÇľéŔť °Ëťö Áß"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "¸śżîĆŽ Ŕ§ÄĄ¸Ś źąĹĂÇŘ ÁÖźźżä."
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4626,7 +4705,7 @@ msgstr ""
"\n"
"ĆÄĆźźÇľéŔť ŔŇžîľľ ÁÁ˝Ŕ´Ďąî?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4634,7 +4713,7 @@ msgstr ""
"ľđ˝şĹŠľĺˇšĹŠ°Ą ĆÄĆźźÇ Ĺ×ŔĚşíŔť Á¤ČŽČ÷ ŔĐžîżŔ´ÂľĽ ˝ÇĆĐÇß˝Ŕ´Ď´Ů.\n"
"Ŕ§ÇčŔť °¨źöÇŇ ÁŘşń°Ą ľČ °ćżěżĄ¸¸ °čźÓÇĎźźżä!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -4642,73 +4721,76 @@ msgstr ""
"1MB şÎĆŽ˝şĆŽˇŚ °ř°Ł şÎÁˇ! źłÄĄ´Â °čźÓÇŇ źö ŔÖÁö¸¸, ˝Ă˝şĹŰŔť şÎĆĂÇĎąâ Ŕ§ÇŘź­"
"´Â ľđ˝şĹŠľĺˇšŔĚĹŠżĄź­ şÎĆŽ˝şĆŽˇŚ ĆÄĆźźÇŔť ¸¸ľéžîžß ÇŐ´Ď´Ů."
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr "ž÷ą×ˇšŔĚľĺÇŇ ˇçĆŽ ĆÄĆźźÇŔť ĂŁŔť źö žř˝Ŕ´Ď´Ů."
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "ˇçĆŽ ĆÄĆźźÇ"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "˝Ă˝şĹŰżĄź­ ˇçĆŽ ĆÄĆźźÇ(/)Ŕş žîś˛°ÍŔÔ´Ďąî?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr "ĆÄĆźźÇ Ĺ×ŔĚşí şŻ°ćťçÇ×Ŕť ŔűżëÇϡÁ¸é ¸ŽşÎĆĂŔť ÇŘžß ÇŐ´Ď´Ů."
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Ć÷¸ËÇŇ ĆÄĆźźÇŔť źąĹĂÇĎźźżä"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "ščľĺ şíˇ° °Ëťç¸Ś ÇŐ´Ďąî?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "ĆÄĆźźÇ Ć÷¸Ë"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "%s ĆÄŔϸŚ ťýźşÇĎ°í Ć÷¸Ë"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "˝şżŇ ¸Ţ¸đ¸Ž°Ą şÎÁˇÇŐ´Ď´Ů. Áť ´ő Ăß°ĄÇĎźźżä."
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
msgstr "ŔŻČżÇŃ ĆŃĹ°Áö¸Ś ĂŁ°í ŔÖ˝Ŕ´Ď´Ů."
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
+msgstr "ŔŻČżÇŃ ĆŃĹ°Áö¸Ś ĂŁ°í ŔÖ˝Ŕ´Ď´Ů."
+
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "ž÷ą×ˇšŔĚľĺÇŇ ĆŃĹ°Áö¸Ś °ËťöÁßŔÔ´Ď´Ů."
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "ŔĚ ĆŃĹ°Áö¸Ś źąĹĂÇŘÁŚÇŇ źö žř˝Ŕ´Ď´Ů. ŔĚšĚ źłÄĄ ľÇžú˝Ŕ´Ď´Ů."
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr "źłÄĄ śÇ´Â ž÷ą×ˇšŔ̾希 Ŕ§ÇŃ ľđ˝şĹŠ °ř°ŁŔĚ şÎÁˇÇŐ´Ď´Ů. (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "ŔüĂź (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "ĂÖźŇ (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "ąÇŔĺ (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -4716,53 +4798,53 @@ msgstr ""
"ÇáÎÇÇżĄ ĆŃĹ°Áö źąĹøńˇĎŔť ŔűŔç śÇ´Â ŔúŔĺÇŇÁö¸Ś źąĹĂÇĎźźżä.\n"
"Çü˝Ä(Ć÷¸Ë)Ŕş ŔÚľżźłÄĄ ťýźş ÇáÎÇÇżÍ ľżŔĎÇŐ´Ď´Ů."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "ÇáÎÇÇżĄź­ ŔĐąâ"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "ÇáÎÇÇżĄź­ ŔĐ´Â Áß"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "ĆŃĹ°Áö źąĹĂ"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "ĆŃĹ°Áö źąĹøńˇĎ ÇáÎÇÇ ľđ˝şĹŠ¸Ś łÖŔ¸źźżä."
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "ÇáÎÇÇżĄ ŔúŔĺ"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "źąĹĂľČ żëˇŽŔĚ ťçżëÇŇ źö ŔÖ´Â °ř°Łş¸´Ů ĹŽ´Ď´Ů."
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4772,16 +4854,16 @@ msgstr ""
"ŔüÇô °ĄÁö°í ŔÖÁö žĘ´Ů¸é, Ą¸ĂëźŇĄš¸Ś, \n"
"ŔϺθ¸ °ĄÁö°í Ŕִٸé, žř´Â CD¸Ś źąĹĂÇŘÁŚÇŃ ČÄżĄ Ą¸ČŽŔÎĄšŔť ´Š¸Łźźżä."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Ą¸%sĄšśó°í ÇĽ˝ĂľČ CDROM"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "źłÄĄ ÁŘşńÁßŔÔ´Ď´Ů"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4790,23 +4872,23 @@ msgstr ""
" %s ĆŃĹ°Áö źłÄĄ Áß... \n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "źłÄĄŔü ČŻ°ćźłÁ¤"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "şÎĆĂ ÇáÎÇǸŚ %s ľĺśóŔ̺꿥 łÖŔ¸źźżä"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "ž÷ľĽŔĚĆŽ ¸đľâ ÇáÎÇǸŚ %s ľĺśóŔ̺꿥 łÖŔ¸źźżä"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -4843,159 +4925,190 @@ msgid ""
"USA"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "ťçżë°Ą´ÉÇŃ ĆŃĹ°ÁöŔÇ ¸Ž˝şĆŽ¸Ś šĚˇŻ ťçŔĚĆŽżĄ Á˘źÓÇŘź­ šŢ˝Ŕ´Ď´Ů."
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "ĆŃĹ°Áö¸Ś šŢŔť šĚˇŻ ťçŔĚĆŽ¸Ś źąĹĂÇŘ ÁÖźźżä."
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "ťçżë°Ą´ÉÇŃ ĆŃĹ°ÁöŔÇ ¸Ž˝şĆŽ¸Ś šĚˇŻ ťçŔĚĆŽżĄ Á˘źÓÇŘź­ šŢ˝Ŕ´Ď´Ů."
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "´ÔŔÇ ˝Ă°Ł´ë´Â žîľđŔÔ´Ďąî?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "ÇĎľĺżţžî ˝Ă°č GMT źłÁ¤"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "ŔÚľż ˝Ă°Ł ľżąâČ­ (NTP ťçżë)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "NTP ź­šö"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "żř°Ý CUPS ź­šö"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "ÇÁ¸°ĹÍ žřŔ˝"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "śÇ ´Ů¸Ľ°ÍŔĚ źłÄĄľÇžî ŔÖ˝Ŕ´Ďąî?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "żäžŕźł¸í"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "¸śżě˝ş"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "˝Ă°Ł´ë"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "ÇÁ¸°ĹÍ"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "ISDN ÄŤľĺ"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "ťçżîľĺ ÄŤľĺ"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV ÄŤľĺ"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "ŔŠľľżěÁî(TM) ÁŚ°Ĺ"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "ÁöżŞ ĆÄŔĎľé"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "root žĎČŁ źłÁ¤"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "žĎČŁ žřŔ˝"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr "ŔĚ žĎČŁ´Â łĘšŤ ´ÜźřÇŐ´Ď´Ů.( Ŕűžîľľ %d ąŰŔÚ´Â łŃžîžß ÇŐ´Ď´Ů)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "ťçżëŔÚ ŔÎÁő"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "ŔÎÁő LDAP"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "LDAP ąâšÝ DN"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "LDAP ź­šö"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "ŔÎÁő NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS ľľ¸ŢŔÎ"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS ź­šö"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "ŔÎÁő LDAP"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "NIS ľľ¸ŢŔÎ"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NTP ź­šö"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -5013,19 +5126,19 @@ msgid ""
"drive and press \"Ok\"."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Ăššř° ÇáÎÇÇ ľĺśóŔĚşę"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "ľÎšř° ÇáÎÇÇ ľĺśóŔĚşę"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "°ÇłĘśŮąâ"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5048,7 +5161,7 @@ msgstr ""
"¸¸ľĺ˝Ă°Ú˝Ŕ´Ďąî?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5057,28 +5170,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "ÁËźŰÇŐ´Ď´Ů. ťçżë°Ą´ÉÇŃ ÇáÎÇÇ ľĺśóŔĚşę°Ą žř˝Ŕ´Ď´Ů."
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "şÎĆŽ ľđ˝şĹŠ¸Ś ¸¸ľéś§ ťçżëÇŇ ÇáÎÇÇ ľĺśóŔ̺긌 źąĹĂÇŘ ÁÖźźżä"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "ÇáÎÇÇ ľđ˝şĹŠ¸Ś %s ľĺśóŔ̺꿥 łÖŔ¸źźżä"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "şÎĆŽ ľđ˝şĹŠ ťýźşÁß"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "şÎĆŽ ˇÎ´ő ÁŘşńÁß"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5086,11 +5199,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "aboot¸Ś ťçżëÇϽðڽŔ´Ďąî?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5098,15 +5211,15 @@ msgstr ""
"aboot źłÄĄ ˝ÇĆĐ. \n"
"Ăššř° ĆÄĆźźÇŔť ČŃźŐÇŇÁöśóľľ °­ÁŚ źłÄĄÇŇąîżä?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "şÎĆŽˇÎ´ő źłÄĄ Áß"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "şÎĆŽˇÎ´ő źłÄĄ°Ą ˝ÇĆĐÇß˝Ŕ´Ď´Ů. ´ŮŔ˝°ú °°Ŕş żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5123,18 +5236,17 @@ msgstr ""
"shut-down\n"
"ą×ˇŻ°íłŞ¸é ´ŮŔ˝şÎĹÍ´Â şÎĆŽˇÎ´ő ÇÁˇŇÇÁĆŽ¸Ś şź źö ŔÖŔť °ÍŔÔ´Ď´Ů."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "%s ľĺśóŔ̺꿥 şó ÇáÎÇÇ ľđ˝şĹŠ¸Ś łÖŔ¸źźżä"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "ŔÚľż źłÄĄ ÇáÎÇÇ ľđ˝şĹŠ ťýźş Áß"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5144,7 +5256,8 @@ msgstr ""
"\n"
"Á¤¸ť ÁöąÝ Ážˇá ÇϽðڽŔ´Ďąî?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, fuzzy, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5155,7 +5268,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5173,11 +5286,15 @@ msgstr ""
"źłÄĄČÄ ˝Ă˝şĹŰ źłÁ¤żĄ ´ëÇŃ Á¤ş¸´Â °ř˝Ä ¸ÇľĺˇšŔĚĹŠ ¸Ž´Ş˝ş ŔŻŔú °ĄŔ̾希\n"
"Âü°íÇϽù⠚ٜř´Ď´Ů."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "ŔÚľż źłÄĄ ÇáÎÇÇ ľđ˝şĹŠ ťýźş"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5191,15 +5308,15 @@ msgstr ""
"\n"
"ŔĎšÝŔűŔ¸ˇÎ Á÷Á˘ źłÄĄÇĎ´Â °ÍŔĚ ÁÁ˝Ŕ´Ď´Ů.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "ŔÚľż"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Ŕç˝Ăľľ"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "źąĹĂľČ ĆŃĹ°Áö ¸ńˇĎ ŔúŔĺ"
@@ -5226,414 +5343,395 @@ msgstr ""
msgid "Choose a file"
msgstr "ĆÄŔĎ źąĹĂ"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "°íąŢ"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "ąâ´ŮˇÁ ÁÖźźżä"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Á¤ş¸"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "ĆŽ¸Ž ČŽŔĺ"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "ĆŽ¸Ž Á˘ąâ"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "ą×ˇěş°/ĆŃĹ°Áöş° Á¤ˇÄ ŔüČŻ"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Ŕ߸řľČ źąĹĂŔÔ´Ď´Ů, ´Ů˝Ă ÇĎźźżä\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "´ÔŔÇ źąĹĂŔş? (ąâşť°Ş %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
-#, fuzzy, c-format
+#: ../../interactive/stdio.pm_.c:68
+#, c-format
msgid "Your choice? (0/1, default `%s') "
-msgstr "´ÔŔÇ źąĹĂŔş? (ąâşť°Ş %s) "
+msgstr "´ÔŔÇ źąĹĂŔş? (0/1 ąâşť°Ş Ą¸%sĄš) "
-#: ../../interactive_stdio.pm_.c:93
-#, fuzzy, c-format
+#: ../../interactive/stdio.pm_.c:93
+#, c-format
msgid "Button `%s': %s"
-msgstr "żÉźÇľé: %s"
+msgstr "šöĆ° Ą¸%sĄš: %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr "aboot¸Ś ťçżëÇϽðڽŔ´Ďąî?"
-#: ../../interactive_stdio.pm_.c:103
-#, fuzzy, c-format
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
+#, c-format
msgid "Your choice? (default `%s'%s) "
-msgstr "´ÔŔÇ źąĹĂŔş? (ąâşť°Ş %s) "
+msgstr "´ÔŔÇ źąĹĂŔş? (ąâşť°Ş Ą¸%sĄš%s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
-msgstr ""
+msgstr "ŔçŔüźŰ"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "ĂźÄÚ (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "ľśŔĎ"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "ľĺş¸śô"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "˝şĆäŔÎ"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "ÇÉśőľĺ"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "ÇÁśű˝ş"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "łë¸ŁżţŔĚ"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Ćúśőľĺ"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "ˇŻ˝ĂžĆ"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "˝şżţľ§"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "żľąš"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "šĚąš"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "žËšŮ´ĎžĆ"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "šĚąš (ą¸šöŔü)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "šĚąš (ŸŔÚąâ)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "šĚąš (Ŕ˝źşÇĐ)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidjani (śóĆž)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "ş§ąâżĄ"
-#: ../../keyboard.pm_.c:199
-#, fuzzy
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
-msgstr "šĚąš (Ŕ˝źşÇĐ)"
+msgstr "şŇ°Ą¸ŽžĆ (Ŕ˝źşÇĐ)"
-#: ../../keyboard.pm_.c:200
-#, fuzzy
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
-msgstr "şŇ°Ą¸ŽžĆ"
+msgstr "şŇ°Ą¸ŽžĆ (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "şęśóÁú (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "ş§śóˇç˝ĂžĆ"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "˝şŔ§˝ş (ľśžî)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "˝şŔ§˝ş (şŇžî)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "ĂźÄÚ (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "ľśŔĎ (dead Ĺ° žřŔ˝)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "ľ§¸śĹŠ"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "ľĺş¸śô(US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "ľĺş¸śô(łë¸ŁżţŔĚ)"
-#: ../../keyboard.pm_.c:212
-#, fuzzy
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
-msgstr "ľĺş¸śô(US)"
+msgstr "ľĺş¸śô(˝şżţľ§)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "żĄ˝şĹä´ĎžĆ"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "ą×ˇçÁöžĆ(ˇŻ˝ĂžĆžî)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "ą×ˇçÁöžĆ (śóĆž)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "ą×¸Ž˝ş"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Çë°Ą¸Ž"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "ĹŠˇÎžĆĆźžĆ"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "ŔĚ˝şśóż¤"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "ŔĚ˝şśóż¤ (Ŕ˝źşÇĐ)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "ŔĚśő"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "žĆŔĚ˝˝ˇŁľĺ"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "ŔĚĹť¸ŽžĆ"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "ŔĎşť 106Ĺ°"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "ÇŃąŰ Ĺ°ş¸ľĺ"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "śóĆž žĆ¸Ţ¸ŽÄŤ"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "¸ŽĹőžĆ´ĎžĆ AZERTY (ą¸Çü)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "¸ŽĹőžĆ´ĎžĆ AZERTY (˝ĹÇü)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "¸ŽĹőžĆ´ĎžĆ (źýŔÚż­ QWERTY)"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "¸ŽĹőžĆ´ĎžĆ (Ŕ˝źşÇĐ QWERTY)"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "śóĆŽšŮžĆ"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "¸śÄÉľľ´ĎžĆ"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "ł×ľ¨śőľĺ"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Ćúśőľĺ (QwertY)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Ćúśőľĺ (QwertZ)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Ć÷ˇçĹőÄŽ"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "ÄłłŞ´Ů (Äůş¤)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "ˇÎ¸¸ (QWERTZ)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "ˇÎ¸¸ (QWERTY)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "ˇŻ˝ĂžĆ (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "˝˝ˇÎşŁ´ĎžĆ"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "˝˝ˇÎšŮĹ°žĆ (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "˝˝ˇÎšŮĹ°žĆ (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "źź¸ŁşńžĆ (˝Ă¸ą)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Ĺ×ŔĚşí"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "ĹÂąš"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "ŸÁöĹŠ Ĺ°ş¸ľĺ"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "ĹÍąâ (ŔüĹë Ą¸FĄš¸đľ¨"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "ĹÍĹ° (Çö´ë Ą¸QĄš¸đľ¨"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "żěĹŠśóŔĚłŞ"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US Ĺ°ş¸ľĺ (ąšÁŚ)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "şŁĆŽł˛ (źýŔÚż­ QWERTY)"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "ŔŻ°í˝˝śóşńžĆ (śóĆž)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5646,7 +5744,31 @@ msgstr "źřČŻ ¸śżîĆŽ %s\n"
msgid "Remove the logical volumes first\n"
msgstr "łí¸Ž şźˇýŔť ¸ŐŔú ÁŚ°ĹÇŘ ÁÖźźżä.\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "ŔüČ­ šřČŁ"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "ĆÄĆźźÇ Ć÷¸Ë"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5687,10 +5809,6 @@ msgstr "1 šöĆ°"
msgid "Generic 2 Button Mouse"
msgstr "ŔĎšÝŔűŔÎ 2šöĆ° ¸śżě˝ş"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "ŔĎšÝ ¸śżě˝ş"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "ČŮ ¸śżě˝ş"
@@ -5755,40 +5873,56 @@ msgstr "žřŔ˝"
msgid "No mouse"
msgstr "¸śżě˝ş žřŔ˝"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "¸śżě˝ş¸Ś Ĺ×˝şĆŽÇĎźźżä."
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "¸śżě˝ş¸Ś Č°źşČ­ÇϡÁ¸é"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "¸śżě˝şČŮŔť żňÁ÷żŠ ş¸źźżä."
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
-"-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,-*-gulim-bold-r-"
-"normal--16-*-*-*-c-*-ksc5601.1987-0,*-r-*"
+"-adobe-helvetica-bold-r-normal--16-*-75-75-p-*-iso8859-1,-*-gulim-bold-r-"
+"normal--16-*-75-75-*-*-ksc5601.1987-0,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Ážˇá"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "´ŮŔ˝ ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- ŔĚŔü"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "ŔĚ°ÍŔĚ ¸Â˝Ŕ´Ďąî?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Á¤ş¸"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "ĆŽ¸Ž ČŽŔĺ"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "ĆŽ¸Ž Á˘ąâ"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "ą×ˇěş°/ĆŃĹ°Áöş° Á¤ˇÄ ŔüČŻ"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "ŔÎĹͳݿĄ żŹ°á"
@@ -5835,7 +5969,7 @@ msgstr ""
"žîś°ÇŃ ł×ĆŽż÷ žî´đĹÍľľ °¨ÁöľÇÁö žĘžŇ˝Ŕ´Ď´Ů.\n"
"żŹ°á źłÁ¤Ŕť ÇŇ źö žř˝Ŕ´Ď´Ů."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "ł×ĆŽż÷ ŔÎĹÍĆäŔĚ˝ş¸Ś źąĹĂÇĎźźżä."
@@ -5848,7 +5982,7 @@ msgstr "žîś˛ žî´đĹ͡ΠŔÎĹͳݿĄ żŹ°áÇŇ °ÍŔÎÁö źąĹĂÇĎźźżä."
msgid "no network card found"
msgstr "ł×ĆŽż÷ ÄŤľĺ¸Ś ĂŁŔťźö žř˝Ŕ´Ď´Ů"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "ł×ĆŽż÷ źłÁ¤"
@@ -5864,15 +5998,15 @@ msgstr ""
"ČŁ˝şĆŽ¸íŔş żĎşŽÇŃ Á¤ąÔÇüŔĚžîžß ÇŐ´Ď´Ů.\n"
"żš)Ą¸mybox.mylab.myco.comĄš"
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "ČŁ˝şĆŽ¸í:"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "ł×ĆŽż÷ źłÁ¤ ¸śšýťç"
@@ -5928,7 +6062,7 @@ msgstr "ISDN źłÁ¤"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"°řąŢŔÚ¸Ś źąĹĂÇĎźźżä.\n"
"¸ńˇĎżĄ žřŔ¸¸é, Ą¸¸ńˇĎżĄ žřŔ˝ĄšŔť źąĹĂÇĎźźżä."
@@ -5947,14 +6081,14 @@ msgstr "´Ů¸Ľ ÁöżŞŔť Ŕ§ÇŃ ÇÁˇÎĹäÄÝ"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"´Ů¸Ľ ÁöżŞŔť Ŕ§ÇŃ ÇÁˇÎĹäÄÝ\n"
" DäłÎ (leased lines) žĆ´Ô"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "žîś˛ ÇÁˇÎĹäÄÝŔť ťçżëÇϽðڽŔ´Ďąî?"
#: ../../network/isdn.pm_.c:199
@@ -5978,7 +6112,8 @@ 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"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"¸¸žŕ ISA ÄŤľĺ¸Ś °ĄÁö°í Ŕִٸé, ´ŮŔ˝ Č­¸éżĄź­ źłÁ¤°ŞŔĚ Á¤ČŽÇŘžß ÇŐ´Ď´Ů.\n"
@@ -5994,13 +6129,13 @@ msgid "Continue"
msgstr "°čźÓ"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "žî´Ŕ °ÍŔĚ ´ÔŔÇ ISDN ÄŤľĺŔÔ´Ďąî?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"ISDN PCI ÄŤľĺ°Ą °¨ÁöľÇžúÁö¸¸, ą× ŔŻÇüŔť žË źö žř˝Ŕ´Ď´Ů. ´ŮŔ˝ Č­¸éżĄź­ PCI ÄŤ"
"ľĺ¸Ś źąĹĂÇŘ ÁÖźźżä."
@@ -6017,47 +6152,47 @@ msgstr "žîś˛ ˝Ă¸Žžó Ć÷ĆŽżĄ ¸śżě˝ş°Ą żŹ°áľÇžî ŔÖłŞżä?"
msgid "Dialup options"
msgstr "´ŮŔĚžóž÷ żÉźÇ"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "żŹ°á Ŕ̸§"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "ŔüČ­ šřČŁ"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "ˇÎą×ŔÎ ID"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "˝şĹŠ¸łĆŽ ąâšÝ"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Ĺ͚̳Ż ąâšÝ"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "ľľ¸ŢŔÎ Ŕ̸§"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Ăššř° DNS ź­šö (żÉźÇ)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "ľÎšř° DNS ź­šö (żÉźÇ)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6065,7 +6200,7 @@ msgstr ""
"\n"
"żŹ°áŔť ÇŘÁŚÇĎ°ĹłŞ ´Ů˝Ă źłÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6073,11 +6208,11 @@ msgstr ""
"\n"
"żŹ°áŔť ´Ů˝Ă źłÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "ÇöŔç ŔÎĹͳݿĄ żŹ°áľÇžî ŔÖ˝Ŕ´Ď´Ů."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6085,35 +6220,32 @@ msgstr ""
"\n"
"ŔÎĹͳݿĄ żŹ°áÇĎ°ĹłŞ żŹ°áŔť ŔçźłÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "ÇöŔç ŔÎĹͳݿĄ żŹ°áľÇžî ŔÖÁö žĘ˝Ŕ´Ď´Ů."
-#: ../../network/netconnect.pm_.c:41
-#, fuzzy
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
-msgstr "żŹ°áľĘ"
+msgstr "żŹ°á"
-#: ../../network/netconnect.pm_.c:43
-#, fuzzy
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
-msgstr "żŹ°á ˛÷ąâ..."
+msgstr "żŹ°á ˛÷ąâ"
-#: ../../network/netconnect.pm_.c:45
-#, fuzzy
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
-msgstr "ÁöąÝ ł×ĆŽż÷ źłÁ¤"
+msgstr "żŹ°á źłÁ¤"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "ŔÎĹÍłÝ żŹ°á & źłÁ¤"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "ŔĚÁŚ Ą¸%sĄšżŹ°áŔť źłÁ¤ÇŇ °ÍŔÔ´Ď´Ů."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6132,12 +6264,12 @@ msgstr ""
"\n"
"˝ĂŔŰÇϡÁ¸é Ą¸ČŽŔÎĄšŔť ´Š¸Łźźżä."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "ł×ĆŽż÷ ČŻ°ć źłÁ¤"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6149,9 +6281,9 @@ msgstr ""
"Ą¸ČŽŔÎĄšŔť ´­ˇŻ ÇöŔç źłÁ¤Ŕť ŔŻÁöÇĎ°ĹłŞ, Ą¸ĂëźŇĄš¸Ś ´­ˇŻ ŔÎĹÍłÝ/ł×ĆŽż÷ żŹ°áŔť "
"´Ů˝Ă źłÁ¤ÇĎźźżä.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"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"
@@ -6161,66 +6293,72 @@ msgstr ""
"ÁöąÝ ŔÎĹÍłÝ/ł×ĆŽż÷ żŹ°áŔť źłÁ¤ÇϡÁ ÇŐ´Ď´Ů.\n"
"ŔÚľż °ËťöŔť ťçżëÇĎ°í ˝ÍÁö žĘ´Ů¸é, ßŊšÚ˝ş¸Ś ÇŘÁŚÇĎźźżä.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "źłÁ¤ÇŇ ÇÁˇÎĆÄŔĎŔť źąĹĂÇĎźźżä."
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "ŔÚľż°Ëťö ťçżë"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "ŔüšŽ°Ą ¸đľĺ"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "ŔĺÄĄ¸Ś °ËťöÇĎ°í ŔÖ˝Ŕ´Ď´Ů..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "ŔĎšÝ ¸đľŠ żŹ°á"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "%s Ć÷ĆŽżĄź­ šß°ß"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN żŹ°á"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "%s šß°ß"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "ADSL żŹ°á"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "ŔÎĹÍĆäŔĚ˝ş %sťóżĄź­ šß°ß"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "ÄłŔĚşí żŹ°á"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "ÄłŔĚşí żŹ°á šß°ß"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "LAN żŹ°á"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "ŔĚ´őłÝ ÄŤľĺ šß°ß"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "źłÁ¤ÇŇ żŹ°áŔť źąĹĂÇĎźźżä."
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6230,23 +6368,23 @@ msgstr ""
"żŹ°áżĄ ťçżëÇŇ šć˝ÄŔť źąĹĂÇĎźźżä.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "ŔÎĹÍłÝ żŹ°á"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "şÎĆýÿĄ żŹ°áÇĎľľˇĎ ÇĎ°Ú˝Ŕ´Ďąî?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "ł×ĆŽż÷ źłÁ¤"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr "ł×ĆŽż÷Ŕť ´Ů˝Ă ˝ĂŔŰÇŘžß ÇŐ´Ď´Ů."
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6257,7 +6395,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6267,7 +6405,7 @@ msgstr ""
"\n"
"ŔĚÁŚ źłÁ¤ŔĚ ˝Ă˝şĹŰżĄ ŔűżëľÉ °ÍŔÔ´Ď´Ů.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6275,16 +6413,16 @@ msgstr ""
"żĎˇáľČ ČÄżĄ, X¸Ś ´Ů˝Ă ˝ĂŔŰÇĎżŠ ČŁ˝şĆŽ¸í şŻ°ćżĄ ľű¸Ľ\n"
"šŽÁŚ šßťýŔť ÇÇÇϽù⠚ٜř´Ď´Ů."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"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."
@@ -6293,7 +6431,7 @@ msgstr ""
"ą×łÉ ÇöŔç źłÁ¤Ŕť ŔŻÁöÇĎźźżä.\n"
"žĆˇĄ ŔԡœőŔť şŻ°ćÇϸé ÇöŔç źłÁ¤Ŕť ľ¤žîž˛°Ô ľË´Ď´Ů."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6303,38 +6441,43 @@ msgstr ""
"°˘°˘ŔÇ Ç׸ńŔşĄ¸.ĄšŔ¸ˇÎ ą¸şĐľČ ˝ĘÁřźö IP Á֟ҡΠŔÔˇÂÇŘžß ÇŐ´Ď´Ů.\n"
"(żš, 1.2.3.4)"
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "%s ł×ĆŽż÷ ÄŤľĺ źłÁ¤Áß"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (%s ľĺśóŔĚšö)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP ÁÖźŇ"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "łÝ¸ś˝şĹŠ"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(BOOTP/DHCP)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "IP ŔÚľżÇŇ´ç"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "şÎĆýà ˝ĂŔŰľĘ"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP Á֟Ҵ 1.2.3.4°ú °°Ŕş Çü˝ÄŔĚžîžß ÇŐ´Ď´Ů."
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6346,64 +6489,64 @@ msgstr ""
"Ŕ̸§ŔĚžîžß ÇŐ´Ď´Ů. \n"
"°ÔŔĚĆŽ żţŔĚ°Ą ŔÖ´Ů¸é ą× IP Á֟Ҿľ ŔÔˇÂÇŘžß ÇŐ´Ď´Ů."
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS ź­šö"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "°ÔŔĚĆŽżţŔĚ ŔĺÄĄ"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "ÇÁśô˝Ă źłÁ¤"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "ŔĽ ÇÁśô˝Ă"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP ÇÁśô˝Ă"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "ł×ĆŽż÷ÄŤľĺ ID ĂßŔű (ˇŚĹžżĄ ŔŻżëÇÔ)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "ÇÁśô˝Ă Ŕ̸§Ŕş httP://... ŔĚžîžß ÇŐ´Ď´Ů."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "ÇÁśô˝Ă Ŕ̸§Ŕş ftp://... ŔĚžîžß ÇŐ´Ď´Ů."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "ŔÎĹÍłÝ źłÁ¤"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "ÁöąÝ ŔÎĹÍłÝ żŹ°áŔť ˝ĂľľÇŘ ş¸˝Ă°Ú˝Ŕ´Ďąî?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "żŹ°á Ĺ×˝şĆŽ Áß..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "ÁöąÝ ˝Ă˝şĹŰŔĚ ŔÎĹͳݿĄ żŹ°áľÇžú˝Ŕ´Ď´Ů."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "ş¸žČťóŔÇ ŔĚŔŻˇÎ ŔĚÁŚ żŹ°áŔť ˛÷Ŕť °ÍŔÔ´Ď´Ů."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6411,111 +6554,116 @@ msgstr ""
"˝Ă˝şĹŰŔĚ ŔÎĹͳݿĄ żŹ°áľÇÁö žĘŔş ľíÇŐ´Ď´Ů.\n"
"żŹ°á źłÁ¤Ŕť ´Ů˝ĂÇŘ ş¸źźżä."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "żŹ°á źłÁ¤"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "žĆˇĄ žç˝ÄŔť äżö ÁÖźźżä."
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "ÄŤľĺ IRQ"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "ÄŤľĺ ¸Ţ¸đ¸Ž (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "ÄŤľĺ IO"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "ÄŤľĺ IO_0"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "ÄŤľĺ IO_1"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "´ÔŔÇ °łŔÎ ŔüČ­ šřČŁ"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "°řąŢŔÚ Ŕ̸§ (żš provider.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "°řąŢŔÚ ŔüČ­šřČŁ"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "°řąŢŔÚ DNS 1 (żÉźÇ)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "°řąŢŔÚ DNS 2 (żÉźÇ)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "ąš°Ą źąĹĂ"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "´ŮŔĚžó¸ľ ¸đľĺ"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "żŹ°á źÓľľ"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "żŹ°á ˝Ă°ŁĂĘ°ú (ĂĘ)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "ˇÎą×ŔÎ °čÁ¤(ťçżëŔÚ¸í)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "°čÁ¤ žĎČŁ"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "¸śżîĆŽ ˝ÇĆĐ: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "ŔĚ ˝Ă˝şĹŰżĄź­´Â ČŽŔĺĆÄĆźźÇŔĚ ÁöżřľÇÁö žĘ˝Ŕ´Ď´Ů."
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"ĆÄĆźźÇ Ĺ×ŔĚşíżĄź­ şó °ř°ŁŔĚ ŔÖÁö¸¸ ťçżëÇŇ źö žř˝Ŕ´Ď´Ů.\n"
"ŔŻŔĎÇŃ ÇŘ°áĂĽŔş ÁÖ ĆÄĆźźÇľéŔĚ ČŽŔĺ ĆÄĆźźÇľéŔÇ ľÚżĄ ŔÖ´Â şó °ř°ŁŔť Â÷ÁöÇĎľľˇĎ "
"żČąâ´Â °ÍŔÔ´Ď´Ů."
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "%s ĆÄŔϡκÎĹÍŔÇ şšą¸ ˝ÇĆĐ: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Ŕ߸řľČ šéž÷ ĆÄŔĎ"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "%s ĆÄŔĎżĄ ž˛ąâ żŔˇů"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6525,189 +6673,189 @@ msgstr ""
"ľĽŔĚĹÍ šŤ°áźş °Ëťç°Ą ˝ÇĆĐÇß˝Ŕ´Ď´Ů. \n"
"ŔĚ°ÍŔş ľđ˝şĹŠżĄ ąâˇĎľÇ´Â ľĽŔĚĹ͸Ś ŔŇžî šö¸°´Ů´Â °ÍŔť ŔÇšĚÇŐ´Ď´Ů."
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "ÇĘźö ĆŃĹ°Áö"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "ÁßżäÇŃ ĆŃĹ°Áö"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "ČǸ˘ÇŃ ĆŃĹ°Áö"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "ÁÁŔş ĆŃĹ°Áö"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "ąŚÂúŔş ĆŃĹ°Áö"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Common Unix Printing System"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR New Generation"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Line Printer Daemon"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "ˇÎÄĂ ÇÁ¸°ĹÍ"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "żř°Ý ÇÁ¸°ĹÍ"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "żř°Ý CUPS ź­šöŔÇ ÇÁ¸°ĹÍ"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "żř°Ý LPD ź­šöŔÇ ÇÁ¸°ĹÍ"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
#, fuzzy
msgid "Network printer (TCP/Socket)"
msgstr "ł×ĆŽż÷ ÇÁ¸°ĹÍ (źŇÄĎ)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "ťďšŮ/ŔŠľľżěÁî 95/98/NTťóŔÇ ÇÁ¸°ĹÍ"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "ł×ĆŽżţžî ź­šöťóŔÇ ÇÁ¸°ĹÍ"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "ÇÁ¸°ĹÍ ŔĺÄĄ URIŔť ŔÔˇÂÇĎźźżä."
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "ŔŰž÷Ŕť ¸íˇÉŔ¸ˇÎ ĆÄŔĚÇÁ żŹ°á"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "žË źöžř´Â ¸đľ¨"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr "ˇÎÄĂ ÇÁ¸°ĹÍ"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr "żř°Ý ÇÁ¸°ĹÍ"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
-#, fuzzy, c-format
+#: ../../printer.pm_.c:562
+#, c-format
msgid ", printing to %s"
-msgstr "%s ĆÄŔĎżĄ ž˛ąâ żŔˇů"
+msgstr ", %sżĄ ŔÎźâ"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr "łŻ(RAW) ÇÁ¸°ĹÍ (ľĺśóŔĚšö ťçżëžČÇÔ)"
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(%sżĄ)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(ŔĚ ź­šöťóŔÇ)"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "CUPS ź­šö IP"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (ąâşť°Ş)"
@@ -6731,15 +6879,13 @@ msgstr ""
"žř˝Ŕ´Ď´Ů; Ŕ̡ą ÇÁ¸°ĹÍ´Â ŔÚľżŔ¸ˇÎ °¨ÁöľÇžî Áý´Ď´Ů. ŔĚżÍ °°Ŕş °ćżě\n"
"Ą¸żř°Ý CUPS ź­šöŔÇ ÇÁ¸°ĹÍĄš¸Ś źąĹĂÇĎźźżä."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-#, fuzzy
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
msgid "CUPS configuration"
-msgstr "źłÁ¤"
+msgstr "CUPS źłÁ¤"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-#, fuzzy
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
msgid "Specify CUPS server"
-msgstr "żř°Ý CUPS ź­šö"
+msgstr "CUPS ź­šö ÁöÁ¤"
#: ../../printerdrake.pm_.c:71
#, fuzzy
@@ -6785,7 +6931,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP Á֟Ҵ Ą¸192.168.1.20Ąš°ú °°Ŕş Çü˝ÄŔĚžîžß ÇŐ´Ď´Ů."
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "Ć÷ĆŽ šřČŁ´Â Á¤źöŔĚžîžß ÇŐ´Ď´Ů!"
@@ -6793,7 +6939,7 @@ msgstr "Ć÷ĆŽ šřČŁ´Â Á¤źöŔĚžîžß ÇŐ´Ď´Ů!"
msgid "CUPS server IP"
msgstr "CUPS ź­šö IP"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Ć÷ĆŽ"
@@ -6801,21 +6947,12 @@ msgstr "Ć÷ĆŽ"
msgid "Automatic CUPS configuration"
msgstr "ŔÚľż CUPS źłÁ¤"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "ŔĺÄĄ °Ëťö Áß ..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Ć÷ĆŽ °Ëťç"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-#, fuzzy
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
-msgstr "ÇÁ¸°ĹÍ Ăß°Ą"
+msgstr "ťő ÇÁ¸°ĹÍ Ăß°Ą"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6828,14 +6965,13 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-#, fuzzy
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
-msgstr "ˇÎÄĂ ÇÁ¸°ĹÍ"
+msgstr "ÁöżŞ ÇÁ¸°ĹÍ"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6853,12 +6989,11 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
-#, fuzzy
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
-msgstr "żř°Ý ÇÁ¸°ĹÍ"
+msgstr "ÇÁ¸°ĹÍ ŔÚľż°Ëťö"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6872,11 +7007,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
-msgstr ""
+msgstr "ÇÁ¸°ĹÍ ŔÚľż°Ëťö"
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6886,35 +7021,37 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-#, fuzzy
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
-msgstr "ŔÚľż°Ëťö ťçżë"
+msgstr "ŔÚľż°Ëťö"
-#: ../../printerdrake.pm_.c:228
-#, fuzzy
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
-msgstr "żř°Ý ÇÁ¸°Ĺ͸í"
+msgstr "ÇÁ¸°ĹÍ źöľżźłÁ¤"
-#: ../../printerdrake.pm_.c:256
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Ć÷ĆŽ °Ëťç"
+
+#: ../../printerdrake.pm_.c:252
+#, c-format
msgid "Detected %s"
msgstr "%s šß°ß"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
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, ..., "
@@ -6922,43 +7059,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "ÇÁ¸°ĹÍ ŔĺÄĄ URIŔť ŔÔˇÂÇĎźźżä."
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr "ˇÎÄĂ ÇÁ¸°ĹÍ"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6966,7 +7103,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6974,72 +7111,82 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "žîś˛ ˝Ă¸Žžó Ć÷ĆŽżĄ ¸śżě˝ş°Ą żŹ°áľÇžî ŔÖłŞżä?"
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "ÇÁ¸°ĹÍ ŔĺÄĄ URIŔť ŔÔˇÂÇĎźźżä."
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "ŔÎĹÍłÝ źłÁ¤"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "ĆŃĹ°Áö źłÄĄ Áß..."
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
+msgstr "ĆŃĹ°Áö źłÄĄ Áß..."
+
+#: ../../printerdrake.pm_.c:524
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing mtools packages..."
msgstr "ĆŃĹ°Áö źłÄĄ Áß..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
#, fuzzy
-msgid "Making printer port available for CUPS ..."
+msgid "Making printer port available for CUPS..."
msgstr "ÇÁ¸°ĹÍ ľĽŔĚĹÍşŁŔĚ˝ş ŔĐ´Â Áß ..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr "ÇÁ¸°ĹÍ ľĽŔĚĹÍşŁŔĚ˝ş ŔĐ´Â Áß ..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "żř°Ý LPD ÇÁ¸°ĹÍ żÉźÇ"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7049,27 +7196,27 @@ msgstr ""
"ą× ÇÁ¸°ĹÍ ź­šöŔÇ ČŁ˝şĆŽ¸í°ú ą× ź­šöťóŔÇ ÇÁ¸°ĹÍ Ŕ̸§Ŕť\n"
"ŔÔˇÂÇŘžß ÇŐ´Ď´Ů."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "żř°Ý ČŁ˝şĆŽ¸í"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "żř°Ý ÇÁ¸°Ĺ͸í"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "żř°Ý ČŁ˝şĆŽ¸íŔť ĂŁŔť źö žřŔ˝!"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "żř°Ý ÇÁ¸°Ĺ͸íŔĚ şüÁł˝Ŕ´Ď´Ů!!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) ÇÁ¸°ĹÍ żÉźÇ"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7083,35 +7230,35 @@ msgstr ""
"°řŔŻ Ŕ̸§, Á¤˝Ä ťçżëŔÚ¸í, žĎČŁ, ŔŰž÷ą×ˇě¸íŔť \n"
"ŔÔˇÂÇŘžß ÇŐ´Ď´Ů."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "SMB ź­šö ČŁ˝şĆŽ"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "SMB ź­šö IP"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "°řŔŻ Ŕ̸§"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "ŔŰž÷ ą×ˇě"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "ź­šö Ŕ̸§ śÇ´Â ź­šö IP¸Ś ŔÔˇÂÇŘžß ÇŐ´Ď´Ů!"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "ťďšŮ °řŔŻ Ŕ̸§Ŕť ĂŁŔť źö žřŔ˝!"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7135,7 +7282,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7144,7 +7291,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7152,11 +7299,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "łÝżţžî ÇÁ¸°ĹÍ żÉźÇ"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7169,28 +7316,27 @@ msgstr ""
"ž×źź˝şÇϡÁ´Â ÇÁ¸°ĹÍŔÇ ĹĽ Ŕ̸§, Á¤˝Ä ťçżëŔÚ¸í, žĎČŁ¸Ś \n"
"ŔÔˇÂÇŘžß ÇŐ´Ď´Ů."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "ÇÁ¸°ĹÍ ź­šö"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "ÇÁ¸°ĆŽ ĹĽ Ŕ̸§"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "NCP ź­šö Ŕ̸§Ŕť ĂŁŔť źö žřŔ˝!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "NCP ĹĽ Ŕ̸§Ŕť ĂŁŔť źö žřŔ˝!"
-#: ../../printerdrake.pm_.c:852
-#, fuzzy
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
-msgstr "źŇÄĎ ÇÁ¸°ĹÍ żÉźÇ"
+msgstr "TCP/źŇÄĎ ÇÁ¸°ĹÍ żÉźÇ"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
@@ -7203,19 +7349,19 @@ msgstr ""
"ŔĎšÝŔűŔ¸ˇÎ 9100 Ć÷ĆŽ¸Ś ťçżëÇĎÁö¸¸, ´Ů¸Ľ ź­šöťóżĄź­´Â °˘ąâ\n"
"´Ů¸Ś źö ŔÖ˝Ŕ´Ď´Ů. ÇĎľĺżţžî źł¸íź­¸Ś ÂüÁśÇĎźźżä."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "ÇÁ¸°ĹÍ ČŁ˝şĆŽ¸í"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "ÇÁ¸°ĹÍ ČŁ˝şĆŽ¸íŔť ĂŁŔť źö žřŔ˝!"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "ÇÁ¸°ĹÍ ŔĺÄĄ URI"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
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 "
@@ -7224,11 +7370,11 @@ msgstr ""
"ÇÁ¸°ĹÍ ž×źź˝ş Á֟ҸŚ Á÷Á˘ ÁöÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů. Á֟Ҵ CUPS śÇ´Â Foomatic ąÔÁ¤"
"Ŕť ÁŘźöÇŘžß ÇŐ´Ď´Ů. ą×ˇ¸Áö žĘŔş Á֟Ҵ ¸đľç ˝şÇŽˇŻ°Ą ÁöżřÇĎÁö žĘ˝Ŕ´Ď´Ů."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "ŔŻČżÇŃ Á֟ҸŚ ŔÔˇÂÇĎźźżä!"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
#, fuzzy
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
@@ -7238,28 +7384,23 @@ msgstr ""
"źł¸í°ú Ŕ§ÄĄ şÎşĐŔť ŔÔˇÂÇŇ ÇĘżä´Â žř˝Ŕ´Ď´Ů.\n"
"ą×°ÍľéŔş ´ÜÁö ťçżëŔÚľéŔť Ŕ§ÇŃ şÎżŹźł¸íŔĎ ťÓŔÔ´Ď´Ů."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "ÇÁ¸°ĹÍ Ŕ̸§"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "źł¸í"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Ŕ§ÄĄ"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr "ÇÁ¸°ĹÍ ľĽŔĚĹÍşŁŔĚ˝ş ÁŘşń Áß ..."
-#: ../../printerdrake.pm_.c:1112
-#, fuzzy
+#: ../../printerdrake.pm_.c:1136
msgid "Your printer model"
-msgstr "żř°Ý ÇÁ¸°Ĺ͸í"
+msgstr "ÇÁ¸°ĹÍ ¸đľ¨"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7274,26 +7415,24 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-#, fuzzy
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
msgid "The model is correct"
-msgstr "ŔĚ°ÍŔĚ ¸Â˝Ŕ´Ďąî?"
+msgstr "¸đľ¨ŔĚ Á¤ČŽÇŐ´Ď´Ů."
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-#, fuzzy
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
msgid "Select model manually"
-msgstr "żř°Ý ÇÁ¸°Ĺ͸í"
+msgstr "Á÷Á˘ ¸đľ¨ źąĹĂ"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "ÇÁ¸°ĹÍ ¸đľ¨ źąĹĂ"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "žîś˛ ÇÁ¸°Ĺ͸Ś °ĄÁö°í ŔÖ˝Ŕ´Ďąî?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7302,17 +7441,17 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "OKI ŔŠÇÁ¸°ĹÍ źłÁ¤"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7322,11 +7461,11 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "ˇş˝ş¸śĹŠ Ŕ×ĹŠÁŹ źłÁ¤"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7334,7 +7473,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7347,7 +7486,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
#, fuzzy
msgid ""
"Printer default settings\n"
@@ -7362,22 +7501,22 @@ msgstr ""
"Ŕß ČŽŔÎÇĎźźżä. °íÇ°Áú ŔÎźâš°Ŕť žňąâŔ§ÇŘź­´Â ŔÎźâ źÓľľ°Ą\n"
"ą× ¸¸Ĺ­ ´ŔˇÁÁř´Ů´Â °ÍŔť žË°í °čźźżä."
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "%s żÉźÇŔş Á¤źö šřČŁŔĚžîžß ÇŐ´Ď´Ů!"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "%s żÉźÇŔş źýŔÚŔĚžîžß ÇŐ´Ď´Ů!"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "%s żÉźÇ šüŔ§ ĂĘ°ú!"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7386,11 +7525,11 @@ msgstr ""
"ŔĚ ÇÁ¸°ĹÍ(%s)¸Ś\n"
"ąâşť ÇÁ¸°Ĺ͡ΠÇϽðڽŔ´Ďąî?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "˝ĂÇč ĆäŔĚÁö"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
#, fuzzy
msgid ""
"Please select the test pages you want to print.\n"
@@ -7404,40 +7543,39 @@ msgstr ""
"ĆäŔĚÁö°Ą łŞżŔÁö žĘŔť źöľľ ŔÖ˝Ŕ´Ď´Ů.\n"
"ÇĽÁŘ ˝ĂÇč ĆäŔĚÁö´Â ´ë°ł Ŕß ŔÎźâľË´Ď´Ů."
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "˝ĂÇč ĆäŔĚÁö žřŔ˝"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "ŔÎźâ"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "ÇĽÁŘ ˝ĂÇč ĆäŔĚÁö"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr "´Ů¸Ľ ˝ĂÇč ĆäŔĚÁö (Letter)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "˝ĂÇč ĆäŔĚÁö Č°źşČ­ (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "ťçÁř ˝ĂÇč ĆäŔĚÁö"
-#: ../../printerdrake.pm_.c:1602
-#, fuzzy
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
-msgstr "˝ĂÇč ĆäŔĚÁö ŔÎźâ"
+msgstr "˝ĂÇč ĆäŔĚÁö ŔÎźâ žČÇÔ"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "˝ĂÇč ĆäŔĚÁö ŔÎźâ Áß..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7452,7 +7590,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -7460,15 +7598,15 @@ msgstr ""
"˝ĂÇč ŔÎźâ ĆäŔĚÁö¸Ś ÇÁ¸°Ĺ͡Πş¸łÂ˝Ŕ´Ď´Ů.\n"
"ŔÎźâľÇąâąîÁö žŕ°ŁŔÇ ˝Ă°ŁŔĚ °É¸ą źö ŔÖ˝Ŕ´Ď´Ů.\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr "żĂšŮ¸Ł°Ô ŔŰľżÇß˝Ŕ´Ďąî?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr "łŻ(RAW) ÇÁ¸°ĹÍ"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7477,15 +7615,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
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 ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7494,24 +7632,24 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, fuzzy, 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\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
"ÇöŔç ÇÁ¸°ĹÍżĄ ťçżëÇŇ źö ŔÖ´Â żÉźÇ ¸ńˇĎŔť ş¸ˇÁ¸é, Ą¸ŔÎźâ żÉźÇ ¸ńˇĎĄšŔť ´Š¸Łźź"
"żä.\n"
"\n"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -7520,15 +7658,15 @@ msgstr ""
"¸íˇÉÇŕ(Ĺ͚̳ΠŔŠľľżě)żĄź­ ĆÄŔĎŔť ŔÎźâÇϡÁ¸é, Ą¸%s <ĆÄŔĎ>Ąš¸íˇÉŔť ťçżëÇĎźź"
"żä.\n"
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
#, fuzzy
msgid ""
"To get a list of the options available for the current printer click on the "
@@ -7538,7 +7676,7 @@ msgstr ""
"żä.\n"
"\n"
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -7547,7 +7685,7 @@ msgstr ""
"¸íˇÉÇŕ(Ĺ͚̳ΠŔŠľľżě)żĄź­ ĆÄŔĎŔť ŔÎźâÇϡÁ¸é, Ą¸%s <ĆÄŔĎ>Ąš śÇ´Â Ą¸%s <ĆÄŔĎ>Ąš"
"¸íˇÉŔť ťçżëÇĎźźżä.\n"
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7557,7 +7695,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7569,29 +7707,40 @@ msgstr ""
"Ą¸%sĄšżÍĄ¸%sĄš¸íˇÉŔş śÇÇŃ ĆŻÁ¤ ŔÎźâ ŔŰž÷Ŕť Ŕ§ÇŃ żÉźÇ źłÁ¤Ŕť źöÁ¤ÇŇ źö ŔÖ°Ô ÇŐ"
"´Ď´Ů. ¸íˇÉÇ࿥ żřÇĎ´Â źłÁ¤°ŞŔť Ăß°ĄÇĎźźżä, żš: Ą¸%s <ĆÄŔĎ>Ąš.\n"
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "´Ýąâ"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "ÇÁ¸°ĹÍĄ¸%sĄšťóżĄź­ ŔÎźâ Áß"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "ÇÁ¸°ĹÍĄ¸%sĄšťóżĄź­ ŔÎźâ Áß"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "ÇÁ¸°ĹÍĄ¸%sĄšťóżĄź­ ŔÎźâ Áß"
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "ÇÁ¸°ĹÍĄ¸%sĄšťóżĄź­ ŔÎźâ Áß"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "´Ýąâ"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "ÇÁ¸°ĹÍ żÉźÇ ¸ńˇĎ"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7599,36 +7748,36 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr "ÇÁ¸°ĹÍ ľĽŔĚĹÍ ŔĐ´Â Áß ..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "ÇÁ¸°ĹÍ źłÁ¤ ŔüźŰ"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, fuzzy, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7643,7 +7792,7 @@ msgstr ""
"ą×ˇŻłŞ ŔŰž÷ľéŔş ŔüźŰľÇÁö žĘ˝Ŕ´Ď´Ů.\n"
"´ŮŔ˝°ú °°Ŕş ŔĚŔŻˇÎŔÎÇĎżŠ ¸đľç ĹĽ°Ą ŔüźŰľÉ źö´Â žř˝Ŕ´Ď´Ů:\n"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
#, fuzzy
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
@@ -7652,7 +7801,7 @@ msgstr ""
"CUPS´Â łëş§ ź­šöťóŔÇ ÇÁ¸°ĹÍłŞ ŔÚŔŻÇü˝Ä ¸íˇÉžîˇÎ ľĽŔĚĹ͸Ś ş¸łť´Â\n"
"ÇÁ¸°ĹÍ´Â ÁöżřÇĎÁö žĘ˝Ŕ´Ď´Ů.\n"
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
#, fuzzy
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
@@ -7661,11 +7810,11 @@ msgstr ""
"LPQ´Â ´ÜÁö ÁöżŞ ÇÁ¸°ĹÍ, żř°Ý LPD ÇÁ¸°ĹÍ ą×¸Ž°í źŇÄĎ/TCP\n"
"ÇÁ¸°Ĺ͸¸Ŕť ÁöżřÇŐ´Ď´Ů.\n"
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPDżÍ LPRng´Â IPP ÇÁ¸°Ĺ͸Ś ÁöżřÇĎÁö žĘ˝Ŕ´Ď´Ů.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
#, fuzzy
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
@@ -7674,7 +7823,7 @@ msgstr ""
"ą×¸Ž°í śÇÇŃ, ŔĚ ÇÁˇÎą×ˇĽŔĚłŞ Ą¸Foomatic źłÁ¤ĄšŔ¸ˇÎ\n"
"ťýźşľÇÁö žĘŔş ĹĽ´Â ŔüźŰľÉ źö žř˝Ŕ´Ď´Ů."
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
#, fuzzy
msgid ""
"\n"
@@ -7685,7 +7834,7 @@ msgstr ""
"śÇÇŃ ÁŚÁśž÷Ăź°Ą ÁŚ°řÇŃ PPD ĆÄŔĎŔĚłŞ CUPS Ć÷ÇÔ ľĺśóŔĚšöˇÎ\n"
"źłÁ¤ľČ ÇÁ¸°ĹÍľľ ŔüźŰľÉ źö žř˝Ŕ´Ď´Ů."
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -7694,15 +7843,15 @@ msgstr ""
"\n"
"ŔüźŰÇϡÁ´Â ÇÁ¸°ĹÍľéŔť źąĹĂÇŃ ČÄżĄ Ą¸ŔüźŰĄšŔť ´Š¸Łźźżä."
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr "ÇÁ¸°ĹÍ ŔüźŰ ÇĎÁöžĘŔ˝"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr "ŔüźŰ"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7713,11 +7862,11 @@ msgstr ""
"ľ¤žî žľˇÁ¸é Ą¸ŔüźŰĄšŔť ´Š¸Łźźżä.\n"
"ťő Ŕ̸§Ŕť ŔÔˇÂÇĎ°ĹłŞ ŔĚ ÇÁ¸°Ĺ͸Ś ÁöłŞÄĽ źöľľ ŔÖ˝Ŕ´Ď´Ů."
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "ÇÁ¸°ĹÍ Ŕ̸§żĄ´Â šŽŔÚ, źýŔÚ ą×¸Ž°í šŘÁŮ(Underscore)¸¸ ŔÖžîžß ÇŐ´Ď´Ů."
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -7726,16 +7875,16 @@ msgstr ""
"ÇÁ¸°ĹÍ Ą¸%sĄš°Ą ŔĚšĚ Á¸ŔçÇŐ´Ď´Ů.\n"
"Á¤¸ťˇÎ ąâÁ¸ źłÁ¤Ŕť ľ¤žî žľąîżä?"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "ťő ÇÁ¸°ĹÍ Ŕ̸§"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr "%s ŔüźŰ Áß ..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, fuzzy, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -7745,29 +7894,29 @@ msgstr ""
"ťő ÇÁ¸°ĆĂ ˝Ă˝şĹŰ %sÇĎżĄź­ ą×°ÍŔĚ śÇÇŃ ąâşť ÇÁ¸°ĹÍ°Ą\n"
"ľÇľľˇĎ ÇϽðڽŔ´Ďąî?"
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr "ÇÁ¸°ĹÍ ľĽŔĚĹÍ °ť˝Ĺ Áß ..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr "żř°Ý ÇÁ¸°ĹÍ źłÁ¤"
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "ł×ĆŽż÷ żŹ°á Áß..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr "ÁöąÝ ł×ĆŽż÷ źłÁ¤"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "ł×ĆŽż÷ ąâ´ÉŔĚ źłÁ¤ľÇÁö žĘžŇ˝Ŕ´Ď´Ů."
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
#, fuzzy
msgid ""
"You are going to configure a remote printer. This needs working network "
@@ -7781,11 +7930,11 @@ msgstr ""
"ťçżëÇŇ źö žř˝Ŕ´Ď´Ů.\n"
"žîśť°Ô ÇϽðڽŔ´Ďąî?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr "ł×ĆŽż÷ źłÁ¤ žřŔĚ °čźÓ"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
#, fuzzy
msgid ""
"The network configuration done during the installation cannot be started "
@@ -7803,7 +7952,7 @@ msgstr ""
"¸Ś ŔĚżëÇĎżŠ, ÇÁ¸°ĹÍ źłÁ¤Ŕť\n"
"´Ů˝Ă ÇŘ ş¸źźżä."
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
#, fuzzy
msgid ""
"The network access was not running and could not be started. Please check "
@@ -7815,19 +7964,19 @@ msgstr ""
"ą×¸Ž°íłŞź­ żř°Ý ÇÁ¸°ĹÍ źłÁ¤Ŕť ´Ů˝Ă ˝ĂľľÇŘ\n"
"ş¸źźżä."
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr "ŔΟ⠽ýşĹŰ Ŕç˝ÇÇŕ Áß ..."
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "łôŔ˝"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr "ĂÖ°í"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "ş¸žČ źöÁŘ %sˇÎ ŔΟ⠽ýşĹŰ źłÄĄ Áß"
@@ -7856,7 +8005,7 @@ msgstr "ş¸žČ źöÁŘ %sˇÎ ŔΟ⠽ýşĹŰ źłÄĄ Áß"
# #"\n"
# #"Á¤¸ťˇÎ ŔĚ ÄÄÇťĹÍťóŔÇ ŔÎźâ źłÁ¤Ŕť\n"
# #"żřÇϽʴϹî? "
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, fuzzy, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7883,11 +8032,11 @@ msgstr ""
"Á¤¸ťˇÎ ŔĚ ÄÄÇťĹÍťóŔÇ ŔÎźâ źłÁ¤Ŕť\n"
"żřÇϽʴϹî? "
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr "şÎĆýà ŔΟ⠽ýşĹŰ ŔÚľż˝ÇÇŕ"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, fuzzy, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7910,66 +8059,65 @@ msgstr ""
"´Ů˝Ă ŔΟ⠽ýşĹŰŔÇ ŔÚľż˝ÇÇŕ ąâ´ÉŔĚ Č°źşČ­ľÇľľˇĎ\n"
"ÇϽðڽŔ´Ďąî?"
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr "źłÄĄľČ źŇÇÁĆŽżţžî ČŽŔÎ Áß ..."
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr "LPRng ÁŚ°Ĺ Áß ..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr "LPD ÁŚ°Ĺ Áß ..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "ÇÁ¸°ĹÍ ˝şÇŽˇŻŔť źąĹĂÇĎźźżä."
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "žîś˛ ŔΟ⠽ýşĹŰ(˝şÇŽˇŻ)Ŕť ťçżëÇϽðڽŔ´Ďąî?"
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2310
+#, fuzzy, c-format
+msgid "Configuring printer \"%s\"..."
msgstr "ÇÁ¸°ĹÍ Ą¸%sĄš źłÁ¤ Áß ..."
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr "ĆŃĹ°Áö źłÄĄ Áß..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "ÇÁ¸°ĹÍ żÉźÇ"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr "ÇÁ¸°Ĺ;塚ŔĚĹŠ ÁŘşń Áß ..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "ÇÁ¸°ĹÍ Ą¸%sĄš źłÁ¤ Áß ..."
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "ŔÎźâ źłÁ¤Ŕť ÇϽðڽŔ´Ďąî?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr "ŔΟ⠽ýşĹŰ:"
-#: ../../printerdrake.pm_.c:2415
-#, fuzzy
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
-msgstr "ÇÁ¸°ĹÍ"
+msgstr "ÇÁ¸°Ĺ;塚ŔĚĹŠ"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7982,7 +8130,7 @@ msgstr ""
"Á¤ş¸¸Ś ş¸°í ˝Í´Ů¸é ÇÁ¸°Ĺ͸Ś ĹŹ¸ŻÇĎźźżä.\n"
"ťő ÇÁ¸°Ĺ͸Ś Ăß°ĄÇĎ°í ˝Í´Ů¸é Ą¸ÇÁ¸°ĹÍ Ăß°ĄĄš¸Ś ´Š¸Łźźżä."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7994,29 +8142,32 @@ msgstr ""
"Á¤ş¸¸Ś ş¸°í ˝Í´Ů¸é ÇÁ¸°Ĺ͸Ś ĹŹ¸ŻÇĎźźżä.\n"
"ťő ÇÁ¸°Ĺ͸Ś Ăß°ĄÇĎ°í ˝Í´Ů¸é Ą¸ÇÁ¸°ĹÍ Ăß°ĄĄš¸Ś ´Š¸Łźźżä."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
+msgstr "ÇÁ¸°ĹÍ ¸ńˇĎ °ť˝Ĺ"
-#: ../../printerdrake.pm_.c:2464
-#, fuzzy
+#: ../../printerdrake.pm_.c:2535
msgid "Change the printing system"
-msgstr "ł×ĆŽż÷ źłÁ¤"
+msgstr "ŔÎźâ˝Ă˝şĹŰ şŻ°ć"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "ŔĎšÝ ¸đľĺ"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Ážˇá"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr "śÇ´Ů¸Ľ ÇÁ¸°Ĺ͸Ś źłÁ¤ÇϽðڽŔ´Ďąî?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "ŔÎĹÍłÝ źłÁ¤ şŻ°ć"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
@@ -8025,103 +8176,102 @@ msgstr ""
"ÇÁ¸°ĹÍ %s: %s: %s\n"
"ŔĚ ÇÁ¸°ĹÍżĄ ´ëÇŘź­ šŤžůŔť źöÁ¤ÇϽðڽŔ´Ďąî?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr "˝ÇÇŕ"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "ŔÎĹÍłÝ żŹ°á ŔŻÇü"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "ÇÁ¸°ĹÍ Ŕ̸§, źł¸í, Ŕ§ÄĄ"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr "ÇÁ¸°ĹÍ ÁŚÁśž÷Ăź, ¸đľ¨, ľĺśóŔĚšö"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr "ÇÁ¸°ĹÍ ÁŚÁśž÷Ăź, ¸đľ¨"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr "ŔĚ ÇÁ¸°Ĺ͸Ś ąâşťŔ¸ˇÎ źłÁ¤"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr "˝ĂÇč ĆäŔĚÁö ŔÎźâ"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-#, fuzzy
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
-msgstr "ŔĚ ÇÁ¸°ĹÍŔÇ ŔÎźâšý žËąâ"
+msgstr "ŔĚ ÇÁ¸°ĹÍŔÇ ťçżëšý žËžĆş¸ąâ"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "ÇÁ¸°ĹÍ ÁŚ°Ĺ"
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2857
+#, fuzzy, c-format
+msgid "Removing old printer \"%s\"..."
msgstr "ąâÁ¸ ÇÁ¸°ĹÍ Ą¸%sĄš ÁŚ°Ĺ Áß ..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "ąâşť ÇÁ¸°ĹÍ"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Ą¸%sĄšÇÁ¸°ĹÍ°Ą ąâşť ÇÁ¸°Ĺ͡ΠźłÁ¤ľÇžú˝Ŕ´Ď´Ů."
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Á¤¸ťˇÎ Ą¸%sĄšÇÁ¸°Ĺ͸Ś ÁŚ°ĹÇŐ´Ďąî?"
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2909
+#, fuzzy, c-format
+msgid "Removing printer \"%s\"..."
msgstr "ÇÁ¸°ĹÍ Ą¸%sĄš ÁŚ°Ĺ Áß ..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -8206,24 +8356,60 @@ msgstr "şńšĐšřČŁ°Ą ŔĎÄĄÇĎÁö žĘ˝Ŕ´Ď´Ů. ´Ů˝Ă ŔÔˇÂÇĎźźżä!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Ć÷¸ËľČ RAID md%dżĄ ĆÄĆźźÇŔť Ăß°ĄÇŇ źö žř˝Ŕ´Ď´Ů."
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "%s ĆÄŔĎżĄ žľ źö žř˝Ŕ´Ď´Ů."
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid ˝ÇĆĐ"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid ˝ÇĆĐ (raidtoolŔĚ źłÄĄľÇžî ŔÖÁö žĘŔť źö ŔÖ˝Ŕ´Ď´Ů.)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "RAID ˇšş§ %d¸Ś Ŕ§ÇŃ ĆÄĆźźÇľéŔĚ ĂćşĐÇĎÁö žĘ˝Ŕ´Ď´Ů.\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"ŔĚ ľîąŢŔť ťçżëÇҡÁ¸é ¸Ĺżě ÁÖŔÇÇĎżŠžß ÇŐ´Ď´Ů. ˝Ă˝şĹŰŔť ťçżëÇϹ⿥´Â \n"
+"żëŔĚÇĎ°ÚÁö¸¸ ¸Ĺżě šÎ°¨ÇĎ°Ô ŔŰľżÇŐ´Ď´Ů: ŔÎĹÍłÝŔĚłŞ ł×ĆŽż÷żĄ żŹ°áľČ ˝Ă˝şĹŰżë\n"
+"Ŕ¸ˇÎ´Â ťçżëÇĎÁö ¸śźźżä. žĎČŁąâ´ÉŔĚ žř˝Ŕ´Ď´Ů."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+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 ""
+"ŔĚ ş¸žČľîąŢŔ¸ˇÎ ŔĚ ˝Ă˝şĹŰŔť ź­šöˇÎ żîżëÇŇ źö ŔÖ°Ô ľË´Ď´Ů.\n"
+"ŔĚ ş¸žČľîąŢŔş żÜşÎŔÇ ĹŹśóŔĚžđĆŽľéŔÇ Á˘źÓŔť šŢžĆľéŔĚ´ÂľĽ ŔÖžîź­ \n"
+"ĂćşĐČ÷ łôŔş ş¸žČľîąŢŔÔ´Ď´Ů. "
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "LAN źłÁ¤"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "żÉźÇľé"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "ALSA (Ářş¸ľČ ¸Ž´Ş˝ş ťçżîľĺ žĆĹ°ĹŘĂł) ťçżîľĺ ˝Ă˝şĹŰ ˝ÇÇŕ"
@@ -8278,7 +8464,7 @@ msgstr ""
"ÇĎľĺľĺˇšŔĚĹŠ´Â ÇĎľĺżţžî °ËťöŔť źöÇŕÇϸç, ÇĘżäÇϴٸé\n"
"ťő/şŻ°ćľČ ÇĎľĺżţžî¸Ś źłÁ¤ÇŐ´Ď´Ů."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8353,7 +8539,7 @@ msgstr ""
"¸Ž´Ş˝ş °Ąťó ź­šö, °íźş´É ź­šö ą¸Ă࿥\n"
"ťçżëľË´Ď´Ů."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -8431,14 +8617,13 @@ msgstr ""
"ˇÎ\n"
"ťçżëľÇ°í ŔÖ´Â ÄÄÇťĹÍżĄ´Â šÝľĺ˝Ă ˝ÇÇŕľÇ°í ŔÖžîžß ÇŐ´Ď´Ů."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
-#, fuzzy
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
msgstr ""
-"Ć÷˝şĆŽÇČ˝ş(Postfix)´Â ÄÄÇťĹäľé°ŁżĄ ¸ŢŔĎŔť ÁÖ°íšŢ´Â \n"
-"¸ŢŔĎ ŔüźŰ żĄŔĚŔüĆŽŔÔ´Ď´Ů."
+"Ć÷˝şĆŽÇČ˝ş(Postfix)´Â ÄÄÇťĹÍľé°ŁżĄ ¸ŢŔĎŔť ÁÖ°íšŢ´Â \n"
+"¸ŢŔĎ ŔüźŰ żĄŔĚŔüĆŽ ÇÁˇÎą×ˇĽŔÔ´Ď´Ů."
#: ../../services.pm_.c:67
msgid ""
@@ -8528,7 +8713,7 @@ msgstr "ŔÎĹÍłÝ"
msgid "File sharing"
msgstr "ĆÄŔĎ °řŔŻ"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "˝Ă˝şĹŰ"
@@ -8536,7 +8721,6 @@ msgstr "˝Ă˝şĹŰ"
msgid "Remote Administration"
msgstr "żř°Ý °ü¸Ž"
-# ../../share/compssUsers
#: ../../services.pm_.c:141
msgid "Database Server"
msgstr "ľĽŔĚĹÍşŁŔĚ˝ş ź­šö"
@@ -8577,22 +8761,20 @@ msgid "On boot"
msgstr "ŔÚľż˝ÇÇŕ"
#: ../../services.pm_.c:236
-#, fuzzy
msgid "Start"
-msgstr "ťóĹÂ:"
+msgstr "˝ĂŔŰ"
#: ../../services.pm_.c:236
-#, fuzzy
msgid "Stop"
-msgstr "ź˝ĹÍ"
+msgstr "ÁßÁö"
#: ../../share/advertising/00-thanks.pl_.c:9
msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr ""
+msgstr "¸ÇľĺˇšŔĚĹŠ ¸Ž´Ş˝ş 8.2¸Ś źąĹĂÇŘ Á֟ş­ °¨ťçÇŐ´Ď´Ů."
#: ../../share/advertising/00-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
-msgstr ""
+msgstr "°ř°ł źŇ˝ş źź°čżĄ żŔ˝Ĺ °ÍŔť ČŻżľÇŐ´Ď´Ů."
#: ../../share/advertising/00-thanks.pl_.c:11
msgid ""
@@ -8602,9 +8784,8 @@ msgid ""
msgstr ""
#: ../../share/advertising/01-gnu.pl_.c:9
-#, fuzzy
msgid "Join the Free Software world"
-msgstr "´Ů¸Ľ ÁöżŞŔť Ŕ§ÇŃ ÇÁˇÎĹäÄÝ"
+msgstr "ŔÚŔŻ źŇÇÁĆŽżţžî źź°čżĄ ÂüżŠ"
#: ../../share/advertising/01-gnu.pl_.c:10
msgid ""
@@ -8614,9 +8795,8 @@ msgid ""
msgstr ""
#: ../../share/advertising/02-internet.pl_.c:9
-#, fuzzy
msgid "Internet and Messaging"
-msgstr "ŔÎĹÍłÝ ž×źź˝ş"
+msgstr "ŔÎĹͳݰú ¸Ţ˝ĂÂĄ"
#: ../../share/advertising/02-internet.pl_.c:10
msgid ""
@@ -8627,9 +8807,8 @@ msgid ""
msgstr ""
#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
msgid "Multimedia and Graphics"
-msgstr "¸ÖĆźšĚľđžî - ą×ˇĄÇČ"
+msgstr "¸ÖĆźšĚľđžîżÍ ą×ˇĄÇČ"
#: ../../share/advertising/03-graphic.pl_.c:10
msgid ""
@@ -8650,9 +8829,9 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
-#, fuzzy
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
-msgstr "ÄÁĆŽˇŃ źžĹÍ"
+msgstr "¸ÇľĺˇšŔĚĹŠ ÁŚžî źžĹÍ"
#: ../../share/advertising/05-contcenter.pl_.c:10
msgid ""
@@ -8661,9 +8840,8 @@ msgid ""
msgstr ""
#: ../../share/advertising/06-user.pl_.c:9
-#, fuzzy
msgid "User interfaces"
-msgstr "ł×ĆŽż÷ ŔÎĹÍĆäŔĚ˝ş"
+msgstr "ťçżëŔÚ ŔÎĹÍĆäŔĚ˝ş"
#: ../../share/advertising/06-user.pl_.c:10
msgid ""
@@ -8673,9 +8851,8 @@ msgid ""
msgstr ""
#: ../../share/advertising/07-server.pl_.c:9
-#, fuzzy
msgid "Server Software"
-msgstr "SMB ź­šö ČŁ˝şĆŽ"
+msgstr "ź­šö źŇÇÁĆŽżţžî"
#: ../../share/advertising/07-server.pl_.c:10
msgid ""
@@ -8683,7 +8860,6 @@ msgid ""
"mouse: Web server, email, firewall, router, file and print server, ..."
msgstr ""
-# ../../share/compssUsers
#: ../../share/advertising/08-games.pl_.c:9
msgid "Games"
msgstr "°ÔŔÓ"
@@ -8696,7 +8872,7 @@ msgstr ""
#: ../../share/advertising/09-MDKcampus.pl_.c:9
msgid "MandrakeCampus"
-msgstr ""
+msgstr "¸ÇľĺˇšŔĚŊġĆŰ˝ş"
#: ../../share/advertising/09-MDKcampus.pl_.c:10
msgid ""
@@ -8706,9 +8882,8 @@ msgid ""
msgstr ""
#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
msgid "MandrakeExpert"
-msgstr "ŔüšŽ°Ą"
+msgstr "¸ÇľĺˇšŔĚĹŠŔüšŽ°Ą"
#: ../../share/advertising/10-MDKexpert.pl_.c:10
msgid ""
@@ -8719,7 +8894,7 @@ msgstr ""
#: ../../share/advertising/11-consul.pl_.c:9
msgid "MandrakeConsulting"
-msgstr ""
+msgstr "¸ÇľĺˇšŔĚĹŠťó´ă"
#: ../../share/advertising/11-consul.pl_.c:10
msgid ""
@@ -8731,7 +8906,7 @@ msgstr ""
#: ../../share/advertising/12-MDKstore.pl_.c:9
msgid "MandrakeStore"
-msgstr ""
+msgstr "¸ÇľĺˇšŔĚĹŠ°Ą°Ô"
#: ../../share/advertising/12-MDKstore.pl_.c:10
msgid ""
@@ -8753,6 +8928,15 @@ msgstr ""
msgid "Installing packages..."
msgstr "ĆŃĹ°Áö źłÄĄ Áß..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "ˇÎą×žĆżôÇĎ°í Crtl-Alt-BackSpaceĹ°¸Ś ´Š¸Łźźżä."
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "şŻ°ćťçÇ×Ŕť ŔűżëÇϡÁ¸é %sˇÎ ŔçˇÎą×ŔÎ ÇĎźźżä."
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8761,6 +8945,160 @@ msgstr ""
"ÇĎľĺ ľđ˝şĹŠŔÇ ĆÄĆźźÇ Ĺ×ŔĚşíŔť ŔĐŔťźö žř˝Ŕ´Ď´Ů. łĘšŤ şŻÇüľČ °Í °°˝Ŕ´Ď´Ů. :(\n"
"Ŕ߸řľČ ĆÄĆźźÇ şńżěąâ¸Ś ˝ĂľľÇŇ °ÍŔÔ´Ď´Ů."
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "ÇÁ¸°ĹÍ źłÁ¤ ŔüźŰ"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "ľĽŔĚĹÍşŁŔĚ˝ş ź­šö"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "ľĽŔĚĹÍşŁŔĚ˝ş ź­šö"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS ź­šö"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS ź­šö"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "ťçżëŔÚ Ăß°Ą"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP ĹŹśóŔĚžđĆŽ"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "żŹ°á žČľĘ"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "ťčÁŚ"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "ĆÄŔĎŔť źąĹĂÇĎźźżä."
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "ťçżëŔÚ Ăß°Ą"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "DHCP ĹŹśóŔĚžđĆŽ"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "źłÁ¤ Áß..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "ŔçźłÁ¤"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "şÎĆĂ ÇáÎÇǸŚ %s ľĺśóŔ̺꿥 łÖŔ¸źźżä"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "ÇáÎÇÇ ľĺśóŔ̺긌 ťçżëÇŇ źö žř˝Ŕ´Ď´Ů."
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "żŔˇů!"
@@ -8809,6 +9147,11 @@ msgid ""
"will be manual"
msgstr "°˘ °úÁ¤żĄ ´ëÇĎżŠ źöľżźłÄĄżÍ ŔÚľżšÝşšźłÄĄ¸Ś źąĹĂÇĎźźżä."
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "ŔÚľż źłÄĄ ÇáÎÇÇ ľđ˝şĹŠ ťýźş Áß"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -8817,12 +9160,12 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "ĂŕÇĎÇŐ´Ď´Ů!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -8830,36 +9173,26 @@ msgstr ""
"ÇáÎÇÇ°Ą źş°řŔűŔ¸ˇÎ ťýźşľÇžú˝Ŕ´Ď´Ů.\n"
"ŔĚÁ¨ źłÄĄ°úÁ¤¸Ś šÝşšÇŇ źö ŔÖ˝Ŕ´Ď´Ů."
-#: ../../standalone/drakautoinst_.c:282
-#, fuzzy
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
-msgstr "źłÄĄ"
+msgstr "ŔÚľż źłÄĄ"
-#: ../../standalone/drakautoinst_.c:352
-#, fuzzy
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
-msgstr "ťçżëŔÚ Ăß°Ą"
+msgstr "Ç׸ń Ăß°Ą"
-#: ../../standalone/drakautoinst_.c:359
-#, fuzzy
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
-msgstr "ˇçÇÁšé ĆÄŔĎŔť ÁŚ°ĹÇŐ´Ďąî?"
-
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
+msgstr "¸śÁö¸ˇ Ç׸ń ťčÁŚ"
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8867,15 +9200,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8883,705 +9208,768 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Ŕ߸řľČ šéž÷ ĆÄŔĎ"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "Ŕ߸řľČ šéž÷ ĆÄŔĎ"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "Ŕ߸řľČ šéž÷ ĆÄŔĎ"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#, c-format
+msgid ""
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "%s ĆÄŔĎŔť ŔĐ´ÂÁß żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů."
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "ĆŃĹ°Áö źąĹĂ"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "źłÄĄÇŇ ĆŃĹ°Áö źąĹĂ"
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "Ç׸ń ÁŚ°Ĺ"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
#, fuzzy
msgid "Windows (FAT32)"
msgstr "ŔŠľľżěÁî(TM) ÁŚ°Ĺ"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr "ťçżëŔÚ¸í"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Ŕ߸řľČ šéž÷ ĆÄŔĎ"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "¸śżě˝ş¸Ś Ĺ×˝şĆŽÇĎźźżä."
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "´Ů˝Ă ˝ĂľľÇĎźźżä."
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "´Ů˝Ă ˝ĂľľÇĎźźżä."
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "şńšĐšřČŁ ČŽŔÎ"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "LAN żŹ°á"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "ÇÁ¸°ĹÍ żŹ°ášćšýŔť źąĹĂÇĎźźżä."
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Ĺ°ş¸ľĺ ˇšŔ̞ƿô źąĹĂ"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "¸ĹĂź¸Ś ĹŹ¸ŻÇĎźźżä."
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr "źłÄĄÇŇ ĆŃĹ°Áö źąĹĂ"
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "Ŕ߸řľČ šéž÷ ĆÄŔĎ"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "źłÄĄÇŇ ĆŃĹ°Áö źąĹĂ"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "¸śżě˝ş¸Ś Ĺ×˝şĆŽÇĎźźżä."
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "Ŕ߸řľČ šéž÷ ĆÄŔĎ"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "ł×ĆŽż÷ ŔÎĹÍĆäŔĚ˝ş"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "ŔŻÇü"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "ťçżëŔÚ¸í"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "źłÄĄÇŇ ĆŃĹ°Áö źąĹĂ"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "ťçżëÇŇ žđžî¸Ś źąĹĂÇŘ ÁÖźźżä."
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "ÇĎľĺ ľđ˝şĹŠ źąĹĂ"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "ťçżëŔÚ¸í"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr "ČŮ ¸śżě˝ş"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr "ČŮ ¸śżě˝ş"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "¸đľâ żÉźÇľé:"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "ł×ĆŽż÷ ČŻ°ć źłÁ¤"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "źłÄĄÇŇ ĆŃĹ°Áö źąĹĂ"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "źłÄĄÇŇ ĆŃĹ°Áö źąĹĂ"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "ĆÄŔϽýşĹŰ ÁŘşń"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "¸śżě˝ş ŔĺÄĄ: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "żÉźÇľé"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "žîś˛ ˝Ă¸Žžó Ć÷ĆŽżĄ ¸śżě˝ş°Ą żŹ°áľÇžî ŔÖłŞżä?"
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "ł×ĆŽż÷ ČŻ°ć źłÁ¤"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "Ŕ߸řľČ šéž÷ ĆÄŔĎ"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "žîś˛ ÁžˇůŔÇ ¸śżě˝ş¸Ś ťçżëÇϽʴϹî?"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Ŕ߸řľČ šéž÷ ĆÄŔĎ"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "¸śżě˝ş¸Ś Ĺ×˝şĆŽÇĎźźżä."
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "LAN żŹ°á"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "ÇÁ¸°ĹÍ żŹ°ášćšýŔť źąĹĂÇĎźźżä."
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
msgstr ""
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "žîś˛ ÁžˇůŔÇ ¸śżě˝ş¸Ś ťçżëÇϽʴϹî?"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "ąâŸ"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "˝Ă˝şĹŰ źłÄĄ"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
msgstr ""
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "ťçżëŔÚ Á¤ŔÇ"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
#, fuzzy
msgid "Previous"
msgstr "<- ŔĚŔü"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr "ťóĹÂ:"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "Ŕ߸řľČ šéž÷ ĆÄŔĎ"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr "ťçżëŔÚ Á¤ŔÇ"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
-msgstr "´ŮŔ˝ ->"
+msgstr "´ŮŔ˝"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "źłÄĄ ĆŃĹ°Áö źąĹĂ"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "´ŮŔ˝ ĆŃĹ°ÁöľéŔĚ źłÄĄľÉ °ÍŔÔ´Ď´Ů."
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "ťçżëÇŇ žđžî¸Ś źąĹĂÇŘ ÁÖźźżä."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "ťçżëÇŇ žđžî¸Ś źąĹĂÇŘ ÁÖźźżä."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "ťçżëÇŇ žđžî¸Ś źąĹĂÇŘ ÁÖźźżä."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "Ŕ߸řľČ šéž÷ ĆÄŔĎ"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "Ŕ߸řľČ šéž÷ ĆÄŔĎ"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "Ŕ߸řľČ šéž÷ ĆÄŔĎ"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "ŔĺÄĄ¸Ś °ËťöÇĎ°í ŔÖ˝Ŕ´Ď´Ů..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "¸śżě˝ş¸Ś Ĺ×˝şĆŽÇĎźźżä."
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr "źłÄĄÇŇ ĆŃĹ°Áö źąĹĂ"
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "ł×ĆŽż÷ ČŻ°ć źłÁ¤"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "ł×ĆŽż÷ ČŻ°ć źłÁ¤"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "źłÁ¤"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "LAN źłÁ¤"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "ĆÄŔϽýşĹŰ ÁŘşń"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9613,7 +10001,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9622,7 +10010,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9663,7 +10051,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9691,12 +10079,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -9713,7 +10106,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9753,7 +10146,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9764,7 +10157,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9777,7 +10170,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9821,103 +10214,530 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "%s źłÄĄ ˝ÇĆĐ. ´ŮŔ˝°ú °°Ŕş żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "ÄÜźÖ ľľą¸"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "¸ÇľĺˇšŔĚĹŠťó´ă"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "¸ÇľĺˇšŔĚĹŠ°Ą°Ô"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "¸śżě˝ş"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "żř°Ý ÇÁ¸°ĹÍ"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "°řŔŻ Ŕ̸§"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "ÇÁ¸°Ĺ;塚ŔĚĹŠ"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "ł×ĆŽż÷ źłÁ¤ ¸śšýťç"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "ťçżëŔÚ ŔÎÁő"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "ĆŃĹ°Áö źąĹĂ"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "ąâ´ŮˇÁ ÁÖźźżä"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "źłÄĄ Ážˇá"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "Ć÷ĆŽ"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "źłÄĄČÄ ´Ů¸Ľ ´Ů¸Ľ žđžî¸Ś źąĹĂÇŇźö ŔÖ˝Ŕ´Ď´Ů."
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "ł×ĆŽż÷ źłÁ¤ (%d žîľŞĹÍ)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "ÇÁˇÎĆÄŔĎ: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "ÇÁˇÎĆÄŔĎ Áöżěąâ"
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Áöżď ÇÁˇÎĆÄŔĎ"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "ťő ÇÁˇÎĆÄŔĎ..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"¸¸ľé ÇÁˇÎĆÄŔĎ Ŕ̸§ (ťő ÇÁˇÎĆÄŔĎŔş ÇöŔç ÇÁˇÎĆÄŔĎŔÇ ťçşťŔ¸ˇÎź­ ¸¸ľéžî Áý´Ď´Ů.):"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "ČŁ˝şĆŽ¸í:"
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "ŔÎĹÍłÝ ž×źź˝ş"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "ŔŻÇü: "
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "°ÔŔĚĆŽżţŔĚ:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "ŔÎĹÍĆäŔĚ˝ş:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "ťóĹÂ:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "ąâ´ŮˇÁ ÁÖźźżä."
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "ŔÎĹÍłÝ Á˘ąŮ źłÁ¤..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "LAN źłÁ¤"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "ľĺśóŔĚšö"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "ŔÎĹÍĆäŔĚ˝ş"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "ÇÁˇÎĹäÄÝ"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "ťóĹÂ:"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "ÁöżŞ ł×ĆŽż÷ źłÁ¤..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "¸śšýťç¸Ś ˝ÇÇŕÇϡÁ¸é żŠąâ¸Ś ´Š¸Łźźżä. ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "¸śšýťç..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Ŕűżë"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "ąâ´ŮˇÁ ÁÖźźżä... źłÁ¤Ŕť ŔűżëÇĎ°í ŔÖ˝Ŕ´Ď´Ů."
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "żŹ°áľĘ"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "żŹ°á žČľĘ"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "żŹ°á..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "żŹ°á ˛÷ąâ..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"źłÁ¤ľČ ŔÎĹÍĆäŔĚ˝ş°Ą žř˝Ŕ´Ď´Ů.\n"
+"Ą¸źłÁ¤ĄšŔť ´­ˇŻ ŔÎĹÍĆäŔĚ˝ş¸Ś ¸ŐŔú źłÁ¤ÇĎźźżä."
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "LAN źłÁ¤"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "žî´đĹÍ %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "şÎĆŽ ÇÁˇÎĹäÄÝ"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "şÎĆýà ˝ĂŔŰľĘ"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP ĹŹśóŔĚžđĆŽ"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "ÁöąÝ Č°źşČ­"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "ÁöąÝ şńČ°źşČ­"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"ŔÎĹÍłÝ żŹ°áŔĚ žř˝Ŕ´Ď´Ů.\n"
+"Ą¸źłÁ¤ĄšŔť ´­ˇŻ ¸ŐŔú żŹ°áŔť źłÁ¤ÇĎźźżä."
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "ŔÎĹÍłÝ żŹ°á źłÁ¤"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "ŔÎĹÍłÝ żŹ°á źłÁ¤"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "żŹ°á ŔŻÇü: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "ŔÎŔÚ"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "°ÔŔĚĆŽżţŔĚ"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "ŔĚ´őłÝ ÄŤľĺ"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP ĹŹśóŔĚžđĆŽ"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "ťçżëšý: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr ""
+"-*-gulim-medium-r-*-*-*-140-*-*-*-*-ksc5601.1987-0,-misc-fixed-medium-r-*-*-"
+"*-140-*-*-*-*-*-*,*-r-*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "¸đľâ Ŕ̸§"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "ĹŠąâ"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "ľĺˇšŔĚĹŠÇáÎÇÇ"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "şÎĆŽ ľđ˝şĹŠ ťýźş"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "ąâşť°Ş"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "ÇáÎÇǾ塚ŔĚĹŠ żŔˇů: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "ÄżłÎ šöŔü"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "ŔĎšÝ żľżŞ"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "ŔüšŽ°Ą żľżŞ"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrdŔÇ ąâŸ ŔÎŔÚ"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "¸đľâ Ăß°Ą"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "°­ÁŚ ĂßÁř"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "şÎĆýà ŔűŔç ¸đľâŔĚ ŔÖŔť °ćżěżĄ¸¸ ŔĚšĚÁö ťýźş"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "SCSI ¸đľâ ťýˇŤ"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "RAID ¸đľâ ťýˇŤ"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "¸đľâ ÁŚ°Ĺ"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "ĂâˇÂ"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "ľđ˝şĹŠ ťýźş"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "%s ŔĺÄĄżĄ ¸ĹĂź°Ą ľéžîŔÖ´ÂÁö ČŽŔÎÇĎźźżä."
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"%s ŔĺÄĄżĄ ¸ĹĂź°Ą ľéžîŔÖÁö žĘ˝Ŕ´Ď´Ů.\n"
+"¸ĹĂź¸Ś łÖžî ÁÖźźżä."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "şĐąâÇŇ źö žř˝Ŕ´Ď´Ů: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"mkbootdisk¸Ś żĂšŮ¸Ł°Ô ÁžˇáÇŇ źö žř˝Ŕ´Ď´Ů: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "ł×ĆŽż÷ ÄŤľĺ¸Ś ĂŁŔťźö žř˝Ŕ´Ď´Ů"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
-#, fuzzy
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "żĎˇá"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr ""
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "źłÄĄ ÁŘşńÁßŔÔ´Ď´Ů"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr ""
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "ÁŚÇŃ"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -9926,122 +10746,118 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "ĆÄĆźźÇ Ć÷¸Ë"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "LAN źłÁ¤"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr "¸śżîĆŽ Ŕ§ÄĄ"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Ć÷¸ËÇŇ ĆÄĆźźÇŔť źąĹĂÇĎźźżä"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "żŔÇÇ˝ş"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr "ÁßÁö"
-#: ../../standalone/drakfont_.c:755
-#, fuzzy
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
-msgstr "ÇÁ¸°ĹÍ"
+msgstr "ŔĎšÝ ÇÁ¸°ĹÍ"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
-#, fuzzy
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
-msgstr "˝Ă˝şĹŰ źłÄĄ"
+msgstr "źłÄĄ ¸ńˇĎ"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "ĆÄŔĎŔť źąĹĂÇĎźźżä."
-#: ../../standalone/drakfont_.c:901
-#, fuzzy
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
-msgstr "ÇÁ¸°ĹÍ ÁŚ°Ĺ"
+msgstr "ÁŚ°Ĺ ¸ńˇĎ"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
#, fuzzy
msgid "Initials tests"
msgstr "ĂĘąâČ­ ¸Ţ˝ĂÁö"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr "ł×ĆŽż÷ žî´đĹ͸Ś ĂŁŔť źö žř˝Ŕ´Ď´Ů!"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "źłÄĄ"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr "ł×ĆŽż÷ žî´đĹ͸Ś ĂŁŔť źö žř˝Ŕ´Ď´Ů!"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "źłÄĄ Ážˇá"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "ŔÎĹÍłÝ żŹ°á °řŔŻ"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "ÇöŔç ŔÎĹÍłÝ żŹ°á °řŔŻ°Ą °Ą´ÉÇŃ ťóĹÂŔÔ´Ď´Ů."
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10053,31 +10869,31 @@ msgstr ""
"\n"
"šŤ˝ź ŔŰž÷Ŕť ÇϽðڽŔ´Ďąî?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "ÇŘÁŚ"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "ĂëźŇ"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "ŔçźłÁ¤"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "ź­šö ÁßÁö Áß..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "ŔĚÁŚ ŔÎĹÍłÝ żŹ°á °řŔŻ°Ą ąÝÁöľÇžú˝Ŕ´Ď´Ů."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "ÇöŔç ŔÎĹÍłÝ żŹ°á °řŔŻ°Ą şŇ°Ą´ÉÇŃ ťóĹÂŔÔ´Ď´Ů."
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10089,19 +10905,19 @@ msgstr ""
"\n"
"šŤ˝ź ŔŰž÷Ŕť ÇϽðڽŔ´Ďąî?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "Çăżë"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "ź­šö Çăżë Áß"
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "ŔĚÁŚ ŔÎĹÍłÝ żŹ°á °řŔŻ°Ą ÇăżëľÇžú˝Ŕ´Ď´Ů."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10116,32 +10932,32 @@ msgstr ""
"\n"
"ÁÖŔÇ: ÁöżŞ ł×ĆŽż÷(ˇŁ)Ŕť ¸ńŔűŔ¸ˇÎ źłÄĄľČ ł×ĆŽż÷ žî´đĹÍ°Ą ŔÖžîžß ÇŐ´Ď´Ů."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "ŔÎĹÍĆäŔĚ˝ş %s (%s ¸đľâ ťçżë)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "ŔÎĹÍĆäŔĚ˝ş %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "ł×ĆŽż÷ žî´đĹ͸Ś ĂŁŔť źö žř˝Ŕ´Ď´Ů!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
"žîś°ÇŃ ł×ĆŽż÷ žî´đĹÍľľ šß°ßľÇÁö žĘ˝Ŕ´Ď´Ů. ÇĎľĺżţžî źłÁ¤ ľľą¸¸Ś ˝ÇÇŕÇŘ ş¸źźżä."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "ł×ĆŽż÷ ŔÎĹÍĆäŔĚ˝ş"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10156,18 +10972,18 @@ msgstr ""
"\n"
"ą× žî´đĹ͡ΠÁöżŞ ł×ĆŽż÷Ŕť źłÁ¤ÇŇ °ÍŔÔ´Ď´Ů."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr "žî´Ŕ ł×ĆŽż÷ žî´đĹÍ°Ą ÁöżŞ ł×ĆŽż÷Ŕ¸ˇÎ żŹ°áľÉ °ÍŔÎÁö źąĹĂÇĎźźżä."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "ł×ĆŽż÷ ąâ´ÉŔĚ źłÁ¤ľÇÁö žĘžŇ˝Ŕ´Ď´Ů."
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10177,17 +10993,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "ŔÚľż CUPS źłÁ¤"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "ŔÎĹÍłÝ źłÁ¤ şŻ°ć"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10198,7 +11014,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
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 C-Class Network that "
@@ -10210,33 +11026,33 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "CUPS ź­šö IP"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "ÇöŔç źłÁ¤ %sżĄź­ ŔáŔçŔűŔÎ ˇŁ ÁÖźŇ ĂćľšŔĚ šß°ßľË´Ď´Ů!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "šćČ­şŽ źłÁ¤ŔĚ °¨ÁöľÇžú˝Ŕ´Ď´Ů!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10244,20 +11060,20 @@ msgstr ""
"°ć°í! ąâÁ¸ŔÇ šćČ­şŽ źłÁ¤ŔĚ °¨ÁöľÇžú˝Ŕ´Ď´Ů. źłÄĄ°Ą łĄł­ ČÄżĄ Á÷Á˘ źöÁ¤ÇŇ ÇĘżä"
"°Ą ŔÖ˝Ŕ´Ď´Ů."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "źłÁ¤ Áß..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "˝şĹŠ¸łĆŽ źłÁ¤ Áß, źŇÇÁĆŽżţžî źłÄĄ Áß, ź­šö ˝ĂŔŰ Áß..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "ĆŃĹ°Áö źłÄĄÁß šŽÁŚ šßťý %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10267,23 +11083,23 @@ msgstr ""
"ŔĚÁŚ ŔÚľż ł×ĆŽż÷ źłÁ¤ąâ´É(DHCP)Ŕ¸ˇÎ ÁöżŞ ł×ĆŽżöťóŔÇ ´Ů¸Ľ ÄÄÇťĹÍżÍ ŔÎĹÍłÝ żŹ"
"°á °řŔŻ¸Ś ÇŇ źö ŔÖ˝Ŕ´Ď´Ů."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "źłÁ¤Ŕş ŔĚšĚ żĎˇáľÇžúÁö¸¸, ÇöŔç ÇŘÁŚľČ ťóĹÂŔÔ´Ď´Ů."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "źłÁ¤ŔĚ ŔĚšĚ żĎˇáľÇžúŔ¸¸ç, ÇöŔç ÇăżëľČ ťóĹÂŔÔ´Ď´Ů."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "žîś°ÇŃ ŔÎĹÍłÝ żŹ°á °řŔŻľľ źłÁ¤ľČ ŔűŔĚ žř˝Ŕ´Ď´Ů."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "ŔÎĹÍłÝ żŹ°á°řŔŻ źłÁ¤"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10298,211 +11114,6 @@ msgstr ""
"\n"
"¸śšýťç¸Ś ˝ÇÇŕÇϡÁ¸é Ą¸źłÁ¤ĄšŔť ´Š¸Łźźżä."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "ł×ĆŽż÷ źłÁ¤ (%d žîľŞĹÍ)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "ÇÁˇÎĆÄŔĎ: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "ÇÁˇÎĆÄŔĎ Áöżěąâ"
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Áöżď ÇÁˇÎĆÄŔĎ"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "ťő ÇÁˇÎĆÄŔĎ..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"¸¸ľé ÇÁˇÎĆÄŔĎ Ŕ̸§ (ťő ÇÁˇÎĆÄŔĎŔş ÇöŔç ÇÁˇÎĆÄŔĎŔÇ ťçşťŔ¸ˇÎź­ ¸¸ľéžî Áý´Ď´Ů.):"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "ČŁ˝şĆŽ¸í:"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "ŔÎĹÍłÝ ž×źź˝ş"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "ŔŻÇü: "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "°ÔŔĚĆŽżţŔĚ:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "ŔÎĹÍĆäŔĚ˝ş:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "ťóĹÂ:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "ŔÎĹÍłÝ Á˘ąŮ źłÁ¤..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "LAN źłÁ¤"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "ľĺśóŔĚšö"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "ŔÎĹÍĆäŔĚ˝ş"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "ÇÁˇÎĹäÄÝ"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "ťóĹÂ:"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "ÁöżŞ ł×ĆŽż÷ źłÁ¤..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "¸śšýťç¸Ś ˝ÇÇŕÇϡÁ¸é żŠąâ¸Ś ´Š¸Łźźżä. ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "¸śšýťç..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Ŕűżë"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "ąâ´ŮˇÁ ÁÖźźżä... źłÁ¤Ŕť ŔűżëÇĎ°í ŔÖ˝Ŕ´Ď´Ů."
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "żŹ°áľĘ"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "żŹ°á žČľĘ"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "żŹ°á..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "żŹ°á ˛÷ąâ..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"źłÁ¤ľČ ŔÎĹÍĆäŔĚ˝ş°Ą žř˝Ŕ´Ď´Ů.\n"
-"Ą¸źłÁ¤ĄšŔť ´­ˇŻ ŔÎĹÍĆäŔĚ˝ş¸Ś ¸ŐŔú źłÁ¤ÇĎźźżä."
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "LAN źłÁ¤"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "žî´đĹÍ %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "şÎĆŽ ÇÁˇÎĹäÄÝ"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "şÎĆýà ˝ĂŔŰľĘ"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP ĹŹśóŔĚžđĆŽ"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "ÁöąÝ Č°źşČ­"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "ÁöąÝ şńČ°źşČ­"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"ŔÎĹÍłÝ żŹ°áŔĚ žř˝Ŕ´Ď´Ů.\n"
-"Ą¸źłÁ¤ĄšŔť ´­ˇŻ ¸ŐŔú żŹ°áŔť źłÁ¤ÇĎźźżä."
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "ŔÎĹÍłÝ żŹ°á źłÁ¤"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "ŔÎĹÍłÝ żŹ°á źłÁ¤"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "żŹ°á ŔŻÇü: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "ŔÎŔÚ"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "°ÔŔĚĆŽżţŔĚ"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "ŔĚ´őłÝ ÄŤľĺ"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP ĹŹśóŔĚžđĆŽ"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "ş¸žČ źöÁŘ źłÁ¤"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "ÄÁĆŽˇŃ źžĹÍ"
@@ -10511,92 +11122,128 @@ msgstr "ÄÁĆŽˇŃ źžĹÍ"
msgid "Choose the tool you want to use"
msgstr "ťçżëÇŇ ľľą¸¸Ś źąĹĂÇĎźźżä."
-#: ../../standalone/drakxtv_.c:48
-#, fuzzy
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\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 ""
+
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
-msgstr "ÄłłŞ´Ů (Äůş¤)"
+msgstr "ÄłłŞ´Ů (ÄÉŔĚşí)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr ""
+#: ../../standalone/drakxtv_.c:72
+#, fuzzy
+msgid "USA (broadcast)"
+msgstr "šĚąš (°řÁßĆÄ)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
-msgstr ""
+msgstr "šĚąš (ÄÉŔĚşí)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
-msgstr ""
+msgstr "šĚąš (ÄÉŔĚşí-HRC)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr ""
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "China (broadcast)"
+msgstr "Áßąš (°řÁßĆÄ)"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr ""
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "Japan (broadcast)"
+msgstr "ŔĎşť (°řÁßĆÄ)"
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
-msgstr ""
+msgstr "ŔĎşť (ÄÉŔĚşí)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
-msgstr ""
+msgstr "ľżŔŻˇ´"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
+msgid "France [SECAM]"
+msgstr "ÇÁśű˝ş"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
-msgstr "žĆŔĚ˝˝ˇŁľĺ"
+msgstr "žĆŔϡŁľĺ"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
-msgstr ""
+msgstr "ź­ŔŻˇ´"
-#: ../../standalone/drakxtv_.c:51
-#, fuzzy
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
-msgstr "˝Ă¸Žžó ¸śżě˝ş"
+msgstr "żŔ˝şĆŽˇšŔϸŽžĆ"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
-msgstr ""
+msgstr "´şÁúˇŁľĺ"
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
-msgstr ""
+msgstr "ł˛žĆÇÁ¸ŽÄŤ"
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
-msgstr ""
+msgstr "žĆ¸ŁÇîĆźłŞ"
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
-msgstr ""
+msgstr "TV NORM :"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
-msgstr ""
+msgstr "ÁöżŞ :"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "´ŮŔ˝ ĆŃĹ°Áö¸Ś źłÄĄÁß żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů: "
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10640,14 +11287,13 @@ msgstr "śóŔĚşę ž÷ą×ˇšŔ̾希 ˝ĂŔŰÇŇ źö žř˝Ŕ´Ď´Ů!!! \n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "ˇÎą×ľĺˇšŔĚĹŠ"
#: ../../standalone/logdrake_.c:95
-#, fuzzy
msgid "Show only for the selected day"
-msgstr "żŔ´Ă łŻÂĽżĄ ´ëÇظ¸ ş¸ŔĚąâ"
+msgstr "źąĹĂľČ łŻÂĽżĄ ´ëÇظ¸ ş¸ŔĚąâ"
#: ../../standalone/logdrake_.c:102
msgid "/File/_New"
@@ -10675,7 +11321,7 @@ msgstr "<control>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
-msgstr "/ĆÄŔĎ(F)/ťő Ŕ̸§Ŕ¸ˇÎ ŔúŔĺ(_A)"
+msgstr "/ĆÄŔĎ(F)/´Ů¸Ľ Ŕ̸§Ŕ¸ˇÎ ŔúŔĺ(_A)"
#: ../../standalone/logdrake_.c:106
msgid "/File/-"
@@ -10687,11 +11333,7 @@ msgstr "/żÉźÇ(_O)"
#: ../../standalone/logdrake_.c:109
msgid "/Options/Test"
-msgstr "/żÉźÇ(O)/Ĺ×˝şĆŽ"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/ľľżň¸ť(_H)"
+msgstr "żÉźÇ(O)/Ĺ×˝şĆŽ"
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
@@ -10700,33 +11342,30 @@ msgstr "/ľľżň¸ť(H)/ŔĚ ÇÁˇÎą×ˇĽŔş(_A)..."
#: ../../standalone/logdrake_.c:118
msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
msgstr ""
-"-misc-fixed-medium-r-*-*-*-120-75-75-*-*-iso8859-1,-*-gulim-medium-r-normal--"
-"*-120-75-75-c-*-ksc5601.1987-0,*-r-*"
+"-adobe-helvetica-medium-r-*-*-*-120-75-75-*-*-iso8859-1,-*-gulim-medium-r-"
+"normal--*-120-75-75-*-*-ksc5601.1987-0,*-r-*"
#: ../../standalone/logdrake_.c:119
msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
msgstr ""
-"-misc-fixed-bold-r-*-*-*-120-75-75-*-*-iso8859-1,-*-gulim-bold-r-normal--*-"
-"120-75-75-c-*-ksc5601.1987-0,*-r-*"
+"-adobe-helvetica-bold-r-*-*-*-120-75-75-*-*-iso8859-1,-*-gulim-bold-r-"
+"normal--*-120-75-75-*-*-ksc5601.1987-0,*-r-*"
#: ../../standalone/logdrake_.c:173
-#, fuzzy
msgid "User"
-msgstr "ťçżëŔÚ¸í"
+msgstr "ťçżëŔÚ"
#: ../../standalone/logdrake_.c:174
-#, fuzzy
msgid "Messages"
msgstr "¸Ţ˝ĂÁö"
#: ../../standalone/logdrake_.c:175
-#, fuzzy
msgid "Syslog"
msgstr "˝Ă˝şĹŰ ˇÎą×"
#: ../../standalone/logdrake_.c:176
msgid "Mandrake Tools Explanations"
-msgstr ""
+msgstr "¸ÇľĺˇšŔĚĹŠ ľľą¸ źł¸í"
#: ../../standalone/logdrake_.c:179
msgid "search"
@@ -10760,7 +11399,7 @@ msgstr "´ŢˇÂ"
msgid "Content of the file"
msgstr "ĆÄŔĎ łťżë"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -10769,12 +11408,11 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr "ąâ´ŮˇÁ ÁÖźźżä. ĆÄŔĎ şĐźŽ Áß: %s"
-#: ../../standalone/logdrake_.c:405
-#, fuzzy
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
-msgstr "ŔÎĹÍłÝ źłÁ¤"
+msgstr "¸ŢŔĎ/SMS °ć°í źłÁ¤"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
#, fuzzy
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
@@ -10786,69 +11424,95 @@ msgstr ""
"żŠąâź­ ˇÎą×Ŕΰú şńšĐšřČŁ¸Ś ÇĘżä śÇ´Â ÇĘżäˇÎÇĎÁö žĘ´Â\n"
"HTTPżÍ FTP ÇÁśô˝Ă¸Ś źłÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů.\n"
-# ../../share/compssUsers
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "žĆĆÄÄĄżÍ ÇÁˇÎFTPD"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
+msgid "Apache World Wide Web Server"
msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "ľľ¸ŢŔÎ Ŕ̸§"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "Ážˇá"
+msgid "Ftp Server"
+msgstr "NIS ź­šö"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "postfix ¸ŢŔĎ ź­šö, Inn ´ş˝ş ź­šö"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS ź­šö"
#: ../../standalone/logdrake_.c:422
#, fuzzy
-msgid "service setting"
-msgstr "ź­şń˝ş"
+msgid "SSH Server"
+msgstr "NIS ź­šö"
#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "ź­şń˝ş"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "ÇÁ¸°ĹÍ ź­šö"
+
+#: ../../standalone/logdrake_.c:431
+msgid "service setting"
+msgstr "ź­şń˝ş źłÁ¤"
+
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
-#, fuzzy
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
-msgstr "Ć÷¸Ë Áß"
+msgstr "źłÁ¤ ŔĐąâ"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
-#, fuzzy
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
-msgstr "ŔÎĹÍłÝ źłÁ¤"
+msgstr "°ć°í źłÁ¤"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "ťő Ŕ̸§Ŕ¸ˇÎ ŔúŔĺ"
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "žîś˛ ÁžˇůŔÇ ¸śżě˝ş¸Ś ťçżëÇϽʴϹî?"
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "šß°ßľČ ˝Ă¸Žžó_USB°Ą žř˝Ŕ´Ď´Ů.\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "3šöĆ° żĄšÄˇšŔĚĆŽ?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "ÇÁ¸°ĹÍ ľĽŔĚĹÍ ŔĐ´Â Áß ..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "ŔĺÄĄ °Ëťö Áß ..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -10872,9 +11536,8 @@ msgid ""
msgstr ""
#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
msgid "choose device"
-msgstr "şÎĆŽ ŔĺÄĄ"
+msgstr "ŔĺÄĄ źąĹĂ"
#: ../../standalone/scannerdrake_.c:102
#, c-format
@@ -10892,6 +11555,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "šćČ­şŽ źłÁ¤"
@@ -10987,9 +11662,8 @@ msgid "Configure X"
msgstr "X źłÁ¤"
#: ../../steps.pm_.c:34
-#, fuzzy
msgid "Install system updates"
-msgstr "˝Ă˝şĹŰ źłÄĄ"
+msgstr "˝Ă˝şĹŰ ž÷ľĽŔĚĆŽ źłÄĄ"
#: ../../steps.pm_.c:35
msgid "Exit install"
@@ -11211,7 +11885,6 @@ msgid ""
" Try to install them manually."
msgstr ""
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Web/FTP"
msgstr "ŔĽ/FTP"
@@ -11220,7 +11893,6 @@ msgstr "ŔĽ/FTP"
msgid "Network Computer (client)"
msgstr "ł×ĆŽż÷ ÄÄÇťĹÍ (ĹŹśóŔĚžđĆŽ)"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "NFS server, SMB server, Proxy server, ssh server"
msgstr "NFS ź­šö, ťďšŮ ź­šö, ÇÁśô˝Ă ź­šö, SSH ź­šö"
@@ -11233,7 +11905,6 @@ msgstr "żŔÇÇ˝ş"
msgid "Gnome Workstation"
msgstr "GNOME żöĹŠ˝şĹ×ŔĚźÇ"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Tools for your Palm Pilot or your Visor"
msgstr "Palm pilot śÇ´Â Visorżë ľľą¸ľé"
@@ -11242,7 +11913,6 @@ msgstr "Palm pilot śÇ´Â Visorżë ľľą¸ľé"
msgid "Workstation"
msgstr "żöĹŠ˝şĹ×ŔĚźÇ"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Firewall/Router"
msgstr "šćČ­şŽ/śóżěĹÍ"
@@ -11251,7 +11921,6 @@ msgstr "šćČ­şŽ/śóżěĹÍ"
msgid "Domain Name and Network Information Server"
msgstr "ľľ¸ŢŔÎ ł×ŔÓ š× ł×ĆŽż÷ Á¤ş¸ ź­šö"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid ""
"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
@@ -11260,12 +11929,10 @@ msgstr ""
"żŔÇÇ˝ş ÇÁˇÎą×ˇĽľé: żöľĺÇÁˇÎźźź­ (kword, abiword), ˝şÇÁˇšľĺ˝ŹĆŽ (kspread,"
"gnumeric), pdf şäžî, ľîľî"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr "żŔľđżŔ °üˇĂ ľľą¸; mp3/midi ÇášŔĚžî, šÍź­, ľîľî"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
msgstr "¸Ž´Ş˝ş š× ŔÚŔŻ źŇÇÁĆŽżţžîżĄ ´ëÇŃ ź­Ŕű°ú HowtošŽź­"
@@ -11274,7 +11941,6 @@ msgstr "¸Ž´Ş˝ş š× ŔÚŔŻ źŇÇÁĆŽżţžîżĄ ´ëÇŃ ź­Ŕű°ú HowtošŽź­"
msgid "KDE Workstation"
msgstr "KDE żöĹŠ˝şĹ×ŔĚźÇ"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr "Icewm, ŔŠľľżě ¸ŢŔĚÄż, ŔÎśóŔĚĆ°¸ŐĆŽ, Fvwm, ľîľî"
@@ -11283,12 +11949,10 @@ msgstr "Icewm, ŔŠľľżě ¸ŢŔĚÄż, ŔÎśóŔĚĆ°¸ŐĆŽ, Fvwm, ľîľî"
msgid "Multimedia - Video"
msgstr "¸ÖĆźšĚľđžî - şńľđżŔ"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Set of tools for mail, news, web, file transfer, and chat"
msgstr "¸ŢŔĎ, ´ş˝ş, ŔĽ, ĆÄŔĎŔüźŰ, äĆĂżë ľľą¸¸đŔ˝"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Database"
msgstr "ľĽŔĚĹÍşŁŔĚ˝ş"
@@ -11305,16 +11969,10 @@ msgstr "˝Źżî ÄÄÇťĹÍ źłÁ¤Ŕť Ŕ§ÇŃ ľľą¸"
msgid "Multimedia - Sound"
msgstr "¸ÖĆźšĚľđžî - ťçżîľĺ"
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "ŔŻĆżˇŻĆź"
-
#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "šŽź­"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Console Tools"
msgstr "ÄÜźÖ ľľą¸"
@@ -11335,12 +11993,10 @@ msgstr "¸ÖĆźšĚľđžî ˝şĹ×ŔĚźÇ"
msgid "Configuration"
msgstr "źłÁ¤"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "More Graphical Desktops (Gnome, IceWM)"
msgstr "Ăß°Ą ą×ˇĄÇČ ľĽ˝şĹŠĹž (Gnome, IceWM)"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid ""
"The K Desktop Environment, the basic graphical environment with a collection "
@@ -11351,12 +12007,10 @@ msgstr "K Desktop ČŻ°ć, żŠˇŻ°ĄÁö ľľą¸¸Ś źöšÝÇŃ ąâşť ą×ˇĄÇČ ČŻ°ć"
msgid "Graphical Environment"
msgstr "ą×ˇĄÇČ ČŻ°ć"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr "žĆĆÄÄĄżÍ ÇÁˇÎFTPD"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Tools to create and burn CD's"
msgstr "CD ÁŚŔŰ š× ąÁąâ ľľą¸"
@@ -11369,32 +12023,26 @@ msgstr "żŔÇÇ˝ş żöĹŠ˝şĹ×ŔĚźÇ"
msgid "Server"
msgstr "ź­šö"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr "ą×łđ, Icewm, ŔŠľľżě ¸ŢŔĚÄż, ŔÎśóŔĚĆ°¸ŐĆŽ, Fvwm, ľîľî"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Graphics programs such as The Gimp"
msgstr "GIMP °°Ŕş ą×ˇĄÇČ ÇÁˇÎą×ˇĽ"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "DNS/NIS "
msgstr "DNS/NIS"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "C and C++ development libraries, programs and include files"
msgstr "C/C++ °łšß śóŔ̺ꡯ¸Ž, ÇÁˇÎą×ˇĽ š× Çě´őĆÄŔĎ"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Network Computer server"
msgstr "ł×ĆŽż÷ ÄÄÇťĹÍ ź­šö"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Mail/Groupware/News"
msgstr "¸ŢŔĎ/ą×ˇěżţžî/´ş˝ş"
@@ -11403,7 +12051,6 @@ msgstr "¸ŢŔĎ/ą×ˇěżţžî/´ş˝ş"
msgid "Game station"
msgstr "°ÔŔÓ ˝şĹ×ŔĚźÇ"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Video players and editors"
msgstr "şńľđżŔ ÇášŔĚžî š× żĄľđĹÍ"
@@ -11412,36 +12059,26 @@ msgstr "şńľđżŔ ÇášŔĚžî š× żĄľđĹÍ"
msgid "Multimedia - Graphics"
msgstr "¸ÖĆźšĚľđžî - ą×ˇĄÇČ"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Amusement programs: arcade, boards, strategy, etc"
msgstr "Ŕĺł­°¨ ÇÁˇÎą×ˇĽ: arcade, boards, strategy, ľîľî"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid ""
"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
"browse the Web"
msgstr "¸ŢŔĎ/´ş˝ş¸Ś ŔĎ°í ş¸łť¸ç ŔĽ°ËťöŔť Ŕ§ÇŃ ľľą¸¸đŔ˝(pine, mutt, tin...)"
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "žĆÄŤŔĚşů, żĄšÄˇšŔĚĹÍ, ¸đ´ĎĹ͸ľ"
-
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "°łŔÎ ąÝŔś"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid ""
"A graphical environment with user-friendly set of applications and desktop "
"tools"
msgstr "ťçżëŔÚ ÄŁČ­Ŕű ÇÁˇÎą×ˇĽ°ú ľĽ˝şĹŠĹž ľľą¸¸Ś °ĄÁř ą×ˇĄÇČ ČŻ°ć"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Clients for different protocols including ssh"
msgstr "SSH š× ´Ů¸Ľ ÇÁˇÎĹäÄÝŔÇ ĹŹśóŔĚžđĆŽ"
@@ -11450,27 +12087,22 @@ msgstr "SSH š× ´Ů¸Ľ ÇÁˇÎĹäÄÝŔÇ ĹŹśóŔĚžđĆŽ"
msgid "Internet gateway"
msgstr "ŔÎĹÍłÝ °ÔŔĚĆŽżţŔĚ"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Sound and video playing/editing programs"
msgstr "ťçżîľĺ š× şńľđżŔ żŹÁÖ/ĆíÁý ÇÁˇÎą×ˇĽ"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Other Graphical Desktops"
msgstr "ąâŸ ą×ˇĄÇČ ľĽ˝şĹŠĹž"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Editors, shells, file tools, terminals"
msgstr "żĄľđĹÍ, ˝Š, ĆÄŔĎľľą¸, Ĺ͚̳Î"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Programs to manage your finance, such as gnucash"
msgstr "gnucash °°Ŕş Ŕڹݰü¸Ž ÇÁˇÎą×ˇĽ"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Personal Information Management"
msgstr "°łŔÎ Á¤ş¸°ü¸Ž"
@@ -11483,284 +12115,228 @@ msgstr "¸ÖĆźšĚľđžî - CD ąÁąâ"
msgid "Scientific Workstation"
msgstr "°úÇĐ żöĹŠ˝şĹ×ŔĚźÇ"
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "ÁßÁö"
-
-#, fuzzy
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr ""
-#~ "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,-*-gulim-bold-r-"
-#~ "normal--16-*-*-*-c-*-ksc5601.1987-0,*-r-*"
-
-#~ msgid ""
-#~ "Can't access kernel modules corresponding to your kernel (file %s is "
-#~ "missing)"
-#~ msgstr "ÄżłÎ°ú ŔĎÄĄÇĎ´Â ¸đľâżĄ Á˘ąŮÇŇ źö žř˝Ŕ´Ď´Ů.(ĆÄŔĎ %s°Ą žř˝ż)"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#~ msgid "None"
-#~ msgstr "žř˝ż"
-
-#~ msgid "Choose a default printer!"
-#~ msgstr "ąâşť ÇÁ¸°Ĺ͸Ś źąĹĂÇĎźźżä!"
-
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Ŕűżë/ÇÁ¸°ĹÍ ´Ů˝ĂŔĐąâ"
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "ĆÄŔϽýşĹŰ ÁĄ°ËŔĚ ÁžˇáÄÚľĺ %d śÇ´Â ˝Ăą×łÎ %dˇÎ ˝ÇĆĐÇĎż´˝Ŕ´Ď´Ů."
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "ŔĚÁŚ %s ľĺśóŔĚšöżĄ żÉźÇŔť ÁöÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů."
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "ą×ˇĄÇČ ÄŤľĺ ID: %s\n"
-#~ msgid "Low"
-#~ msgstr "łˇŔ˝"
-
-#~ msgid "Medium"
-#~ msgstr "ş¸Ĺë"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "ŔĚ ľîąŢŔş ş¸žČťóŔÇ °łźąťçÇ×ŔĚ ş°ˇÎ žř˝Ŕ´Ď´Ů. ¸šŔş ş¸žČ °ć°íżÍ ÁĄ°ËŔĚ\n"
-#~ "łŞĹ¸łł´Ď´Ů."
+#~ msgid "Choose options for server"
+#~ msgstr "ź­šö żÉźÇŔť źąĹĂÇĎźźżä"
-#~ msgid "mount failed"
-#~ msgstr "¸śżîĆŽ ˝ÇĆĐ"
+#~ msgid "Monitor not configured"
+#~ msgstr "¸đ´ĎĹÍ°Ą źłÁ¤ľÇÁö žĘžŇ˝Ŕ´Ď´Ů."
-#~ msgid "Boot mode"
-#~ msgstr "şÎĆŽ ¸đľĺ"
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "ą×ˇĄÇČ ÄŤľĺ°Ą žĆÁ÷ źłÁ¤ľÇÁö žĘžŇ˝Ŕ´Ď´Ů."
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "ŔüšŽ°Ą"
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "ÇŘťóľľ°Ą źąĹĂľÇÁö žĘžŇ˝Ŕ´Ď´Ů."
-#, fuzzy
#~ 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\n"
#~ "\n"
+#~ "try to change some parameters"
#~ msgstr ""
-#~ "ÇöŔç ÇÁ¸°ĹÍżĄ ťçżëÇŇ źö ŔÖ´Â żÉźÇ ¸ńˇĎŔť ş¸ˇÁ¸é, Ą¸ŔÎźâ żÉźÇ ¸ńˇĎĄšŔť ´Š¸Ł"
-#~ "źźżä.\n"
#~ "\n"
+#~ "ŔϺΠŔÎŔÚ°ŞľéŔť şŻ°ćÇŘ ş¸źźżä."
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "GNU/¸Ž´Ş˝ş´Â ˝Ă°ŁŔť GMT(ą×¸Ž´ĎÄĄ °ü¸Ž ˝Ă°Ł)ˇÎ °ü¸ŽÇϸ韭, źąĹĂľČ ˝Ă°Ł´ë"
-#~ "żĄ\n"
-#~ "ľűśó šřżŞÇĎżŠ ÇĽÇöÇŐ´Ď´Ů."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "ŔÎĹͳݿĄ żŹ°á"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "ŔÎĹÍłÝ żŹ°á ˛÷ąâ"
+#~ msgid "An error occurred:"
+#~ msgstr "żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů:"
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "ł×ĆŽż÷ żŹ°á źłÁ¤ (LAN śÇ´Â ŔÎĹÍłÝ)"
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "%d ĂĘ ł˛žŇ˝Ŕ´Ď´Ů."
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "žîś˛ ľđ˝şĹŠ¸Ś ŔĚľżÇĎ°í ˝ÍŔ¸˝Ę´Ďąî?"
+#~ msgid "Is this the correct setting?"
+#~ msgstr "ŔĚ źłÁ¤ŔĚ ¸Â˝Ŕ´Ďąî?"
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "źłÄĄÇŇ ĆŃĹ°Áö źąĹĂ"
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů. ŔϺΠŔÎŔÚ°ŞŔť şŻ°ćÇŘ ş¸źźżä."
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Á¤ş¸"
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 ź­šö: %s"
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "GNOME żöĹŠ˝şĹ×ŔĚźÇ"
+#~ msgid "Show all"
+#~ msgstr "¸đľÎ ÇĽ˝Ă"
-#~ msgid "authentification"
-#~ msgstr "ŔÎÁő"
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "X-Window źłÁ¤ ÁŘşńÁß"
-#~ msgid "user"
-#~ msgstr "ťçżëŔÚ"
+#~ msgid "What do you want to do?"
+#~ msgstr "žîśť°Ô ÇϽðڽŔ´Ďąî?"
-#, fuzzy
-#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
-#~ "\n"
-#~ msgstr "žîś˛ ÁžˇůŔÇ ¸śżě˝ş¸Ś ťçżëÇϽʴϹî?"
+#~ msgid "Change Monitor"
+#~ msgstr "¸đ´ĎĹÍ şŻ°ć"
-#~ msgid "Scanning available nfs shared resource"
-#~ msgstr "ŔŻČżÇŃ NFS °řŔŻŔÚżř °Ëťö Áß"
+#~ msgid "Change Graphics card"
+#~ msgstr "ą×ˇĄÇČ ÄŤľĺ şŻ°ć"
-#~ msgid "Scanning available nfs shared resource of server %s"
-#~ msgstr "ź­šö %sťóŔÇ ŔŻČżÇŃ NFS °řŔŻŔÚżř °Ëťö Áß"
+#~ msgid "Change Server options"
+#~ msgstr "ź­šö żÉźÇ şŻ°ć"
-#~ msgid "Scanning available samba shared resource"
-#~ msgstr "ŔŻČżÇŃ ťďšŮ °řŔŻŔÚżř °Ëťö Áß"
+#~ msgid "Change Resolution"
+#~ msgstr "ÇŘťóľľ şŻ°ć"
-#~ msgid "Scanning available samba shared resource of server %s"
-#~ msgstr "ź­šö %sťóŔÇ ŔŻČżÇŃ ťďšŮ °řŔŻŔÚżř °Ëťö Áß"
+#~ msgid "Show information"
+#~ msgstr "Á¤ş¸ ş¸ąâ"
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "Ážˇá"
+#~ msgid "Test again"
+#~ msgstr "´Ů˝Ă Ĺ×˝şĆŽ"
-#~ msgid "Removable media"
-#~ msgstr "ĹťÂř˝Ä šĚľđžî"
+#~ msgid "proftpd"
+#~ msgstr "PROFTPD"
-#~ msgid "Active"
-#~ msgstr "Č°źşČ­"
+#~ msgid "sshd"
+#~ msgstr "SSHD"
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "žĆ´ĎżŔ"
+#~ msgid "webmin"
+#~ msgstr "WEBMIN"
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "ÇÁ¸°ĹÍ, ¸đľ¨ \"%s\", šß°ß"
+#~ msgid "xinetd"
+#~ msgstr "XINETD"
-#~ msgid "Local Printer Device"
-#~ msgstr "ÁöżŞ ÇÁ¸°ĹÍ ŔĺÄĄ"
+#~ msgid "Setting security level"
+#~ msgstr "ş¸žČ źöÁŘ źłÁ¤"
-#~ msgid "Printer Device"
-#~ msgstr "ÇÁ¸°ĹÍ ŔĺÄĄ"
+#~ msgid "Graphics card"
+#~ msgstr "ą×ˇĄÇČ ÄŤľĺ"
-#~ msgid "Device/file name missing!"
-#~ msgstr "ŔĺÄĄ/ĆÄŔĎ Ŕ̸§Ŕť ĂŁŔť źö žřŔ˝!"
+#~ msgid "Select a graphics card"
+#~ msgstr "ą×ˇĄÇČ ÄŤľĺ źąĹĂ"
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "żř°Ý CUPS ź­šöŔÇ ÇÁ¸°ĹÍ"
+#~ msgid "Choose a X driver"
+#~ msgstr "X ľĺśóŔĚšö źąĹĂ"
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "żř°Ý ź­šöŔÇ ÇÁ¸°ĹÍ"
+#~ msgid "X driver"
+#~ msgstr "X ľĺśóŔĚšö"
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "¸Ž´Ş˝ş"
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "ÁÖŔÇ : ŔĚ ą×ˇĄÇČ ÄŤľĺ¸Ś Ĺ×˝şĆŽÇϸé ÄÄÇťĹÍ°Ą ¸ŘĂâÁöľľ ¸đ¸¨´Ď´Ů."
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "˝Ă˝şĹŰ"
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "ÇĽÁŘ VGA, 640x480 @ 60 Hz"
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "ąâŸ"
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "˝´ĆŰ VGA, 800x600 @ 56 Hz"
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Ĺ°ş¸ľĺ ˇšŔ̞ƿô źąĹĂ"
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514 ČŁČŻ, 1024x768 @ 87 Hz interlaced (800x600 žČľĘ)"
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "¸ĹĂź¸Ś ĹŹ¸ŻÇĎźźżä."
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "˝´ĆŰ VGA, 1024x768 @ 87 Hz interlaced, 800x600 @ 56 Hz"
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "ŔŻÇü: "
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "ČŽŔĺ ˝´ĆŰ VGA, 800x600 @ 60 Hz, 640x480 @ 72 Hz"
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Ŕ߸řľČ šéž÷ ĆÄŔĎ"
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "şńŔÎĹ͡šŔĚ˝ş SVGA, 1024x768 @ 60 Hz, 800x600 @ 72 Hz"
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "X źłÁ¤"
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "°íÁÖĆÄźö SVGA, 1024x768 @ 70 Hz"
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "ÇÁ¸°ĹÍ ŔĺÄĄ"
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "1280x1024 @ 60 Hz Áöżř ´ŮÁßÁÖĆÄźö ¸đ´ĎĹÍ"
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "ĂëźŇ"
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "1280x1024 @ 74 Hz Áöżř ´ŮÁßÁÖĆÄźö ¸đ´ĎĹÍ"
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "ČŽŔÎ"
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "1280x1024 @ 76 Hz Áöżř ´ŮÁßÁÖĆÄźö ¸đ´ĎĹÍ"
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "´Ýąâ"
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "1600x1200 @ 70 Hz ťçżë °Ą´É ¸đ´ĎĹÍ"
-#~ msgid "Starting your connection..."
-#~ msgstr "żŹ°á Áß..."
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "1600x1200 @ 76 Hz ťçżë °Ą´É ¸đ´ĎĹÍ"
-#~ msgid "Closing your connection..."
-#~ msgstr "żŹ°á ˛÷´Â Áß..."
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "źąĹĂÇŃ ĆŃĹ°Áö ą×ˇěŔÇ ŔüĂź ĹŠąâ°Ą %d MBżĄ °Ąąő˝Ŕ´Ď´Ů.\n"
#~ msgid ""
-#~ "The connection is not closed.\n"
-#~ "Try to do it manually by running\n"
-#~ "/etc/sysconfig/network-scripts/net_cnx_down\n"
-#~ "in root."
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
-#~ "żŹ°á ˛÷žîÁŽ ŔÖÁö žĘ˝Ŕ´Ď´Ů.\n"
-#~ "ˇçĆŽ ťçżëŔÚŔÇ ąÇÇŃŔ¸ˇÎ Á÷Á˘\n"
-#~ "/etc/sysconfig/network-scripts/net_cnx_down\n"
-#~ "Ŕť ˝ÇÇŕÇĎźźżä."
+#~ "ŔĚ żëˇŽş¸´Ů Ŕű°Ô źłÄĄÇĎ°í ˝Í´Ů¸é,\n"
+#~ "źłÄĄÇĎ°íŔÚ ÇĎ´Â ĆŃĹ°ÁöľéŔÇ šéşĐŔ˛Ŕť źąĹĂÇĎźźżä.\n"
+#~ "\n"
+#~ "šéşĐŔ˛ŔĚ łˇŔ¸¸é, °ĄŔĺ ÁßżäÇŃ ĆŃĹ°Áöľé¸¸ źłÄĄľË´Ď´Ů;\n"
+#~ "šéşĐŔ˛ 100%%´Â źąĹĂľČ ¸đľç ĆŃĹ°ÁöľéŔť źłÄĄÇŐ´Ď´Ů."
-#~ msgid "The system is now disconnected."
-#~ msgstr "ŔĚÁŚ ˝Ă˝şĹŰŔÇ żŹ°áŔĚ ˛÷žîÁř ťóĹÂŔÔ´Ď´Ů."
+#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
+#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
+#~ msgstr ""
+#~ "źąĹĂľČ ĆŃĹ°ÁöľéŔÇ %d%%żĄ ÇŘ´çÇĎ´Â ľđ˝şĹŠ °ř°Ł¸¸ ł˛žĆ ŔÖ˝Ŕ´Ď´Ů.\n"
+#~ "\n"
+#~ "ŔĚ żëˇŽş¸´Ů Ŕű°Ô źłÄĄÇĎ°í ˝Í´Ů¸é,\n"
+#~ "źłÄĄÇĎ°íŔÚ ÇĎ´Â ĆŃĹ°ÁöľéŔÇ šéşĐŔ˛Ŕť źąĹĂÇĎźźżä.\n"
+#~ "šéşĐŔ˛ŔĚ łˇŔ¸¸é, °ĄŔĺ ÁßżäÇŃ ĆŃĹ°Áöľé¸¸ źłÄĄľË´Ď´Ů;\n"
+#~ "šéşĐŔ˛ %d%%´Â °Ą´ÉÇŃ ¸đľç ĆŃĹ°ÁöľéŔť źłÄĄÇŐ´Ď´Ů."
-#~ msgid "Choose the size you want to install"
-#~ msgstr "źłÄĄÇŇ ĆŃĹ°ÁöľéŔÇ ĂŃ żëˇŽ źąĹĂ"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "´ŮŔ˝ ´Ü°čżĄź­ Ăß°ĄˇÎ ŔÚźźČ÷ źąĹĂÇŇ źö ŔÖ˝Ŕ´Ď´Ů."
-#~ msgid "Total size: "
-#~ msgstr "ŔüĂź ĹŠąâ: "
+#~ msgid "Percentage of packages to install"
+#~ msgstr "źłÄĄÇŇ ĆŃĹ°ÁöŔÇ šéşĐŔ˛"
-#~ msgid "Please wait, "
-#~ msgstr "Ŕá˝Ă¸¸ ąâ´Ů¸Žźźżä, "
+#~ msgid "Please choose the desired security level."
+#~ msgstr "ş¸žČ ´Ü°č¸Ś źąĹĂÇŘ ÁÖźźżä"
-#~ msgid "Total time "
-#~ msgstr "ŔüĂź ˝Ă°Ł "
+#~ msgid "hide expert mode"
+#~ msgstr "ŔüšŽ°Ą ¸đľĺ źűąâąâ"
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "ŔĚšĚ ŔÖ´Â X11 źłÁ¤Ŕť ťçżëÇϽðڽŔ´Ďąî?"
+#~ msgid "show expert mode"
+#~ msgstr "ŔüšŽ°Ą ¸đľĺ ş¸ŔĚąâ"
#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
+#~ "If '%s' is a removable peripheral,\n"
+#~ " verify that a media is inserted."
#~ msgstr ""
-#~ "žî´Ŕ ŔĺÄĄżĄ ÇÁ¸°ĹÍ°Ą żŹ°áľÇžî ŔÖ˝Ŕ´Ďąî? \n"
-#~ "(ÁÖŔÇ: Ą¸/dev/lp0Ąš´Â Ą¸LPT1ĄšżĄ ÇŘ´çÇŐ´Ď´Ů.)\n"
-
-#~ msgid "%s"
-#~ msgstr "%s"
+#~ "¸¸žŕ Ą¸%sĄš°Ą ĹšÂű˝Ä ŔĺÄĄśó¸é, \n"
+#~ "šĚľđžî°Ą ťđŔԾǞî ŔÖ´ÂÁö ČŽŔÎÇĎźźżä."
#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr "°ć°í: ŔĚšĚ źłÁ¤ľČ ł×ĆŽż÷ Á֟ҰĄ ŔÖ˝Ŕ´Ď´Ů. ´Ů˝Ă źłÁ¤ÇŇ °ÍŔÔ´Ď´Ů."
+#~ "WARNING! This will format '%s'.\n"
+#~ "All data will be erased on the peripheral '%s'.\n"
+#~ "If you want to continue, press OK. "
+#~ msgstr ""
+#~ "°ć°í: Ą¸%sĄš¸Ś Ć÷¸ËÇŇ °ÍŔÔ´Ď´Ů.\n"
+#~ "Ą¸%sĄšŔĺÄĄŔÇ ¸đľç ľĽŔĚĹÍ°Ą ťčÁŚľÉ °ÍŔÔ´Ď´Ů.\n"
+#~ "°čźÓÇϡÁ¸é Ą¸ČŽŔÎĄšŔť ´Š¸Łźźżä."
-#~ msgid "New"
-#~ msgstr "ťőˇÎ ¸¸ľéąâ"
+#~ msgid "unknown"
+#~ msgstr "žË źö žřŔ˝"
-#~ msgid "Remote"
-#~ msgstr "żř°Ý"
+#~ msgid "Select a module or write his name:"
+#~ msgstr "¸đľâŔť źąĹĂÇĎ°í Ŕ̸§Ŕť ŔÔˇÂÇĎźźżä:"
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr ""
-#~ "Ŕ§ŔÇ šöĆ° Áß ÇĎłŞ¸Ś ´Š¸Ł°ĹłŞ,\n"
-#~ "\n"
-#~ "Ą¸ťőˇÎ ¸¸ľéąâĄš¸Ś ŔĚżëÇĎźźżä."
+#~ msgid "Category"
+#~ msgstr "šüÁÖ"
+
+#~ msgid "preload module"
+#~ msgstr "šĚ¸Ž żĂ¸ą ¸đľâ"
-#~ msgid "Use \"New\""
-#~ msgstr "Ą¸ťőˇÎ ¸¸ľéąâĄšťçżë"
+#~ msgid "click on a category"
+#~ msgstr "šüÁÖ¸Ś ĹŹ¸ŻÇĎźźżä."
-#~ msgid "If the list above doesn't contain the wanted entry, enter it here:"
-#~ msgstr "¸¸žŕ Ŕ§żĄź­ żřÇĎ´Â Ç׸ńŔť ĂŁŔť źö žř´Ů¸é, żŠąâżĄ ŔÔˇÂÇĎźźżä:"
+#~ msgid "Remove"
+#~ msgstr "ÁŚ°Ĺ"
-#~ msgid "Shared resource"
-#~ msgstr "°řŔŻľČ ŔÚżř"
+#~ msgid "Tool for boot disk creation"
+#~ msgstr "şÎĆŽ ľđ˝şĹŠ ťýźş ľľą¸"
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "žÖ¸ĹÇŃ ÇĽÇö(%s), ş¸´Ů ŔÚźźČ÷ ąâŔÔÇŘ ÁÖźźżä.\n"
+#~ msgid "Show expert mode"
+#~ msgstr "ŔüšŽ°Ą ¸đľĺ ş¸ŔĚąâ"
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (ąâşť°Ş %s) "
+#~ msgid "modules"
+#~ msgstr "¸đľâľé"
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "´ÔŔÇ źąĹĂŔş? (ąâşť°ŞŔş %s, žř´Ů¸éĄ¸noneĄšŔÔˇÂ) "
+#~ msgid "Boot disk maker. Still in early stage.\n"
+#~ msgstr "şÎĆŽ ľđ˝şĹŠ ťýźşąâ. žĆÁ÷ °łšß ĂĘąâ ´Ü°č.\n"
diff --git a/perl-install/share/po/lt.po b/perl-install/share/po/lt.po
index f68be5356..885a01f56 100644
--- a/perl-install/share/po/lt.po
+++ b/perl-install/share/po/lt.po
@@ -1,82 +1,111 @@
-# Lithuanian transaltion of DrakX
-# Copyright (C) 1999 Free Software Foundation, Inc.
-# Kćstutis Kruţikas <DrKestas@takas.lt>, 1999
-# Mykolas Norvaiđas <Myka@centras.lt>, 1999-2001
-# Gediminas Paulauskas <menesis@delfi.lt>, 2000
+#
+# Mykolas Norvai-as <Myka@centras.lt>, 2002
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX \n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2001-03-04 23:55+0200\n"
-"Last-Translator: Mykolas Norvaiđas <Myka@centras.lt>\n"
+"Project-Id-Version: drakbootdisk VERSION\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2000-12-23 13:50+0200\n"
+"Last-Translator: Mykolas Norvai­as <Myka@centras.lt>\n"
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-13\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-#, fuzzy
-msgid "Use Xinerama extension"
-msgstr "Naudokite automatiná aptikimŕ"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB ar daugiau"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Pasirink X serverá"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X serveris"
+
+#: ../../Xconfig/card.pm_.c:225
#, fuzzy
msgid "Multi-head configuration"
msgstr "skaitomi nustatymai"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Vaizdo plokđtë"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Pasirink savo vaizdo plokđtës atminties dydá"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Pasirink vaizdo plokđtć"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "XFree konfigűravimas"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Pasirink X serverá"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Kuriŕ XFree konfigűracijŕ tu nori turëti?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X serveris"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:293
+#: ../../Xconfig/card.pm_.c:375
#, fuzzy
-msgid "Choose a X driver"
-msgstr "Pasirink X serverá"
+msgid "Use Xinerama extension"
+msgstr "Naudokite automatiná aptikimŕ"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X serveris"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Tinklo Konfigűravimo Meistras"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Kuriŕ XFree konfigűracijŕ tu nori turëti?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s su 3D árenginio akseleracija"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -85,32 +114,17 @@ msgstr ""
"Tavo plokđtë palaiko 3D árenginio akseleracijŕ, bet tik su XFree %s.\n"
"Tavo plokđtë dirba su XFree %s, kuris galbűt geriau palaiko 2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Tavo plokđtë palaiko 3D akseleracijŕ su XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s su 3D árenginio akseleracija"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Jűsř korta palaiko 3D akseleracija su XFree %s.ATMINKITE, KAD TAI YRA "
-"EKSPERIMENTINIS PALIKYMAS IR GALI PAKABINTI KOMPIUTERÁ."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s su EKSPERIMENTINE 3D árenginio akseleracija"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -122,31 +136,58 @@ msgstr ""
"KOMPIUTERÁ.\n"
"Jűsř korta dirba su XFree %s kuris galbűt geriau palaiko 2D."
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
+"Jűsř korta palaiko 3D akseleracija su XFree %s.ATMINKITE, KAD TAI YRA "
+"EKSPERIMENTINIS PALIKYMAS IR GALI PAKABINTI KOMPIUTERÁ."
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree konfigűravimas"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Pasirink savo vaizdo plokđtës atminties dydá"
+#: ../../Xconfig/card.pm_.c:445
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Pasirink serverio nuostatas"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Iđlaikyti pakeitimus?\n"
+"Esama konfigűracija yra:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Pasirink monitoriř"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitorius"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Prisitaikyti"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Paprasta"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Sugráţti"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -167,516 +208,328 @@ msgstr ""
"uţ palaikomŕ monitoriaus, nes gali já sugadinti. Jeigu abejoji,\n"
"pasirink konservatyviŕ nuostatŕ."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Horizontalaus atnaujinimo daţnis"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Vertikalaus atnaujinimo daţnis"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitorius nenurodytas"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Vaizdo plokđtë dar nenurodyta"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Dar nepasirinkta skiriamoji geba"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Ar tu nori iđbandyti nustatymus?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Perspëjimas: đios plokđtës bandymas gali pakabinti kompiuterá"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Nustatymř tikrinimas"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 spalvos (8 bitai)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"pabandyk pakeisti kai kuriuos parametrus"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 tűkst. spalvř (15 bitř)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Ávyko klaida:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 tűkst. spalvř (16 bitř)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Baigiu per %d sekundţiř (-es)"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 milijonai spalvř (24 bitai)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Ar toks nustatymas tave tenkina?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 milijardai spalvř (32 bitai)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Ávyko klaida, bandyk pakeisti kai kuriuos parametrus"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Skiriamosios gebos"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Skiriamoji geba"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Pasirink skiriamŕjŕ gebŕ ir spalvř gylá"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Vaizdo plokđtë: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 serveris: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Dar"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Nutraukti"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Gerai"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Eksperto Reţimas"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Rodyti viskŕ"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Ar tu nori iđbandyti nustatymus?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Skiriamosios gebos"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Nustatymř tikrinimas"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Klaviatűros iđdëstymas: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Pelës tipas: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Pelës árenginys: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitorius: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Monitoriaus horiz. skleistinë: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Monitoriaus vert. skleistinë: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Vaizdo plokđtë: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Vaizdo plokđtë: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Vaizdo atmintis: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Spalvř gylis: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Skiriamoji geba: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 serveris: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 tvarkyklë: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Ruođiami X-Window nustatymai"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Kŕ tu nori daryti?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Pakeisti monitoriř"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Pakeisti vaizdo plokđtć"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Pakeisti serverio nustatymus"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Pakeisti skiriamŕjŕ gebŕ"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Rodyti informacijŕ"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Patikrinti vël"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Iđeiti"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Iđlaikyti pakeitimus?\n"
-"Esama konfigűracija yra:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X paleidţiant"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Tu gali nustatyti, kad X startuotř automatiđkai.\n"
"Ar tu nori, kad X startuotř po kompiuterio perkrovimo?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Prađom iđ naujo paleisti %s, kad pakeitimai bűtř aktyvuoti"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Prađom atsisveikinti ir paskui paspausti Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 spalvos (8 bitai)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 tűkst. spalvř (15 bitř)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 tűkst. spalvř (16 bitř)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milijonai spalvř (24 bitai)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 milijardai spalvř (32 bitai)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-#, fuzzy
-msgid "16 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-#, fuzzy
-msgid "32 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-#, fuzzy
-msgid "64 MB or more"
-msgstr "16 MB ar daugiau"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standartinis VGA 640x480 prie 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA 800x600 prie 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Suderinamas su 8514, 1024x768 prie 87 Hz interlaced (nëra 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 prie 87 Hz interlaced, 800x600 prie 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Iđplëstas Super VGA, 800x600 prie 60 Hz, 640x480 prie 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Non-Interlaced SVGA, 1024x768 prie 60 Hz, 800x600 prie 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Aukđto daţnio SVGA, 1024x768 prie 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Daugiadaţnis, galintis 1280x1024 prie 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Daugiadaţnis, galintis 1280x1024 prie 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Daugiadaţnis, galintis 1280 prie 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitorius, galintis 1600x1200 prie 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitorius, galintis 1600x1200 prie 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Pirmasis ákrovos skirsnio sektorius"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Pirmasis kaupiklio sektorius (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "SILO Ádiegimas"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Kur nori ádiegti ákrovos tvarkyklć?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "LILO/GRUB ádiegimas"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO su tekstiniu meniu"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO su grafiniu meniu"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Ákrova su DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Ákrovos tvarkyklës pagrindinës parinktys"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Naudojama ákrovos tvarkyklë"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Ákrovos tvarkyklës ádiegimas"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Ákrovos árenginys"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (nedirba su senais BIOS'ais)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Kompaktiđkas"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "kompaktiđkas"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Vaizdo reţimas"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Palaukti prieđ ákraunant áprastŕ atvaizdŕ"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Slaptaţodis"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Slaptaţodis (vël)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Grieţtos komandinës eilutës parinktys"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "grieţta"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Iđvalyti /tmp kiekvienŕ kartŕ ákrovus"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Tikslus RAM atminties dydis (rasta %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Leisti keletŕ profiliř"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Nurodyk RAM atminties dydá (MB)"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Parinktis ĽGrieţtos komandinës eilutës parinktys´ yra nenaudingŕ be "
"slaptaţodţio"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Prađom bandyti vël"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Slaptaţodţiai nesutampa"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr ""
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr ""
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr ""
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr ""
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr ""
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
#, fuzzy
msgid "Default OS?"
msgstr "Áprastas"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -685,84 +538,84 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Čia yra skirtingi árađai.\n"
"Tu gali pakeisti esamus arba prijungti naujus."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Pridëti"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Atlikta"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
#, fuzzy
msgid "Modify"
msgstr "Taisyti RAID"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Kokio tipo árađŕ tu nori pridëti?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Kitos OS (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Kitos OS (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Kitos OS (Windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Atvaizdas"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Đakninis"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Pridurti"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Skaitymui-rađymui"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Lentelë"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Nesaugus"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Ţymë"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Áprastas"
@@ -796,53 +649,75 @@ msgstr "Tu privalai turëti swap skirsná"
msgid "This label is already used"
msgstr "Đi ţymë jau naudojama"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Rasti %s %s interfeisai"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Ar turi dar vienŕ?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Ar tu turi koká nors %s interfeisŕ?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Ne"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Taip"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Paţiűrëk árangos informacijŕ"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Ádiegiama tvarkyklë %s plokđtei %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(modulis %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Dabar tu gali nustatyti %s modulio nustatymus.\n"
+"Opcijř formatas yra toks : ''vardas=reikđmë vardas2=reikđmë2 ...''.\n"
+"Pvz, ''io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Modulio parinktys:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Kokiŕ %s tvarkyklć turëčiau iđbandyti?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -858,37 +733,15 @@ msgstr ""
"parinktis, ar leisi pabandyti nusistatyti pačiai. Bandymas gali\n"
"pakabinti kompiuterá, bet tai neturëtř padaryti ţalos."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Automatinis bandymas"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Nurodyti parinktis"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Dabar tu gali nustatyti %s modulio nustatymus.\n"
-"Opcijř formatas yra toks : ''vardas=reikđmë vardas2=reikđmë2 ...''.\n"
-"Pvz, ''io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Modulio parinktys:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -897,51 +750,56 @@ msgstr ""
"Modulio %s iđkvietimas nepavyko.\n"
"Ar nori bandyti su kitais nustatymais?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(%s jau pridëtas)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Đis slaptaţodis pernelyg paprastas"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Prađom suteikti vartotojo vardŕ"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Vartotojo vardas turi susidaryti tik iđ maţřjř raidţiř, skaičiř ir simboliř "
"`-' bei `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Đis vartotojo vardas jau pridëtas"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Đis vartotojo vardas jau pridëtas"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Pridëti vartotojŕ"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -950,32 +808,32 @@ msgstr ""
"Ávesk vartotojŕ\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Priimti vartotojŕ"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Tikras vardas"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Vartotojo vardas"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Ikona"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Automatinis pasisveikinimas"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -984,121 +842,101 @@ msgstr ""
"Ađ galiu nustatyti taip, kad vienas vartotojas pasisveikintř automatiđkai.\n"
"Jei nenori to naudoti, spausk mygtukŕ Nutraukti."
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Pasirink áprastŕ vartotojŕ:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Pasirink, kuriŕ langř tvarkyklć naudosi:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr "Prađom pasirinkti kalbŕ, kuriŕ naudosi."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr "Tu gali pasirinkti kitas kalbas, kurios bus prieinamos po ádiegimo"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Visos"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr "Pridëti vartotojŕ"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Prisitaikyti"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr "CUPS paleidţiamas"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Kokius jűs norite ádiegti paketus"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Nutraukti"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Sveiki atvykć á cracker'iř đalá"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Menkas"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Standartinë"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Aukđtas"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Aukđtas"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranojiđkas"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1108,7 +946,7 @@ msgstr ""
"bet labai jautriai: ji turëtř nebűti naudojama kompiuteriuose,\n"
"sujungtais su kitais arba prie Interneto. Čia nëra slaptaţodţiř."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1116,7 +954,7 @@ msgstr ""
"Dabar slaptaţodţiai yra ájungti bet naudoti kaip tinkliná kompiuterá dar "
"nerekomenduojama."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1126,56 +964,57 @@ msgstr ""
"naudojamas prisijungti prie interneto kaip klientas. Nëra jokiř saugumo "
"tikrinimř."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Su điuo saugumo lygiu sistemŕ jau galima naudoti kaip serverá. Saugumas\n"
"yra pakankamai aukđtas, kad sistemŕ bűtř galima naudoti serveriui, kuris "
"priima\n"
"prisijungimus iđ daugybës klientř."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Dabar naudojami 4 lygio privalumai,bet sistema yra visiđkai uţdaryta.\n"
"Saugumo savybës yra maksimalios."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Pasirink saugumo lygá"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
#, fuzzy
msgid "Security level"
msgstr "Nustatomas saugumo lygis"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Pasirink serverio nuostatas"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1191,52 +1030,52 @@ 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_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Sveiki, besinaudojantys GRUB, operaciniu sistemu parinkikliu!"
#. -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_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Naudok %c ir %c klavisus, kad pasirinktum, kuris irasas pazymetas"
#. -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_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Spausk enter, noredami ikrauti pasirinkta OS, 'e', noredami keisti"
#. -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_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "komandas pries ikrova, arba 'c', komandinei eilutei iskviesti "
#. -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_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Pasirinktas irasas bus ikrautas automatiskai po %d sekundziu."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "nepakanka vietos /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Darbastalis"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Paleidimo meniu"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Kur nori ádiegti ákrovos tvarkyklć?"
@@ -1249,15 +1088,19 @@ msgstr "pagalba dar nesukurta.\n"
msgid "Boot Style Configuration"
msgstr "Ádiegimo Tipo Konfiguracija"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
-msgstr "/Bylos"
+msgstr "/_Byla"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
-msgstr "/Byla/Iđeiti"
+msgstr "/Byla/_Iđeiti"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1296,12 +1139,12 @@ msgstr "Ákrovos reţimas"
#: ../../bootlook.pm_.c:104
#, fuzzy, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr "Interneto jungties dalinimas"
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
#, fuzzy
msgid "Configure"
@@ -1312,7 +1155,7 @@ msgid "System mode"
msgstr "Sistemos reţimas"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Startuojant paleisti X_Windows"
#: ../../bootlook.pm_.c:148
@@ -1323,14 +1166,16 @@ msgstr "Ne, ađ nenoriu automatinio pasisveikinimo"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Taip, ađ noriu automatinio pasisveikinimo (vrtotojas, darbastalis)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "Gerai"
@@ -1379,7 +1224,7 @@ msgstr "Ađ daugiau negaliu pridëti në vieno skirsnio"
msgid "Screenshots will be available after install in %s"
msgstr "Tu gali pasirinkti kitas kalbas, kurios bus prieinamos po ádiegimo"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Prancűzija"
@@ -1387,7 +1232,7 @@ msgstr "Prancűzija"
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Belgř"
@@ -1415,11 +1260,12 @@ msgstr "Norvegř"
msgid "Sweden"
msgstr "Pasiţiűrëti"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr "Italř"
@@ -1429,7 +1275,7 @@ msgstr "Italř"
msgid "Austria"
msgstr "nuoseklioji"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1437,8 +1283,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr "Pradţiai padaryk atsarginć savo duomenř kopijŕ"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Perskaityk ádëmiai!"
@@ -1452,11 +1298,12 @@ msgstr ""
"sektoriř pakanka)\n"
"kaupiklio pradţioje"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Klaida"
@@ -1464,11 +1311,11 @@ msgstr "Klaida"
msgid "Wizard"
msgstr "Meistras"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Pasirink veiksmŕ"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1480,149 +1327,154 @@ msgstr ""
"Patariu tau pakeisti to skirsnio dydá\n"
"(spragtelëk ant jo, tada ant ĽPakeisti dydá´)"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Prađom spragtelëti ant skirsnio"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Detalës"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
#, fuzzy
msgid "Journalised FS"
msgstr "primontuoti nepavyko"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Tuđčias"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Kitas"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Bylř sistemos tipai:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Sukurti"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Rűđis"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Naudok Ľ%s´ vietoj to"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Iđtrinti"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Pirmiau naudok ĽNumontuoti´"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "Pakeitus skirsnio %s tipŕ, visi duomenys jame bus prarasti"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose a partition"
msgstr "Pasirink veiksmŕ"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose another partition"
msgstr "Sukurti naujŕ skirsná"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Pakeisti á eksperto reţimŕ"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Pakeisti á normalř reţimŕ"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Sugráţti"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Ar vis tiek tćsti?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Iđeiti neiđsaugojus"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Iđeiti neiđsaugojus skirsniř lentelës?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Ar tu nori iđbandyti nustatymus?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Automatinis suskirstymas"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Iđvalyti viskŕ"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Dar"
+
+#: ../../diskdrake/interactive.pm_.c:263
#, fuzzy
msgid "Hard drive information"
msgstr "Pađto informacijŕ"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Visi pirminiai skirsniai yra naudojami"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Ađ daugiau negaliu pridëti në vieno skirsnio"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1630,35 +1482,35 @@ msgstr ""
"Jei nori turëti daugiau skirsniř, prađom iđtrinti vienŕ, kad vietoj jo "
"galëtum sukurti iđplëstiná"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr "Árađyti skirsniř lentelć"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr "Iđgelbëti skirsniř lentelć"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Iđgelbëti skirsniř lentelć"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr "Iđgelbëti skirsniř lentelć"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Removable media automounting"
msgstr "Iđimamř laikmenř automatinis montavimas"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Pasirink bylŕ"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1666,11 +1518,11 @@ msgstr ""
"Atsarginë skirsniř lentelë nëra tokio paties dydţio\n"
"Vis tiek tćsti?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Dëmesio"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1678,124 +1530,131 @@ msgstr ""
"Ádëk diskelá á kaupiklá\n"
"Visi duomenys diskelyje bus prarasti"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Bandau iđgelbëti skirsniř lentelć"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
#, fuzzy
msgid "Detailed information"
msgstr "Pađto informacijŕ"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Prijungimo vieta"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Pasirinktys"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Pakeisti dydá"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Perkelti"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formatuoti"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Primontuoti"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Pridëti á RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Pridëti á LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Atjungti"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Pađalinti iđ RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Pađalinti iđ LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Taisyti RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Naudoti loopback'ui"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Sukurti naujŕ skirsná"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Pradţios sektorius: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Dydis (MB): "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Bylř sistemos tipas: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Montavimo tađkas: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Pirmenybë: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+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/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Suţymima loopback byla %s"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Pakeisti skirsnio tipŕ"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Kokios bylř sistemos tu nori?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Kur nori primontuoti loopback bylŕ %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Kur nori primontuoti árenginá %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1803,128 +1662,133 @@ msgstr ""
"Negaliu nuimti montavimo tađko, nes đis skirsnis naudojamas loopback'ui.\n"
"Pirma pađalink loopback'us"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Skaičiuojami FAT bylř sistemos rëţiai"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Keičiamas dydis"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Đio skirsnio dydţio neina pakeisti"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Pasidaryk atsarginć duomenř điame skirsnyje kopijŕ"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Pakeitus skirsnio %s dydá, visi duomenys jame bus prarasti"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Pasirink naujŕ dydá"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
#, fuzzy
msgid "New size in MB: "
msgstr "Dydis (MB): "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Á kurá diskŕ tu nori já perkelti?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektorius"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Á kurá sektoriř tu nori já perkelti?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Perkeliama"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Perkeliamas skirsnis..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Pasirink jau esantá RAID, prie kurio pridëti"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "naujas"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Pasirink jau esantá LVM, prie kurio pridëti"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "LVM vardas?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Đis skirsnis negali bűti naudojamas loopback'ui"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Loopback bylos vardas: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr "Tikras vardas"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Byla jau naudojama kitam loopback'ui, pasirink kitŕ"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Đi byla jau yra. Naudoti jŕ?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
#, fuzzy
msgid "Mount options"
msgstr "Modulio parinktys:"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "árenginys"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "lygis"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "gabalo dydis"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Bűk atsargus: đi operacija yra pavojinga."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Kokio tipo skirsniř skaidymas?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Kokius jűs norite ádiegti paketus"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1934,7 +1798,7 @@ msgstr ""
"Deja, neámanoma sukurti /boot taip toli kaupiklyje (cilindre >1024).\n"
"Arba naudok LILO ir tai neveiks, arba nenaudok LILO ir tau nereikës /boot"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1945,7 +1809,7 @@ msgstr ""
"disko kaupiklio cilindro, bet tu neturi /boot skirsnio. Jeigu planuoji\n"
"naudoti LILO ákrovos programŕ, neuţmirđk pridëti /boot skirsnio"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1955,137 +1819,137 @@ msgstr ""
"Jokia ákrovos tvarkyklë negali su ja dirbti be /boot skirsnio.\n"
"Taigi, nepamirđk sukurti /boot skirsnio"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Árenginio %s skirsniř lentelë bus árađyta á diskŕ!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Tau reikia perkrauti, kad pakeitimai bűtř veiksmingi"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Suţymëjus skirsná %s, visi duomenys jame bus prarasti"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Suţymima"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Suţymima loopback byla %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Suţymimas skirsnis %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Hide files"
msgstr "mkraid nepavyko"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr "Naujiems skirsniams nepakanka laisvos vietos"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Naujiems skirsniams nepakanka laisvos vietos"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Skiriamoji geba: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Árenginys: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS kaupiklio raidë: %s (spëjama)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Tipas: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Pavadinimas: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Pradţia: sektorius %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Dydis: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sektoriai(-iř)"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Nuo cilindro %d iki cilindro %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Suţymëtas\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Nesuţymëtas\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Primontuotas\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Loopback byla(os): %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2093,27 +1957,27 @@ msgstr ""
"Skirsnis, ákraunamas pagal nutylëjimŕ\n"
" (MS-DOS uţkrovimui, ne LILO)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Lygis %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Gabalo dydis %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID kaupikliai %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback bylos vardas: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2125,7 +1989,7 @@ msgstr ""
"yra Tvarkyklës skirsnis\n"
"gariau palikite já ramybëje.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2137,65 +2001,65 @@ msgstr ""
"skirsnis yra skirtas jűsř\n"
"sistemos dvigubai ákrovai.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Dydis: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrija: %s cilindrř(-ai), %s galvučiř(-os), %s sektoriř(-iai)\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM kaupikliai %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Skirsniř lentelës tipas: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "ant magistralës %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Pasirinktys: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Bylř sistemos tipas: "
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Đis slaptaţodis yra pernelyg paprastas (turi bűti bent %d simboliř ilgio)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Slaptaţodţiai nesutampa"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2206,36 +2070,66 @@ msgstr "Pakeisti skirsnio tipŕ"
#: ../../diskdrake/removable_gtk.pm_.c:28
#, fuzzy
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Prađom spragtelëti ant skirsnio"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Autentikacija"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Internetas"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Vartotojo vardas"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Vartotojo vardas"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS domenas"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "DNS serveris"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s %s suţymëjimas nepavyko"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Neţinau, kaip suţymëti %s tipu %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "klaida numontuojant %s: %s"
@@ -2252,69 +2146,323 @@ msgstr ""
msgid "server"
msgstr "serveris"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Tu negali naudoti JFS skirsniams, maţesniems nei 16MB"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Tu negali naudoti ReiserFS skirsniams, maţesniems nei 32MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Montavimo tađkai turi prasidëti /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Jau yra skirsnis su montavimo tađku %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Đis katalogas turi pasilikti đakninëje bylř sistemoje"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Tau reikia tikros bylř sistemos (ext2, reiserfs) điam montavimo tađkui\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
"Tau reikia tikros bylř sistemos (ext2, reiserfs) điam montavimo tađkui\n"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Naujiems skirsniams nepakanka laisvos vietos"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Klaida atidarant %s árađymui: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Ávyko klaida -- nerasta tinkamř árenginiř, kur bűtř galima sukurti naujus "
"skirsnius. Prađom pasitikrinti savo árangŕ dël galimo gedimo"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Tu neturi jokiř skirsniř!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Naudokite automatiná aptikimŕ"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Paprasta"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Plokđtës mem (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "suţymimas"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Pakeisti skirsnio tipŕ"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Iđeiti"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Pagalba"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Pagalba"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Pagalba/_Apie..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Pelë"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Plokđtës mem (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Nutraukti"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Pelë"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Aprađymas"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Autentikacija"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Pasirink bylŕ"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Đliuzo (gateway) árenginys"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 klaviđř"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Kieto disko nustatymas"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Paţiűrëk árangos informacijŕ"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Rodyti informacijŕ"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Pelës nustatymas"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "aptiktas prievade %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Prađom palaukti"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d sekundës"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Skaitoma CUPS tvarkykliř duomenř bazë"
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Automatinis bandymas"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2328,7 +2476,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2440,9 +2588,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2638,7 +2785,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2650,9 +2797,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2699,21 +2845,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2729,9 +2874,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Dabar tu turi nusprćsti, kurioje savo kietojo disko vietoje nori ádiegti\n"
"Mandrake Linux operacijř sistemŕ. Jei jis yra tuđčias arba jau esanti\n"
@@ -2817,9 +2962,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -2963,38 +3107,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3183,11 +3321,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3245,7 +3383,7 @@ msgstr ""
"neiđmanai GNU/Linux. Taigi, nesirink đios\n"
" ádiegimo klasës, nebent tikrai ţinai, kŕ darai."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3260,7 +3398,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3275,7 +3413,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3291,7 +3429,7 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
#, fuzzy
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
@@ -3300,23 +3438,23 @@ msgstr ""
"Prađom pasirinkti teisingŕ prievadŕ. Pavyzdţiui COM1\n"
"MS Windows'uose vadinamas ttyS0 GNU/Linux'e."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3338,7 +3476,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3360,7 +3498,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3368,7 +3506,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3389,7 +3527,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
#, fuzzy
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
@@ -3413,7 +3551,7 @@ msgstr ""
"bet kam, jei iđtrinsi atitinkamus árađus. Bet tuo atveju, tau prireiks\n"
"ákrovos diskelio, kad jas ákrautum!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
#, fuzzy
msgid ""
"You must indicate where you wish to place the information required to boot\n"
@@ -3428,29 +3566,28 @@ msgstr ""
"Jeigu tu tiksliai neţinai, kŕ darai, pasirink \"Pirmasis kaupiklio sektorius "
"(MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3459,7 +3596,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
#, fuzzy
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
@@ -3485,7 +3622,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"DrakX bandys surasti PCI SCSI adapterá(-ius). Jei DrakX\n"
@@ -3515,7 +3652,7 @@ msgstr ""
"turi juos\n"
"savo sistemoje)."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3525,9 +3662,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3539,7 +3675,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" 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"
@@ -3565,7 +3701,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
#, fuzzy
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
@@ -3593,9 +3729,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -3645,10 +3780,10 @@ msgstr ""
"baigsis Open Firmware \n"
"uţlaikymas."
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3656,12 +3791,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3677,7 +3811,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
#, fuzzy
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
@@ -3688,7 +3822,7 @@ msgstr ""
"Mandrake Linux sistemŕ. Bűk atsargus, visi duomenys, esantys jame, bus\n"
"prarasti, ir jř nebebus ámanoma atkurti."
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
#, fuzzy
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
@@ -3708,7 +3842,7 @@ msgstr ""
"Spausk \"Atđaukti\", kad nutrauktum operacijŕ ir neprarastum jokiř duomenř\n"
"nei skirsniř, esančiř điame kietajame diske."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3716,12 +3850,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3736,20 +3870,20 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "Negalima naudoti transliavimo be NIS domeno"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Ádëk FAT formatuotŕ diskelá á kaupiklá %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3757,7 +3891,7 @@ msgstr ""
"Kad iđsaugoti điř paketř pasirinkimŕ ákraukite sistemŕ su ``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Klaida skaitant bylŕ %s"
@@ -3789,7 +3923,7 @@ msgstr "Tu privalai turëti swap skirsná"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -3797,60 +3931,60 @@ msgstr ""
"\n"
"Vis tiek tćsti?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Tu privalai turëti swap skirsná"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Naudoti laisvŕ vietŕ"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Naujiems skirsniams nepakanka laisvos vietos"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Naudoti esamŕ skirsná"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Nëra jokio skirsnio, tinkamo naudojimui"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Naudoti Windows skirsná loopback'ui"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Kuri skirsná tu nori naudoti Linux4Win ádiegimui?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Pasirink dydţius"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Đakninio skirsnio dydis, MB: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Swap skirsnio dydis, MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Naudoti laisvŕ vietŕ Windows skirsnyje"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Kurio skirsnio dydá tu nori pakeisti?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Skaičiuojami Windows bylř sistemos rëţiai"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -3859,12 +3993,15 @@ msgstr ""
"FAT dydţio keitimo programa nesusitvarko su tavo\n"
"skirsniu, ávyko tokia klaida: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"Tavo Windows skirsnis yra pernelyg fragmentuotas, pirma paleisk Ľdefrag´"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -3886,55 +4023,55 @@ msgstr ""
"pradëti ádiegimŕ. Taip pat turëtum pasidaryti atsarginć duomenř kopijŕ.\n"
"Kai viskas sutvarkyta, spausk Gerai."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Koká dydá norëtum palikti Windows'ams"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "skirsnyje %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Nepavyko pakeisti FAT dydţio: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Nëra jokiř FAT skirsniř, kuriř dydá bűtř galima pakeisti arba naudoti juos "
"loopback'ui\n"
"(arba nëra pakankamai laisvos vietos)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Iđtrinti visŕ diskŕ"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Iđmesti Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Tu turi daugiau negu vienŕ kietŕ diskŕ, á kurá nori ádiegti Linux?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "VISI kaupiklyje %s esantys skirsniai ir duomenys bus prarasti"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Rankinis diskř skirstymas"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Naudoti fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -3943,11 +4080,11 @@ msgstr ""
"Tu dabar gali sudalinti %s.\n"
"Kai baigsi, nepamirđk iđsaugoti su 'w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Windows skirsnyje nëra pakankamai laisvos vietos"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Ađ niekur negaliu rasti vietos ádiegimui"
@@ -3955,16 +4092,16 @@ msgstr "Ađ niekur negaliu rasti vietos ádiegimui"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX Skirsniř dalinimo meistras rado tokius sprendimus:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Dalinimas á skirsnius nepavyko: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Paleidţiamas tinklas"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Iđjungiamas tinklas"
@@ -3976,12 +4113,12 @@ msgstr ""
"Ávyko klaida, bet ađ neţinau, kaip su ja graţiai susitvarkyti.\n"
"Tćsk darbŕ savo paties rizika."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Pasikartojantis montavimo tađkas %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3993,12 +4130,12 @@ msgstr ""
"Patikrink CD ádiegtame kompiuteryje, naudodamas \"rpm -qpl Mandrake/RPMS/*."
"rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Sveiki atvykć á %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Neprieinamas në vienas diskeliř kaupiklis"
@@ -4008,9 +4145,9 @@ msgstr "Neprieinamas në vienas diskeliř kaupiklis"
msgid "Entering step `%s'\n"
msgstr "Áeinama á ţingsná Ľ%s´\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4019,202 +4156,157 @@ msgstr ""
"Mandrake Linux. Jei taip atsitiktř, gali pabandyti tekstiná diegimo bűdŕ:\n"
"Kai uţsikrauna iđ CDROM'o, paspausk `F1', o tada ávesk \"text\"."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Ádiegimo klasë"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Prađom pasirinkti vienŕ iđ điř ádiegimo klasiř:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Grupiř, kurias tu pasirinkai, bendras dydis yra apie %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Jei tu nori ádiegti maţiau, nei čia nurodyta,\n"
-"pasirink, kiek procentř paketř tu norëtum ádiegti.\n"
-"\n"
-"Jei procentř maţai, bus ádiegti tik patys svarbiausi paketai;\n"
-"su 100% bus ádiegti visi paţymëti paketai."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Tu turi vietos diske tik %d%% điř paketř.\n"
-"\n"
-"Jei tu nori ádiegti maţiau, nei čia nurodyta,\n"
-"pasirink, kiek procentř paketř tu norëtum ádiegti.\n"
-"Jei procentř maţai, bus ádiegti tik patys svarbiausi paketai;\n"
-"su %d%% bus ádiegtŕ tiek paketř, kiek tik ámanoma."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Sekančiame ţingsnyje tu juos galësi pasirinkti tiksliau."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Kiek procentř paketř ádiegti"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Paketř grupiř pasirinkimas"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Atskirř paketř pasirinkimas"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Bendras dydis: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Blogas paketas"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Pavadinimas: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Versija: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Dydis: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Svarba: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Tu negali pasirinkti đio paketo, kadangi nebëra pakankamai vietos jam ádiegti"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Ruođiamasi ádiegti điuos paketus"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Ruođiamasi pađalinti điuos paketus"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Tu negali paţymëti/atţymëti đio paketo"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Tai yra privalomas paketas, jis negali bűti atţymëtas"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Tu negali atţymëti đio paketo. Jis jau yra ádiegtas"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Đis paketas privalo bűti atnaujintas\n"
"Ar tu tikrai nori já atţymëti?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Tu negali atţymëti đio paketo. Jis privalo bűti atnaujintas"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Ádiegti"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Iđsaugoti á diskelá"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
#, fuzzy
msgid "Updating package selection"
msgstr "Iđsaugoti paketř pasirinkimŕ"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
#, fuzzy
msgid "Minimal install"
msgstr "Iđmesti"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Pasirink paketus, kuriuos tu nori ádiegti"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Ádiegiama"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Skaičiuojama"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Liko laiko "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Prađome palaukti. Ruođiamas ádiegimas"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d paketř"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Ádiegiamas paketas %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Sutinku"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Atmetu"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4228,17 +4320,17 @@ msgstr ""
"Prađom ákiđti CD su uţrađu Ľ%s´ á kaupiklá, tada paspausk Gerai.\n"
"Jei tu jo neturi, spausk Nutraukti, kad iđvengtum ádiegimo iđ đio CD."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Vis tiek tćsti?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Ávyko klaida, bandant sutvarkyti paketus:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Ávyko klaida, ádiegiant paketus:"
@@ -4312,11 +4404,11 @@ msgstr "Ávyko klaida"
msgid "Do you really want to leave the installation?"
msgstr "Ar tu nori iđ naujo paleisti tinklŕ"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Licenzijos patvirtinimas"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4331,7 +4423,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -4437,114 +4529,118 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Klaviatűra"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Prađom pasirinkti klaviatűros iđdëstymŕ."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Čia yra galimř klaviatűrř sŕrađas"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Kurios Ádiegimo klasës tu nori?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Ádiegti/Atnaujinti"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Ar tai ádiegimas, ar atnaujinimas?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Rekomenduojama"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Eksperto"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade"
msgstr "Atnaujinimas"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr "Iđsaugoti paketř pasirinkimŕ"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Prađom pasirinkti savo pelës rűđá."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Pelës prievadas"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr ""
"Prađom pasirinkti, prie kurios nuosekliosios jungties prijungta tavo pelë."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Nustatomos PCMCIA plokđtes..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Nustatome IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "nëra prieinamř skirsniř"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Perţiűrimi skirsniai, ieđkant montavimo tađkř"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Pasirink montavimo tađkus"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4556,7 +4652,7 @@ msgstr ""
"\n"
"Ar sutinki prarasti visus skirsnius?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4564,140 +4660,143 @@ msgstr ""
"DiskDrake nesugebëjo teisingai perskaityti skirsniř lentelës.\n"
"Tćsk savo paties rizika!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Nerastas pagrindinis skirsnis"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Đakninis skirsnis"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Kur yra tavo sistemos đakninis skirsnis (/)?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Tau reikia perkrauti kompiuterá, kad skirsniř lentelës pakeitimai bűtř "
"naudojami"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Pasirink skirsnius, kuriuos nori suţymëti"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Ieđkoti blogř blokř?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Suţymimi skirsniai"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Sukuriama ir suţymima byla %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Nepakanka swap atminties ádiegimo vykdymui, prađom praplësti"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Ieđkomi galimi paketai"
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "Ieđkomi galimi paketai"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Ieđkoma atnaujintinř paketř"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Tu negali atţymëti đio paketo. Jis jau yra ádiegtas"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr "Tavo sistemoje neuţtenka vietos ádiegimui arba atnaujinimui (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Pilnai (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimaliai (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Rekomenduojama (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
#, fuzzy
msgid "Load from floppy"
msgstr "Atstatyti iđ diskelio"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Loading from floppy"
msgstr "Atstatyti iđ diskelio"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Package selection"
msgstr "Paketř grupiř pasirinkimas"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Ádëk diskelá á kaupiklá %s"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Iđsaugoti á diskelá"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
#, fuzzy
msgid "Type of install"
msgstr "Pasirink paketŕ ádiegimui"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
#, fuzzy
msgid "With X"
msgstr "Palauk"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4707,16 +4806,16 @@ msgstr ""
"Jei neturi në vieno iđ điř CD, spausk Nutraukti.\n"
"Jei trűksta tik kai kuriř CD, atţymëk juos, o tada spausk Gerai."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM su uţrađu \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Ruođiamas ádiegimas"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4725,23 +4824,23 @@ msgstr ""
"Ádiegiamas paketas %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Konfigűracija po ádiegimo"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Ádëk diskelá á kaupiklá %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Ádëk tuđčiŕ diskelá á kaupiklá %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -4794,171 +4893,202 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Jungiamasi prie atvaizdţio (mirror), kad gautume prieinamř paketř sŕrađŕ"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Pasirink atvaizdá (mirror), iđ kurio imti paketus"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
"Jungiamasi prie atvaizdţio (mirror), kad gautume prieinamř paketř sŕrađŕ"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Kokia tavo laiko juosta?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Ar tavo árangos laikrodis nustatytas GMT?"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
#, fuzzy
msgid "NTP Server"
msgstr "NIS serveris"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Nutolćs CUPS serveris"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Spausdintuvo nëra"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Ar turi dar vienŕ?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Apibendrinimas"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Pelë"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Laiko juosta"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Spausdintuvas"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
#, fuzzy
msgid "ISDN card"
msgstr "Vidinë ISDN plokđtë"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
#, fuzzy
msgid "Sound card"
msgstr "Standartinë"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "NIS"
msgstr "Naudoti NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Iđmesti Windows(TM)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Local files"
msgstr "Vietinis spausdintuvas"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Nurodyti root slaptaţodá"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Jokio slaptaţodţio"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Đis slaptaţodis yra pernelyg paprastas (turi bűti bent %d simboliř ilgio)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autentikacija"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
#, fuzzy
msgid "Authentication LDAP"
msgstr "Autentikacija"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "LDAP Server"
msgstr "serveris"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
#, fuzzy
msgid "Authentication NIS"
msgstr "Autentikacijos NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS domenas"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS serveris"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Autentikacija"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "NIS domenas"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NIS serveris"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -4988,19 +5118,19 @@ msgstr ""
"Jei nori sukurti ákrovos diskelá savo sistemai, ákiđk diskelá á pirmŕjá\n"
"árenginá ir spausk \"Gerai\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Pirmasis diskeliř árenginys"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Antrasis diskeliř árenginys"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Praleisti"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5029,7 +5159,7 @@ msgstr ""
"Ar tu nori sukurti ákrovos diskelá?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5038,28 +5168,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Atleisk, bet neradau jokio diskeliř kaupiklio"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Pasirink kaupiklá, kurá nori naudoti ákrovos diskeliui sukurti"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Ádëk diskelá á kaupiklá %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Kuriamas ákrovos diskelis"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Ruođiama ákrovos tvarkyklë"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5067,11 +5197,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Ar nori naudoti aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5079,16 +5209,16 @@ msgstr ""
"Klaida ádiegiant aboot,\n"
"bandyti ádiegti priverstinai, net jei tai sunaikintř pirmŕjá skirsná?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
#, fuzzy
msgid "Installing bootloader"
msgstr "Ádiegti ákrovos tvarkyklć"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Nepavyko ádiegti ákrovos tvarkyklës. Ávyko tokia klaida:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5099,18 +5229,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Ádëk tuđčiŕ diskelá á kaupiklá %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Kuriamas automatinio ádiegimo diskelis"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5120,7 +5249,8 @@ msgstr ""
"\n"
"Ar tu nori iđeiti dabar?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5131,7 +5261,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5145,17 +5275,21 @@ msgstr ""
"pasiţiűrëk á Errata, kuris yra \n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Informacija apie tavo sistemos konfigűravimŕ yra oficialioje\n"
"Mandrake Linux User's Guide knygoje."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Sukurti automatinio ádiegimo diskelá"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5169,15 +5303,15 @@ msgstr ""
"\n"
"Jűs galbűt norësite pakartoti ádiegimŕ.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automatinis"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Parodyti vël"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Iđsaugoti paketř pasirinkimŕ"
@@ -5206,422 +5340,406 @@ msgstr ""
msgid "Choose a file"
msgstr "Pasirink veiksmŕ"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Iđplëstinis"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Prađom palaukti"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Iđskleisti medá"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Suskleisti medá"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Perjungti tarp rikiavimo pagal grupes ar abëcëlć"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Blogas pasirinkimas, bandyk vël\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Tavo pasirinkimas? (pagal nutylëjimŕ %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Tavo pasirinkimas? (pagal nutylëjimŕ %s) "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Pasirinktys: %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr "Ar nori naudoti aboot?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Tavo pasirinkimas? (pagal nutylëjimŕ %s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Čekř (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Vokiečiř"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorako"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Ispanř"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Suomiř"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Prancűzř"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norvegř"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Lenkř"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Rusř"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Đvedř"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Jungtinës karalystës klaviatűra"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "JAV klaviatűra"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Albanian"
msgstr "Iraniečiř"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armënř (senoji)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armënř (spausd. mađinëlës)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armënř (fonetinë)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidţaniečiř (lotyniđka)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgř"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armënř (fonetinë)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Bulgarř"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brazilř (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Baltarusiř"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Đveicarř (Vokiđkas iđdëstymas)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Đveicarř. (Prancűziđkas iđdëstymas)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Čekř (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Vokiečiř (be mirusiř klaviđř)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Danř"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorako (JAV)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorako (Norvegř)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorako (JAV)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estř"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Gruzinř (\"Rusiđkas\" iđdëstymas)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Gruzinř (\"Latin\" iđdëstymas)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Graikř"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Vengrř"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Kroatř"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Izraelio"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Ţydř (Fonetinë)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iraniečiř"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islandř"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Italř"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Japoniđka 106 klaviđř"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
#, fuzzy
msgid "Korean keyboard"
msgstr "Jungtinës karalystës klaviatűra"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Lotynř Amerikos"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Lietuviř ŔŢERTY (sena)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Lietuviř ŔŢERTY (nauja)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lietuviř \"skaičiř eilë\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lietuviř \"fonetinë\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
#, fuzzy
msgid "Latvian"
msgstr "Vieta"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Makedoniečiř"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Olandř"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Lenkř (QWERTY iđdëstymas)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Lenkř (QWERTZ iđdëstymas)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugalř"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Kanadiečiř (Kvebeko)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Rusiđka (Yawerty)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Rusiđka (Yawerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Rusiđka (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slovënř"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovakř (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovakř (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Azerbaidţaniečiř (kirilica)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Lentelë"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thai klaviatűra"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Thai klaviatűra"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turkř (tradicinis \"F\" modelis)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turkř (điuolaikinis \"Q\" modelis)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukrainiečiř"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "JAV klaviatűra (tarptautinë)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamiečiř \"skaičiř eilë\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Jugoslavř (lotyniđkas/kirilikos)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5634,7 +5752,31 @@ msgstr "Loopback montavimai %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Pirmiausia iđmeskite loginius tomus\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Telefono numeris"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Suţymëti skirsnius"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5676,10 +5818,6 @@ msgstr "2 klaviđř"
msgid "Generic 2 Button Mouse"
msgstr "Paprasta 2 klaviđř pelë"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Paprasta"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Su ratuku"
@@ -5744,38 +5882,54 @@ msgstr "jokios"
msgid "No mouse"
msgstr "Pelës nëra"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Prađom iđbandyti pelć"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Kad suţadintum pelć,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "PASUK RATUKŔ!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Suomiř"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Toliau ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Ankstesnis"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Ar taip teisinga?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Info"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Iđskleisti medá"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Suskleisti medá"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Perjungti tarp rikiavimo pagal grupes ar abëcëlć"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Prisijungti prie interneto"
@@ -5822,7 +5976,7 @@ msgstr ""
"Neradau jokio ethernet tinklo adapterio tavo sistemoje.\n"
"Ađ negaliu sutvarkyti đio jungties tipo."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Pasirink tinklo interfeisŕ"
@@ -5837,7 +5991,7 @@ msgstr ""
msgid "no network card found"
msgstr "nerasta jokia tinklo plokđtë"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Konfigűruojamas tinklas"
@@ -5853,15 +6007,15 @@ msgstr ""
"tai turëtř bűti pilnai aprađytas hosto vardas, panađus\n"
"á \"mano.filialas.istaiga.lt\"."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Hosto vardas"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Tinklo Konfigűravimo Meistras"
@@ -5909,7 +6063,7 @@ msgstr "ISDN konfigűravimas"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Pasirink savo tiekëjŕ.\n"
" Jei jo nëra sŕrađe, pasirink Unlisted"
@@ -5932,14 +6086,14 @@ msgstr "Likćs pasaulis"
#: ../../network/isdn.pm_.c:185
#, fuzzy
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Likćs pasaulis \n"
" be D-Channel (nuomojamos linijos)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Kurá protokolŕ nori naudoti?"
#: ../../network/isdn.pm_.c:199
@@ -5963,7 +6117,8 @@ 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"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Jei tu turi ISA plokđtć, reikđmës sekančiame ekrane turëtř bűti teisingos.\n"
@@ -5979,13 +6134,13 @@ msgid "Continue"
msgstr "Tćsti"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Kuri yra tavo ISDN plokđtë?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Ađ aptikau ISDN PCI plokđtć, tačiau neţinau jos tipo. Pasirink vienŕ PCI "
"plokđtć sekančiame ekrane."
@@ -6004,49 +6159,49 @@ msgstr ""
msgid "Dialup options"
msgstr "Prisiskambinimo nustatymai"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Jungties pavadinimas"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Telefono numeris"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Pasisveikinimo ID"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Paremtas skriptu"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Paremtas terminalu"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Domeno vardas"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
#, fuzzy
msgid "First DNS Server (optional)"
msgstr "Pirmasis DNS serveris"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
#, fuzzy
msgid "Second DNS Server (optional)"
msgstr "Antrasis DNS serveris"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6054,7 +6209,7 @@ msgstr ""
"\n"
"Tu gali atsijungti arba iđ naujo nustatyti jungtá."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6062,11 +6217,11 @@ msgstr ""
"\n"
"Tu gali iđ naujo nustatyti jungtá."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Tu dabar esi prisijungćs prie interneto."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6074,37 +6229,37 @@ msgstr ""
"\n"
"Tu gali prisijungti prie interneto arba iđ naujo nustatyti jungtá."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Tu dabar nesi prisijungćs prie interneto."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Connect"
msgstr "Sujungimas..."
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
#, fuzzy
msgid "Disconnect"
msgstr "Sujungimas..."
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "Nustatyti tinklŕ"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Interneto jungtis ir nustatymas"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
"\n"
"Tu gali atsijungti arba iđ naujo nustatyti jungtá."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, fuzzy, c-format
msgid ""
"\n"
@@ -6118,12 +6273,12 @@ msgstr ""
"\n"
"Tu gali atsijungti arba iđ naujo nustatyti jungtá."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Tinklo konfigűravimas"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
#, fuzzy
msgid ""
"Because you are doing a network installation, your network is already "
@@ -6135,10 +6290,10 @@ msgstr ""
"Spragtelëkite ant Gerai kad perkonfiguruoti Network/Internet pasijungimŕ "
"arbaatđaukti, kad praleisti đá punktŕ.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
#, fuzzy
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"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"
@@ -6148,93 +6303,99 @@ msgstr ""
"Mes ruođiamës konfiguruoti jűsř internet/tinkliná pasijungimŕ.\n"
"Jeigu nenorite naudoti automatinio aptikimo nuimkite điŕ atţymŕ.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Konfiguravimui pasirinkite prifailŕ"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Naudokite automatiná aptikimŕ"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Experto reţimas"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Ieđkoma áranga..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Nustatyti normaliŕ jungtá per modemŕ"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "aptiktas prievade %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN jungtis"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "aptiktas %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy
msgid "ADSL connection"
msgstr "LAN jungtis"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "aptiktas interfeise %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Kabelinë jungtis"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "cable connection detected"
msgstr "Kabelinë jungtis"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "LAN jungtis"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "aptiktos ethernet kortos(a)"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Pasirink kurá áranká norëtum naudoti"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
#, fuzzy
msgid "Internet connection"
msgstr "Interneto jungties dalinimas"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Ar tu nori prisijungti tik ájungus?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Tinklo konfigűravimas"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6242,7 +6403,7 @@ msgid ""
"%s"
msgstr "Ar tu nori iđ naujo paleisti tinklŕ"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6252,7 +6413,7 @@ msgstr ""
"\n"
"Dabar konfiguracijŕ pritaikysime sistemai.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6260,16 +6421,16 @@ msgstr ""
"Po to rekomenduojame jums perleisti X aplinkŕ,\n"
"kad iđvengti problemř su kompiuterio vardu."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"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."
@@ -6280,7 +6441,7 @@ msgstr ""
"Jei pakeisi kŕ nors ţemiau esančiuose laukuose, tai ásigalios vietoj senřjř "
"nuostatř."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6290,38 +6451,43 @@ msgstr ""
"Kiekvienas laukas turi bűti árađytas kaip IP adresas\n"
"deđimtainiais skaičiais su tađkais (pvz. 192.168.2.36)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Konfigűruojamas tinklo árenginys %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (tvarkyklë %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP adresas"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Automatinis IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Startavo ákrovos metu"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP adresas turëtř bűti 1.2.3.4 formato"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6333,64 +6499,64 @@ msgstr ""
"á \"mano.filialas.istaiga.lt\".\n"
"Taip pat gali ávesti đliuzo (gateway) IP adresŕ, jeigu toká turi"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS serveris"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Đliuzo (gateway) árenginys"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Proxy konfigűracija"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Proxy turëtř bűti http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Proxy turëtř bűti ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Interneto konfigűravimas"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Ar nori pabandyti prisijungti prie interneto dabar?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Iđbandoma jungtis..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Sistema dabar prijungta prie interneto."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr ""
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6398,114 +6564,119 @@ msgstr ""
"Neatrodo, kad sistema dabar prijungta prie interneto.\n"
"Bandyk iđ naujo konfigűruoti jungtá."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Jungties konfigűravimas"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Prađom uţpildyti arba patikrinti đá laukelá"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "Plokđtës IRQ"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Plokđtës mem (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "Plokđtës IO"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "Plokđtës IO_0"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "Plokđtës IO_1"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Tavo asmeninis tel. numeris"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Tiekëjo pavadinimas (pvz. tiekejas.lt)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Tiekëjo telefono numeris"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Tiekëjo DNS 1 (pasirinktinai)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Tiekëjo DNS 2 (pasirinktinai)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
#, fuzzy
msgid "Choose your country"
msgstr "Pasirink klaviatűrŕ"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Skambinimo reţimas"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection speed"
msgstr "Jungties tipas: "
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Jungties tipas: "
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Pasisveikinimas (vartotojo vardas)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Slaptaţodis"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "primontuoti nepavyko: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Iđplëstiniai skirsniai đioje platformoje nepalaikomi"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Skirsniř lentelëje yra tuđčios vietos, bet ji negali bűti panaudota.\n"
"Vienintelis sprendimas yra perkelti pirminius skirsnius taip, kad tuđčia "
"vieta bűtř đalia iđplëstiniř skirsniř"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Nepavyko atstatyti iđ bylos %s: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Bloga atsarginë byla"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Klaida árađant á bylŕ %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6515,193 +6686,193 @@ msgstr ""
"Bandymas pabandyti jo vientisumŕ nepavyko. \n"
"Tai sako, kad rađymas á já bus visiđkas mëđlas. "
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "turi turëti"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "svarbus"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "labai gerai"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "nuostabu"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "galbűt"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr ""
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr ""
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Vietinis spausdintuvas"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Nutolćs spausdintuvas"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "Nutolćs CUPS serveris"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Nutolćs lpd serveris"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Tinklo spausdintuvas (TCP/lizdas)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Spausdinimo serveris"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Spausdintuvo árenginio URI"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr "Vietinis spausdintuvas"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr "Nutolćs spausdintuvas"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Klaida árađant á bylŕ %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(modulis %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "CUPS serverio IP"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Áprastas)"
@@ -6724,12 +6895,12 @@ msgstr ""
"jokiř spausdintuvř; jie bus automatiđkai atpaţástami.\n"
"Jeigu abejoji, pasirink \"Nutolćs CUPS serveris\"."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "LAN Konfiguravimas"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "Nutolćs CUPS serveris"
@@ -6760,7 +6931,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP adresas turëtř bűti 1.2.3.4 formato"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
#, fuzzy
msgid "The port number should be an integer!"
msgstr "Prievado numeris turi bűti skaičius"
@@ -6769,7 +6940,7 @@ msgstr "Prievado numeris turi bűti skaičius"
msgid "CUPS server IP"
msgstr "CUPS serverio IP"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Prievadas"
@@ -6778,22 +6949,13 @@ msgstr "Prievadas"
msgid "Automatic CUPS configuration"
msgstr "Ádiegimo Tipo Konfiguracija"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "Ieđkoma áranga..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Patikrinti prievadus"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "Spausdintuvo nëra"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6806,14 +6968,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr "Vietinis spausdintuvas"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6831,12 +6993,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "Nutolćs spausdintuvas"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6850,11 +7012,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6864,35 +7026,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "Naudokite automatiná aptikimŕ"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "Nutolćs spausdintuvas"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Patikrinti prievadus"
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "aptiktas %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
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, ..., "
@@ -6900,43 +7066,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Spausdintuvo árenginio URI"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr "Vietinis spausdintuvas"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6944,7 +7110,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6952,75 +7118,85 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr ""
"Prađom pasirinkti, prie kurios nuosekliosios jungties yra prijungtas tavo "
"modemas."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Spausdintuvo árenginio URI"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "Nustatymai"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "Ádiegiamas paketas %s"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing SANE packages..."
msgstr "Ádiegiamas paketas %s"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Ádiegiamas paketas %s"
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
#, fuzzy
-msgid "Making printer port available for CUPS ..."
+msgid "Making printer port available for CUPS..."
msgstr "Skaitoma CUPS tvarkykliř duomenř bazë"
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
#, fuzzy
-msgid "Reading printer database ..."
+msgid "Reading printer database..."
msgstr "Skaitoma CUPS tvarkykliř duomenř bazë"
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Nutolusio lpd spausdintuvo nuostatos"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7030,31 +7206,31 @@ msgstr ""
"nurodyti to serverio hosto vardŕ ir pavadinimŕ eilës, kurioje\n"
"bus talpinami darbai."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
#, fuzzy
msgid "Remote host name"
msgstr "Nutolusio hosto vardas"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
#, fuzzy
msgid "Remote printer name"
msgstr "Nutolćs spausdintuvas"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
#, fuzzy
msgid "Remote host name missing!"
msgstr "Nutolusio hosto vardas"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Nutolusio hosto vardas"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) spausdintuvo nuostatos"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7067,35 +7243,35 @@ msgstr ""
"jo TCP/IP hosto vardo!) ir galbűt spausdinimo serverio IP adresŕ,\n"
"spausdintuvo share'o vardŕ, vartotojo vardŕ, slaptaţodá ir darbo grupës vardŕ"
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "SMB serverio hostas"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "SMB serverio IP"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Share'o vardas"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Darbo grupë"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7119,7 +7295,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7128,7 +7304,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7136,11 +7312,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "NetWare spausdintuvo nuostatos"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7154,28 +7330,28 @@ msgstr ""
"spausdintuvui,\n"
"prie kurio nori prieiti, bei reikalingus vartotojo vardŕ ir slaptaţodá."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Spausdinimo serveris"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Spausdinimo eilës pavadinimas"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Lizdinio spausdintuvo nuostatos"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
@@ -7186,60 +7362,56 @@ msgstr ""
"Kad galëtum spausdinti á lizdiná spausdintuvŕ, turi pateikti\n"
"spausdintuvo hosto vardŕ ir, galbűt, prievado numerá."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
#, fuzzy
msgid "Printer host name"
msgstr "Spausdintuvo hosto vardas"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
#, fuzzy
msgid "Printer host name missing!"
msgstr "Spausdintuvo hosto vardas"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Spausdintuvo árenginio URI"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
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 ""
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Spausdintuvo vardas"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Aprađymas"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Vieta"
-#: ../../printerdrake.pm_.c:1021
+#: ../../printerdrake.pm_.c:1045
#, fuzzy
-msgid "Preparing printer database ..."
+msgid "Preparing printer database..."
msgstr "Skaitoma CUPS tvarkykliř duomenř bazë"
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "Nutolćs spausdintuvas"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7254,28 +7426,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "Ar taip teisinga?"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "Nutolćs spausdintuvas"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
#, fuzzy
msgid "Printer model selection"
msgstr "Spausdintuvo jungtis"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Kokio tipo yra tavo spausdintuvas?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7284,18 +7456,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Modemo Nustatymai"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7305,12 +7477,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Interneto konfigűravimas"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7318,7 +7490,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7331,7 +7503,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7341,34 +7513,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Ar tu nori iđbandyti spausdinimŕ?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
#, fuzzy
msgid "Test pages"
msgstr "Patikrinti prievadus"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7376,45 +7548,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
#, fuzzy
msgid "No test pages"
msgstr "Taip, spausdinti abu bandomuosius puslapius"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
#, fuzzy
msgid "Print"
msgstr "Spausdintuvas"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
#, fuzzy
msgid "Standard test page"
msgstr "Standartinë"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Spausdinamas bandomasis puslapis..."
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
#, fuzzy
msgid "Photo test page"
msgstr "Spausdinamas bandomasis puslapis..."
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "Spausdinamas bandomasis puslapis..."
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Spausdinamas bandomasis puslapis..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7430,7 +7602,7 @@ msgstr ""
"\n"
"Ar jis veikia teisingai?"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7440,16 +7612,16 @@ msgstr ""
"Kol bus pradëta spausdinti, gali tekti palaukti.\n"
"Ar jis veikia teisingai?"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "Spausdintuvo nëra"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7458,15 +7630,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
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 ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7475,49 +7647,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, 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\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7527,7 +7699,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7536,31 +7708,42 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-#, fuzzy
-msgid "Close"
-msgstr "Pelë"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Iđjungiamas tinklas"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Iđjungiamas tinklas"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Iđjungiamas tinklas"
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Iđjungiamas tinklas"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+#, fuzzy
+msgid "Close"
+msgstr "Pelë"
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "Spausdintuvo nuostatos"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7568,38 +7751,38 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
#, fuzzy
-msgid "Reading printer data ..."
+msgid "Reading printer data..."
msgstr "Skaitoma CUPS tvarkykliř duomenř bazë"
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Interneto konfigűravimas"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7609,51 +7792,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7661,62 +7844,62 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid "New printer name"
msgstr "Spausdintuvo nëra"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, 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 ""
-#: ../../printerdrake.pm_.c:1887
+#: ../../printerdrake.pm_.c:1935
#, fuzzy
-msgid "Refreshing printer data ..."
+msgid "Refreshing printer data..."
msgstr "Skaitoma CUPS tvarkykliř duomenř bazë"
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Nustatyti spausdintuvŕ"
-#: ../../printerdrake.pm_.c:1896
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
-msgid "Starting network ..."
+msgid "Starting network..."
msgstr "Iđbandoma jungtis..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr "Nustatyti tinklŕ"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "Monitorius nenurodytas"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7724,12 +7907,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Konfigűruojamas tinklas"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7739,34 +7922,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
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 ""
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
-msgid "Restarting printing system ..."
+msgid "Restarting printing system..."
msgstr "Kuriŕ spausdinimo sistemŕ nori naudoti?"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "Aukđtas"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "Paranojiđkas"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7781,12 +7964,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Kuriŕ spausdinimo sistemŕ nori naudoti?"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7800,69 +7983,69 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Pasirink spausdintuvo jungtá"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Kuriŕ spausdinimo sistemŕ nori naudoti?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Nustatyti spausdintuvŕ"
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr "Ádiegiamas paketas %s"
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Spausdintuvo nuostatos"
-#: ../../printerdrake.pm_.c:2318
+#: ../../printerdrake.pm_.c:2389
#, fuzzy
-msgid "Preparing PrinterDrake ..."
+msgid "Preparing PrinterDrake..."
msgstr "Skaitoma CUPS tvarkykliř duomenř bazë"
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Nustatyti spausdintuvŕ"
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Ar nori nustatyti spausdintuvŕ?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7873,7 +8056,7 @@ msgstr ""
"Čia yra đios spausdinimo eilës.\n"
"Tu gali čia pridëti daugiau arba pakeisti esamas."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7883,140 +8066,144 @@ msgstr ""
"Čia yra đios spausdinimo eilës.\n"
"Tu gali čia pridëti daugiau arba pakeisti esamas."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Nustatyti tinklŕ"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
#, fuzzy
msgid "Normal Mode"
msgstr "Normali"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Iđeiti"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Ar tu nori iđbandyti nustatymus?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
#, fuzzy
msgid "Modify printer configuration"
msgstr "Modemo Nustatymai"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Ar tu nori iđbandyti nustatymus?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
#, fuzzy
msgid "Printer connection type"
msgstr "Interneto jungties dalinimas"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
#, fuzzy
msgid "Printer name, description, location"
msgstr "Spausdintuvo jungtis"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
#, fuzzy
msgid "Print test pages"
msgstr "Spausdinamas bandomasis puslapis..."
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "Ar tu nori iđbandyti nustatymus?"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
#, fuzzy
msgid "Remove printer"
msgstr "Nutolćs spausdintuvas"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
msgstr "Skaitoma CUPS tvarkykliř duomenř bazë"
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
#, fuzzy
msgid "Default printer"
msgstr "Vietinis spausdintuvas"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Ar tu nori iđ naujo paleisti tinklŕ"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr "Skaitoma CUPS tvarkykliř duomenř bazë"
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -8100,24 +8287,61 @@ msgstr "Slaptaţodţiai nesutampa"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Negaliu pridëti skirsnio prie _formatuoto_ RAID md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Negaliu árađyti bylos %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid nepavyko"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid nepavyko (gal bűt trűksta raidtools?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nëra pakankamai sričiř %d lygio RAID\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Điame lygyje reikia elgtis atsargiai. Tai leidţia lengviau naudoti sistemŕ,\n"
+"bet labai jautriai: ji turëtř nebűti naudojama kompiuteriuose,\n"
+"sujungtais su kitais arba prie Interneto. Čia nëra slaptaţodţiř."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+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 ""
+"Su điuo saugumo lygiu sistemŕ jau galima naudoti kaip serverá. Saugumas\n"
+"yra pakankamai aukđtas, kad sistemŕ bűtř galima naudoti serveriui, kuris "
+"priima\n"
+"prisijungimus iđ daugybës klientř."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "LAN Konfiguravimas"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Pasirinktys"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -8173,7 +8397,7 @@ msgid ""
"new/changed hardware."
msgstr ""
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8241,7 +8465,7 @@ msgid ""
"available server."
msgstr ""
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -8318,7 +8542,7 @@ msgstr ""
"kompiuteriuose,\n"
"kurie veikia kaip serveriai protokolř, naudojančiř PS jungtis."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -8415,7 +8639,7 @@ msgstr "Internetas"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "Sistemos reţimas"
@@ -8540,6 +8764,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Prisijungti prie interneto"
@@ -8644,6 +8869,15 @@ msgstr ""
msgid "Installing packages..."
msgstr "Ádiegiamas paketas %s"
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Prađom atsisveikinti ir paskui paspausti Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Prađom iđ naujo paleisti %s, kad pakeitimai bűtř aktyvuoti"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8652,6 +8886,161 @@ msgstr ""
"Ađ negaliu perskaityti tavo skirsniř lentelës, ji man pernelyg sugadinta :(\n"
"Pabandysiu iđvalyti blogus skirsnius"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Interneto konfigűravimas"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Serveris, Duomenř baziř"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Serveris, Duomenř baziř"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS serveris"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS serveris"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Pridëti vartotojŕ"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP klientas"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#, fuzzy
+msgid "Help"
+msgstr "/Pagalba"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Nepajungtas"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Iđtrinti"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Pasirink bylŕ"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Pridëti vartotojŕ"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "DHCP klientas"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Konfigűruojama..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "iđ naujo nustatyti"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Ádëk diskelá á kaupiklá %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Neprieinamas në vienas diskeliř kaupiklis"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
#, fuzzy
msgid "Error!"
@@ -8693,6 +9082,11 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Kuriamas automatinio ádiegimo diskelis"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -8701,47 +9095,40 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Sveikiname!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "Ádiegti"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "Pridëti vartotojŕ"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "Suţymima loopback byla %s"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8749,15 +9136,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8765,712 +9144,775 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#, c-format
+msgid ""
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "Klaida skaitant bylŕ %s"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "Paketř grupiř pasirinkimas"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Pasirink paketus, kuriuos tu nori ádiegti."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "Pađalinti eilć"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Iđmesti Windows(TM)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr "Vartotojo vardas"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Prađom iđbandyti pelć"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "Prađom bandyti vël"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "Prađom bandyti vël"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "Jokio slaptaţodţio"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "LAN jungtis"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Pasirink spausdintuvo jungtá"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Prađom pasirinkti klaviatűros iđdëstymŕ."
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Prađom spragtelëti ant skirsnio"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr "Pasirink paketus, kuriuos tu nori ádiegti."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Pasirink paketus, kuriuos tu nori ádiegti."
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "Prađom iđbandyti pelć"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "Tinklo interfeisas"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Rűđis"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "Vartotojo vardas"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Pasirink paketus, kuriuos tu nori ádiegti."
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Prađom pasirinkti kalbŕ, kuriŕ naudosi."
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Ar naudoti kieto disko optimizavimŕ?"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Ar naudoti kieto disko optimizavimŕ?"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
#, fuzzy
msgid "What"
msgstr "Palauk"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr "Su ratuku"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr "Su ratuku"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "Modulio parinktys:"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Tinklo konfigűravimas"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Pasirink paketus, kuriuos tu nori ádiegti."
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Pasirink paketus, kuriuos tu nori ádiegti."
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "Nustatyti bylř sistemas"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Pelës árenginys: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save to Tape on device : %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, c-format
+msgid ""
+"\n"
+"- Save via %s on host : %s\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Pasirinktys"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr ""
"Prađom pasirinkti, prie kurios nuosekliosios jungties yra prijungtas tavo "
"modemas."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "Tinklo konfigűravimas"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "Prađom pasirinkti savo pelës rűđá."
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Prađom iđbandyti pelć"
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "LAN jungtis"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Pasirink spausdintuvo jungtá"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Atstatyti iđ diskelio"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "Prađom pasirinkti savo pelës rűđá."
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "Kitas"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "Ádiegti sistemŕ"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "Atstatyti iđ bylos"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "Atstatyti iđ bylos"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "Prisitaikyti"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/Pagalba"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
#, fuzzy
msgid "Previous"
msgstr "<- Ankstesnis"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr "Bűsena:"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr "Atstatyti iđ bylos"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr "Tekstas"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "Pasirinkti paketus"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Ruođiamasi ádiegti điuos paketus"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "Prađom pasirinkti kalbŕ, kuriŕ naudosi."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "Prađom pasirinkti kalbŕ, kuriŕ naudosi."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "Prađom pasirinkti kalbŕ, kuriŕ naudosi."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "Iđsaugoti á bylŕ"
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "Prađom iđbandyti pelć"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr "Pasirink paketus, kuriuos tu nori ádiegti."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Tinklo konfigűravimas"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "Tinklo konfigűravimas"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "LAN Konfiguravimas"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "LAN Konfiguravimas"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "Nustatyti bylř sistemas"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9502,7 +9944,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9511,7 +9953,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9552,7 +9994,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9580,12 +10022,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -9602,7 +10049,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9642,7 +10089,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9653,7 +10100,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9666,7 +10113,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9710,105 +10157,528 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "%s ádiegimas nepavyko. Ávyko tokia klaida:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Konsolës árankiai"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "Prisijungti prie interneto"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "privalomas"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Pelë"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Nutolćs spausdintuvas"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Share'o vardas"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Printerdrake"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Tinklo Konfigűravimo Meistras"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Autentikacija"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Paketř grupiř pasirinkimas"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Prađom palaukti"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Iđeiti iđ ádiegimo"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "Prievadas"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Tu gali pasirinkti kitas kalbas, kurios bus prieinamos po ádiegimo"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Tinklo konfigűravimas (%d adapteris)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profailas: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Iđtrinti profailŕ..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Profailas iđtrynimui:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Naujas profailas..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Kompiuterio vardas:"
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Priëjimas prie Interneto"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Tipas: "
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Đliuzas (Gateway):"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Interfeisas:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Bűsena:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Nustatyti Priëjimŕ prie Internet..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "LAN konfiguravimas"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Tvarkyklë"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Interfeisas"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "Protocol"
+msgstr "Protokolas"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "State"
+msgstr "Bűsena:"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Nustatyti Vietiná Tinklŕ..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Meistras..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:302
+#, fuzzy
+msgid "Please Wait... Applying the configuration"
+msgstr "Nustatymř tikrinimas"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#, fuzzy
+msgid "Connected"
+msgstr "Sujungimas..."
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Nepajungtas"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Sujungimas..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#, fuzzy
+msgid "Disconnect..."
+msgstr "Sujungimas..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "LAN Konfiguravimas"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Adapteris %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Ákrovos Protokolas"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Startavo ákrovos metu"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP klientas"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "activate now"
+msgstr "Aktyvus"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "deactivate now"
+msgstr "Aktyvus"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Interneto jungties konfiguravimas"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Interneto Jungties Konfiguravimas"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Jungties tipas: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parametrai"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Đliuzas (Gateway)"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Ethernet Korta"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP klientas"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "naudojimas: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Modulio vardas"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Dydis"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "ákrovos diskelio sukűrimui"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "áprastas"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "DrakFloppy klaida: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "branduolio (kernel) versija"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Bendrai"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Experto sritis"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "pasirinktini mkinitrd argumentai"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Pridëti modulá"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "per jëgŕ"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "jeigu reikia"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "praleisti SCSI modulius"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "praleisti RAID modulius"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Iđmesti modulá"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Iđvedimas"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Sukurti diskelá"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:427
+#, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:429
+#, fuzzy, c-format
+msgid "Unable to fork: %s"
+msgstr "Uţdrausti tinklŕ"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "%s nerastas"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr "Atlikta"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
#, fuzzy
msgid "Fonts copy"
msgstr "Suţymëti diskelá"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "Ruođiamas ádiegimas"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
#, fuzzy
msgid "Restart XFS"
msgstr "grieţta"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "grieţta"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -9817,122 +10687,121 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "Suţymëti skirsnius"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
#, fuzzy
msgid "Uninstall Fonts"
msgstr "Iđmetami RPM'ai"
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "LAN Konfiguravimas"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr "Prijungimo vieta"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Pasirink skirsnius, kuriuos nori suţymëti"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "Biuras"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr "Nutraukti"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr "Spausdintuvas"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "Ádiegti sistemŕ"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "Pasirink bylŕ"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "Nutolćs spausdintuvas"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr ""
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr "Tavo sistemoje nerasta jokia tinklo plokđtë!"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "Ádiegti"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr "Tavo sistemoje nerasta jokia tinklo plokđtë!"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "Iđeiti iđ ádiegimo"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Interneto jungties dalinimas"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Interneto jungties dalinimas điuo metu ájungtas"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -9944,33 +10813,33 @@ msgstr ""
"\n"
"Tai kŕ norëtum daryti?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "iđjungti"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "nieko"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "iđ naujo nustatyti"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
#, fuzzy
msgid "Disabling servers..."
msgstr "Ieđkoma áranga..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
#, fuzzy
msgid "Internet connection sharing is now disabled."
msgstr "Interneto jungties dalinimas điuo metu iđjungtas"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Interneto jungties dalinimas điuo metu iđjungtas"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -9982,20 +10851,20 @@ msgstr ""
"\n"
"Tai kŕ norëtum daryti?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "ájungti"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
#, fuzzy
msgid "Internet connection sharing is now enabled."
msgstr "Interneto jungties dalinimas điuo metu ájungtas"
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
#, fuzzy
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -10013,21 +10882,21 @@ msgstr ""
"\n"
"Ar norëtum sutvarkyti interneto jungties dalinimŕ?"
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr ""
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, fuzzy, c-format
msgid "Interface %s"
msgstr "Interfeisas"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Tavo sistemoje nerasta jokia tinklo plokđtë!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10035,11 +10904,11 @@ msgstr ""
"Tavo sistemoje nerasta jokia tinklo plokđtë. prađom paleisti árangos "
"nustatymo áranká."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Tinklo interfeisas"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, fuzzy, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10054,19 +10923,19 @@ msgstr ""
"\n"
"Ar norëtum sutvarkyti savo vietiná tinklŕ điai plokđtei?"
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Prađom pasirinkti, kuri tinklo plokđtë bus prijungta prie vietinio tinklo."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "Monitorius nenurodytas"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10076,17 +10945,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Ádiegimo Tipo Konfiguracija"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "Modemo Nustatymai"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10097,7 +10966,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
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 C-Class Network that "
@@ -10109,33 +10978,33 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "CUPS serverio IP"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Rastas galimas LAN adreso konfliktas esamose %s nuostatose!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Aptikta ugniasienës konfigűracija!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10143,21 +11012,21 @@ msgstr ""
"Áspëjimas! Aptikta ugniasienës konfigűracija! Tau gali tekti kai kŕ "
"iđtaisyti rankomis po ádiegimo."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Konfigűruojama..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Konfigűruojami skriptai, ádiegiamos programos, paleidţiami serveriai..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Yra problemř ádiegiant paketŕ %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10167,7 +11036,7 @@ msgstr ""
"Tu gali dabar dalintis interneto jungtimi su kitais kompiuteriais vietiniame "
"tinkle, naudojant automatinć tinklo konfigűracijŕ (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
#, fuzzy
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
@@ -10176,7 +11045,7 @@ msgstr ""
"\n"
"Tai kŕ norëtum daryti?"
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
#, fuzzy
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
@@ -10185,17 +11054,17 @@ msgstr ""
"\n"
"Tai kŕ norëtum daryti?"
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
#, fuzzy
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Interneto jungties dalinimas điuo metu ájungtas"
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
#, fuzzy
msgid "Internet connection sharing configuration"
msgstr "Interneto jungtis ir nustatymas"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, fuzzy, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10205,213 +11074,6 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Interneto jungties dalinimas"
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Tinklo konfigűravimas (%d adapteris)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profailas: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Iđtrinti profailŕ..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Profailas iđtrynimui:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Naujas profailas..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Kompiuterio vardas:"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Priëjimas prie Interneto"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tipas: "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Đliuzas (Gateway):"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Interfeisas:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Bűsena:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Nustatyti Priëjimŕ prie Internet..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "LAN konfiguravimas"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Tvarkyklë"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interfeisas"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "Protocol"
-msgstr "Protokolas"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Bűsena:"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Nustatyti Vietiná Tinklŕ..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Meistras..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr ""
-
-#: ../../standalone/draknet_.c:302
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr "Nustatymř tikrinimas"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Connected"
-msgstr "Sujungimas..."
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Nepajungtas"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Sujungimas..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-#, fuzzy
-msgid "Disconnect..."
-msgstr "Sujungimas..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "LAN Konfiguravimas"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adapteris %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Ákrovos Protokolas"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Startavo ákrovos metu"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP klientas"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Aktyvus"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Aktyvus"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Interneto jungties konfiguravimas"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Interneto Jungties Konfiguravimas"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Jungties tipas: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametrai"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Đliuzas (Gateway)"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernet Korta"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP klientas"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Nustatomas saugumo lygis"
-
#: ../../standalone/drakxconf_.c:47
#, fuzzy
msgid "Control Center"
@@ -10421,94 +11083,130 @@ msgstr "Prisijungti prie interneto"
msgid "Choose the tool you want to use"
msgstr "Pasirink kurá áranká norëtum naudoti"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\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 ""
+
+#: ../../standalone/drakxtv_.c:72
#, fuzzy
msgid "Canada (cable)"
msgstr "Kanadiečiř (Kvebeko)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "East Europe"
msgstr "Europa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Prancűzija"
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr "Islandř"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "West Europe"
msgstr "Europa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr "nuoseklioji"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Ávyko klaida, ádiegiant paketus:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10553,7 +11251,7 @@ msgstr "nepavyko paleisti gyvo atnaujinimo!!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
#, fuzzy
msgid "logdrake"
msgstr "draknet"
@@ -10602,10 +11300,6 @@ msgstr "/Pasirinktys"
msgid "/Options/Test"
msgstr "/Pasirinkys/Bandymas"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Pagalba"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr "/Pagalba/_Apie..."
@@ -10670,7 +11364,7 @@ msgstr ""
msgid "Content of the file"
msgstr ""
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -10679,80 +11373,111 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr ""
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "LAN konfiguravimas"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr ""
-
#: ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid "sshd"
-msgstr "đeđëlinis"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Domeno vardas"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "Ext2"
+msgid "Ftp Server"
+msgstr "NIS serveris"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Serveris, Duomenř baziř"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS serveris"
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "NIS serveris"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "árenginys"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Spausdinimo serveris"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "ádomu"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "suţymimas"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "Nustatymai"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Uţrađyti Kaip..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Prađom pasirinkti savo pelës rűđá."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "serial_usb nerasta\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Ar emuliuoti trečiŕ klaviđŕ?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Skaitoma CUPS tvarkykliř duomenř bazë"
+
+#: ../../standalone/scannerdrake_.c:42
+#, fuzzy
+msgid "Detecting devices ..."
+msgstr "Ieđkoma áranga..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -10796,6 +11521,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
#, fuzzy
msgid "Firewalling Configuration"
@@ -11147,10 +11884,6 @@ msgid "Multimedia - Sound"
msgstr "Multimedija - Garsas"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Priemonës"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Dokumentacija"
@@ -11259,10 +11992,6 @@ msgstr ""
"narđyti ţiniatinklá (WWW)"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Archyvavimas, emuliatoriai, stebëjimas"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Asmeniniai finansai"
@@ -11311,2684 +12040,152 @@ msgstr "Multimedija - CD kepimas"
msgid "Scientific Workstation"
msgstr "Mokslinës darbo stotis"
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Nutraukti"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#~ msgid "None"
-#~ msgstr "Jokia"
-
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Pasirink áprastŕ vartotojŕ:"
-
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Nutolćs spausdintuvas"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Dabar tu gali nurodyti parinktis moduliui %s."
-
-#~ msgid "Low"
-#~ msgstr "Ţemas"
-
-#~ msgid "Medium"
-#~ msgstr "Vidutinis"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr "Điame saugumo lygyje yra daugiau perspëjimř ir saugumo patikrinimř."
-
-#~ msgid "mount failed"
-#~ msgstr "primontuoti nepavyko"
-
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr "Multimedija"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Eksperto"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "GNU/Linux tvarko laikŕ pagal GMT (Greenwich Mean Time),\n"
-#~ "ir paverčia já á vietiná laikŕ pagal tavo pasirinktŕ laiko juostŕ."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "Prisijungti prie interneto"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Atsijungti nuo interneto"
-
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Nustatyti tinklo jungtá (LAN arba interneto)"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Á kurá diskŕ tu nori já perkelti?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Pasirink paketus, kuriuos tu nori ádiegti."
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Info"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Gnome darbo stotis"
-
-#, fuzzy
-#~ msgid "user"
-#~ msgstr "Vartotojas: "
-
-#, fuzzy
-#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
-#~ "\n"
-#~ msgstr "Prađom pasirinkti savo pelës rűđá."
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "Iđeiti"
-
-#, fuzzy
-#~ msgid "Removable media"
-#~ msgstr "Iđimamř laikmenř automatinis montavimas"
-
-#~ msgid "Active"
-#~ msgstr "Aktyvus"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "Ne"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "\"%s\" modelio spausdintuvas buvo aptiktas prie "
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Vietinio spausdintuvo jungtis"
-
-#~ msgid "Printer Device"
-#~ msgstr "Spausdintuvo árenginys"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Nutolćs CUPS serveris"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "Nutolćs CUPS serveris"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Sistemos reţimas"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "Kitas"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Prađom pasirinkti klaviatűros iđdëstymŕ."
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Prađom spragtelëti ant skirsnio"
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Tipas: "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Bloga atsarginë byla"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "Nustatyti X"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Spausdintuvo árenginys"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Nutraukti"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "Gerai"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Pelë"
-
-#, fuzzy
-#~ msgid "toto"
-#~ msgstr "toot"
-
-#, fuzzy
-#~ msgid "Starting your connection..."
-#~ msgstr "Iđbandoma jungtis..."
-
-#, fuzzy
-#~ msgid "Closing your connection..."
-#~ msgstr "Iđbandoma jungtis..."
-
-#, fuzzy
-#~ msgid "The system is now disconnected."
-#~ msgstr "Sistema dabar prijungta prie interneto."
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Pasirink dydá, kiek nori visko ádiegti"
-
-#~ msgid "Total size: "
-#~ msgstr "Bendras dydis: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Prađom palaukti, "
-
-#~ msgid "Total time "
-#~ msgstr "Bendra trukmë "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "Naudoti esamus X11 nustatymus?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
-#~ msgstr ""
-#~ "Prie kurio árenginio yra prijungtas tavo spausdintuvas\n"
-#~ "(atmink, kad /dev/lp0 yra LPT1 ekvivalentas)?\n"
-
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#, fuzzy
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr ""
-#~ "Áspëju, đi tinklo plokđtë jau buvo sutvarkyta.\n"
-#~ "Ar norëtum nustatyti jŕ iđ naujo?"
-
-#~ msgid "New"
-#~ msgstr "Naujas"
-
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "Iđmesti"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Prađom spragtelëti ant skirsnio"
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Dviprasmiđkumas (%s), bűk tikslesnis\n"
-
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (pagal nutylëjimŕ %s) "
-
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr ""
-#~ "Tavo pasirinkimas? (pagal nutylëjimŕ %s, ávesk `none' jei nieko nenori) "
-
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "negaliu atidaryti /etc/sysconfig/autologin skaitymui: %s"
-
-#~ msgid "Do you want to restart the network"
-#~ msgstr "Ar tu nori iđ naujo paleisti tinklŕ"
-
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "Ar tu sutinki?"
-
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Ruođiamasi iđ naujo paleisti tinklo árenginá:\n"
-
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "Ruođiamasi iđ naujo ájungti tinklo árenginá %s. Ar tu sutinki?"
-
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Nebent tu tiksliai ţinai kitŕ variantŕ, áprastas pasirinkimas bűna \"/dev/"
-#~ "hda\"\n"
-#~ "(tai yra pirminis pagrindinis IDE kaupiklis) arba \"/dev/sda\" (pirmas "
-#~ "SCSI diskas)."
-
-#, fuzzy
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "Jungties tipas: "
-
-#, fuzzy
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Pasirink áprastŕ vartotojŕ:"
-
-#, fuzzy
-#~ msgid "Test the mouse here."
-#~ msgstr "Prađom iđbandyti pelć"
-
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr "Pasirink norimŕ kalbŕ ádiegimui ir sistemos vartojimui"
-
-#~ msgid ""
-#~ "You need to accept the terms of the above license to continue "
-#~ "installation.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Accept\" if you agree with its terms.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Refuse\" if you disagree with its terms. Installation "
-#~ "will end without modifying your current\n"
-#~ "configuration."
-#~ msgstr ""
-#~ "Tu turi sutikti su aukđčiau esančios licenzijos sŕlygomis, kad tćstum "
-#~ "ádiegimŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Prađom spausti ĽSutinku´, jei sutinki su jos sŕlygomis.\n"
-#~ "\n"
-#~ "\n"
-#~ "Prađom spausti ĽAtmetu´, jei nesutinki su jos sŕlygomis.\n"
-#~ "Ádiegimas bus nutrauktas, nekeičiant esamos konfigűracijos."
-
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr "Pasirink norimŕ klaviatűros iđdëstymŕ iđ sŕrađo aukđčiau"
-
-#~ msgid ""
-#~ "If you wish other languages (than the one you choose at\n"
-#~ "beginning of installation) will be available after installation, please "
-#~ "chose\n"
-#~ "them in list above. If you want select all, you just need to select \"All"
-#~ "\"."
-#~ msgstr ""
-#~ "Jei nori, kad kitos kalbos (be tos, kuriŕ nurodei ádiegimo pradţioje)\n"
-#~ "bűtř prieinamos ádiegus sistemŕ, pasirink jas iđ aukđčiau esančio\n"
-#~ "sŕrađo. Jei nori visř, tiesiog spausk ĽVisos´."
-
-#~ msgid ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!"
-#~ msgstr ""
-#~ "Pasirink:\n"
-#~ "\n"
-#~ " - Prisitaikyta: Jeigu esi pakankamai paţástamas su GNU/Linux, galësi "
-#~ "pasirinkti pagrindinć sistemos paskirtá. Ţiűrëk ţemiau dël smulkmenř.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Eksperto: Jeigu tau puikiai sekasi su GNU/Linux, ir nori smarkiai "
-#~ "prisitaikyti \n"
-#~ " ádiegimŕ. Kaip ir ĽPrisitaikytoje´ klasëje, tu galësi pasirinkti "
-#~ "pagrindinć \n"
-#~ " sistemos paskirtá. Bet, labai prađau, NESIRINK ĐITO, NEBENT TIKRAI "
-#~ "ŢINAI, KŔ DARAI!"
-
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "Tu turi apibrëţti, kam mađina bus naudojama. Pasirinkimai yra:\n"
-#~ "\n"
-#~ "* Darbo stotis: tai geriausias pasirinkimas, jei ruođiesi mađinŕ naudoti "
-#~ "daugiausiai kasdieniams darbams,\n"
-#~ " ástaigoje ar namie.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Kűrimo: jei ruođiesi điŕ mađinŕ naudoti daugiausiai programinës árangos "
-#~ "kűrimui, tai geras pasirinkimas. Tu\n"
-#~ " tada turësi ádiegtŕ pilnŕ rinkiná programř, skirtř kompiliuoti, derinti "
-#~ "ir formatuoti iđeities tekstus, bei kurti\n"
-#~ " programř paketus.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Serveris: jei ruođiesi naudoti điŕ mađinŕ naudoti kaip serverá, tai "
-#~ "geras pasirinkimas. Tiek bylř serverá\n"
-#~ " (NFS arba SMB), tiek spausdinimo serverá (Unix ar Microsoft Windows "
-#~ "stiliaus), autentikacijos (NIS),\n"
-#~ " duomenř bazës serverá ir pan. Jei taip, nesitikëk, kad bus ádiegti "
-#~ "visokie graţumai (KDE, GNOME. etc.)"
-
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "Tu dabar gali pasirinkti grupć paketř, kuriuos nori ádiegti\n"
-#~ "ar atnaujinti.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX tada patikrins, ar yra pakankamai vietos ádiegti juos visus. Jei "
-#~ "ne,\n"
-#~ "perspës tave apie tai. Jei vis tiek norësi tćsti, pasirinktř grupiř "
-#~ "ádiegimas\n"
-#~ "bus pratćstas, tačiau kai kurie maţiau naudingi paketai bus iđmesti. "
-#~ "Sŕrađo\n"
-#~ "pabaigoje tu gali pasirinkti variantŕ \"Atskirř paketř pasirinkimas\", "
-#~ "tuo atveju\n"
-#~ "tu galësi narđyti po daugiau nei 1000 paketř ir pasirinkti juos po "
-#~ "vienŕ..."
-
-#~ msgid ""
-#~ "You can now choose individually all the packages you\n"
-#~ "wish to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can expand or collapse the tree by clicking on options in the left "
-#~ "corner of\n"
-#~ "the packages window.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you prefer to see packages sorted in alphabetic order, click on the "
-#~ "icon\n"
-#~ "\"Toggle flat and group sorted\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want not to be warned on dependencies, click on \"Automatic\n"
-#~ "dependencies\". If you do this, note that unselecting one package may "
-#~ "silently\n"
-#~ "unselect several other packages which depend on it."
-#~ msgstr ""
-#~ "Dabar tu gali pasirinkti po vienŕ paketus, kuriuos\n"
-#~ "nori ádiegti\n"
-#~ "\n"
-#~ "\n"
-#~ "Tu gali iđskleisti ir suskleisti medá, spragtelëdamas mygtukus "
-#~ "kairiajame\n"
-#~ "apatiniame paketř lango kampe.\n"
-#~ "\n"
-#~ "\n"
-#~ "Jei labiau norëtum matyti paketus surikiuotus pagal abëcëlć, spragtelëk "
-#~ "ant\n"
-#~ "ikonos \"Perjungti tarp rikiavimo pagal grupes ar abëcëlć\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Jei nenori, kad tave áspëtř apie priklausomybes, spragtelëk ant\n"
-#~ "\"Tyliai patenkinti priklausomybes\". Jei taip padarysi, nepamirđk, kad "
-#~ "atţymëjus\n"
-#~ "vienŕ paketŕ, gali bűti atţymëti keletas kitř, kurie nuo jo priklauso."
-
-#~ msgid ""
-#~ "If you have all the CDs in the list above, click Ok. If you have\n"
-#~ "none of those CDs, click Cancel. If only some CDs are missing, unselect "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "Jei turi visus CD iđ aukđčiau esančio sŕrađo, spausk Gerai.\n"
-#~ "Jei neturi në vieno iđ điř CD, spausk Nutraukti.\n"
-#~ "Jei trűksta tik kai kuriř CD, atţymëk juos ir tada spausk Gerai."
-
-#~ msgid ""
-#~ "If you wish to connect your computer to the Internet or\n"
-#~ "to a local network please choose the correct option. Please turn on your "
-#~ "device\n"
-#~ "before choosing the correct option to let DrakX detect it automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you do not have any connection to the Internet or a local network, "
-#~ "choose\n"
-#~ "\"Disable networking\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you wish to configure the network later after installation, or if you "
-#~ "have\n"
-#~ "finished to configure your network connection, choose \"Done\"."
-#~ msgstr ""
-#~ "Jei tu nori prijungti savo kompiuterá prie interneto arba\n"
-#~ "vietinio tinklo, pasirink teisingŕ variantŕ. Prađom ájungti árenginá "
-#~ "prieđ\n"
-#~ "pasirenkant teisingŕ variantŕ -- tai leis DrakX automatiđkai já "
-#~ "atpaţinti.\n"
-#~ "\n"
-#~ "\n"
-#~ "Jei tu neturi galimybës prisijungti nei prie interneto, nei prie vietinio "
-#~ "tinklo,\n"
-#~ "rinkis \"Iđjungti tinklŕ\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Jei nori sutvarkyti tinklŕ vëliau, baigus ádiegimŕ, arba jei jau baigei\n"
-#~ "konfigűruoti savo tinklo jungtis, rinkis \"Atlikta\"."
-
-#~ msgid ""
-#~ "No modem has been detected. Please select the serial port on which it is "
-#~ "plugged.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, the first serial port (called \"COM1\" under Microsoft\n"
-#~ "Windows) is called \"ttyS0\" under Linux."
-#~ msgstr ""
-#~ "Nebuvo aptiktas joks modemas. Prađom pasirinkti nuoseklřjá prievadŕ,\n"
-#~ "prie kurio jis yra prijungtas.\n"
-#~ "\n"
-#~ "Ţinok, kad pirmasis nuoseklusis prievadas (COM1 MS Windows'uose)\n"
-#~ "vadinamas ttyS0 Linux'e."
-
-#~ msgid ""
-#~ "You may now enter dialup options. If you don't know\n"
-#~ "or are not sure what to enter, the correct informations can be obtained "
-#~ "from\n"
-#~ "your Internet Service Provider. If you do not enter the DNS (name "
-#~ "server)\n"
-#~ "information here, this information will be obtained from your Internet "
-#~ "Service\n"
-#~ "Provider at connection time."
-#~ msgstr ""
-#~ "Tu dabar gali ávesti prisiskambinimo nuostatas. Jei tu\n"
-#~ "neţinai arba nesi tikras, kŕ ávesti, teisingŕ informacijŕ gali gauti iđ "
-#~ "savo\n"
-#~ "Interneto paslaugř tiekëjo (IPT). Jei tu neávesi DNS (vardř serverio)\n"
-#~ "informacijos čia, ji bus gauta iđ Interneto paslaugř tiekëjo jungimosi "
-#~ "metu."
-
-#~ msgid ""
-#~ "If your modem is an external modem, please turn on it now to let DrakX "
-#~ "detect it automatically."
-#~ msgstr ""
-#~ "Jei tavo modemas yra iđorinis, prađom ájungti já dabar, kad DrakX galëtř "
-#~ "atpaţinti já automatiđkai."
-
-#~ msgid "Please turn on your modem and choose the correct one."
-#~ msgstr "Prađau, ájunk savo modemŕ ir pasirink teisingŕ."
-
-#~ msgid ""
-#~ "If you are not sure if informations above are\n"
-#~ "correct or if you don't know or are not sure what to enter, the correct\n"
-#~ "informations can be obtained from your Internet Service Provider. If you "
-#~ "do not\n"
-#~ "enter the DNS (name server) information here, this information will be "
-#~ "obtained\n"
-#~ "from your Internet Service Provider at connection time."
-#~ msgstr ""
-#~ "Jei tu nesi tikras, ar aukđčiau pateikta informacija yra teisinga,\n"
-#~ "arba tiksliai neţinai, kŕ ávesti, teisingŕ informacijŕ gali gauti iđ "
-#~ "savo\n"
-#~ "Interneto paslaugř tiekëjo (IPT). Jei tu neávesi DNS (vardř serverio)\n"
-#~ "informacijos čia, ji bus gauta iđ Interneto paslaugř tiekëjo jungimosi "
-#~ "metu."
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, the correct informations can "
-#~ "be\n"
-#~ "obtained from your Internet Service Provider."
-#~ msgstr ""
-#~ "Tu dabar gali ávesti savo hosto vardŕ, jei to reikia. Jei tu\n"
-#~ "neţinai arba nesi tikras, kŕ ávesti, teisingŕ informacijŕ gali gauti iđ "
-#~ "savo\n"
-#~ "Interneto paslaugř tiekëjo (IPT)."
-
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Tu dabar gali sutvarkyti savo tinklo árenginá:\n"
-#~ "\n"
-#~ " * IP adresas: jeigu jo neţinai, arba nesi tikras kŕ ávesti, pasiklausk "
-#~ "savo tinklo administratoriaus.\n"
-#~ " Tu turëtum neávesti IP adreso, jei pasirenki \"Automatinis IP\" "
-#~ "ţemiau.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" daţniausiai yra neblogas pasirinkimas. "
-#~ "Jeigu neţinai, arba nesi tikras\n"
-#~ " kŕ ávesti, pasiklausk savo tinklo administratoriaus.\n"
-#~ "\n"
-#~ " * Automatinis IP: Jeigu tavo tinkle naudojamas BOOTP ar DHCP "
-#~ "protokolas, pasirink đá variantŕ.\n"
-#~ " Jeigu pasirinksi já, nereikës nieko árađyti prie \"IP adreso\". "
-#~ "Jeigu tu neţinai, arba nesi tikras, ar reikia\n"
-#~ " pasirinkti đá variantŕ, pasiklausk tinklo administratoriaus."
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, ask your network administrator."
-#~ msgstr ""
-#~ "Tu dabar gali ávesti savo hosto vardŕ. Jeigu jo neţinai,\n"
-#~ "arba nesi tikras kŕ ávesti, pasiklausk savo tinklo administratoriaus."
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, leave blank."
-#~ msgstr ""
-#~ "Tu dabar gali ávesti savo hosto vardŕ, jei to reikia. Jei tu neţinai\n"
-#~ "arba nesi tikras, kŕ ávesti, palik tuđčia."
-
-#~ msgid ""
-#~ "You may now enter dialup options. If you're not sure what to enter, the\n"
-#~ "correct information can be obtained from your ISP."
-#~ msgstr ""
-#~ "Dabar tu gali ávesti prisiskambinimo nuostatas. Jeigu tu gerai neţinai,\n"
-#~ "kŕ árađyti, teisingŕ informacijŕ gali gauti iđ savo ISP."
-
-#~ msgid ""
-#~ "If you will use proxies, please configure them now. If you don't know if\n"
-#~ "you should use proxies, ask your network administrator or your ISP."
-#~ msgstr ""
-#~ "Jeigu tu naudosi proxy, prađom dabar juos nustatyti. Jeigu tu dar "
-#~ "neţinai,\n"
-#~ "ar turëtum naudoti proxy, pasiklausk tinklo administratoriaus arba ISP."
-
-#~ msgid ""
-#~ "You can install cryptographic package if your internet connection has "
-#~ "been\n"
-#~ "set up correctly. First choose a mirror where you wish to download "
-#~ "packages and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "Dabar tu gali ádiegti kriptografijos paketŕ, jeigu tavo interneto juntis "
-#~ "buvo\n"
-#~ "gerai sutvarkyta. Pradţiai pasirink atvaizdá (mirror), iđ kurio parsiřsti "
-#~ "paketus,\n"
-#~ "o po to paţymëk, kuriuos paketus ádiegti.\n"
-#~ "\n"
-#~ "Atmink, kad tu turi pasirinkti atvaizdá ir kriptografijos paketus, "
-#~ "atitinkančius\n"
-#~ "ástatymř reikalavimus."
-
-#~ msgid "You can now select your timezone according to where you live."
-#~ msgstr ""
-#~ "Tu dabar gali pasirinkti laiko juostŕ, priklausomai nuo to, kur gyveni."
-
-#~ msgid ""
-#~ "You can configure a local printer (connected to your computer) or remote\n"
-#~ "printer (accessible via a Unix, Netware or Microsoft Windows network)."
-#~ msgstr ""
-#~ "Tu gali sukonfigűruoti vietiná spausdintuvŕ (prijungtŕ prie tavo "
-#~ "kompiuterio) arba\n"
-#~ "nutolusá spausdintuvŕ (prieinamŕ per Unix, Netware arba Microsoft Windows "
-#~ "tinklŕ)"
-
-#~ msgid ""
-#~ "If you wish to be able to print, please choose one printing system "
-#~ "between\n"
-#~ "CUPS and LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS is a new, powerful and flexible printing system for Unix systems "
-#~ "(CUPS\n"
-#~ "means \"Common Unix Printing System\"). It is the default printing system "
-#~ "in\n"
-#~ "Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR is the old printing system used in previous Mandrake Linux "
-#~ "distributions.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you don't have printer, click on \"None\"."
-#~ msgstr ""
-#~ "jei tu nori spausdinimo galimybës, prađom dabar pasirinkti vienŕ "
-#~ "spausdinimo\n"
-#~ "sistemŕ iđ CUPS ir LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS yra nauja, galinga ir lanksti spausdinimo sistema Unix sistemoms "
-#~ "(CUPS\n"
-#~ "reiđkia \"Common Unix Printing System\"). Tai yra spausdinimo sistema,\n"
-#~ "Mandrake Linux parenkama pagal nutylëjimŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR yra sena spausdinimo sistema, naudota ankstesnëse Mandrake Linux\n"
-#~ "versijose.\n"
-#~ "\n"
-#~ "\n"
-#~ "Jei tu neturi spausdintuvo, pasirink \"Jokia\"."
-
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these types "
-#~ "requires\n"
-#~ "a different setup.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select \"Local\n"
-#~ "printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine, select\n"
-#~ "\"Remote printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Microsoft Windows "
-#~ "machine\n"
-#~ "(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
-#~ msgstr ""
-#~ "GNU/Linux gali susitvarkyti su dauguma spausdintuvř tipř. Kiekvienas iđ\n"
-#~ "điř tipř reikalauja skirtingo nustatymo.\n"
-#~ "\n"
-#~ "\n"
-#~ "Jei tavo spausdintuvas yra fiziđkai prijungtas prie tavo kompiuterio,\n"
-#~ "pasirink \"Vietinis spausdintuvas\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Jei nori prieiti prie spausdintuvo, kuris yra nutolusioje Unix "
-#~ "sistemoje,\n"
-#~ "pasirink \"Nutolćs spausdintuvas\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Jei nori prieiti prie spausdintuvo, kuris yra nutolusiame Microsoft "
-#~ "Windows\n"
-#~ "kompiuteryje (arba Unix kompiuteryje, naudojančiame SMB protokolŕ), "
-#~ "pasirink\n"
-#~ "\"SMB/Windows 95/98/NT\"."
-
-#~ msgid ""
-#~ "Please turn on your printer before continuing to let DrakX detect it.\n"
-#~ "\n"
-#~ "You have to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of printer: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you must have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer a more meaningful name, you "
-#~ "have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Description: this is optional but can be useful if several printers "
-#~ "are connected to your computer or if you allow\n"
-#~ " other computers to access to this printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Location: if you want to put some information on your\n"
-#~ " printer location, put it here (you are free to write what\n"
-#~ " you want, for example \"2nd floor\").\n"
-#~ msgstr ""
-#~ "Prađau, ájunk savo spausdintuvŕ prieđ leisdamas DrakX já atpaţinti.\n"
-#~ "\n"
-#~ "Tu dabar turi ávesti điek tiek informacijos.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Spausdintuvo vardas: spausdinimo kaupykla (spooler) naudoja \"lp\" "
-#~ "kaip áprastŕ spausdintuvo vardŕ. Taigi,\n"
-#~ " tu turi turëti spausdintuvŕ, pavadintŕ \"lp\". Jei turi tik vienŕ "
-#~ "spausdintuvŕ, gali jam parinkti keletŕ vardř. Tu \n"
-#~ " tiesiog turi atskirti juos stačiu brűkđniu (\"|\"). Taigi, jei "
-#~ "patiktř prasmingesnis vardas, tu turi já árađyti pirmŕ,\n"
-#~ " pvz. \"Mano spausdintuvas|lp\". Spausdintuvas, kurio varde yra \"lp"
-#~ "\", bus parenkamas pagal nutylëjimŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ "   * Aprađymas: jis nebűtinas, bet gali bűti naudingas, jei prie "
-#~ "kompiuterio yra prijungti keli spausdintuvai arba\n"
-#~ " leidţiama kitiems kompiuteriams prieiti prie đio spausdintuvo.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Vieta: jei nori árađyti điek tiek informacijos apie tai, kur tas "
-#~ "spausdintuvas yra, árađyk já čia (gali rađyt\n"
-#~ " kŕ tik nori, pavyzdţiui \"ant boso stalo\").\n"
+#~ msgid "Choose options for server"
+#~ msgstr "Pasirink serverio nuostatas"
-#~ msgid ""
-#~ "You need to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of queue: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you need have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer to have a more meaningful "
-#~ "name, you have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ " \n"
-#~ " * Spool directory: it is in this directory that printing jobs are "
-#~ "stored. Keep the default choice\n"
-#~ " if you don't know what to use\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printer Connection: If your printer is physically connected to your "
-#~ "computer, select \"Local printer\".\n"
-#~ " If you want to access a printer located on a remote Unix machine, "
-#~ "select \"Remote lpd printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to access a printer located on a remote Microsoft "
-#~ "Windows machine (or on Unix machine using SMB\n"
-#~ " protocol), select \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to acces a printer located on NetWare network, select "
-#~ "\"NetWare\".\n"
-#~ msgstr ""
-#~ "Tu dabar turi ávesti điek tiek informacijos.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Spausdintuvo vardas: spausdinimo kaupykla (spooler) naudoja \"lp\" "
-#~ "kaip áprastŕ spausdintuvo vardŕ.\n"
-#~ " Taigi, tu turi turëti spausdintuvŕ, pavadintŕ \"lp\". Jei turi tik "
-#~ "vienŕ spausdintuvŕ, gali jam parinkti keletŕ\n"
-#~ " vardř. Tu tiesiog turi atskirti juos stačiu brűkđniu (\"|\"). Taigi, "
-#~ "jei patiktř prasmingesnis vardas, tu turi já\n"
-#~ " árađyti pirmŕ, pvz. \"Mano spausdintuvas|lp\". Spausdintuvas, kurio "
-#~ "varde yra \"lp\", bus parenkamas\n"
-#~ " pagal nutylëjimŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Kaupimo (spool) katalogas: tai katalogas, á kurá árađomi spausdinimo "
-#~ "darbai. Palik áprastŕ parinktá,\n"
-#~ " jeigu neţinai kŕ naudoti.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Spausdintuvo jungtis: jei tavo spausdintuvas yra fiziđkai prijungtas "
-#~ "prie tavo kompiuterio, rinkis\n"
-#~ " \"Vietinis spausdintuvas\". Jie nori prieiti prie spausdintuvo, "
-#~ "prijungto prie nutolusio Unix kompiuterio,\n"
-#~ " pasirink \"Nutolćs lpd spausdintuvas\".\n"
-#~ "\n"
-#~ "\n"
-#~ "\n"
-#~ " Jei nori prieiti prie spausdintuvo, kuris yra nutolusiame Microsoft "
-#~ "Windows kompiuteryje (arba\n"
-#~ " Unix kompiuteryje, naudojančiame SMB protokolŕ), pasirink \"SMB/"
-#~ "Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " Jie nori prieiti prie spausdintuvo, esančio Netware tinkle, pasirink "
-#~ "\"Netware\".\n"
+#~ msgid "Monitor not configured"
+#~ msgstr "Monitorius nenurodytas"
-#~ msgid ""
-#~ "Your printer has not been detected. Please enter the name of the device "
-#~ "on\n"
-#~ "which it is connected.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, most printers are connected on the first parallel port. "
-#~ "This\n"
-#~ "one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
-#~ "Windows."
-#~ msgstr ""
-#~ "Tavo spausdintuvas nebuvo atpaţintas. Prađom ávesti pavadinimŕ "
-#~ "árenginio,\n"
-#~ "prie kurio jis yra prijungtas.\n"
-#~ "\n"
-#~ "\n"
-#~ "Tavo ţiniai, dauguma spausdintuvř bűna prijungti prie pirmos "
-#~ "lygiagrečiosios jungties.\n"
-#~ "Tai vadinama \"/dev/lp0\" GNU/Linux sistemose, ir \"LPT1\" Microsoft "
-#~ "Windows."
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Vaizdo plokđtë dar nenurodyta"
-#~ msgid "You must now select your printer in the above list."
-#~ msgstr "Tu dabar turi pasirinkti savo spausdintuvŕ iđ sŕrađo aukđčiau."
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Dar nepasirinkta skiriamoji geba"
#~ msgid ""
-#~ "Please select the right options according to your printer.\n"
-#~ "Please see its documentation if you don't know what choose here.\n"
-#~ "\n"
#~ "\n"
-#~ "You will be able to test your configuration in next step and you will be "
-#~ "able to modify it if it doesn't work as you want."
+#~ "try to change some parameters"
#~ msgstr ""
-#~ "Prađom pasirinkti teisingas nuostatas, priklausomai nuo spausdintuvo.\n"
-#~ "Pasiţiűrëk á dokumentacijŕ, jeigu neţinai, kŕ čia ávesti.\n"
#~ "\n"
-#~ "\n"
-#~ "Tu galësi iđbandyti nustatymus sekančiame ţingsnyje, ir sugráţćs vël juos "
-#~ "pakeisti,\n"
-#~ "jeigu neveikia taip, kaip tu norëtum."
+#~ "pabandyk pakeisti kai kuriuos parametrus"
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "Dabar tu gali ávesti savo Mandrake Linux sistemos root slaptaţodá.\n"
-#~ "Slaptaţodis turi bűti ávestas du kartus patikrinimui, kad abu árađai "
-#~ "sutampa.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root yra sistemos administratorius ir vienintelis vartotojas, kuriam "
-#~ "leidţiama\n"
-#~ "konfigűruoti sistemŕ. Taigi, slaptaţodá pasirink atsargiai. Neteisëtas "
-#~ "root\n"
-#~ "vartojimas gali bűti ypatingai pavojingas điai sistemai, duomenims joje "
-#~ "ir kitoms,\n"
-#~ " su ja susijusioms sistemoms.\n"
-#~ "\n"
-#~ "\n"
-#~ "Slaptaţodis turi bűti raidţiř ir skaičiř miđinys, maţiausiai 8 simboliř\n"
-#~ "ilgio. Jis turëtř niekada nebűti uţrađytas ant popieriaus.\n"
-#~ "\n"
-#~ "\n"
-#~ "Nepasidaryk slaptaţodţio pernelyg ilgo ir sudëtingo: tu turëtum já "
-#~ "prisiminti\n"
-#~ "be ypatingř pastangř."
+#~ msgid "An error occurred:"
+#~ msgstr "Ávyko klaida:"
-#~ msgid ""
-#~ "You may now create one or more \"regular\" user account(s), as\n"
-#~ "opposed to the \"privileged\" user account, root. You can create\n"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "Dabar tu gali sukurti vienŕ arba daugiau \"paprastř\" vartotojř.\n"
-#~ "Kiekvienam ţmogui, kuriam tu nori leisti naudotis điuo kompiuteriu,\n"
-#~ "tu gali sukurti vienŕ ar daugiau sŕskaitř (account). Atmink, kad\n"
-#~ "kiekvienas vartotojas turës savus nustatymus (grafinës aplinkos,\n"
-#~ "programř nuostatas, ir t.t. ), bei savo \"namř katalogŕ\", kuriame\n"
-#~ "tie nustatymai bus laikomi.\n"
-#~ "\n"
-#~ "\n"
-#~ "Pirmiausia, sukurk vartotojŕ sau pačiam! Net jeigu tu bűsi vienintelis "
-#~ "đio\n"
-#~ "kompiuterio vartotojas, tu NEGALI prisijungti kaip root vartotojas "
-#~ "sistemos\n"
-#~ "kasdieniam naudojimui: taip iđkiltř didelë saugumo grësmë. Kad padarytum\n"
-#~ "sistemŕ nebeámanomŕ naudoti, uţtenka padaryti porŕ klaidř.\n"
-#~ "\n"
-#~ "\n"
-#~ "Todël, tu turëtum prisijungti prie sistemos, naudodamasis vartotojo "
-#~ "sŕskaita,\n"
-#~ "kuriŕ bűsi čia sukűrćs, o pasisveikinti kaip root tik administravimo ar\n"
-#~ "prieţiűros darbams."
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Baigiu per %d sekundţiř (-es)"
-#~ msgid ""
-#~ "Creating a boot disk is strongly recommended. If you can't\n"
-#~ "boot your computer, it's the only way to rescue your system without\n"
-#~ "reinstalling it."
-#~ msgstr ""
-#~ "Sukurti ákrovos diskelá labai rekomenduojama. Jei tau nepavyktř\n"
-#~ "ákrauti kompiuterio, tai vienintelis bűdas iđgelbëti sistemŕ jos\n"
-#~ "nediegiant iđ naujo."
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Ar toks nustatymas tave tenkina?"
-#, fuzzy
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <number>: use the corresponding text mode.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories\n"
-#~ "stored in \"/tmp\" when you boot your system, select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the\n"
-#~ "BIOS about the amount of RAM present in your computer. As consequence, "
-#~ "Linux may\n"
-#~ "fail to detect your amount of RAM correctly. If this is the case, you "
-#~ "can\n"
-#~ "specify the correct amount or RAM here. Please note that a difference of "
-#~ "2 or 4\n"
-#~ "MB between detected memory and memory present in your system is normal."
-#~ msgstr ""
-#~ "Pagrindinës LILO bei GRUB nuostatos yra đios:\n"
-#~ " - Ákrovos árenginys: Nurodo árenginá (pvz. disko skirsná), kuriame\n"
-#~ "yra ákrovos sektorius. Pasirink \"/dev/hda\", nebent ţinai tiksliai "
-#~ "kitaip.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Pauzë prieđ ákeliant áprastŕ atvaizdá (image): Nurodo deđimtřjř\n"
-#~ "sekundës daliř kieká, kiek reikia palaukti, prieđ paleidţiant pirmŕ "
-#~ "atvaizdá.\n"
-#~ "Tai naudinga sistemoms, kurios kraunasi iđkart po klaviatűros ájungimo.\n"
-#~ "Ákrovos tvarkyklë nelaukia, jeigu \"pauzë\" yra nenurodyta arba lygi "
-#~ "nuliui.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Vaizdo reţimas: Tai nurodo VGA reţimŕ, pasirenkamŕ paleidţiant.\n"
-#~ "Yra galimos đios reikđmës:\n"
-#~ "\n"
-#~ " * normal: pasirinkti standartiná 80x25 tekstiná reţimŕ.\n"
-#~ "\n"
-#~ " * <skaičius>: naudoti atitinkamŕ tekstiná reţimŕ."
-
-#~ msgid ""
-#~ "SILO is a bootloader for SPARC: it is able to boot\n"
-#~ "either GNU/Linux or any other operating system present on your computer.\n"
-#~ "Normally, these other operating systems are correctly detected and\n"
-#~ "installed. If this is not the case, you can add an entry by hand in this\n"
-#~ "screen. Be careful as to choose the correct parameters.\n"
-#~ "\n"
-#~ "\n"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "anyone, in which case you can delete the corresponding entries. But\n"
-#~ "in this case, you will need a boot disk in order to boot them!"
-#~ msgstr ""
-#~ "SILO yra ákrovos tvarkyklë SPARC'ams: ji gali ákrauti\n"
-#~ "tiek GNU/Linux, tiek bet kokiŕ kitŕ operacijř sistemŕ, esančiŕ\n"
-#~ "kompiuteryje. Paprastai tos kitos operacijř sistemos yra teisingai\n"
-#~ "atpaţástamos ir ádiegiamos. Jeigu ne, tu gali pridëti árađus pats điame\n"
-#~ "lange. Bűk atidus ir pasirink teisingus parametrus.\n"
-#~ "\n"
-#~ "\n"
-#~ "Tu taip pat gali uţdrausti priëjimŕ prie tř kitř operacijř sistemř\n"
-#~ "bet kam, jei iđtrinsi atitinkamus árađus. Bet tuo atveju, tau prireiks\n"
-#~ "ákrovos diskelio, kad jas ákrautum!"
-
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ "Pagrindinës SILO nuostatos yra đios:\n"
-#~ " - Ákrovos tvarkyklës ádiegimas: Parodo, kur tu nori padëti "
-#~ "informacijŕ,\n"
-#~ "reikalingŕ ákrauti GNU/Linux. Pasirink \"Pirmasis kaupiklio sektorius "
-#~ "(MBR)\",\n"
-#~ "nebent ţinai tiksliai kitaip.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Pauzë prieđ ákeliant áprastŕ atvaizdá (image): Nurodo deđimtřjř\n"
-#~ "sekundës daliř kieká, kiek reikia palaukti, prieđ paleidţiant pirmŕ "
-#~ "atvaizdá.\n"
-#~ "Tai naudinga sistemoms, kurios kraunasi iđkart po klaviatűros ájungimo.\n"
-#~ "Ákrovos tvarkyklë nelaukia, jeigu \"pauzë\" yra nenurodyta arba lygi "
-#~ "nuliui."
-
-#~ msgid ""
-#~ "Now it's time to configure the X Window System, which is the\n"
-#~ "core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "Atëjo laikas sukonfigűruoti X Window sistemŕ, kuri yra GNU/Linux GUI\n"
-#~ "(Grafinës vartotojo sŕsajos) pagrindas. Kad tai padarytum, tau\n"
-#~ "reikia sukonfigűruoti vaizdo plokđtć bei monitoriř. Dauguma ţingsniř\n"
-#~ "yra automatizuoti, ir tavo darbas gal bűt bus tik patikrinti, kas buvo\n"
-#~ "atlikta, ir pritarti nuostatoms :)\n"
-#~ "\n"
-#~ "\n"
-#~ "Kai konfigűravimas bus baigtas, bus paleisti X'ai (nebent paprađysi\n"
-#~ "DrakX, kad to nedarytř) tam, kad galëtum patikrinti ir pamatytum,\n"
-#~ "ar nuostatos tau tinka. Jeigu ne, tu gali sugráţti ir pakeisti jas,\n"
-#~ "tiek kartř, kiek reikës."
-
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ "Jeigu kas nors su X konfigűracija yra netvarkoje, naudok đias parinktis\n"
-#~ "teisingai nustatyti X Window sistemai."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "Jeigu tu nori pasisveikinti grafiniam reţime, pasirink \"Taip\".\n"
-#~ "Kitu atveju rinkis \"Ne\"."
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Ávyko klaida, bandyk pakeisti kai kuriuos parametrus"
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
-#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
-#~ msgstr ""
-#~ "Tavo sistemŕ ruođiamasi perkrauti.\n"
-#~ "\n"
-#~ "Po perkrovimo tavo naujoji Mandrake Linux sistema bus ákrauta\n"
-#~ "automatiđkai. Jeigu nori pakrauti kitŕ operacijř sistemŕ, prađom\n"
-#~ "perskaityti papildomas instrukcijas."
-
-#~ msgid "Czech (Programmers)"
-#~ msgstr "Čekř (Programuotojo)"
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 serveris: %s"
-#~ msgid "Slovakian (Programmers)"
-#~ msgstr "Slovakř (Programuotojo)"
+#~ msgid "Show all"
+#~ msgstr "Rodyti viskŕ"
-#~ msgid "Name of the profile to create:"
-#~ msgstr "Kuriamo profailo vardas:"
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Ruođiami X-Window nustatymai"
-#~ msgid "Write /etc/fstab"
-#~ msgstr "Árađyti /etc/fstab"
+#~ msgid "What do you want to do?"
+#~ msgstr "Kŕ tu nori daryti?"
-#~ msgid "Format all"
-#~ msgstr "Suţymëti visus skirsnius"
+#~ msgid "Change Monitor"
+#~ msgstr "Pakeisti monitoriř"
-#~ msgid "After formatting all partitions,"
-#~ msgstr "Suţymëjus visus skirsnius,"
+#~ msgid "Change Graphics card"
+#~ msgstr "Pakeisti vaizdo plokđtć"
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "visi duomenys, esantys điuose skirsniuose, bus prarasti"
+#~ msgid "Change Server options"
+#~ msgstr "Pakeisti serverio nustatymus"
-#~ msgid "Reload"
-#~ msgstr "Vël ákelti"
+#~ msgid "Change Resolution"
+#~ msgstr "Pakeisti skiriamŕjŕ gebŕ"
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr "Ar tu nori sukurti automatinio ádiegimo diskelá Linux dauginimui?"
+#~ msgid "Show information"
+#~ msgstr "Rodyti informacijŕ"
-#~ msgid "ADSL configuration"
-#~ msgstr "ADSL nustatymas"
+#~ msgid "Test again"
+#~ msgstr "Patikrinti vël"
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ "Su nutolusiu CUPS serveriu, tau đioje vietoje nereikia nustatinëti\n"
-#~ "jokiř spausdintuvř; jie bus automatiđkai atpaţástami,\n"
-#~ "nebent tu turi serverá, kuris yra kitame tinkle; tuomet turi árađyti\n"
-#~ "CUPS serverio IP adresŕ ir galbűt prievado numerá."
+#~ msgid "Setting security level"
+#~ msgstr "Nustatomas saugumo lygis"
-#~ msgid "Remote queue"
-#~ msgstr "Nutolusi eilë"
+#~ msgid "Graphics card"
+#~ msgstr "Vaizdo plokđtë"
-#, fuzzy
-#~ msgid "Remote queue name missing!"
-#~ msgstr "Nutolusi eilë"
+#~ msgid "Select a graphics card"
+#~ msgstr "Pasirink vaizdo plokđtć"
-#, fuzzy
-#~ msgid "Command line"
-#~ msgstr "Domeno vardas"
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "Perspëjimas: đios plokđtës bandymas gali pakabinti kompiuterá"
-#, fuzzy
-#~ msgid "Modify printer"
-#~ msgstr "Spausdintuvo nëra"
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Standartinis VGA 640x480 prie 60 Hz"
-#, fuzzy
-#~ msgid "Network Monitoring"
-#~ msgstr "Tinklo konfigűravimas"
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA 800x600 prie 56 Hz"
-#~ msgid "Profile "
-#~ msgstr "Profailas "
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "Suderinamas su 8514, 1024x768 prie 87 Hz interlaced (nëra 800x600)"
-#, fuzzy
-#~ msgid "Connection Time: "
-#~ msgstr "Jungties tipas: "
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 prie 87 Hz interlaced, 800x600 prie 56 Hz"
-#, fuzzy
-#~ msgid "Connecting to Internet "
-#~ msgstr "Prisijungti prie interneto"
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Iđplëstas Super VGA, 800x600 prie 60 Hz, 640x480 prie 72 Hz"
-#, fuzzy
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "Atsijungti nuo interneto"
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Non-Interlaced SVGA, 1024x768 prie 60 Hz, 800x600 prie 72 Hz"
-#, fuzzy
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "Atsijungti nuo interneto"
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "Aukđto daţnio SVGA, 1024x768 prie 70 Hz"
-#, fuzzy
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "Atsijungti nuo interneto"
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Daugiadaţnis, galintis 1280x1024 prie 60 Hz"
-#, fuzzy
-#~ msgid "Connection complete."
-#~ msgstr "Jungties pavadinimas"
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Daugiadaţnis, galintis 1280x1024 prie 74 Hz"
-#, fuzzy
-#~ msgid "average"
-#~ msgstr "iđkraipymai"
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Daugiadaţnis, galintis 1280 prie 76 Hz"
-#, fuzzy
-#~ msgid "Default Runlevel"
-#~ msgstr "Áprastas"
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Monitorius, galintis 1600x1200 prie 70 Hz"
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "Nuostatř bylos turinio nepavyko suprasti."
-
-#~ msgid "Adapter"
-#~ msgstr "Adapteris"
-
-#~ msgid "Disable network"
-#~ msgstr "Uţdrausti tinklŕ"
-
-#, fuzzy
-#~ msgid "Enable network"
-#~ msgstr "Uţdrausti tinklŕ"
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Monitorius, galintis 1600x1200 prie 76 Hz"
#~ msgid ""
-#~ "You can now test your mouse. Use buttons and wheel to verify\n"
-#~ "if settings are good. If not, you can click on \"Cancel\" to choose "
-#~ "another\n"
-#~ "driver."
-#~ msgstr ""
-#~ "Tu dabar gali iđbandyti savo pelć. Naudok klaviđus ir ratukŕ,\n"
-#~ "kad patikrintum ar nuostatos geros. Jei ne, spausk ĽNutraukti´\n"
-#~ "ir pasirink kitŕ tvarkyklć."
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "DSL (arba ADSL) jungtis"
-
-#, fuzzy
-#~ msgid "Choose"
-#~ msgstr "Pelë"
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr ""
-#~ "Tu gali tiesiog árađyti URI, kad prieitum prie spausdintuvo su CUPS."
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "Taip, spausdinti ASCII bandomŕjá puslapá"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "Taip, spausdinti PostScript bandomŕjá puslapá"
-
-#~ msgid "Paper Size"
-#~ msgstr "Lapo dydis"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "Ar iđstumti lapŕ po darbo?"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "Uniprint tvarkyklës nuostatos"
-
-#~ msgid "Color depth options"
-#~ msgstr "Spalvř gylio nuostatos"
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "Spausdinti tekstŕ kaip PostScript?"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "Taisyti stair-stepping tekstŕ?"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Puslapiř skaičius vienam iđvesties puslapiui"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "Kairysis/Deđinysis krađtai tađkais (1/72 colio)"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "Virđutinis/Apatinis krađtas tađkais (1/72 colio)"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "Papildomos GhostScript nuostatos"
-
-#~ msgid "Extra Text options"
-#~ msgstr "Papildomos teksto nuostatos"
-
-#~ msgid "Reverse page order"
-#~ msgstr "Atbulinë puslapiř seka"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Pasirink nutolusio spausdintuvo jungtá"
-
-#~ msgid ""
-#~ "Every printer need a name (for example lp).\n"
-#~ "Other parameters such as the description of the printer or its location\n"
-#~ "can be defined. What name should be used for this printer and\n"
-#~ "how is the printer connected?"
-#~ msgstr ""
-#~ "Kiekviena spausdinimo eilë turi turëti pavadinimŕ (pavyzdţiui, lp).\n"
-#~ "Gali bűti nurodyti kiti parametrai, tokie kaip spausdintuvo aprađymas\n"
-#~ "ar jo vieta. Koks đio spausdintuvo vardas ir kaip jis yra prijungtas?"
-
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a\n"
-#~ "name (often lp) and a spool directory associated with it. What\n"
-#~ "name and directory should be used for this queue and how is the printer "
-#~ "connected?"
-#~ msgstr ""
-#~ "Kiekviena spausdinimo eilë (á kuriŕ nukreipiami spaudiniai) turi turëti\n"
-#~ "pavadinimŕ (daţniausiai lp) ir kaupimo katalogŕ, susietŕ su ja. Koks "
-#~ "pavadinimas\n"
-#~ "bei katalogas turëtř bűti naudojami điai eilei, ir kaip yra prijungtas "
-#~ "spausdintuvas?"
-
-#~ msgid "Name of queue"
-#~ msgstr "Eilës pavadinimas"
-
-#~ msgid "Spool directory"
-#~ msgstr "Kaupimo katalogas"
-
-#~ msgid "Disable"
-#~ msgstr "Iđjungti"
-
-#~ msgid "Enable"
-#~ msgstr "Ájungti"
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ msgstr ""
-#~ "Norëdamas padaryti sistemŕ saugesne, pasirink \"Naudoti đeđëlinć bylŕ\" "
-#~ "ir\n"
-#~ "\"Naudoti MD5 slaptaţodţius\"."
-
-#~ msgid ""
-#~ "If your network uses NIS, select \"Use NIS\". If you don't know, ask "
-#~ "your\n"
-#~ "network administrator."
-#~ msgstr ""
-#~ "Jeigu tavo tinklas naudoja NIS, pasirink \"Naudoti NIS\". Jeigu\n"
-#~ "neţinai, paklausk tinklo administratoriaus."
-
-#~ msgid "yellow pages"
-#~ msgstr "geltonieji puslapiai"
-
-#, fuzzy
-#~ msgid "Light configuration"
-#~ msgstr "LAN konfiguravimas"
-
-#~ msgid "Provider dns 1"
-#~ msgstr "Tiekëjo DNS 1"
-
-#~ msgid "Provider dns 2"
-#~ msgstr "Tiekëjo DNS 2"
-
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr "Kaip tu nori prisijungti prie interneto?"
-
-#, fuzzy
-#~ msgid "Selected size %d%s"
-#~ msgstr "Pasirink bylŕ"
-
-#, fuzzy
-#~ msgid "Opening your connection..."
-#~ msgstr "Iđbandoma jungtis..."
-
-#~ msgid "Configure..."
-#~ msgstr "Konfigűruojama..."
-
-#, fuzzy
-#~ msgid "Configuration de Lilo/Grub"
-#~ msgstr "Nustatymai: Pridëti suradimo vietŕ"
-
-#~ msgid "This startup script try to load your modules for your usb mouse."
-#~ msgstr "Đis paleidimo skriptas bando ákelti tavo USB pelës modulius."
-
-#~ msgid "Boot style configuration"
-#~ msgstr "Ákrovos stiliaus konfigűracija"
-
-#~ msgid ""
-#~ "Now that your Internet connection is configured,\n"
-#~ "your computer can be configured to share its Internet connection.\n"
-#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
-#~ "(LAN).\n"
-#~ "\n"
-#~ "Would you like to setup the Internet Connection Sharing?\n"
-#~ msgstr ""
-#~ "Dabar, kai prisijungimas prie interneto yra sukonfigűruotas,\n"
-#~ "tavo kompiuteris gali bűti sutvarkytas dalintis đia interneto jungtimi.\n"
-#~ "Pastaba: reikia turëti atskirŕ tinklo plokđtć, per kuriŕ bűtř prijungtas\n"
-#~ "vietinis tinklas (LAN).\n"
-#~ "\n"
-#~ "Ar norëtum sutvarkyti interneto jungties dalinimŕsi?\n"
-
-#~ msgid "Automatic dependencies"
-#~ msgstr "Tyliai patenkinti priklausomybes"
-
-#~ msgid "Configure LILO/GRUB"
-#~ msgstr "Nustatyti LILO/GRUB"
-
-#~ msgid "Create a boot floppy"
-#~ msgstr "Sukurti ákrovos diskelá"
-
-#~ msgid "Choice"
-#~ msgstr "Pasirinkimas"
-
-#~ msgid "horizontal nice looking aurora"
-#~ msgstr "horizontali graţiai atrodanti aurora"
-
-#~ msgid "vertical traditional aurora"
-#~ msgstr "vertikali tradicinë aurora"
-
-#~ msgid "gMonitor"
-#~ msgstr "gMonitorius"
-
-#~ msgid ""
-#~ "You can now select some miscellaneous options for your system.\n"
-#~ "\n"
-#~ "* Use hard drive optimizations: this option can improve hard disk "
-#~ "performance but is only for advanced users. Some buggy\n"
-#~ " chipsets can ruin your data, so beware. Note that the kernel has a "
-#~ "builtin blacklist of drives and chipsets, but if\n"
-#~ " you want to avoid bad surprises, leave this option unset.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Choose security level: you can choose a security level for your system. "
-#~ "Please refer to the manual for complete\n"
-#~ " information. Basically, if you don't know what to choose, keep the "
-#~ "default option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the BIOS about the amount of RAM present in\n"
-#~ " your computer. As consequence, Linux may fail to detect your amount of "
-#~ "RAM correctly. If this is the case, you can\n"
-#~ " specify the correct amount or RAM here. Please note that a difference "
-#~ "of 2 or 4 MB between detected memory and memory\n"
-#~ " present in your system is normal.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Removable media automounting: if you would prefer not to manually mount "
-#~ "removable media (CD-Rom, floppy, Zip, etc.) by\n"
-#~ " typing \"mount\" and \"umount\", select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories stored in \"/tmp\" when you boot your system,\n"
-#~ " select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Enable num lock at startup: if you want NumLock key enabled after "
-#~ "booting, select this option. Please note that you\n"
-#~ " should not enable this option on laptops and that NumLock may or may "
-#~ "not work under X."
-#~ msgstr ""
-#~ "Dabar tu gali pasirinkti ávairias savo sistemos nuostatas.\n"
-#~ "\n"
-#~ "* Naudoti diskinio kaupiklio optimizacijas: đi nuostata gali padidinti "
-#~ "kietojo disko spartŕ, bet\n"
-#~ "skirta naudoti tik\n"
-#~ " patyrusiems vartotojams. kai kurie lustai su klaidomis gali sugadinti "
-#~ "tavo duomenis, taigi bűk atsargus.\n"
-#~ " Branduolys turi sŕrađŕ blogř árenginiř, tačiau jei nori iđvengti "
-#~ "nemaloniř siurprizř, palik điŕ nuostatŕ iđjungtŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Pasirinkti saugumo lygá: tu gali pasirinkti sistemos saugumo lygá.\n"
-#~ " Plačiau apie tai skaityk pateiktuose aprađymuose. Paprasčiausiai, jei "
-#~ "neţinai kŕ pasirinkti, palik\n"
-#~ " áprastŕ variantŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Tikslus RAM atminties kiekis: deja, nëra standartinio bűdo, kaip "
-#~ "uţklausti BIOS, kiek kompiuteryje yra RAM atminties.\n"
-#~ " Dël đios prieţasties, Linux'ui gali nepavykti atpaţinti tikslaus RAM "
-#~ "kiekio. Tokiu atveju tau reikia\n"
-#~ " nurodyti teisingŕ jos kieká. Atmink, kad 2 ar 4 MB skirtumas tarp "
-#~ "atpaţintos ir esamos atminties yra normalus.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Iđimamř laikmenř automatinis montavimas: jeigu tu nenori montuoti "
-#~ "iđimamř laikmenř (CD, diskeliř, Zip ir pan.)\n"
-#~ " rankiniu bűdu, rađydamas \"mount\" ir \"umount\" paţymëk điŕ parinktá.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Iđvalyti \"/tmp\", kiekvienŕ kartŕ ákrovus: jei nori iđtrinti visas "
-#~ "bylas ir katalogus, esančius \"/tmp\", ákrovos metu,\n"
-#~ " paţymëk điŕ parinktá.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Ákrovos metu ájungti Num Lock: jei nori, kad NumLock bűtř ájungtas "
-#~ "ásikrovus sistemai, paţymëk điŕ parinktá.\n"
-#~ " Atkreipk dëmesá á tai, kad neturëtum to ájungti neđiojamuose "
-#~ "kompiuteriuose, ir kad X'uose NumLock gali veikti arba neveikti."
-
-#~ msgid "Sorry, the mail configuration is not yet implemented. Be patient."
-#~ msgstr "Atleiskite, bet pađto konfiguracija dar nepadaryta. Bűkite kantrűs."
-
-#~ msgid ""
-#~ "Welcome to The Network Configuration Wizard.\n"
-#~ "Which components do you want to configure?\n"
-#~ msgstr ""
-#~ "Sveiki atvykć pas Tinklo Konfiguravimo Meistrŕ.\n"
-#~ "Kokius komponentus norite konfiguruoti?\n"
-
-#~ msgid "Internet/Network access"
-#~ msgstr "Internet/Tinklo priëjimas"
-
-#~ msgid "Miscellaneous"
-#~ msgstr "Ávairűs"
-
-#~ msgid "Miscellaneous questions"
-#~ msgstr "Ávairűs klausimai"
-
-#~ msgid "Can't use supermount in high security level"
-#~ msgstr "Negalima naudoti supermount su aukđtu saugumo lygiu"
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Grupiř, kurias tu pasirinkai, bendras dydis yra apie %d MB.\n"
#~ msgid ""
-#~ "beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
-#~ "If you want to be root, you have to login as a user and then use \"su\".\n"
-#~ "More generally, do not expect to use your machine for anything but as a "
-#~ "server.\n"
-#~ "You have been warned."
-#~ msgstr ""
-#~ "dëmesio: ĐIAME SAUGUMO LYGYJE, ROOT'ui NELEIDŢIAMA PASISVEIKINTI "
-#~ "KONSOLËJE!\n"
-#~ "jei nori tapti root, turi pasisveikinti kaip vartotojas, o tada naudoti "
-#~ "Ľsu´.\n"
-#~ "Bendriau paëmus, nemanyk savo kompiuterio naudoti kam nors kitam, nebent "
-#~ "serveriui.\n"
-#~ "Tu buvai áspëtas."
-
-#~ msgid ""
-#~ "Be carefull, having numlock enabled causes a lot of keystrokes to\n"
-#~ "give digits instead of normal letters (eg: pressing `p' gives `6')"
-#~ msgstr ""
-#~ "Bűk atsargus, jei numlock bus ájungtas, daugybë klaviđř gali veikti\n"
-#~ "kaip skaičiai vietoj normaliř raidţiř (pvz., paspaudus `p' bus `6')"
-
-#~ msgid "not connected"
-#~ msgstr "nepajungtas"
-
-#, fuzzy
-#~ msgid "Actions"
-#~ msgstr "Vieta"
-
-#~ msgid "Scientific applications"
-#~ msgstr "Mokslinës programos"
-
-#~ msgid "File/Print/Samba"
-#~ msgstr "Serveris, Bylř/Spausdinimo/Samba"
-
-#~ msgid "DNS/DHCP "
-#~ msgstr "Serveris, DNS/DHCP "
-
-#~ msgid "First DNS Server"
-#~ msgstr "Pirmasis DNS serveris"
-
-#~ msgid "Second DNS Server"
-#~ msgstr "Antrasis DNS serveris"
-
-#~ msgid "using module"
-#~ msgstr "naudojamas modulis"
-
-#~ msgid "Development, Database"
-#~ msgstr "Kűrimas, Duomenř bazës"
-
-#~ msgid "Development, Integrated Environment"
-#~ msgstr "Kűrimo, Integruotos Aplinkos"
-
-#~ msgid "Development, Standard tools"
-#~ msgstr "Kűrimo, Standartinës priemonës"
-
-#~ msgid ""
-#~ "\n"
-#~ "Warning:\n"
-#~ "Applying the changes while running may crash your X environnement."
-#~ msgstr ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
#~ "\n"
-#~ "Perspëjimas:\n"
-#~ "Pakeitimř pritaikymas veikiant X gali baigtis avarija."
-
-#~ msgid ""
-#~ "\n"
-#~ "If you continue, I will shut down your %s environnement"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
+#~ "Jei tu nori ádiegti maţiau, nei čia nurodyta,\n"
+#~ "pasirink, kiek procentř paketř tu norëtum ádiegti.\n"
#~ "\n"
-#~ "Jeigu tćsite ađ iđjungsiu jűsř %s aplinkŕ"
-
-#~ msgid "%s is already in use"
-#~ msgstr "%s jau naudojama"
-
-#~ msgid "%s: This is not a root partition, please select another one."
-#~ msgstr "%s: Tai ne pagrindinis skirsnis, prađom pasirinkti kitŕ"
-
-#~ msgid "(may cause data corruption)"
-#~ msgstr "(gali sugadinti duomenis)"
-
-#~ msgid ", %U MB"
-#~ msgstr ", %U MB"
-
-#~ msgid "ASCII MieMouse"
-#~ msgstr "ASCII MieMouse"
-
-#~ msgid "ASCII MieMouse (serial)"
-#~ msgstr "ASCII MieMouse (serijinë)"
-
-#~ msgid "ATI Bus Mouse"
-#~ msgstr "ATI pelë"
-
-#~ msgid "Add location of packages"
-#~ msgstr "Pridëti paketř suradimo vietŕ"
-
-#~ msgid "After %s partition %s,"
-#~ msgstr "Kada %s skirsnis %s, "
-
-#~ msgid "Alcatel modem"
-#~ msgstr "Alcatel modemas"
-
-#~ msgid ""
-#~ "Any partitions that have been newly defined must be formatted for\n"
-#~ "use (formatting meaning creating a filesystem). At this time, you may\n"
-#~ "wish to re-format some already existing partitions to erase the data\n"
-#~ "they contain. Note: it is not necessary to re-format pre-existing\n"
-#~ "partitions, particularly if they contain files or data you wish to keep.\n"
-#~ "Typically retained are /home and /usr/local."
-#~ msgstr ""
-#~ "Visos naujai nustatytos sritys norint jas naudoti turi bűti "
-#~ "suformatuotos\n"
-#~ "(formatavimas reiđia falinës sistemos sukűrimŕ). Dabar jűs gal bűt "
-#~ "norite\n"
-#~ "iđnaujo suformatuoti jau formatuotas sritis, kad iđtrinti jose esančius\n"
-#~ "duomenis. Atminkite kad iđnaujo formatuoti jau formatuotas sitis nëra\n"
-#~ "bűtina, nes jose gali bűti reikalinga informacija."
-
-#~ msgid "Apple ADB Mouse"
-#~ msgstr "Apple ADB pelë"
-
-#~ msgid "Apple ADB Mouse (2 Buttons)"
-#~ msgstr "Apple ADB pelë (2 klaviđai)"
-
-#~ msgid "Apple ADB Mouse (3+ Buttons)"
-#~ msgstr "Apple ADB pelë (3+ klaviđai)"
-
-#~ msgid "Apple USB Mouse"
-#~ msgstr "Apple USB pelë"
-
-#~ msgid "Apple USB Mouse (2 Buttons)"
-#~ msgstr "Apple USB pelë (2 klaviđai)"
-
-#~ msgid "Apple USB Mouse (3+ Buttons)"
-#~ msgstr "Apple USB pelë (3+ klaviđai)"
+#~ "Jei procentř maţai, bus ádiegti tik patys svarbiausi paketai;\n"
+#~ "su 100% bus ádiegti visi paţymëti paketai."
#~ msgid ""
-#~ "Are you sure you are an expert? \n"
-#~ "You will be allowed to make powerful but dangerous things here.\n"
+#~ "You have space on your disk for only %d%% of these packages.\n"
#~ "\n"
-#~ "You will be asked questions such as: ``Use shadow file for passwords?'',\n"
-#~ "are you ready to answer that kind of questions?"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
#~ msgstr ""
-#~ "Ar tu tikri, kad esi ekspertas? \n"
-#~ "tau bus leidţiama daryti galingus, bet ir pavojingus dalykus čia.\n"
-#~ "\n"
-#~ "Tavćs bus klausiama, pvz: ĽNaudoti đeđëlinć bylŕ slaptaţodţiams?´,\n"
-#~ "ar esi pasiruođć atsakyti á tokius klausimus?"
-
-#~ msgid ""
-#~ "At this point, you need to choose what\n"
-#~ "partition(s) to use to install your new Mandrake Linux system. If "
-#~ "partitions\n"
-#~ "have been already defined (from a previous installation of GNU/Linux or "
-#~ "from\n"
-#~ "another partitioning tool), you can use existing partitions. In other "
-#~ "cases,\n"
-#~ "hard drive partitions must be defined.\n"
-#~ "\n"
-#~ "\n"
-#~ "To create partitions, you must first select a hard drive. You can select "
-#~ "the\n"
-#~ "disk for partitioning by clicking on \"hda\" for the first IDE drive, "
-#~ "\"hdb\" for\n"
-#~ "the second or \"sda\" for the first SCSI drive and so on.\n"
-#~ "\n"
-#~ "\n"
-#~ "To partition the selected hard drive, you can use these options:\n"
-#~ "\n"
-#~ " * Clear all: this option deletes all partitions available on the "
-#~ "selected hard drive.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Auto allocate:: this option allows you to automatically create Ext2 "
-#~ "and swap partitions in free space of your\n"
-#~ " hard drive.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Rescue partition table: if your partition table is damaged, you can "
-#~ "try to recover it using this option. Please\n"
-#~ " be careful and remember that it can fail.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Undo: you can use this option to cancel your changes.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Reload: you can use this option if you wish to undo all changes and "
-#~ "load your initial partitions table\n"
-#~ "\n"
-#~ "\n"
-#~ " * Wizard: If you wish to use a wizard to partition your hard drive, "
-#~ "you can use this option. It is recommended if\n"
-#~ " you do not have a good knowledge in partitioning.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Restore from floppy: if you have saved your partition table on a "
-#~ "floppy during a previous installation, you can\n"
-#~ " recover it using this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Save on floppy: if you wish to save your partition table on a floppy "
-#~ "to be able to recover it, you can use this\n"
-#~ " option. It is strongly recommended to use this option\n"
-#~ "\n"
-#~ "\n"
-#~ " * Done: when you have finished partitioning your hard drive, use this "
-#~ "option to save your changes.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, you can reach any option using the keyboard: navigate "
-#~ "trough the partitions using Tab and Up/Down arrows.\n"
-#~ "\n"
-#~ "\n"
-#~ "When a partition is selected, you can use:\n"
-#~ "\n"
-#~ " * Ctrl-c to create a new partition (when a empty partition is "
-#~ "selected)\n"
-#~ "\n"
-#~ " * Ctrl-d to delete a partition\n"
-#~ "\n"
-#~ " * Ctrl-m to set the mount point\n"
-#~ " \n"
+#~ "Tu turi vietos diske tik %d%% điř paketř.\n"
#~ "\n"
-#~ " \n"
-#~ "If you are installing on a PPC Machine, you will want to create a small "
-#~ "HFS 'bootstrap' partition of at least 1MB for use\n"
-#~ "by the yaboot bootloader. If you opt to make the partition a bit larger, "
-#~ "say 50MB, you may find it a useful place to store \n"
-#~ "a spare kernel and ramdisk image for emgergency boot situations."
-#~ msgstr ""
-#~ "Dabar tu turi pasirinkti, kuriuos skirsnius naudoti tavo naujai Mandrake "
-#~ "Linux \n"
-#~ "sistemai ádiegti. Jei skirsniai jau buvo apibrëţti (iđ praeito ádiegimo "
-#~ "arba kitu dalinimo árankiu),\n"
-#~ "tu gali naudoti esančius skirsnius. Kitu atveju, skirsniai turi bűti "
-#~ "apibrëţti.\n"
-#~ "\n"
-#~ "\n"
-#~ "Kad sukurtum skirsnius, tu pirmiausia turi pasirinkti kietŕjá diskŕ. "
-#~ "Diskŕ dalinimui\n"
-#~ "gali pasirinkti, paspaudćs ant \"hda\" jei nori pirmo IDE kaupiklio, \"hdb"
-#~ "\" -- antro,\n"
-#~ "arba \"sda\", jei renkiesi pirmŕjá SCSI kaupiklá ir t.t.\n"
-#~ "\n"
-#~ "\n"
-#~ "Kad sudalintum skirsniais pasirinktŕ kietŕjá diskŕ, gali naudotis vienu "
-#~ "iđ điř variantř:\n"
-#~ "\n"
-#~ " * Iđvalyti viskŕ: đis variantas iđtrina visus skirsnius, esančius "
-#~ "pasirinktame kietajame diske.\n"
-#~ "\n"
-#~ "\n"
-#~ "   * Automatiđkai paskirti: đis variantas leidţia automatiđkai sukurti "
-#~ "Ext2 bei swap skirsnius laisvoje tavo\n"
-#~ " disko vietoje.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Iđgelbëti skirsniř lentelć: jei disko skirsniř lentelë yra "
-#~ "sugadinta, tu gali bandyti atstatyti jŕ su điuo variantu.\n"
-#~ " Bűk atsargus ir prisimink, kad tai gali nepavykti.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Atđaukti: tu gali naudoti đá variantŕ, kad atđauktum visus tavo "
-#~ "pakeitimus.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Iđ naujo: tu gali rinktis đá variantŕ, kad atsisakytum visř savo "
-#~ "pakeitimř ir ákeltum pradinć skirsniř lentelć.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Meistras: jei tu nori, kad meistras tau padëtř sudalinti kietŕjá "
-#~ "diskŕ, rinkis đá variantŕ. Tai rekomenduojama, jeigu\n"
-#~ " tu nelabai iđmanai apie skirsniř dalinimŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Atkurti iđ diskelio: jei tu iđsaugojai savo skirsniř lentelć á "
-#~ "diskelá ádiegdamas praeitŕ kartŕ, tu gali atkurti jŕ\n"
-#~ " naudodamasis điuo variantu.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Iđsaugoti á diskelá: jei tu nori iđsaugoti savo skirsniř lentelć á "
-#~ "diskelá, kad galëtum paskui atkurti jŕ, rinkis đá\n"
-#~ " variantŕ. labai rekomenduojama, kad tu tai padarytum.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Atlikta: jei tu baigei dalinti savo kietŕjá diskŕ, rinkis đá "
-#~ "variantŕ, kad iđsaugotum visus pakeitimus.\n"
-#~ "\n"
-#~ "\n"
-#~ "Tavo ţiniai, tu gali pasiekti bet kurá variantŕ naudodamasis klaviatűra: "
-#~ "vaikđčiok tarp skirsniř su Tab bei\n"
-#~ "Aukđtyn/Ţemyn rodyklëmis.\n"
-#~ "\n"
-#~ "\n"
-#~ "Kai skirsnis yra parinktas, gali naudoti:\n"
-#~ "\n"
-#~ "* Ctrl-c kad sukurtum naujŕ skirsná (jei parinktas tuđčias skirsnis)\n"
-#~ "\n"
-#~ "* Ctrl-d kad iđtrintum skirsná.\n"
-#~ "\n"
-#~ "* Ctrl-m kad nurodytum prijungimŕ tađkŕ."
-
-#~ msgid "Auto install floppy"
-#~ msgstr "Auto ádiegimo diskelis"
-
-#~ msgid "Automatic resolutions"
-#~ msgstr "Automatinë skiriamoji geba"
-
-#~ msgid "Automatical resolutions search"
-#~ msgstr "Automatinë skiriamosios gebos paieđka"
-
-#~ msgid "Available packages"
-#~ msgstr "Prieinami paketai"
-
-#~ msgid "Bad kickstart file %s (failed %s)"
-#~ msgstr "Bloga kickstart byla %s (nepavyko %s)"
-
-#~ msgid "Cable connecion"
-#~ msgstr "Kabelinë jungtis"
-
-#~ msgid "Category"
-#~ msgstr "Kategorijŕ"
-
-#~ msgid ""
-#~ "Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and "
-#~ "file transfer tools"
-#~ msgstr ""
-#~ "Pokalbiř (IRC arba instant messaging) programos, kaip xchat, licq, gaim, "
-#~ "ir bylř siuntimo programos"
-
-#~ msgid "Checking dependencies"
-#~ msgstr "Tikrinamos priklausomybës"
-
-#~ msgid ""
-#~ "Choose \"Install\" if there are no previous versions of GNU/Linux\n"
-#~ "installed, or if you wish to use multiple distributions or versions.\n"
-#~ "\n"
-#~ "Choose \"Rescue\" if you wish to rescue a version of Mandrake Linux "
-#~ "already installed.\n"
-#~ "\n"
-#~ "\n"
-#~ "Select:\n"
-#~ "\n"
-#~ " - Recommended: If you have never installed GNU/Linux before, choose "
-#~ "this.\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!\n"
-#~ msgstr ""
-#~ "Pasirinkite \"Ádiegti\" jeigu nebuvo ádiegta ankstesniř GNU/Linux "
-#~ "versijř\n"
-#~ "arba jűs norite turëti jř keletŕ.\n"
-#~ "\n"
-#~ "Pasirinkite \"Iđgelbëti\" jeigu norite iđgelbëti jau ádiegtŕ Mandrake "
-#~ "Linux \n"
-#~ "\n"
-#~ "\n"
-#~ "Pasirinkite:\n"
-#~ "\n"
-#~ " - Rekomenduojama: Jeigu jums ansčiau nëra tekć ádiegti GNU/Linux.\n"
-#~ "\n"
-#~ " - Vartotojiđka: Jeigu jau turëjote reikalř su GNU/Linux. Galësite "
-#~ "pasirinkti\n"
-#~ "pirminć kompiuterio funkcijŕ\n"
-#~ "\n"
-#~ " - Eksperto: Jeigu jűs puikiai sekasi su GNU/Linux iđsprćsti rimtas "
-#~ "uţduotis.\n"
-#~ "Kaip ir konfiguracijoje \"Vartotojiđka\" jűs galësite pasirinkti koks "
-#~ "bus\n"
-#~ "đios sistemos panaudojimas.\n"
-#~ " Bet Prađome, Prađome NESIRINKITE TAI, APIE KŔ JŰS NIEKO NEŢINOTE!\n"
-
-#~ msgid ""
-#~ "Choose \"Install\" if there are no previous versions of Linux\n"
-#~ "installed, or if you wish to use multiple distributions or versions.\n"
-#~ "\n"
-#~ "\n"
-#~ "Choose \"Upgrade\" if you wish to update a previous version of Mandrake "
-#~ "Linux:\n"
-#~ "5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-#~ "2000\n"
-#~ "or 7.0 (Air)."
-#~ msgstr ""
-#~ "Pasirinkite \"Ádiegti\" jeigu nebuvo ádiegta ankstesniř Linux versijř "
-#~ "arba\n"
-#~ "jűs norite turëti jř keletŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Pasirinkite \"Atnaujinti\" jeigu norite atnaujinti ankstesnes Mandrake\n"
-#~ "Linux: 5.1 (Venice), 5.2 (Leeloo), 5.3 (Festen) or 6.0 (Venus),\n"
-#~ "6.1 (Helios), Gold 2000 arba 7.0 (Air)."
-
-#~ msgid "Choose install or upgrade"
-#~ msgstr "Ádiegti ar atnaujinti"
-
-#~ msgid "Choose other CD to install"
-#~ msgstr "Pasirinkite kitŕ CD ádiegimui"
-
-#~ msgid "Collapse all"
-#~ msgstr "Iđskleisti visus"
-
-#~ msgid "Communication facilities"
-#~ msgstr "Bendravimo priemonës"
-
-#~ msgid "Configure local network"
-#~ msgstr "Nustatyti vietiná tinklŕ"
-
-#~ msgid "Configure the Internet connection / Configure local Network"
-#~ msgstr "Nustatyti interneto jungtá / Nustatyti vietiná tinklŕ"
-
-#~ msgid "Configure timezone"
-#~ msgstr "Nurodyti laiko juostŕ"
-
-#~ msgid "Confirm Password"
-#~ msgstr "Patvirtink slaptaţodá"
-
-#~ msgid "Cryptographic"
-#~ msgstr "Kriptografija"
-
-#~ msgid "Customized"
-#~ msgstr "Prisitaikyta"
-
-#~ msgid "Czech"
-#~ msgstr "Čekř"
-
-#~ msgid "Databases clients and servers (mysql and postgresql)"
-#~ msgstr "Duomenř baziř klientai ir serveriai (mysql bei postgresql)"
-
-#~ msgid "Development C/C++"
-#~ msgstr "Kűrimas C/C++"
-
-#~ msgid "Directory"
-#~ msgstr "Katalogas"
-
-#~ msgid "Disable Internet Connection"
-#~ msgstr "Uţdrausti interneto jungtá"
-
-#~ msgid ""
-#~ "Do you want to configure a dialup connection with modem for your system?"
-#~ msgstr "Ar Jűs norite nustatyti savo modemo dialup prisijungimŕ?"
-
-#~ msgid "Do you want to configure a local network for your system?"
-#~ msgstr "Ar Jűs norite nustatyti savo sistemos vietiná tinklŕ?"
-
-#~ msgid "Do you want to use LILO?"
-#~ msgstr "Ar norite naudoti LILO?"
-
-#~ msgid "Downloading cryptographic packages"
-#~ msgstr "Parsiunčiami đifruoti paketai"
-
-#~ msgid ""
-#~ "DrakX will attempt at first to look for one or more PCI\n"
-#~ "SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-#~ "to use, it will insert it (them) automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-#~ "doesn't know which driver to use for this card, or if you have no\n"
-#~ "SCSI adapters at all, you will then be prompted on whether you have\n"
-#~ "one or not. If you have none, answer \"No\". If you have one or more,\n"
-#~ "answer \"Yes\". A list of drivers will then pop up, from which you\n"
-#~ "will have to select one.\n"
-#~ "\n"
-#~ "\n"
-#~ "After you have selected the driver, DrakX will ask if you\n"
-#~ "want to specify options for it. First, try and let the driver\n"
-#~ "probe for the hardware: it usually works fine.\n"
-#~ "\n"
-#~ "\n"
-#~ "If not, do not forget the information on your hardware that you\n"
-#~ "could get from your documentation or from Windows (if you have it\n"
-#~ "on your system), as suggested by the installation guide. These\n"
-#~ "are the options you will need to provide to the driver."
-#~ msgstr ""
-#~ "Pirmiausia DrakX pabandys paieđkoti PCI ir SCSI árenginiř. Jeigu jis "
-#~ "suras\n"
-#~ "ir ţinos kokias tvarkykles jam (jiems) naudoti jis automatiđkai jas "
-#~ "ádës.\n"
-#~ "\n"
-#~ "\n"
-#~ "Jeigu jűsř SCSI árenginys yra ISA plokđtë arba DrakX neţinos kaip já "
-#~ "valdyti\n"
-#~ "arba jűs iđvis jo neturite jums bus praneđta. Jeigu jűs neturite, "
-#~ "atsakykite\n"
-#~ "\"Ne\". Jeigu turite vienq arba daugiau atsakykite \"Taip\" ir tvarkykliř "
-#~ "sŕrađas\n"
-#~ "bus jums parodytas\n"
-#~ "\n"
-#~ "\n"
-#~ "Kai jűs pasirinksite tvarkyklć, DrakX paprađys nurodyti jos nustatymus.\n"
-#~ "Pirmiausia leiskite árangai pačiai nusistatyti. Daţnai tai puikiai "
-#~ "suveikia\n"
-#~ "\n"
-#~ "\n"
-#~ "\n"
-#~ "Jeigu jums nepavyks, nepamirđkite, kad informacijos apie jűsř árangŕ "
-#~ "gali\n"
-#~ "suteikti dokumentacija arba Windows (jeigu jűs turite điŕ sistemŕ).\n"
-#~ "Tai tuos nustatymus jűs turite perduoti tvarkyklei."
-
-#~ msgid "ECI modem"
-#~ msgstr "ECI modemas"
-
-#~ msgid "Enable num lock at startup"
-#~ msgstr "Startuojant ájungti Num Lock"
-
-#~ msgid ""
-#~ "Enter a floppy to create an HTP enabled boot\n"
-#~ "(all data on floppy will be lost)"
-#~ msgstr ""
-#~ "Ádëkite diskelá á kaupiklá, kad sukurti HTP diskelá\n"
-#~ "(Visi duomenys esantys dikelyje bus prarasti)"
-
-#~ msgid "Everything has been configured.\n"
-#~ msgstr "Viskas sukonfiguruota.\n"
-
-#~ msgid "Expand all"
-#~ msgstr "Iđskleisti visus"
-
-#~ msgid "Find Package"
-#~ msgstr "Rasti paketŕ"
-
-#~ msgid "Find Package containing file"
-#~ msgstr "Rasti bylŕ su atitinkamu paketu"
-
-#~ msgid "Finding leaves"
-#~ msgstr "Ieđkoma lapř"
-
-#~ msgid "Finding leaves takes some time"
-#~ msgstr "Lapř ieđkojimas điek tiek uţtruks"
-
-#~ msgid ""
-#~ "For FTP and HTTP, you need to give the location for hdlist\n"
-#~ "It must be relative to the URL above"
-#~ msgstr ""
-#~ "FTP ir HTTP metodams tu turi nurodyti vietŕ, kur yra hdlist\n"
-#~ "Ji turi bűti nurodyta santykinai aukđčiau esančiam URL"
-
-#~ msgid "Forget the changes?"
-#~ msgstr "Ar pamirđti pakeitimus?"
-
-#~ msgid "Generic 3 Button Mouse (serial)"
-#~ msgstr "Paprasta 3 klaviđř pelë (serijinë)"
-
-#~ msgid "Generic Mouse (serial)"
-#~ msgstr "Paprasta pelë (serijinë)"
-
-#~ msgid "Genius NetMouse (serial)"
-#~ msgstr "Genius NetMouse (serijinë)"
-
-#~ msgid "Genius NetMouse Pro"
-#~ msgstr "Genius NetMouse Pro"
-
-#~ msgid "Give a name (eg: `extra', `commercial')"
-#~ msgstr "Nurodyk vardŕ (pvz: `extra', `commercial')"
-
-#~ msgid "Gnome"
-#~ msgstr "Gnome"
-
-#~ msgid "Going to install %d MB. You can choose to install more programs"
-#~ msgstr "Ruođiamasi ádiegti %d MB. Jűs galite pasirinkti daugiau programř"
-
-#~ msgid "Going to remove entry %s"
-#~ msgstr "Ruođiamasi iđmesti árađŕ %s"
-
-#~ msgid "Graphics Manipulation"
-#~ msgstr "Grafinë sŕsaja"
-
-#~ msgid ""
-#~ "Here are the following entries in SILO.\n"
-#~ "You can add some more or change the existing ones."
-#~ msgstr ""
-#~ "SILO turi sekančius árađus.\n"
-#~ "Jűs galite pakeisti esamus arba pridëti naujř."
-
-#~ msgid ""
-#~ "I can try to find the available resolutions (eg: 800x600).\n"
-#~ "Sometimes, though, it may hang the machine.\n"
-#~ "Do you want to try?"
-#~ msgstr ""
-#~ "Ađ galiu pabandyti surasti prieinamŕ skiriamŕjŕ gebŕ (pvz.: 800x600).\n"
-#~ "Bet kompiuteris gali \"pakibti\"\n"
-#~ "Ar Jűs norite pabandyti?"
-
-#~ msgid "I have found an ISDN Card:\n"
-#~ msgstr "Ađ radau ISDN plokđtć:\n"
-
-#~ msgid ""
-#~ "If DrakX failed to find your mouse, or if you want to\n"
-#~ "check what it has done, you will be presented the list of mice\n"
-#~ "above.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you agree with DrakX's settings, just click 'Ok'.\n"
-#~ "Otherwise you may choose the mouse that more closely matches your own\n"
-#~ "from the menu above.\n"
-#~ "\n"
-#~ "\n"
-#~ "In case of a serial mouse, you will also have to tell DrakX\n"
-#~ "which serial port it is connected to."
-#~ msgstr ""
-#~ "Jeigu DrakX nepavyko surasti jűsř pelës arba jűs pats norite jŕ\n"
-#~ "nurodyti; jums bus parodytas sŕrađas\n"
-#~ "\n"
-#~ "\n"
-#~ "Jeigu jűs sutinkate su DrakX nustatymais tiesiog paspauskite OK.\n"
-#~ "Kitokiu atveju pasirinkite pelć kuri jums labiausiai tinka.\n"
-#~ "\n"
-#~ "\n"
-#~ "Jeigu pas jus yra pelë su serijine jungtimi jums taip pat reikës "
-#~ "nurodyti\n"
-#~ "prie kokios jungties ji yra prijungta."
-
-#~ msgid ""
-#~ "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
-#~ msgstr ""
-#~ "Jei tavo ADSL modemas yra Alcatel, pasirink Alcatel, kitu atveju -- ECI."
-
-#~ msgid "In which country are you located ?"
-#~ msgstr "Kurioje valstybëje tu dabar esi?"
-
-#~ msgid "Install/Rescue"
-#~ msgstr "Ádiegti/Iđgelbëti"
-
-#~ msgid "Installation of SILO failed. The following error occured:"
-#~ msgstr "SILO ádiegimas nepavyko. Ávyko sekanti klaida:"
-
-#~ msgid "Installed packages"
-#~ msgstr "Ádiegti paketai"
-
-#~ msgid "Internet Tools"
-#~ msgstr "Interneto árankiai"
-
-#~ msgid "It is necessary to restart installation booting on the floppy"
-#~ msgstr "Ádiegimŕ reikia perstartuoti iđ diskelio"
-
-#~ msgid "It is necessary to restart installation with the new parameters"
-#~ msgstr "Ádiegimŕ reikia perstartuoti su naujais parametrais"
-
-#~ msgid ""
-#~ "It is strongly recommended that you answer \"Yes\" here. If you install\n"
-#~ "Microsoft Windows at a later date it will overwrite the boot sector.\n"
-#~ "Unless you have made a bootdisk as suggested, you will not be able to\n"
-#~ "boot into GNU/Linux any more."
-#~ msgstr ""
-#~ "Labai rekomenduojama čia pasirinkti \"Taip\". Jeigu jűs vëliau \n"
-#~ "ádieginësite Microsoft Windows ji naujai uţrađys startavimo sektoriř.\n"
-#~ "Tada nepadarć startavimo diskelio kaip mes patarëje nebegalësite\n"
-#~ "startuoti GNU/Linux."
-
-#~ msgid "KDE"
-#~ msgstr "KDE"
-
-#~ msgid "KDE, QT, Gnome, GTK+"
-#~ msgstr "KDE, QT, Gnome, GTK+"
-
-#~ msgid ""
-#~ "LILO (the LInux LOader) can boot Linux and other operating systems.\n"
-#~ "Normally they are correctly detected during installation. If you don't\n"
-#~ "see yours detected, you can add one or more now.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you don't want that everybody could access at one of them, you can "
-#~ "remove\n"
-#~ "it now (a boot disk will be needed to boot it)."
-#~ msgstr ""
-#~ "LILO (LInux LOader) gali startuoti ir kitas Operacines sistemas.\n"
-#~ "Normaliai jos yra tinkamai nustatomos per ádiegiant. Jeigu jűsř sistema\n"
-#~ "neaptikta jűs dabar galite pridëti vienŕ arba keletŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Jeigu jűs nenorite kuriř nors naudoti galite iđimti (tada startavimo\n"
-#~ "diskelis gai uţkrauti tŕ sistemŕ)."
-
-#~ msgid "Linear (needed for some SCSI drives)"
-#~ msgstr "Tiesus (reikalingas keletui SCSI kaupikliř)"
-
-#~ msgid "Local LAN"
-#~ msgstr "Lokalus LAN"
-
-#~ msgid ""
-#~ "Local networking has already been configured.\n"
-#~ "Do you want to:"
-#~ msgstr ""
-#~ "Vietinis tinklas jau buvo sukonfigűruotas.\n"
-#~ "Ar tu nori:"
-
-#~ msgid "Logitech Bus Mouse"
-#~ msgstr "Logitech pelë"
-
-#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-#~ msgstr "Logitech MouseMan+/FirstMouse+ (serijinë)"
-
-#~ msgid "MD5"
-#~ msgstr "MD5"
-
-#~ msgid "Microsoft Bus Mouse"
-#~ msgstr "Microsoft pelë"
-
-#~ msgid "Microsoft Rev 2.1A or higher (serial)"
-#~ msgstr "Microsoft 2.1A arba vëlesnës Rev (serijinë)"
-
-#~ msgid "Microsoft compatible (serial)"
-#~ msgstr "Suderinama su Microsoft (serijinë)"
-
-#~ msgid "Move your wheel!"
-#~ msgstr "Pajudinkite ratukŕ!"
-
-#~ msgid "Network adaptater 1 (eth0):"
-#~ msgstr "Tinklo adapteris 1 (eth0):"
-
-#~ msgid "No cdrom available (nothing in /mnt/cdrom)"
-#~ msgstr "Cdrom neprieinamas (nieko nëra /mnt/cdrom)"
-
-#~ msgid "No match"
-#~ msgstr "Nieko nerasta"
-
-#~ msgid "No more match"
-#~ msgstr "Daugiau nieko nerasta"
-
-#~ msgid ""
-#~ "No valid modes found\n"
-#~ "Try with another video card or monitor"
-#~ msgstr ""
-#~ "Nerasta galimř variantř\n"
-#~ "Pabandykite kitŕ video plokđtć arba monitoriř"
-
-#~ msgid "Other countries"
-#~ msgstr "Kitos valstybës"
-
-#~ msgid "Package"
-#~ msgstr "Paketas"
-
-#~ msgid "Password:"
-#~ msgstr "Slaptaţodis:"
-
-#~ msgid "Please choose a partition to use as your root partition."
-#~ msgstr "Prađome pasirinkti skirsná, kurá Jűs naudosite kaip pagrindiná."
-
-#~ msgid "Please submit the following information"
-#~ msgstr "Prađom patvirtinti sekančiŕ informacijŕ"
-
-#~ msgid "Python, Perl, libraries, tools"
-#~ msgstr "Python, Perl, bibliotekos, árankiai"
-
-#~ msgid "Reconfigure using wizard..."
-#~ msgstr "Konfigűruojama..."
-
-#~ msgid "Regexp"
-#~ msgstr "Regexp"
-
-#~ msgid "Rescue"
-#~ msgstr "Iđgelbëti"
-
-#~ msgid "SILO main options"
-#~ msgstr "Bendri SILO nustatymai"
-
-#~ msgid "Sciences"
-#~ msgstr "Mokslai"
-
-#~ msgid "Sciencific Workstation"
-#~ msgstr "Mokslinës darbo stotis"
-
-#~ msgid "Search"
-#~ msgstr "Paieđka"
-
-#~ msgid "Searching root partition."
-#~ msgstr "Ieđkomas pagrindinis skirsnis."
-
-#~ msgid "Select the size you want to install"
-#~ msgstr "Pasirink dydá, kiek nori ádiegti"
-
-#~ msgid ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Recommended: If you have never installed Linux before.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Customized: If you are familiar with Linux, you will be able to \n"
-#~ "select the usage for the installed system between normal, development or\n"
-#~ "server. Choose \"Normal\" for a general purpose installation of your\n"
-#~ "computer. You may choose \"Development\" if you will be using the "
-#~ "computer\n"
-#~ "primarily for software development, or choose \"Server\" if you wish to\n"
-#~ "install a general purpose server (for mail, printing...).\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: If you are fluent with GNU/Linux and want to perform\n"
-#~ "a highly customized installation, this Install Class is for you. You "
-#~ "will\n"
-#~ "be able to select the usage of your installed system as for \"Customized"
-#~ "\"."
-#~ msgstr ""
-#~ "Pasirinkite:\n"
-#~ "\n"
-#~ " - Rekomenduojama: Jeigu jums ansčiau nëra tekć ádiegti Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Vartotojiđka: Jeigu jau turëjote reikalř su Linux. Galësite "
-#~ "pasirinkti\n"
-#~ "\"Normali\" bendros reikđmës sistemos ádiegimui, \"Kűrimo\" jeigu "
-#~ "naudojate\n"
-#~ "savo kompiuterá kurti programoms ir \"Serverinë\" jeigu norite turëti "
-#~ "bendros paskirties (pvz. pađto, spausdintuvo...) serverá.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Eksperto: Jeigu jűs puikiai sekasi su GNU/Linux iđsprćsti rimtas "
-#~ "uţduotis.\n"
-#~ "Kaip ir konfiguracijoje \"Vartotojiđka\" jűs galësite pasirinkti koks "
-#~ "bus\n"
-#~ "đios sistemos panaudojimas."
-
-#~ msgid "Setup SCSI"
-#~ msgstr "Nustatyti SCSI"
-
-#~ msgid "Show less"
-#~ msgstr "Rodyti maţiau"
-
-#~ msgid "Show more"
-#~ msgstr "Rodyti daugiau"
-
-#~ msgid "Show only leaves"
-#~ msgstr "Rodyti tik lapus"
-
-#~ msgid "Shutting down"
-#~ msgstr "Bandoma iđjungti"
-
-#~ msgid "Size: %s MB"
-#~ msgstr "Dydis: %s MB"
-
-#~ msgid "Slovakian"
-#~ msgstr "Slovakř"
-
-#~ msgid "Sort by"
-#~ msgstr "Rűđiuoti pagal"
-
-#~ msgid "The following packages are going to be uninstalled"
-#~ msgstr "Sekančius paketus ruođiamasi iđmesti"
-
-#~ msgid ""
-#~ "The packages selected are now being installed. This operation\n"
-#~ "should take a few minutes unless you have chosen to upgrade an\n"
-#~ "existing system, in that case it can take more time even before\n"
-#~ "upgrade starts."
-#~ msgstr ""
-#~ "Dabar yra ádiegiami paketai, kuriuos jűs pasirinkote. Tai turëtř\n"
-#~ "keletŕ minučiř uţtrukti, tačiau jeigu jűs pasirinkote atnaujinti\n"
-#~ "tai turëtř uţtrukti kiek ilgiau."
-
-#~ msgid "This label is already in use"
-#~ msgstr "Đi ţymë jau naudojama"
-
-#~ msgid ""
-#~ "This section is dedicated to configuring a local area\n"
-#~ "network (LAN) or a modem.\n"
-#~ "\n"
-#~ "Choose \"Local LAN\" and DrakX will\n"
-#~ "try to find an Ethernet adapter on your machine. PCI adapters\n"
-#~ "should be found and initialized automatically.\n"
-#~ "However, if your peripheral is ISA, autodetection will not work,\n"
-#~ "and you will have to choose a driver from the list that will appear "
-#~ "then.\n"
-#~ "\n"
-#~ "\n"
-#~ "As for SCSI adapters, you can let the driver probe for the adapter\n"
-#~ "in the first time, otherwise you will have to specify the options\n"
-#~ "to the driver that you will have fetched from documentation of your\n"
-#~ "hardware.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you install a Mandrake Linux system on a machine which is part\n"
-#~ "of an already existing network, the network administrator will\n"
-#~ "have given you all necessary information (IP address, network\n"
-#~ "submask or netmask for short, and hostname). If you're setting\n"
-#~ "up a private network at home for example, you should choose\n"
-#~ "addresses.\n"
-#~ "\n"
-#~ "\n"
-#~ "Choose \"Dialup with modem\" and the Internet connection with\n"
-#~ "a modem will be configured. DrakX will try to find your modem,\n"
-#~ "if it fails you will have to select the right serial port where\n"
-#~ "your modem is connected to."
-#~ msgstr ""
-#~ "Đi sekcija yra skirta vietinio tinklo (LAN) nustatymui.\n"
-#~ "\n"
-#~ "Jeigu jűs pasakyrite \"Taip\" DrakX pabandys pats surasti tinklo kortŕ.\n"
-#~ "PCI árenginys turëtř bűti surastas ir prijungtas automatiđkai. Tačiau\n"
-#~ "jeigu jűsř turite ISA árenginá automatinis aptikimas nesuveiks ir jűs\n"
-#~ "turësite nurodyti tvarkyklć iđ sŕrađo, kuris tada pasirodys.\n"
-#~ "\n"
-#~ "\n"
-#~ "Dël SCSI árenginiř, leiskite tvarkyklei pirmiau pačiai pabandyti "
-#~ "árenginá,\n"
-#~ "nes kitokio atveju jums teks nurodyti nustatymus iđ Windows Control "
-#~ "Panel\n"
-#~ "konfiguracijos\n"
-#~ "\n"
-#~ "\n"
-#~ "Jeigu jűs ádiegiate Mandrake Linux á kompiuterá, kuris jau yra tinkle\n"
-#~ "tinklo administratorius jums turi nurodyti informacijŕ apie IP adresŕ,\n"
-#~ "tinklo subkaukć ir tinklo kaukć. Ádiegiant privačiam tinkle namuose, jums "
-#~ "tai\n"
-#~ "reikës pasirinkti pačiam."
-
-#~ msgid ""
-#~ "To find the available resolutions I will try different ones.\n"
-#~ "Your screen will blink...\n"
-#~ "You can switch if off if you want, you'll hear a beep when it's over"
-#~ msgstr ""
-#~ "Ađ pabandysiu ávairias galimas skiriamasias gebas.\n"
-#~ "Jűsř ekranas mirgës...\n"
-#~ "Jeigu norite, galite já iđjungti, Jűs iđgirsite pyptelëjimŕ, kai bus "
-#~ "baigta"
-
-#~ msgid "Toggle between Installed and Available"
-#~ msgstr "Perjungti tarp ádiegtř ir prieinamř"
-
-#~ msgid "Tree"
-#~ msgstr "Medis"
-
-#~ msgid "Try to find %s devices?"
-#~ msgstr "Ar bandyti surasti %s árenginius"
-
-#~ msgid "Try to find PCI devices?"
-#~ msgstr "Ar bandyti surasti PCI árenginius"
-
-#~ msgid "Try to find PCMCIA cards?"
-#~ msgstr "Ar pabandyti surasti PCMCIA kortas?"
-
-#~ msgid "Try to find a modem?"
-#~ msgstr "Ar bandyti surasti modemŕ?"
-
-#~ msgid "URL of the directory containing the RPMs"
-#~ msgstr "URL katalogo, kuriame yra RPM'ai"
-
-#~ msgid "USB Mouse (3 buttons or more)"
-#~ msgstr "USB pelë (su 3 arba daugiau klaviđř)"
-
-#~ msgid "Update location"
-#~ msgstr "Atnaujinti suradimo vietŕ"
-
-#~ msgid "Updating the RPMs base"
-#~ msgstr "Atnaujinama RPM bazë"
-
-#~ msgid "Use MD5 passwords"
-#~ msgstr "Naudoti MD5 slaptaţodţius"
-
-#~ msgid "Use diskdrake"
-#~ msgstr "Naudoti DiskDrake"
-
-#~ msgid "Use shadow file"
-#~ msgstr "Naudoti đeđëlinć bylŕ"
-
-#~ msgid "User name:"
-#~ msgstr "Vartotojo vardas:"
-
-#~ msgid ""
-#~ "Welcome to LILO the operating system chooser!\n"
-#~ "\n"
-#~ "To list the possible choices, press <TAB>.\n"
-#~ "\n"
-#~ "To load one of them, write its name and press <ENTER> or wait %d seconds "
-#~ "for default boot.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Sveiki, besinaudojantys LILO, operaciniu sistemu ikrovos tvarkykle!\n"
-#~ "\n"
-#~ "Noredami suzinoti pasirinkimu sarasa, spauskite <TAB>.\n"
-#~ "\n"
-#~ "Noredami ijungti viena is ju, irasykite jo pavadinima ir spauskite "
-#~ "<ENTER>\n"
-#~ "arba laukite %d sekundziu ijungimo pagal nutylejima.\n"
-#~ "\n"
-
-#~ msgid ""
-#~ "Welcome to SILO the operating system chooser!\n"
-#~ "\n"
-#~ "To list the possible choices, press <TAB>.\n"
-#~ "\n"
-#~ "To load one of them, write its name and press <ENTER> or\n"
-#~ "wait %d seconds for default boot.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Sveiki, besinaudojantys SILO, operaciniu sistemu ikrovos tvarkykle!\n"
-#~ "\n"
-#~ "Noredami suzinoti pasirinkimu sarasa, spauskite <TAB>.\n"
-#~ "\n"
-#~ "Noredami ijungti viena is ju, irasykite jo pavadinima ir spauskite "
-#~ "<ENTER>\n"
-#~ "arba laukite %d sekundziu ijungimo pagal nutylejima.\n"
-#~ "\n"
-
-#~ msgid "What are looking for?"
-#~ msgstr "Ko ieđkai?"
-
-#~ msgid "What is the type of your mouse?"
-#~ msgstr "Kokia Jűsř pelës rűđis?"
-
-#~ msgid "What is your keyboard layout?"
-#~ msgstr "Koks Jűsř klaviatűros iđdëstymas"
-
-#~ msgid "What is your system used for?"
-#~ msgstr "Kam bus naudojama tavo sistema?"
-
-#~ msgid "What usage do you want?"
-#~ msgstr "Koks Jűsř vartojimas?"
-
-#~ msgid "Which bootloader(s) do you want to use?"
-#~ msgstr "Kokiŕ ákrovos tvarkyklć(-es) tu norëtum naudoti?"
-
-#~ msgid "Which file are you looking for?"
-#~ msgstr "Kurios bylos ieđkai?"
-
-#~ msgid "Which package are looking for"
-#~ msgstr "Kurio paketo ieđkai"
-
-#~ msgid "Which partition type do you want?"
-#~ msgstr "Kokio tipo skirsná norite turëti?"
-
-#~ msgid "Which serial port is your mouse connected to?"
-#~ msgstr "Prie kurios nuosekliosios jungties prijungta tavo pelë?"
-
-#~ msgid "You don't have any enough room for Lnx4win"
-#~ msgstr "Jums neuţtenka vietos Lnx4win"
-
-#~ msgid ""
-#~ "You may now select the packages you wish to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "First you can select group of package to install or upgrade. After that\n"
-#~ "you can select more packages according to the total size you wish to\n"
-#~ "select.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you are in expert mode, you can select packages individually.\n"
-#~ "Please note that some packages require the installation of others.\n"
-#~ "These are referred to as package dependencies. The packages you select,\n"
-#~ "and the packages they require will be automatically selected for\n"
-#~ "install. It is impossible to install a package without installing all\n"
-#~ "of its dependencies."
-#~ msgstr ""
-#~ "Dabar jűs galite pasirinkti kokius norite ádiegti paketus.\n"
-#~ "\n"
-#~ "\n"
-#~ "Pirmiausia jűs galite pasirinkti, kokiŕ paketř grupć jűs norite ádiegti\n"
-#~ "arba atnaujinti. Po to jűs galite pasirinkti paketus, kurius jűs norite\n"
-#~ "ádiegti priklausomai nuo vietos kiek tam skiriate.\n"
-#~ "\n"
-#~ "\n"
-#~ "Informacija apie konkrečius paketus galite pamatyti lauke, pavadintame\n"
-#~ " \"Info\" kuris yra deđinëje paketř sŕrađo pusëje."
-
-#~ msgid "automagic"
-#~ msgstr "Automagic"
-
-#~ msgid "beginner"
-#~ msgstr "pradedantysis"
-
-#~ msgid "brunette"
-#~ msgstr "brunetë"
-
-#~ msgid "changing type of"
-#~ msgstr "keičiamas "
-
-#~ msgid "default"
-#~ msgstr "Pagrindinis"
-
-#~ msgid "developer"
-#~ msgstr "programuotojas"
-
-#~ msgid "don't use pppoe"
-#~ msgstr "nenaudoti pppoe"
-
-#~ msgid "girl"
-#~ msgstr "mergina"
-
-#~ msgid "i18n (important)"
-#~ msgstr "i18n (svarbu)"
-
-#~ msgid "i18n (nice)"
-#~ msgstr "i18n (nuostabu)"
-
-#~ msgid "i18n (very nice)"
-#~ msgstr "i18n (labai gerai)"
-
-#~ msgid "linear"
-#~ msgstr "Tiesus"
-
-#~ msgid "loopback"
-#~ msgstr "loopback"
-
-#~ msgid "nfs mount failed"
-#~ msgstr "nfs prijungimas nepavyko"
-
-#~ msgid ""
-#~ "rpmdrake is currently in ``low memory'' mode.\n"
-#~ "I'm going to relaunch rpmdrake to allow searching files"
-#~ msgstr ""
-#~ "rpmdrake dabar yra Ľatminties taupymo´ reţime.\n"
-#~ "Ađ paleisiu rpmdrake iđ naujo, kad galëtum ieđkoti bylř"
-
-#~ msgid "tie"
-#~ msgstr "tie"
+#~ "Jei tu nori ádiegti maţiau, nei čia nurodyta,\n"
+#~ "pasirink, kiek procentř paketř tu norëtum ádiegti.\n"
+#~ "Jei procentř maţai, bus ádiegti tik patys svarbiausi paketai;\n"
+#~ "su %d%% bus ádiegtŕ tiek paketř, kiek tik ámanoma."
-#~ msgid "useless"
-#~ msgstr "nenaudinga"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Sekančiame ţingsnyje tu juos galësi pasirinkti tiksliau."
-#~ msgid "vertical traditionnal aurora"
-#~ msgstr "vertikali tradicinë aurora"
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Kiek procentř paketř ádiegti"
-#~ msgid "woman-blond"
-#~ msgstr "blondinë"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Pasirink saugumo lygá"
diff --git a/perl-install/share/po/lv.po b/perl-install/share/po/lv.po
index 206302fd7..4007b880d 100644
--- a/perl-install/share/po/lv.po
+++ b/perl-install/share/po/lv.po
@@ -1,38 +1,69 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2000 Free Software Foundation, Inc.
-# Copyright (c) 2000 MandrakeSoft
+# Copyright (c) 2000 MandrakeSoft.
# Vitauts Stochka <vit@dpu.lv>, 2000.
# Juris Kudiňđ <cooker@inbox.lv>, 2001.
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2001-08-22 00:12+0200\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2001-08-21 09:34+0200\n"
"Last-Translator: Juris Kudiňđ <cooker@inbox.lv>\n"
"Language-Team: Latvian\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-13\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Konfigurât visus ekrânus neatkarîgi"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Lietot Xinerama piebűvi"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Konfigurât tikai karti \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB vai vairâk"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Izvçlieties X serveri"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X serveris"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "N-ekrânu konfigurâcija"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -40,43 +71,44 @@ msgstr ""
"Jűsu sistçma atbalsta n-ekrânu konfigurâciju.\n"
"Ko nu darîsim?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Grafiskâ karte"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Izvçlieties grafiskâs kartes atmiňas apjomu"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Izvçlieties grafisko karti"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "XFree konfigurâcija"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Izvçlieties X serveri"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Kuru XFree konfigurâciju izvçlaties?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X serveris"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Konfigurât visus ekrânus neatkarîgi"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Izvçlieties X serveri"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Lietot Xinerama piebűvi"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X serveris"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Konfigurât tikai karti \"%s\" (%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Kuru XFree konfigurâciju izvçlaties?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s ar aparatűras 3D akselerâciju"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -85,32 +117,17 @@ msgstr ""
"Jűsu karte spçj nodrođinât 3D akselerâciju, bet tikai ar XFree %s.\n"
"Jűsu karti uztur XFree %s, kam var bűt labâks 2D atbalsts."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Jűsu karte spçj nodrođinât 3D akselerâciju ar XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s ar aparatűras 3D akselerâciju"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Jűsu karte spçj nodrođinât 3D akselerâciju ar XFree %s.\n"
-"ŇEMIET VÇRÂ, KA TAS IR EKSPERIMENTÂLS ATBALSTS, KAS VAR UZKÂRT DATORU."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s ar EKSPERIMENTÂLU aparatűras 3D akselerâciju"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -121,31 +138,58 @@ msgstr ""
"ŇEMIET VÇRÂ, KA TAS IR EKSPERIMENTÂLS ATBALSTS, KAS VAR UZKÂRT DATORU.\n"
"Jűsu karti uztur XFree %s, kam var bűt labâks 2D atbalsts."
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
+"Jűsu karte spçj nodrođinât 3D akselerâciju ar XFree %s.\n"
+"ŇEMIET VÇRÂ, KA TAS IR EKSPERIMENTÂLS ATBALSTS, KAS VAR UZKÂRT DATORU."
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree konfigurâcija"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Izvçlieties grafiskâs kartes atmiňas apjomu"
+#: ../../Xconfig/card.pm_.c:445
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Norâdiet servera opcijas"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Saglabât izmaiňas?\n"
+"Pađreizçjâ konfigurâcija ir:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Norâdiet monitoru"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitors"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Pielâgota"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Vispârçja"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Atsaukt"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -167,510 +211,325 @@ msgstr ""
"monitoru.\n"
" Ja neesat pârliecinâts, izvçlieties konservatîvâko variantu."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Horizontâlâ frekvence"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Vertikâlâ frekvence"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitors nav konfigurçts"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Grafiskâ karte vçl nav konfigurçta"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Izđíirtspçjas vçl nav izvçlçtas"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Vai vçlaties izmçěinât đo konfigurâciju?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Brîdinâjums: đîs grafiskâs kartes izmçěinâđana var uzkârt datoru"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Konfigurâcijas izmçěinâđana"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 krâsas (8 biti)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"mçěiniet izmainît daţus parametrus"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 tűkstođi krâsu (15 biti)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Atklâta kďűda:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 tűkstođi krâsu (16 biti)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Atliek %d sekundes"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 miljoni krâsu (24 biti)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Vai viss ir pareizi?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 miljardi krâsu (32 biti)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Atklâta kďűda, mçěiniet izmainît daţus parametrus"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Izđíirtspçjas"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Izđíirtspçja"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Norâdiet izđíirtspçju un krâsu dziďumu"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Grafiskâ karte: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 serveris: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Vairâk"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Atcelt"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Labi"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Eksperta reţîms"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Parâdît visu"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Vai vçlaties izmçěinât đo konfigurâciju?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Izđíirtspçjas"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Konfigurâcijas izmçěinâđana"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Tastatűras izkârtojums: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Peles tips: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Peles ierîce: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitors: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Monitora horiz. frekv.: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Monitora vert. frekv.: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Grafiskâ karte: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Grafiskâ karte: %s\n"
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Grafiskâ atmiňa: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Krâsu dziďums: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Izđíirtspçja: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 serveris: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 draiveris: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Gatavoju X-Window konfigurâciju"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Ko jűs vçlaties darît?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Monitora maiňa"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Grafiskâs kartes maiňa"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Servera opciju maiňa"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Izđíirtspçjas maiňa"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Parâdît informâciju"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Mçěinât vçlreiz"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Iziet"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Saglabât izmaiňas?\n"
-"Pađreizçjâ konfigurâcija ir:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X pçc startçđanas"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Datoru var konfigurçt, lai pçc sistçmas ielâdes automâtiski startçtu X.\n"
"Vai vçlaties, lai pçc pârstartçđanas tiktu palaists X?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Lai aktivizçtu izmaiňas, lűdzu aizveriet un atveriet %s sesiju"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Lűdzu aizveriet sesiju un nospiediet Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 krâsas (8 biti)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 tűkstođi krâsu (15 biti)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 tűkstođi krâsu (16 biti)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 miljoni krâsu (24 biti)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 miljardi krâsu (32 biti)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB vai vairâk"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Parasts VGA, 640x480 pie 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 pie 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 savietojams, 1024x768 pie 87 Hz ar joslâm (nav 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 pie 87 Hz ar joslâm, 800x600 pie 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Uzlabots Super VGA, 800x600 pie 60 Hz, 640x480 pie 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Ne-joslots SVGA, 1024x768 pie 60 Hz, 800x600 pie 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Augstas frekvences SVGA, 1024x768 pie 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frekvenču, kas uztur 1280x1024 pie 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frekcenču, kas uztur 1280x1024 pie 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frekvenču, kas uztur 1280x1024 pie 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitors, kas uztur 1600x1200 pie 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitors, kas uztur 1600x1200 pie 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Sâknçjamâs partîcijas pirmais sektors"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Diska pirmais sektors (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "SILO instalçđana"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Kur jűs vçlaties instalçt sâknçtâju?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "LILO/grub instalçđana"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr ""
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr ""
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr ""
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Sâknçtâja galvenâs opcijas"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Kuru OS ielâdçtâju lietot"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Sâknçtâja instalçđana"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Sâknçjamâ ierîce"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (nedarbojas ar veciem BIOSiem)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Kompakts"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "kompakts"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Video reţîms"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Pauze pirms noklusçtâs sistçmas ielâdes"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Parole"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Parole (atkârtoti)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Ierobeţot komandrindas opcijas"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "ierobeţot"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Iztîrît /tmp katras sâknçđanas laikâ"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Ja nepiecieđams, precizçjiet RAM apjomu (atrasti %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Atďaut multi profilus"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Norâdiet atmiňas apjomu Mb"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Opcijai ``Ierobeţot komandrindas opcijas'' nav jçgas bez paroles"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Lűdzu mçěiniet vçlreiz"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Paroles nesakrît"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr ""
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr ""
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr ""
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr ""
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr ""
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Noklusçtâ OS?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -679,83 +538,83 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Đeit ir daţâdi sâknçđanas ieraksti.\n"
"Jűs varat pievienot jaunus vai izmainît esođos."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Pievienot"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Izdarîts"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Mainît"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Kâda veida ierakstu gribat pievienot"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Cita OS (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Cita OS (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Cita OS (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Attçls"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Sakne"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Papildinât"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Lasît-rakstît"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabula"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Nedrođs"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Nosaukums"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Noklusçts"
@@ -788,53 +647,75 @@ msgstr "Jums ir nepiecieđama swap partîcija"
msgid "This label is already used"
msgstr "Đis nosaukums jau ir izmantots"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Atrasti %s %s interfeisi"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Vai ir vçl kâds?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Vai datorâ ir kâds %s interfeiss?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Nç"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Jâ"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Apskatît dzelţu informâciju"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instalçju draiveri %s kartei %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(modulis %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Tagad jűs varat norâdît moduďa %s opcijas.\n"
+"Opciju formâts ir ``nosaukums=vçrtîba nosaukums2=vçrtîba2 ...''.\n"
+"Piemçram, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Moduďa opcijas:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Kuru %s draiveri pamçěinât?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -851,37 +732,15 @@ msgstr ""
"nepiecieđamo informâciju? Retos gadîjumos aptaujâđana var uzkârt datoru,\n"
"taču tas neradîs nekâdus bojâjumus."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Aptaujât"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Norâdît opcijas"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Tagad jűs varat norâdît moduďa %s opcijas.\n"
-"Opciju formâts ir ``nosaukums=vçrtîba nosaukums2=vçrtîba2 ...''.\n"
-"Piemçram, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Moduďa opcijas:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -890,49 +749,54 @@ msgstr ""
"Moduďa %s ielâde bija neveiksmîga.\n"
"Vai vçlaties pamçěinât ar citiem parametriem?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(jau pievienots %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Đî parole ir pârâk vienkârđa"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Lűdzu ievadiet lietotâja vârdu"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Lietotâja vârdâ var bűt tikai mazie angďu burti, cipari, `-' un `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Đâds lietotâja vârds jau ir pievienots"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Đâds lietotâja vârds jau ir pievienots"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Pievienot lietotâju"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -941,32 +805,32 @@ msgstr ""
"Ievadiet lietotâju\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Apstiprinât lietotâju"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Vârds un uzvârds"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Lietotâja vârds"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Čaula"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Ikona"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Autoreěistrçđanâs"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -976,123 +840,103 @@ msgstr ""
"atvçrta viena noteikta lietotâja sesija. \n"
"Ja nevçlaties izmantot đo iespçju, nospiediet atcelđanas pogu."
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Norâdiet noklusçto lietotâju:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Norâdiet izmantojamo logu menedţeri:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr "Lűdzu izvçlieties izmantojamo valodu."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr "Jűs varat izvçlçties citas valodas, kas bűs pieejamas pçc instalçđanas"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Viss"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr "Lietotâju pievienođana"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Pielâgota"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr "CUPS startçđana"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Đo pakotni ir nepiecieđams uzlabot\n"
"Vai tieđâm vçlaties atteikties no tâs?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Atcelt"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Sveiciens hakeriem"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Vâjđ"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Standarta"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Augsts"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Augsts"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoisks"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1102,7 +946,7 @@ msgstr ""
"izmantojamu, taču ďoti nedrođu: to nedrîkst izmantot datoram, kas ir\n"
"pieslçgts citiem datoriem vai Internetam. Netiek prasîtas paroles."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1110,7 +954,7 @@ msgstr ""
"Tagad tiek izmantota parole, taču izmantot datoru tîklâ vçl aizvien\n"
"nav ieteicams."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1119,60 +963,61 @@ msgstr ""
"Đis ir parasts drođîbas lîmenis, kas ir ieteicams datoram, kas tiks\n"
"izmantots kâ klients Interneta pieslçgumam. Tagad tiek pârbaudîta drođîba. "
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Ar đo drođîbas lîmeni sistçmu var sâkt izmantot kâ serveri.\n"
"Drođîba tagad ir pietiekođi augsta, lai izmantotu sistçmu kâ serveri, kas\n"
"apkalpo pieslçgumus no daudziem klientiem. "
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Mçs izmantojam 4. lîmeňa iespçjas, taču tagad sistçma ir pilnîbâ\n"
"aizslçgta. Drođîba tagad ir maksimâlajâ lîmenî."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Izvçlieties drođîbas lîmeni?"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
#, fuzzy
msgid "Security level"
msgstr "Uzstâdu drođîbas lîmeni"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Norâdiet servera opcijas"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1197,7 +1042,7 @@ 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_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Juus sveic GRUB, opereetaajsisteemu izveeles programma!"
@@ -1211,7 +1056,7 @@ msgstr "Juus sveic GRUB, opereetaajsisteemu izveeles programma!"
#
#. -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_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Izmantojiet taustinus %c un %c, lai izveeleetos vajadziigo ierakstu."
@@ -1226,7 +1071,7 @@ msgstr "Izmantojiet taustinus %c un %c, lai izveeleetos vajadziigo ierakstu."
#
#. -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_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Nospiediet ievadu, lai saakneetu izveeleeto OS, 'e', lai redigeetu"
@@ -1240,7 +1085,7 @@ msgstr "Nospiediet ievadu, lai saakneetu izveeleeto OS, 'e', lai redigeetu"
#
#. -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_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "komandas pirms saakneesanas, vai 'c', lai izsauktu komandrindu."
@@ -1254,27 +1099,27 @@ msgstr "komandas pirms saakneesanas, vai 'c', lai izsauktu komandrindu."
#
#. -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_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Izdaliitais ieraksts tiks saakneets peec %d sekundeem."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "nepietiek vietas partîcijâ /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Darbavirsma"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Starta izvçlne"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Kur jűs vçlaties instalçt sâknçtâju?"
@@ -1287,15 +1132,19 @@ msgstr "palîdzîba pagaidâm nav realizçta.\n"
msgid "Boot Style Configuration"
msgstr "Sâknçđanas stila konfigurçđana"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Fails"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
-msgstr "/Fails/_Beigt"
+msgstr "/Fails/_Iziet"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1330,14 +1179,14 @@ msgstr "Yaboot reţîms"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Jűs pađlaik lietojat OS ielâdçtâju %s.\n"
"Spiediet Konfigurçt, lai palaistu uzstâdîđanas meistaru."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Konfigurçt"
@@ -1347,7 +1196,7 @@ msgid "System mode"
msgstr "Sistçmas reţîms"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Palaist X-Window sistçmu sâknçđanas laikâ"
#: ../../bootlook.pm_.c:148
@@ -1358,16 +1207,18 @@ msgstr "Nç, negribu lietot autologin"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Jâ, gribu lietot autologin đim lietotâjam un darba virsmai"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
-msgstr "Labi"
+msgstr "Ok"
#: ../../bootlook.pm_.c:229
#, c-format
@@ -1414,7 +1265,7 @@ msgstr "Vairâk partîciju nevar pievienot"
msgid "Screenshots will be available after install in %s"
msgstr "Jűs varat izvçlçties citas valodas, kas bűs pieejamas pçc instalçđanas"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
#, fuzzy
msgid "France"
msgstr "Francijas"
@@ -1423,7 +1274,7 @@ msgstr "Francijas"
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Beďěijas"
@@ -1452,11 +1303,12 @@ msgstr "Norvçěijas"
msgid "Sweden"
msgstr "Zviedrijas"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr "Itâlijas"
@@ -1466,7 +1318,7 @@ msgstr "Itâlijas"
msgid "Austria"
msgstr "seriâla"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1474,8 +1326,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr "Vispirms izveidojiet datu rezerves kopiju"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Lasiet uzmanîgi!"
@@ -1488,11 +1340,12 @@ msgstr ""
"Ja gatavojaties izmantot aboot, neaizmirstiet atstât brîvu vietu diska\n"
"sâkumâ (pietiek ar 2048 sektoriem)"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Kďűda"
@@ -1500,11 +1353,11 @@ msgstr "Kďűda"
msgid "Wizard"
msgstr "Meistars"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Izvçlieties darbîbu"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1516,78 +1369,78 @@ msgstr ""
"Iesaku vispirms izmainît đîs partîcijas izmçru\n"
"(uzklikđíiniet uz tâs, tad uz \"Mainît izmçru\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Lűdzu uzklikđíiniet uz partîcijas"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Detaďas"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
#, fuzzy
msgid "Journalised FS"
msgstr "montçđana neizdevâs"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Tukđs"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Cits"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Failu sistçmu tipi:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Izveidot"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tips"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Tâ vietâ izmantojiet ``%s''"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Izdzçst"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Vispirms izmantojiet ``Nomontçt''"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1595,68 +1448,73 @@ msgstr ""
"Pçc partîcijas %s tipa nomaiňas visi đajâ partîcijâ esođie dati tiks "
"pazaudçti"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Izvçlieties partîciju"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Izvçlieties citu partîciju"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Iziet"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Pârslçgt eksperta reţîmâ"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Pârslçgt normâlajâ reţîmâ"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Atsaukt"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Tad turpinât?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Iziet nesaglabâjot"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Iziet neierakstot partîciju tabulau?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Vai vçlaties izmçěinât đo konfigurâciju?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Izvietot automâtiski"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Visu dzçst"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Vairâk"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "Cietâ diska informâcija"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Visas primârâs partîcijas izmantotas"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Vairâk partîciju nevar pievienot"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1664,35 +1522,35 @@ msgstr ""
"Ja gribat vairâk partîcijas, izdzçsiet kâdu partîciju, lai varçtu izveidot "
"paplađinâto partîciju"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr "Ierakstît partîciju tabulu"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr "Salabot partîciju tabulu"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Salabot partîciju tabulu"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr "Salabot partîciju tabulu"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Removable media automounting"
msgstr "Izňemams datu nesçjs"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Izvçlieties failu"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1700,11 +1558,11 @@ msgstr ""
"Partîciju tabulas rezerves kopijai ir atđíirîgs izmçrs\n"
"Tomçr turpinât, ja?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Uzmanîbu"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1712,123 +1570,130 @@ msgstr ""
"Ielieciet disketi\n"
"Visi uz disketes esođie dati tiks dzçsti"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Mçěinu saglâbt partîciju tabulu"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Detalizçta informâcija"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Montçđanas punkts"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opcijas"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Mainît izmçru"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Pârvietot"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formatçt"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Montçta"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Pievienot pie RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Pievienot LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Nomontçt"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Izslçgt no RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Izňemt no LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Mainît RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Izmantot priekđ loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Izveidot jaunu partîciju"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Sâkuma sektors: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Izmçrs MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Failu sistçmas tips: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Montçđanas punkts: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Priekđroka: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+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/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Formatçju loopback failu %s"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Nomainît partîcijas tipu"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Kuru failu sistçmu vçlaties?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Kur jűs vçlaties montçt loopback failu %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Kur jűs vçlaties montçt %s ierîci?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1837,128 +1702,135 @@ msgstr ""
"loopback.\n"
"Vispirms noňemiet loopback"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Izskaitďoju FAT failsistçmas robeţas"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Mainu izmçru"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Đîs partîcijas izmçru nevar izmainît"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Visiem đîs partîcijas datiem jâizveido rezerves kopijas"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Pçc partîcijas %s izmçra maiňas visi đajâ partîcijâ esođie dati tiks "
"pazaudçti"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Norâdiet jauno izmçru"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Jauns izmçrs MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Uz kuru disku vçlaties to pârvietot?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektors"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Uz kuru sektoru vçlaties to pârvietot?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Pârvietoju"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Pârvietoju partîciju..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Norâdiet eksistçjođu RAID, kam pievienot"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "jauns"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Norâdiet jau esođu LVM kam pievienot"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "LVM vârds?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Đo Partîciju nevar izmantot priekđ loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Loopback faila vârds: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr "Vârds un uzvârds"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Fails jau tiek izmantots citam loopback, norâdiet citu failu"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Fails jau eksistç. Vai to izmantot?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Montçđanas iespçjas:"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Viss kas"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "ierîce"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "lîmenis"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "gabala izmçrs"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Esiet uzmanîgi: đî operâcija ir bîstama."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Kâds ir sadalîjuma tips?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr ""
+"Đo pakotni ir nepiecieđams uzlabot\n"
+"Vai tieđâm vçlaties atteikties no tâs?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1969,7 +1841,7 @@ msgstr ""
"Vai nu jűs izmantojat LILO, un tas nestrâdâs, vai arî jűs neizmantojat LILO, "
"un /boot jums nav vajadzîgs"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1980,7 +1852,7 @@ msgstr ""
"đî cietâ diska 1024. cilindra, un jums nav /boot partîcijas.\n"
"Ja jűs plânojat izmantot LILO, neaizmirstiet pievienot /boot partîciju"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1991,138 +1863,138 @@ msgstr ""
"Neviens sâknçtâjs nespçj to izmantot bez /boot partîcijas.\n"
"Tâpçc neaizmirstiet izveidot /boot partîciju."
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Iekârtas %s partîciju tabula tiks ierakstîta uz diska!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Lai izmaiňas stâtos spçkâ, jums ir jâpârstartç dators"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Pçc partîcijas %s formatçđanas visi đajâ partîcijâ esođie dati tiks pazaudçti"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Formatçju"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatçju loopback failu %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Formatçju partîciju %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Hide files"
msgstr "mkraid neizdevâs"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr "Nepietiek brîvas vietas, lai izvietotu jaunas partîcijas"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Nepietiek brîvas vietas, lai izvietotu jaunas partîcijas"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Izđíirtspçja: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Ierîce: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS iekârtas burts: %s (tikai minçjums)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Tips: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Vârds: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Sâkums: sektors %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Izmçrs: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sektori"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "No cilindra %d lîdz cilindram %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Formatçta\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Neformatçta\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Montçta\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Loopback fails(i): %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2130,27 +2002,27 @@ msgstr ""
"Noklusçti sâknçjamâ partîcija\n"
" (lai sâknçtu MS-DOS, nevis lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Lîmenis %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Gabala izmçrs %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID diski %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback faila nosaukums: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2158,7 +2030,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2166,64 +2038,64 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Izmçrs: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Ěeometrija: %s cilindri, %s galvas, %s sektori\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-diski %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "partîciju tabulas tips: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "uz đinas %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Opcijas: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Failu sistçmas tips: "
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Đî parole ir pârâk vienkârđa (jâbűt vismaz %d simbolus garai)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Paroles nesakrît"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2233,36 +2105,67 @@ msgstr "Mainît tipu"
#: ../../diskdrake/removable_gtk.pm_.c:28
#, fuzzy
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Lűdzu uzklikđíiniet uz partîcijas"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Autentifikâcija"
+
+#
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Internets"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Lietotâja vârds"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Lietotâja vârds"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS domçns"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "DNS serveris"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatçđana %s neizdevâs"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Nezinu, kâ formatçt %s, izmantojot tipu %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "kďűda nomontçjot %s: %s"
@@ -2279,69 +2182,322 @@ msgstr ""
msgid "server"
msgstr "serveris"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Nevarat izmantot JFS partîcijâm, kas mazâkas par 16MB"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Nevarat izmantot ReiserFS pârtîcijâm, kas mazâkas par 32MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Montçđanas punktiem jâsâkas ar /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Jau eksistç partîcija ar montçđanas punktu %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Đim katalogam ir jâpaliek saknes failsistçmâ"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Đim montçđanas punktam ir nepiecieđama reâla failu sistçma (ext2, reiserfs)\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
"Đim montçđanas punktam ir nepiecieđama reâla failu sistçma (ext2, reiserfs)\n"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Nepietiek brîvas vietas, lai izvietotu automâtiski"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Kďűda, atverot %s ierakstîđanai: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Atklâta kďűda - nav atrasta neviena ierîce, kas derçtu jaunu failsistçmu "
"veidođanai. Lűdzu pârbaudiet dzelţus, lai noskaidrotu problçmas iemeslu"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Jums nav nevienas partîcijas!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Attâls printeris"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Vispârçja"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Kartes mem (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Formatçju"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Mainît tipu"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Beigt"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "_Palîdzîba"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "_Palîdzîba"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Palîdzîba/_Par..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Modulis"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Kartes mem (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Atcelt"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "Module"
+msgstr "Modulis"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Apraksts"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Autentifikâcija"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Izvçlieties failu"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Vârtejas ierîce"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 pogas"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Cietâ diska noteikđana"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Apskatît dzelţu informâciju"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Parâdît informâciju"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Peles konfigurçđana"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "atklâts uz porta %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Lűdzu uzgaidiet"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d sekundes"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Nolasu CUPS draiveru datubâzi..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Aptaujât"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2355,7 +2511,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2464,9 +2620,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2661,7 +2816,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2673,9 +2828,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2722,21 +2876,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2752,9 +2905,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Pađlaik jums ir jâizvçlas, kur uz cietâ diska instalçt Mandrake Linux\n"
"operçtâjsistçmu. Ja disks ir tukđs vai cita operçtâjsistçma aizňem visu\n"
@@ -2837,9 +2990,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -2985,38 +3137,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3194,11 +3340,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3256,7 +3402,7 @@ msgstr ""
"pietiekođi labas. Tâpçc neizvçlieties\n"
" đo instalçđanas klasi, ja neesat pârliecinâts."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3271,7 +3417,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3286,7 +3432,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3302,7 +3448,7 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
#, fuzzy
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
@@ -3311,23 +3457,23 @@ msgstr ""
"Lűdzu izvçlieties pareizu portu. Piemçram, MS Windows\n"
"ports COM1 GNU/Linux vidç saucas ttyS0."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3349,7 +3495,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3371,7 +3517,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3379,7 +3525,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3400,7 +3546,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
#, fuzzy
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
@@ -3424,7 +3570,7 @@ msgstr ""
"un đajâ gadîjumâ jűs varat izdzçst attiecîgos ierakstus. Bet đajâ\n"
"gadîjumâ jums bűs nepiecieđama sâknçđanas diskete, lai tâs sâknçtu!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
#, fuzzy
msgid ""
"You must indicate where you wish to place the information required to boot\n"
@@ -3440,29 +3586,28 @@ msgstr ""
"Ja vien jűs neesat absolűti pârliecinâts par savu rîcîbu,\n"
"izvçlieties \"Diska pirmais sektors (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3471,7 +3616,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
#, fuzzy
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
@@ -3497,7 +3642,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"DrakX mçěinâs sameklçt PCI SCSI adapteri(us).\n"
@@ -3522,7 +3667,7 @@ msgstr ""
"(ja jums ir pieejams Internets) vai Windows (ja tas ir uzstâdîts jűsu "
"datorâ)."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3532,9 +3677,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3546,7 +3690,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" 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"
@@ -3572,7 +3716,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3599,18 +3743,17 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3618,12 +3761,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3639,7 +3781,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
#, fuzzy
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
@@ -3650,7 +3792,7 @@ msgstr ""
"Mandrake Linux partîciju. Esiet uzmanîgi, jo visi diskâ esođie dati\n"
"pazudîs un nebűs atjaunojami."
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
#, fuzzy
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
@@ -3671,7 +3813,7 @@ msgstr ""
"Nospiediet \"Atcelt\", lai atceltu đo operâciju bez jebkâdu uz đî diska "
"esođu datu vai partîciju pazaudçđanas."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3679,12 +3821,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3699,20 +3841,20 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr ""
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Ielieciet FAT formatçtu disketi iekârtâ %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3720,7 +3862,7 @@ msgstr ""
"Lai izmantotu đo saglabâto pakotňu izvçli, palaidiet instalâciju ar ``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Kďűda, nolasot failu %s"
@@ -3750,7 +3892,7 @@ msgstr "Jums ir nepiecieđama swap partîcija"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -3758,60 +3900,60 @@ msgstr ""
"\n"
"Vai tomçr turpinât?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Jums ir nepiecieđama swap partîcija"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Izmantot brîvo vietu"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Nepietiek brîvas vietas, lai izvietotu jaunas partîcijas"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Izmantot jau esođu partîciju"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Nav nevienas partîcijas, ko varçtu izmantot"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Izmantot Windows partîciju priekđ loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Kuru partîciju vçlaties izmantot priekđ Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Izvçlieties izmçrus"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Saknes partîcijas izmçrs (MB): "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Swap partîcijas izmçrs (MB): "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Izmantot Windows partîcijas brîvo vietu"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Kuras partîcijas izmçru vçlaties izmainît?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Izskaitďoju Windows failu sistçmas robeţas"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -3820,11 +3962,14 @@ msgstr ""
"FAT izmçra mainîtâjs nespçj izmainît jűsu partîciju,\n"
"atklâta sekojođa kďűda: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+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 partîcija ir pârâk fragmentçta, vispirms palaidiet ``defrag''"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -3844,54 +3989,54 @@ msgstr ""
"tad atkârtoti jâsâk instalçđana. Vajadzçtu izveidot arî datu rezerves\n"
"kopiju. Kad esat pârliecinâts, nospiediet Labi."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Kâdu apjomu vçlaties atstât priekđ windows uz"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "partîcija %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT izmçra maiňa neizdevâs: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Nav FAT partîciju, lai izmainîto to izmçru vai izmantotu kâ loopback (vai "
"nepietiek brîvas vietas)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Izdzçst visu disku"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Noňemt Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Jums ir vairâk nekâ viens cietais disks, uz kura jűs instalçjat linux?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "VISAS diska %s partîcijas un tajâs esođie dati tiks pazaudçti"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Pielâgots disku sadalîjums"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Izmantot fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -3900,11 +4045,11 @@ msgstr ""
"Tagad jűs varat sadalît diska iekârtu %s.\n"
"Kad esat pabeiguđi, neaizmirstiet saglabât, izmantojot `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Jűsu Windows partîcijâ nav pietiekođi daudz brîvas vietas"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Nevaru atrast vietu instalçđanai"
@@ -3912,16 +4057,16 @@ msgstr "Nevaru atrast vietu instalçđanai"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX partîciju veidođanas meistars atrada sekojođus risinâjumus:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Diska sadalîđana neizdevâs: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Iedarbinu tîklu"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Atslçdzu tîklu"
@@ -3933,12 +4078,12 @@ msgstr ""
"Atklâta kďűda, bet es nezinu, kâ ar to pareizi apieties.\n"
"Turpiniet, ja vçlaties riskçt."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Dublçts montçđanas punkts %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3950,12 +4095,12 @@ msgstr ""
"Parbaudiet disku uz instalçta datora, izmantojot komandu \"rpm -qpl Mandrake/"
"RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Jűs sveic %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Nav nevienas diskeđu iekârtas"
@@ -3965,9 +4110,9 @@ msgstr "Nav nevienas diskeđu iekârtas"
msgid "Entering step `%s'\n"
msgstr "Uzsâku soli `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -3977,201 +4122,157 @@ msgstr ""
"Lai to izdarîtu, nospiediet`F1', ka notiek ielâde no CDROM, tad ievadiet\n"
"`text'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Instalçđanas klase"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Lűdzu izvçlieties vienu no sekojođâm instalçđanas klasçm:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Kopçjais jűsu izvçlçto grupu izmçrs ir aptuveni %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Ja jűs vçlaties instalçt mazâk nekâ đo izmçru,\n"
-"procentuâli izvçlieties instalçjamo pakotňu daudzumu.\n"
-"\n"
-"Zems procentu lîmenis instalçs tikai vissvarîgâkâs pakotnes;\n"
-"100% lîmenî tiks instalçtas visas izvçlçtâs pakotnes."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Jums uz diska ir vieta tikai %d%% no đîm pakotnçm.\n"
-"\n"
-"Ja vçlaties instalçt mazâk, procentuâli izvçlieties instalçjamo pakotňu\n"
-"daudzumu. Zems procentu lîmenis instalçs tikai vissvarîgâkâs pakotnes;\n"
-"%d%% lîmenis instalçs tik daudz pakotňu, cik ir iespçjams."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Nâkamajâ solî jűs varçsit izvçlçties daudz precîzâk."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Instalçjamo pakotňu procentuâlais daudzums"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Pakotňu grupu izvçle"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Atseviđíu pakotňu izvçle"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Kopçjais izmçrs: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Slikta pakotne"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Nosaukums: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Versija: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Apjoms: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Svarîgums: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Jűs nevarat izvçlçties đo pakotni, jo nepietiek vietas tâs instalçđanai"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Tiks instalçtas sekojođas pakotnes"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Tiks noňemtas sekojođas pakotnes"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Jűs varat izvçlçties/atteikties no đîs pakotnes"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Đî ir obligâta pakotne, no tâs nevar atteikties"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Jűs nevarat atteikties no đîs pakotnes. Tâ jau ir instalçta"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Đo pakotni ir nepiecieđams uzlabot\n"
"Vai tieđâm vçlaties atteikties no tâs?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Jűs nevarat atteikties no đîs pakotnes. To ir nepiecieđams uzlabot"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Instalçt"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Saglabât disketç"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
#, fuzzy
msgid "Updating package selection"
msgstr "Saglabât pakotňu izvçli"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
#, fuzzy
msgid "Minimal install"
msgstr "Instalçđanas beigas"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Izvçlieties pakotnes, ko vçlaties instalçt"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Instalçju"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Aprçíinu"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Atlikuđais laiks"
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Lűdzu gaidiet, gatavoju instalâciju"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d pakotnes"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Instalçju pakotni %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Pieňemt"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Noraidît"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4185,17 +4286,17 @@ msgstr ""
"Lűdzu ielieciet iekârtâ Cd-Rom \"%s\", kad tas ir izdarîts, nospiediet Labi\n"
"Ja jums nav đî diska, nospiediet Atcelt, lai neinstalçtu no đî Cd-Rom."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Tomçr turpinât?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Pakotňu kârtođanas laikâ atklâta kďűda:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Pakotňu instalçđanas laikâ atklâta kďűda:"
@@ -4267,11 +4368,11 @@ msgstr "Atklâta kďűda"
msgid "Do you really want to leave the installation?"
msgstr "Vai vçlaties pârstartçt tîklu"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Licences lîgums"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4286,7 +4387,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -4392,113 +4493,117 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Tastatűra"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Lűdzu izvçlieties jűsu tastatűras izkârtojumu."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Đeit ir pilns pieejamo tastatűru saraksts"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Kuru instalçđanas klasi vçlaties?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Instalçt/Atjauninât"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Đî ir instalçđana vai atjauninâđana?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Ieteicama"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Eksperta"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade"
msgstr "Atjauninât"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr "Saglabât pakotňu izvçli"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Lűdzu izvçlieties jűsu peles tipu."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Peles ports"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Lűdzu izvçlieties, kuram seriâlajam portam ir pieslçgta pele."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Konfigurçju PCMCIA kartes..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Konfigurçju IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "nav pieejamu partîciju"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Pârmeklçju partîcijas, lai atrastu montçđanas punktus"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Izvçlieties montçđanas punktus"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4508,7 +4613,7 @@ msgstr ""
"Otrs risinâjums ir aizliegt DrakX izmainît partîciju tabulu.\n"
"(kďűda ir %s)\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4516,137 +4621,140 @@ msgstr ""
"DiskDrake neizdevâs pareizi nolasît partîciju tabulu.\n"
"Turpiniet, ja vçlaties riskçt!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Izvçlieties partîcijas, ko vçlaties formatçt"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Saknes partîcija"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Kura ir jűsu sistçmas saknes partîcija (/)?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Lai partîciju tabulas izmaiňas stâtos spçkâ, jums jâpârstartç dators"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Izvçlieties partîcijas, ko vçlaties formatçt"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Pârbaudît sliktos blokus?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Formatçju partîcijas"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Veidoju un formatçju failu %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Instalçđanas pabeigđanai nepietiek swap, palieliniet swap"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Meklçju pieejamâs pakotnes"
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "Meklçju pieejamâs pakotnes"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Meklçju uzlabojamâs pakotnes"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Jűs nevarat atteikties no đîs pakotnes. Tâ jau ir instalçta"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Jűsu sistçmâ vairs nav brîvas vietas instalçđanai vai uzlabođanai (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Pilna (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimâla (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Ieteicama (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
#, fuzzy
msgid "Load from floppy"
msgstr "Atjanot no disketes"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Loading from floppy"
msgstr "Atjanot no disketes"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Package selection"
msgstr "Pakotňu grupu izvçle"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Ielieciet disketi iekârtâ %s"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Saglabât disketç"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4656,16 +4764,16 @@ msgstr ""
"Ja jums nav neviena no norâdîtajiem CD, nospiediet Atcelt.\n"
"Ja trűkst tikai daţu CD, sarakstâ atslçdziet tos un nospiediet Labi."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom ar nosaukumu \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Sagatavoju instalçđanu"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4674,23 +4782,23 @@ msgstr ""
"Instalçju pakotni %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Pçcinstalçđanas konfigurçđana"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Ielieciet disketi iekârtâ %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Ielieciet tukđu disketi iekârtâ %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -4755,168 +4863,199 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Pieslçdzos spoguďserverim, lai saňemtu pieejamo pakotňu sarakstu"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Izvçlieties spoguďserveri, no kura ňemt pakotnes"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Pieslçdzos spoguďserverim, lai saňemtu pieejamo pakotňu sarakstu"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Kâda ir jűsu laika josla?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Vai datora pulkstenis râda GMT laiku?"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
#, fuzzy
msgid "NTP Server"
msgstr "NIS serveris"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Attâls CUPS serveris"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Nav printera"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Vai ir vçl kâds?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Kopsavilkums"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Pele"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Laika josla"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Printeris"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
#, fuzzy
msgid "ISDN card"
msgstr "Iekđçja ISDN karte"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
#, fuzzy
msgid "Sound card"
msgstr "Standarta"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "NIS"
msgstr "Izmantot NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Noňemt Windows(TM)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Local files"
msgstr "Lokâls printeris"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "root paroles izvçle"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Bez paroles"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr "Đî parole ir pârâk vienkârđa (jâbűt vismaz %d simbolus garai)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autentifikâcija"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
#, fuzzy
msgid "Authentication LDAP"
msgstr "Autentifikâcija"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "LDAP Server"
msgstr "serveris"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
#, fuzzy
msgid "Authentication NIS"
msgstr "Autentifikâcijas NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS domçns"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS serveris"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Autentifikâcija"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "NIS domçns"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NIS serveris"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -4943,19 +5082,19 @@ msgstr ""
"Ja vçlaties izveidot jűsu sistçmai pielâgotu sâknçđanas disketi,\n"
"ielieciet sisketi pirmajâ iekârtâ un nospiediet \"Labi\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Pirmâ diskeđu iekârta"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Otrâ diskeđu iekârta"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Izlaist"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4979,7 +5118,7 @@ msgstr ""
"izveidot jűsu sistçmai pielâgotu sâknçđanas disketi?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -4988,28 +5127,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Diemţçl nav pieejama neviena diskeđu iekârta"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Norâdiet diskeđu iekârtu, ko izmanto distetes veidođanai"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Ielieciet disketi iekârtâ %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Gatavoju sâknçđanas disketi"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Sagatavoju sâknçtâju"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5017,11 +5156,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Vai vçlaties izmantot aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5029,16 +5168,16 @@ msgstr ""
"Kďűda, instalçjot aboot, \n"
"vai instalçt piespiedu kârtâ pat tad, ja tiks iznîcinâta pirmâ partîcija?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
#, fuzzy
msgid "Installing bootloader"
msgstr "Sâknçtâja instalçđana"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Sâknçtâja instalçđana neizdevâs. Atklâta đâda kďűda:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5049,18 +5188,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Ielieciet tukđu disketi iekârtâ %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Sagatavoju auto instalçđanas disketi"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5070,7 +5208,8 @@ msgstr ""
"\n"
"Vai tieđâm vçlaties iziet tűlît?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5081,7 +5220,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5096,17 +5235,21 @@ msgstr ""
"izdevumam, skatiet Errata failu, kas atrodams\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Informâcija par jűsu sistçmas konfigurçđanu ir pieejama Oficiâlâs\n"
"Mandrake Linux rokasgrâmatas pçcinstalçđanas nodaďâ."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Sagatavot auto instalçđanas disketi"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5115,15 +5258,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automâtisks"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Atkârtot"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Saglabât pakotňu izvçli"
@@ -5152,422 +5295,406 @@ msgstr ""
msgid "Choose a file"
msgstr "Izvçlieties darbîbu"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Izvçrsta"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Lűdzu uzgaidiet"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Izvçrst koku"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Sakďaut koku"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Sakârtots vienâ sarakstâ vai pa grupâm"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Slikta izvçle, pamçěiniet vçlreiz\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Jűsu izvçle? (noklusçti %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Jűsu izvçle? (noklusçti %s) "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Opcijas: %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr "Vai vçlaties izmantot aboot?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Jűsu izvçle? (noklusçti %s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Čehijas (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Vâcijas"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvoraka"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Spânijas"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Somijas"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Francijas"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norvçěijas"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Polijas"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Krievijas"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Zviedrijas"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Apvienotâs Karalistes"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "ASV tastatűra"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Albanian"
msgstr "Irânas"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armçnijas (vecâ)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armçnijas (rakstâmmađîna)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armçnijas (fonçtiskâ)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidţânas (latîňu)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Beďěijas"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armçnijas (fonçtiskâ)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Bulgârijas"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brazîlijas (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Baltkrievijas"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Đveices (vâcu izvietojums)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Đveices (franču izvietojums)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Čehijas (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Vâcijas (bez mçmajiem taustiňiem)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Dânijas"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvoraka (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvoraka (Norvçěijas)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvoraka (US)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Igaunijas"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Gruzijas (\"krievu\" izvietojums)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Gruzijas (\"latîňu\" izvietojums)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Grieíijas"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Ungârijas"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Horvâtijas"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Izraçlas"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Izraçlas (fonçtiskâ)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Irânas"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islandes"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Itâlijas"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Japânas 106 taistiňi"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
#, fuzzy
msgid "Korean keyboard"
msgstr "Apvienotâs Karalistes"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latîňamerikas"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Lietuvas AZERTY (vecâ)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Lietuvas AZERTY (jaunâ)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lietuvas \"numuru rinda\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lietuvas \"fonçtiskâ\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
#, fuzzy
msgid "Latvian"
msgstr "Atrađanâs vieta"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Maíedonijas"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Dânijas"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Polijas (qwerty izvietojums)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Polijas (qwertz izvietojums)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugâles"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Kanâdas (Kvebeka)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Krievijas (Yawerty)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Krievijas (Yawerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Krievijas (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slovçnijas"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovâkijas (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovâkijas (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Azerbaidţânas (kirilica)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Tabula"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Tai tastatűra"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Tai tastatűra"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turcijas (tradicionâlais \"F\" modelis)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turcijas (modernais \"Q\" modelis)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukrainas"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "ASV tastatűra (starptautiskâ)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vjetnamas \"numuru rinda\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Dienvidslâvijas (latîňu/kirilicas)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5580,7 +5707,31 @@ msgstr "Cikliski montçđanas punkti %s\n"
msgid "Remove the logical volumes first\n"
msgstr ""
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Telefona numurs"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Diska formatçđana"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5622,10 +5773,6 @@ msgstr "2 pogas"
msgid "Generic 2 Button Mouse"
msgstr "Parasta 2 pogu pele"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Vispârçja"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Ritenis"
@@ -5690,39 +5837,55 @@ msgstr "neviens"
msgid "No mouse"
msgstr "Nav peles"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Lűdzu notestçjiet peli"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Lai aktivizçtu peli,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "PAKUSTINIET RITENI!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
#, fuzzy
msgid "Finish"
msgstr "Somijas"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Tâlâk ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Atpakaď"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Vai tas ir pareizi?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Info"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Izvçrst koku"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Sakďaut koku"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Sakârtots vienâ sarakstâ vai pa grupâm"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Pieslçgties Internetam"
@@ -5769,7 +5932,7 @@ msgstr ""
"Jűsu sistçmâ nav atrasts neviens ethernet tîkla adapteris.\n"
"Nevaru uzstâdît đo pieslçguma veidu."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Izvçlieties tîkla interfeisu"
@@ -5783,7 +5946,7 @@ msgstr ""
msgid "no network card found"
msgstr "tîkla karte nav atrasta"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Konfigurçju tîklu"
@@ -5799,15 +5962,15 @@ msgstr ""
"Resursa vârdam ir jâbűt pilnam kvalificçtam resursa vârdam,\n"
"piemçram, ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Resursa vârds:"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Tîkla konfigurçđanas meistars"
@@ -5855,7 +6018,7 @@ msgstr "ISDN konfigurâcija"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Izvçlieties pakalpojumu sniedzçju.\n"
" Ja tas nav đajâ sarakstâ, izvçlietis Nav sarakstâ"
@@ -5878,14 +6041,14 @@ msgstr "Citur pasaulç"
#: ../../network/isdn.pm_.c:185
#, fuzzy
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Citur pasaulç \n"
" nav D-Channel (izdalîtas lînijas)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Kâdu protokolu vçlaties izmantot?"
#: ../../network/isdn.pm_.c:199
@@ -5909,7 +6072,8 @@ 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"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Ja jums ir ISA karte, vçrtîbâm nâkamajâ ekrânâ jâbűt pareizâm.\n"
@@ -5925,13 +6089,13 @@ msgid "Continue"
msgstr "Turpinât"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Kura ir jűsu ISDN karte ?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Ir atklâta ISDN PCI karte, bet nav zinâms kartes tips. Lűdzu izvçlieties "
"kâdu no nâkamajâ ekrânâ uzskaitîtajâm PCI kartçm."
@@ -5949,49 +6113,49 @@ msgstr "Lűdzu norâdiet, kuram seriâlajam portam ir pieslçgts modçms."
msgid "Dialup options"
msgstr "Iezvanpieejas opcijas"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Savienojuma nosaukums"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Telefona numurs"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Lietotâja ID"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr ""
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Ar skriptu"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Izmantojot terminâli"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Domçna nosaukums"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
#, fuzzy
msgid "First DNS Server (optional)"
msgstr "Pirmais DNS serveris"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
#, fuzzy
msgid "Second DNS Server (optional)"
msgstr "Otrais DNS serveris"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -5999,7 +6163,7 @@ msgstr ""
"\n"
"Varat atslçgties vai pârkonfigurçt pieslçgumu."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6007,11 +6171,11 @@ msgstr ""
"\n"
"Varat pârkonfigurçt pieslçgumu."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Pađlaik jűs esat pieslçdzies Internetam."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6019,37 +6183,37 @@ msgstr ""
"\n"
"Varat pieslçgties Internetam vai pârkonfigurçts pieslçgumu."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Pađlaik jűs neesat pieslçdzies Internetam."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Connect"
msgstr "Nav pieslçgts"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
#, fuzzy
msgid "Disconnect"
msgstr "ISDN pieslçgums"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "Tîkla konfigurçđana"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Interneta pieslçgums un konfigurâcija"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
"\n"
"Varat atslçgties vai pârkonfigurçt pieslçgumu."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, fuzzy, c-format
msgid ""
"\n"
@@ -6063,12 +6227,12 @@ msgstr ""
"\n"
"Varat atslçgties vai pârkonfigurçt pieslçgumu."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Tîkla konfigurâcija"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6076,101 +6240,107 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"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 ""
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Izvçlieties konfigurçjamo profilu"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Eksperta reţîms"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Noskaidroju ierîces..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Parasts modçma pieslçgums"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "atklâts uz porta %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN pieslçgums"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "atklâts %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy
msgid "ADSL connection"
msgstr "LAN pieslçgums"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "atklâts uz interfeisa %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Kabeďa pieslçgums"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "cable connection detected"
msgstr "Kabeďa pieslçgums"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "LAN pieslçgums"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "ethernet karte(s) atrasta"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Izvçlieties izmantojamo rîku"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
#, fuzzy
msgid "Internet connection"
msgstr "Interneta pieslçguma koplietođana"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Vai vçlaties startçt pieslçgumu palaiđanas laikâ?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Tîkla konfigurâcija"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6178,29 +6348,29 @@ msgid ""
"%s"
msgstr "Vai vçlaties pârstartçt tîklu"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"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."
@@ -6209,7 +6379,7 @@ msgstr ""
"Vienkârđi apstipriniet, ka vçlaties saglabât đo konfigurâciju.\n"
"Tâlâko lauku izmainîđana pârrakstîs đo konfigurâciju."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6219,38 +6389,43 @@ msgstr ""
"Visi dati jâievada kâ IP adreses ar punktiem atdalîtu decimâlu\n"
"skaitďu veidâ (piemçram, 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Konfigurçju tîkla iekârtu %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (draiveris %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP adrese"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Tîkla maska"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Automâtisks IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Sistçmdisketes radîđana"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP adreses formâtam jâbűt 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6262,64 +6437,64 @@ msgstr ""
"piemçram, ``mybox.mylab.myco.com''.\n"
"Jűs varat ievadît arî vârtejas IP adresi, ja tâda ir"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS serveris"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Vârtejas ierîce"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Proxy serveru konfigurâcija"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Proxy bűtu jâbűt http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Proxy bűtu jâbűt ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Interneta konfigurâcija"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Vai vçlaties mçěinât pieslçgties internetam tűlît?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Izmçěinu pieslçgumu..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Sistçma pađlaik ir pieslçgta Internetam."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr ""
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6327,307 +6502,312 @@ msgstr ""
"Đíiet, ja jűsu sistçmu nav pieslçgta Internetam.\n"
"Mçěiniet pârkonfigurçt pieslçgumu."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Savienojuma konfigurçđana"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Lűdzu aizpieldiet vai izvçlietis lauku"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "Kartes IRQ"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Kartes mem (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "Kartes IO"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "Kartes IO_0"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "Kartes IO_1"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Jűsu privâtais telefona numurs"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Pakalpojumu sniedzçja nosaukums (piem., provider.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Pakalpojumu sniedzçja telefona numurs"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Provaidera dns 1 (nav obligâti)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Provaidera dns 2 (nav obligâti)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
#, fuzzy
msgid "Choose your country"
msgstr "Tastatűras izvçle"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Zvanîđanas reţîms"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection speed"
msgstr "Savienojuma tips: "
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Savienojuma tips: "
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Konta nosaukums (lietotâja vârds)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Konta parole"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "montçđana neizdevâs: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Đai platformai paplađinâtâ partîcija nav pieejama"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Jűsu diska partîciju tabulâ ir caurums, bet es to nevaru izmantot.\n"
"Vienîgais risinâjums ir pârvietot primâras partîcijas tâ, lai caurums "
"atrastos blakus paplađinâtajâm partîcijâm"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Atjaunođana no faila %s neizdevâs: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Slikts rezerves kopijas fails"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Kďűda, ierakstot failâ %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
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 trash"
msgstr ""
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "nepiecieđama"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "svarîga"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "ďoti derîga"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "derîga"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "varbűt"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr ""
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr ""
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Lokâls printeris"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Attâls printeris"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "Attâls CUPS serveris"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Attâls lpd serveris"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Tîkla printeris (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Printera serveris"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Printera ierîces URI"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr "Lokâls printeris"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr "Attâls printeris"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Kďűda, ierakstot failâ %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(modulis %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "CUPS servera IP"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Noklusçts)"
@@ -6650,12 +6830,12 @@ msgstr ""
"konfigurçt printeri; printeri tiks atrasti automâtiski.\n"
"Ja jűs đaubaties, izvçlieties \"Attâls CUPS serveris\"."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "LAN konfigurâcija"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "Attâls CUPS serveris"
@@ -6686,7 +6866,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP adreses formâtam jâbűt 1.2.3.4"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
#, fuzzy
msgid "The port number should be an integer!"
msgstr "Porta numuram ir jâbűt skaitlim"
@@ -6695,7 +6875,7 @@ msgstr "Porta numuram ir jâbűt skaitlim"
msgid "CUPS server IP"
msgstr "CUPS servera IP"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Ports"
@@ -6704,22 +6884,13 @@ msgstr "Ports"
msgid "Automatic CUPS configuration"
msgstr "Sâknçđanas stila konfigurçđana"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "Noskaidroju ierîces..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Pârbaudît portus"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "Nav printera"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6732,14 +6903,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr "Lokâls printeris"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6757,12 +6928,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "Attâls printeris"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6776,11 +6947,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6790,35 +6961,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "Attâls printeris"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "Attâls printeris"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Pârbaudît portus"
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "atklâts %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
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, ..., "
@@ -6826,43 +7001,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Printera ierîces URI"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr "Lokâls printeris"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6870,7 +7045,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6878,73 +7053,83 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Lűdzu norâdiet, kuram seriâlajam portam ir pieslçgts modçms."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Printera ierîces URI"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "Konfigurâcija"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "Instalçju pakotni %s"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing SANE packages..."
msgstr "Instalçju pakotni %s"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Instalçju pakotni %s"
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
#, fuzzy
-msgid "Making printer port available for CUPS ..."
+msgid "Making printer port available for CUPS..."
msgstr "Nolasu CUPS draiveru datubâzi..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
#, fuzzy
-msgid "Reading printer database ..."
+msgid "Reading printer database..."
msgstr "Nolasu CUPS draiveru datubâzi..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Attâla lpd printera opcijas"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -6954,31 +7139,31 @@ msgstr ""
"printera servera resursa vârds un tâs servera rindas\n"
"nosaukums, kurai jâadresç drukas uzdevumi."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
#, fuzzy
msgid "Remote host name"
msgstr "Attâlâ resursa vârds"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
#, fuzzy
msgid "Remote printer name"
msgstr "Attâls printeris"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
#, fuzzy
msgid "Remote host name missing!"
msgstr "Attâlâ resursa vârds"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Attâlâ resursa vârds"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) printera opcijas"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -6992,35 +7177,35 @@ msgstr ""
"koplietojuma vârds un atbilstođs lietotâja vârds, parole un\n"
"darba grupas informâcija."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "SMB servera resurss"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "SMB servera IP"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Koplietojuma vârds"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Darba grupa"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7044,7 +7229,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7053,7 +7238,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7061,11 +7246,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "NetWare printera opcijas"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7078,28 +7263,28 @@ msgstr ""
"TCP/IP resursa vârda!), kâ arî jűsu izvçlçtâ printera rindas\n"
"nosaukums un jebkurđ atbilstođs lietotâja vârds un parole."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Printera serveris"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Printera rindas nosaukums"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Socket printera opcijas"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
@@ -7110,60 +7295,56 @@ msgstr ""
"Lai drukâtu ar socket printeri, jums ir jânorâda printera\n"
"resursa vârds tîklâ un papildus arî porta numurs."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
#, fuzzy
msgid "Printer host name"
msgstr "Printera resursa vârds"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
#, fuzzy
msgid "Printer host name missing!"
msgstr "Printera resursa vârds"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Printera ierîces URI"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
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 ""
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Printera nosaukums"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Apraksts"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Atrađanâs vieta"
-#: ../../printerdrake.pm_.c:1021
+#: ../../printerdrake.pm_.c:1045
#, fuzzy
-msgid "Preparing printer database ..."
+msgid "Preparing printer database..."
msgstr "Nolasu CUPS draiveru datubâzi..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "Attâls printeris"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7178,28 +7359,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "Vai tas ir pareizi?"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "Attâls printeris"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
#, fuzzy
msgid "Printer model selection"
msgstr "Printera pieslçgums"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Kâds ir jűsu printera tips?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7208,18 +7389,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Interneta konfigurâcija"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7229,12 +7410,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Interneta konfigurâcija"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7242,7 +7423,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7255,7 +7436,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7265,34 +7446,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Vai vçlaties izmçěinât printeri?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
#, fuzzy
msgid "Test pages"
msgstr "Pârbaudît portus"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7300,45 +7481,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
#, fuzzy
msgid "No test pages"
msgstr "Jâ, izdrukât abas izmçěinâjuma lapas"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
#, fuzzy
msgid "Print"
msgstr "Printeris"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
#, fuzzy
msgid "Standard test page"
msgstr "Standarta"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Tiek drukâta(s) izmçěinâjuma lapa(s)..."
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
#, fuzzy
msgid "Photo test page"
msgstr "Tiek drukâta(s) izmçěinâjuma lapa(s)..."
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "Tiek drukâta(s) izmçěinâjuma lapa(s)..."
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Tiek drukâta(s) izmçěinâjuma lapa(s)..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7355,7 +7536,7 @@ msgstr ""
"\n"
"Vai tas darbojas pareizi?"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7365,16 +7546,16 @@ msgstr ""
"Var paiet zinâms laiks, pirms printeris sâk drukât.\n"
"Vai tas darbojas pareizi?"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "Nav printera"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7383,15 +7564,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
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 ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7400,49 +7581,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, 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\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7452,7 +7633,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7461,31 +7642,42 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-#, fuzzy
-msgid "Close"
-msgstr "Pele"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Atslçdzu tîklu"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Atslçdzu tîklu"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Atslçdzu tîklu"
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Atslçdzu tîklu"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+#, fuzzy
+msgid "Close"
+msgstr "Pele"
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "Printera opcijas"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7493,38 +7685,38 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
#, fuzzy
-msgid "Reading printer data ..."
+msgid "Reading printer data..."
msgstr "Nolasu CUPS draiveru datubâzi..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Interneta konfigurâcija"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7534,51 +7726,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7586,62 +7778,62 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid "New printer name"
msgstr "Nav printera"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, 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 ""
-#: ../../printerdrake.pm_.c:1887
+#: ../../printerdrake.pm_.c:1935
#, fuzzy
-msgid "Refreshing printer data ..."
+msgid "Refreshing printer data..."
msgstr "Nolasu CUPS draiveru datubâzi..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Konfigurâcija"
-#: ../../printerdrake.pm_.c:1896
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
-msgid "Starting network ..."
+msgid "Starting network..."
msgstr "Izmçěinu pieslçgumu..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr "Tîkla konfigurçđana"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "Monitors nav konfigurçts"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7649,12 +7841,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Konfigurçju tîklu"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7664,34 +7856,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
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 ""
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
-msgid "Restarting printing system ..."
+msgid "Restarting printing system..."
msgstr "Kuru drukâđanas sistçmu vçlaties izmantot?"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "Augsts"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "Paranoisks"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7706,12 +7898,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Kuru drukâđanas sistçmu vçlaties izmantot?"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7725,70 +7917,70 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Izvçlieties printera pieslçgumu"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Kuru drukâđanas sistçmu vçlaties izmantot?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Konfigurçt printeri"
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr "Instalçju pakotni %s"
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Printera opcijas"
-#: ../../printerdrake.pm_.c:2318
+#: ../../printerdrake.pm_.c:2389
#, fuzzy
-msgid "Preparing PrinterDrake ..."
+msgid "Preparing PrinterDrake..."
msgstr "Nolasu CUPS draiveru datubâzi..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Konfigurçt printeri"
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Vai vçlaties konfigurçt printeri?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "Printerdrake"
msgstr "Printeris"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7799,7 +7991,7 @@ msgstr ""
"Eksistç sekojođas drukas rindas.\n"
"Jűs varat pievienot jaunass vai izmainît esođâs."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7809,139 +8001,143 @@ msgstr ""
"Eksistç sekojođas drukas rindas.\n"
"Jűs varat pievienot jaunass vai izmainît esođâs."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Tîkla konfigurçđana"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr ""
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Beigt"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Vai vçlaties izmçěinât đo konfigurâciju?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
#, fuzzy
msgid "Modify printer configuration"
msgstr "Interneta konfigurâcija"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Vai vçlaties izmçěinât đo konfigurâciju?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
#, fuzzy
msgid "Printer connection type"
msgstr "Interneta pieslçguma koplietođana"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
#, fuzzy
msgid "Printer name, description, location"
msgstr "Printera pieslçgums"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
#, fuzzy
msgid "Print test pages"
msgstr "Tiek drukâta(s) izmçěinâjuma lapa(s)..."
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "Vai vçlaties izmçěinât đo konfigurâciju?"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
#, fuzzy
msgid "Remove printer"
msgstr "Attâls printeris"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
msgstr "Nolasu CUPS draiveru datubâzi..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
#, fuzzy
msgid "Default printer"
msgstr "Lokâls printeris"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Vai vçlaties pârstartçt tîklu"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr "Nolasu CUPS draiveru datubâzi..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -8025,24 +8221,60 @@ msgstr "Paroles nesakrît"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Nevar pievienot partîciju _formatçtam_ RAID md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Neizdodas ierakstît failu %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid neizdevâs"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid neizdevâs (varbűt nav uzstâdîti raidtools?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nepietiek diska partîciju RAID lîmenim %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Đo lîmeni ir jâizmanto uzmanîgi. Tas padara jűsu sistçmu vieglâk\n"
+"izmantojamu, taču ďoti nedrođu: to nedrîkst izmantot datoram, kas ir\n"
+"pieslçgts citiem datoriem vai Internetam. Netiek prasîtas paroles."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+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 ""
+"Ar đo drođîbas lîmeni sistçmu var sâkt izmantot kâ serveri.\n"
+"Drođîba tagad ir pietiekođi augsta, lai izmantotu sistçmu kâ serveri, kas\n"
+"apkalpo pieslçgumus no daudziem klientiem. "
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "LAN konfigurâcija"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Opcijas"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -8098,7 +8330,7 @@ msgid ""
"new/changed hardware."
msgstr ""
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8165,7 +8397,7 @@ msgid ""
"available server."
msgstr ""
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -8240,7 +8472,7 @@ msgstr ""
"piemçram, NFS un NIS. portmap serveri ir jâizmanto datoros, kas\n"
"darbojas kâ RPC protokolus izmantojođu protokolu serveri."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -8338,7 +8570,7 @@ msgstr "Internets"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "Sistçmas reţîms"
@@ -8466,6 +8698,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Pieslçgties Internetam"
@@ -8570,6 +8803,15 @@ msgstr ""
msgid "Installing packages..."
msgstr "Instalçju pakotni %s"
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Lűdzu aizveriet sesiju un nospiediet Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Lai aktivizçtu izmaiňas, lűdzu aizveriet un atveriet %s sesiju"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8578,6 +8820,161 @@ msgstr ""
"Man neizdodas nolasît partîciju tabulu, priekđ manis tâ ir pârâk bojâta :(\n"
"Es mçěinâđu turpinât, atslçdzot sliktâs partîcijas"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Interneta konfigurâcija"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Serveris, Datubâzes"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Serveris, Datubâzes"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS serveris"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS serveris"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Pievienot lietotâju"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP klients"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#, fuzzy
+msgid "Help"
+msgstr "/_Palîdzîba"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Nav pieslçgts"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Izdzçst"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Izvçlieties failu"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Pievienot lietotâju"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "DHCP klients"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Konfigurçju..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "pârkonfigurçt"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Ielieciet disketi iekârtâ %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Nav nevienas diskeđu iekârtas"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
#, fuzzy
msgid "Error!"
@@ -8619,6 +9016,11 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Sagatavoju auto instalçđanas disketi"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -8627,47 +9029,40 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Apsveicam!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "Instalçt"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "Lietotâju pievienođana"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "Formatçju loopback failu %s"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8675,15 +9070,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8691,709 +9078,772 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "Kďűda, nolasot failu %s"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "Pakotňu grupu izvçle"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Lűdzu izvçlieties pakotnes, ko vçlaties instalçt"
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "Noňemt rindu"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Noňemt Windows(TM)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr "Lietotâja vârds"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Lűdzu notestçjiet peli"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "Lűdzu mçěiniet vçlreiz"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "Lűdzu mçěiniet vçlreiz"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "Bez paroles"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "LAN pieslçgums"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Izvçlieties printera pieslçgumu"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Lűdzu izvçlieties jűsu tastatűras izkârtojumu."
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Lűdzu uzklikđíiniet uz partîcijas"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr "Lűdzu izvçlieties pakotnes, ko vçlaties instalçt"
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Lűdzu izvçlieties pakotnes, ko vçlaties instalçt"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "Lűdzu notestçjiet peli"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "Tîkla interfeiss"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Tips"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "Lietotâja vârds"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Lűdzu izvçlieties pakotnes, ko vçlaties instalçt"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Lűdzu izvçlieties izmantojamo valodu."
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Cietâ diska noteikđana"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Lietotâja vârds"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr "Ritenis"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr "Ritenis"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "Moduďa opcijas:"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Tîkla konfigurâcija"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Lűdzu izvçlieties pakotnes, ko vçlaties instalçt"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Lűdzu izvçlieties pakotnes, ko vçlaties instalçt"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "Failu sistçmu uzstâdîđana"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Peles ierîce: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Opcijas"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Lűdzu norâdiet, kuram seriâlajam portam ir pieslçgts modçms."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "Tîkla konfigurâcija"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "Lűdzu izvçlieties jűsu peles tipu."
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Lűdzu notestçjiet peli"
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "LAN pieslçgums"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Izvçlieties printera pieslçgumu"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Atjanot no disketes"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "Lűdzu izvçlieties jűsu peles tipu."
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "Cits"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "Sistçmas instalçđana"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "Atjaunot no faila"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "Atjaunot no faila"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "Pielâgota"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/_Palîdzîba"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
#, fuzzy
msgid "Previous"
msgstr "<- Atpakaď"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr "Stâvoklis:"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr "Atjaunot no faila"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr "Tâlâk ->"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "Instalçjamo pakotňu izvçle"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Tiks instalçtas sekojođas pakotnes"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "Lűdzu izvçlieties izmantojamo valodu."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "Lűdzu izvçlieties izmantojamo valodu."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "Lűdzu izvçlieties izmantojamo valodu."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "Saglabât failâ"
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "Lűdzu notestçjiet peli"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr "Lűdzu izvçlieties pakotnes, ko vçlaties instalçt"
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Tîkla konfigurâcija"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "Tîkla konfigurâcija"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "LAN konfigurâcija"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "LAN konfigurâcija"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "Failu sistçmu uzstâdîđana"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9425,7 +9875,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9434,7 +9884,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9475,7 +9925,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9503,12 +9953,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -9525,7 +9980,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9565,7 +10020,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9576,7 +10031,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9589,7 +10044,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9633,105 +10088,535 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "%s uzstâdîđana neizdevâs. Uzradâs đâda kďűda:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Konsoles rîki"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "Pieslçgties Internetam"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "Eksperta"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Pele"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Attâls printeris"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Koplietojuma vârds"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Printeris"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Tîkla konfigurçđanas meistars"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Autentifikâcija"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Pakotňu grupu izvçle"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Lűdzu uzgaidiet"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Instalçđanas beigas"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "Ports"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Jűs varat izvçlçties citas valodas, kas bűs pieejamas pçc instalçđanas"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Tîkla konfigurâcija (%d adapteri)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profils: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Dzçst profilu..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Dzçđamais profils:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Jauns profils..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Resursa vârds: "
+
+#
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Interneta pieeja"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Tips:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Vârteja:"
+
+#
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "interfeiss:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Stâvoklis:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Konfigurçt Interneta pieeju..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "LAN konfigurâcija"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Draiveris"
+
+#
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Interfeiss"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "Protocol"
+msgstr "Protokols"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "State"
+msgstr "Stâvoklis:"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Konfigurçt lokâlo datortîklu..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Meistars..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:302
+#, fuzzy
+msgid "Please Wait... Applying the configuration"
+msgstr "Konfigurâcijas izmçěinâđana"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#, fuzzy
+msgid "Connected"
+msgstr "Nav pieslçgts"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Nav pieslçgts"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "LAN konfigurâcija"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Adapteris %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP klients"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "activate now"
+msgstr "Aktîva"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "deactivate now"
+msgstr "Aktîva"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Interneta pieslçguma konfigurâcija"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Interneta pieslçguma konfigurâcija"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Savienojuma tips: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parametri"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Vârteja"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Ethernet karte"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP klients"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "pielietojums: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Moduďa nosaukums"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Izmçrs"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "sâknçđanas diska veidođana"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "pçc noklusçđanas"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "DrakFloppy kďűda: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "kodola versija"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Vispârçji"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Eksperta apgabals"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrd papildus argumenti"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Pievienot moduli"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "piespiest"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "ja nepiecieđams"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "izlaist scsi moduďus"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "izlaist raid moduďus"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Noňemt moduli"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Izvade"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Izveidot disku"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Pârliecinieties ka datu nesçjs %s ir vajadzîgajâ vietâ"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"Nav datu nesçja ierîcç %s.\n"
+"Lűdzu ielieciet kâdu."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Nevar atdalît: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Nevar pareizi aizvçrt mkbootdisk: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "tîkla karte nav atrasta"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr "Izdarîts"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
#, fuzzy
msgid "Fonts copy"
msgstr "Disketes formatçđana"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "Sagatavoju instalçđanu"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
#, fuzzy
msgid "Restart XFS"
msgstr "ierobeţot"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "ierobeţot"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -9740,121 +10625,120 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "Diska formatçđana"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "LAN konfigurâcija"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr "Montçđanas punkts"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Izvçlieties partîcijas, ko vçlaties formatçt"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "Birojs"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr "Pârtraukt"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr "Printeris"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "Sistçmas instalçđana"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "Izvçlieties failu"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "Attâls printeris"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr ""
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr "Jűsu sistçmâ nav tîkla adaptera!"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "Instalçt"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr "Jűsu sistçmâ nav tîkla adaptera!"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "Instalçđanas beigas"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Interneta pieslçguma koplietođana"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Interneta pieslçguma koplietođana pađlaik ir ieslçgta"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -9866,33 +10750,33 @@ msgstr ""
"\n"
"Ko jűs vçlaties darît?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "atslçgt"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "atmest"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "pârkonfigurçt"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
#, fuzzy
msgid "Disabling servers..."
msgstr "Noskaidroju ierîces..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
#, fuzzy
msgid "Internet connection sharing is now disabled."
msgstr "Interneta pieslçguma koplietođana pađlaik ir atslçgta"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Interneta pieslçguma koplietođana pađlaik ir atslçgta"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -9904,20 +10788,20 @@ msgstr ""
"\n"
"Ko jűs vçlaties darît?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "ieslçgt"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
#, fuzzy
msgid "Internet connection sharing is now enabled."
msgstr "Interneta pieslçguma koplietođana pađlaik ir ieslçgta"
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
#, fuzzy
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -9934,22 +10818,22 @@ msgstr ""
"\n"
"Vai vçlaties uzstâdît Interneta pieslçguma koplietođanu?"
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr ""
#
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, fuzzy, c-format
msgid "Interface %s"
msgstr "Interfeiss"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Jűsu sistçmâ nav tîkla adaptera!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -9957,11 +10841,11 @@ msgstr ""
"Jűsu sistçmâ nav atrasts neviens ethernet tîkla adapteris. Lűdzu izmantojiet "
"dzelţu konfigurçđanas rîku."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Tîkla interfeiss"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -9976,7 +10860,7 @@ msgstr ""
"\n"
"Vai vçlaties uzstâdît jűsu lokâlo datortîklu ar đo adapteri?"
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -9984,12 +10868,12 @@ msgstr ""
"Lűdzu izvçlieties, kurđ tîkla adapteris bűs pieslçgts jűsu lokâlajam "
"datortîklam."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "Monitors nav konfigurçts"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -9999,17 +10883,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Sâknçđanas stila konfigurçđana"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "Interneta konfigurâcija"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10020,7 +10904,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
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 C-Class Network that "
@@ -10032,33 +10916,33 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "CUPS servera IP"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Potenciâls LAN adređu konflikts atklâts đajâ %s! konfigurâcijâ!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Tika atklâta ugunsműra konfigurâcija!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10066,20 +10950,20 @@ msgstr ""
"Brîdinâjums! Ir atklâta eksistçjođa ugunsműra konfigurâcija. Pçc "
"instalçđanas jums varbűt vajadzçs patstâvîgi pielabot konfigurâciju."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Konfigurçju..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Tiek konfigurçti skripti, instalçtas programmas, startçti serveri..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Problçmas, instalçjot pakotni %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10091,7 +10975,7 @@ msgstr ""
"konfigurçđanu\n"
"(DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
#, fuzzy
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
@@ -10100,7 +10984,7 @@ msgstr ""
"\n"
"Ko jűs vçlaties darît?"
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
#, fuzzy
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
@@ -10109,17 +10993,17 @@ msgstr ""
"\n"
"Ko jűs vçlaties darît?"
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
#, fuzzy
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Interneta pieslçguma koplietođana pađlaik ir ieslçgta"
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
#, fuzzy
msgid "Internet connection sharing configuration"
msgstr "Interneta pieslçgums un konfigurâcija"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, fuzzy, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10129,215 +11013,6 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Interneta pieslçguma koplietođana"
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Tîkla konfigurâcija (%d adapteri)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profils: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Dzçst profilu..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Dzçđamais profils:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Jauns profils..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Resursa vârds: "
-
-#
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Interneta pieeja"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tips:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Vârteja:"
-
-#
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "interfeiss:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Stâvoklis:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Konfigurçt Interneta pieeju..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "LAN konfigurâcija"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Draiveris"
-
-#
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interfeiss"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "Protocol"
-msgstr "Protokols"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Stâvoklis:"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Konfigurçt lokâlo datortîklu..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Meistars..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr ""
-
-#: ../../standalone/draknet_.c:302
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr "Konfigurâcijas izmçěinâđana"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Connected"
-msgstr "Nav pieslçgts"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Nav pieslçgts"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "LAN konfigurâcija"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adapteris %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr ""
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP klients"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Aktîva"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Aktîva"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Interneta pieslçguma konfigurâcija"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Interneta pieslçguma konfigurâcija"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Savienojuma tips: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametri"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Vârteja"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernet karte"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP klients"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Uzstâdu drođîbas lîmeni"
-
#: ../../standalone/drakxconf_.c:47
#, fuzzy
msgid "Control Center"
@@ -10347,94 +11022,130 @@ msgstr "Pieslçgties Internetam"
msgid "Choose the tool you want to use"
msgstr "Izvçlieties izmantojamo rîku"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\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 ""
+
+#: ../../standalone/drakxtv_.c:72
#, fuzzy
msgid "Canada (cable)"
msgstr "Kanâdas (Kvebeka)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "East Europe"
msgstr "Eiropa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Francijas"
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr "Islandes"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "West Europe"
msgstr "Eiropa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr "seriâla"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Pakotňu instalçđanas laikâ atklâta kďűda:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10478,7 +11189,7 @@ msgstr "Neizdodas uzsâkt uzlabođanu no tîkla !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -10527,10 +11238,6 @@ msgstr "/_Opcijas"
msgid "/Options/Test"
msgstr "/Opcijas/Tests"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Palîdzîba"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr "/Palîdzîba/_Par..."
@@ -10594,7 +11301,7 @@ msgstr "Kalendârs"
msgid "Content of the file"
msgstr "Faila saturs"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -10603,79 +11310,111 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr "lűdzu gaidiet, analizçju failu: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "LAN konfigurâcija"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr ""
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
+msgid "Apache World Wide Web Server"
msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Domçna nosaukums"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "Iziet"
+msgid "Ftp Server"
+msgstr "NIS serveris"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Serveris, Datubâzes"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS serveris"
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "NIS serveris"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "ierîce"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Printera serveris"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "ierîce"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "Formatçju"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "Konfigurâcija"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Saglabât kâ..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Lűdzu izvçlieties jűsu peles tipu."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "nav atrasta seriâla_usb\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Vai emulçt tređo pogu?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Nolasu CUPS draiveru datubâzi..."
+
+#: ../../standalone/scannerdrake_.c:42
+#, fuzzy
+msgid "Detecting devices ..."
+msgstr "Noskaidroju ierîces..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -10719,6 +11458,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
#, fuzzy
msgid "Firewalling Configuration"
@@ -11072,10 +11823,6 @@ msgid "Multimedia - Sound"
msgstr "Multimçdiji - Skaňa"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Utilîti"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Dokumentâcija"
@@ -11187,10 +11934,6 @@ msgstr ""
"un pârlűkotu Tîmekli"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arhivçđana, emulatori, novçrođana"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Personîgâs finanses"
@@ -11242,1589 +11985,203 @@ msgstr "Multimçdiji - CD ierakstîđana"
msgid "Scientific Workstation"
msgstr "Zinâtniskâ darbastacija"
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Pârtraukt"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#~ msgid "None"
-#~ msgstr "Nevienu"
-
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Norâdiet noklusçto lietotâju:"
-
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Attâls printeris"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Tagad jűs varat norâdît parametrus modulim %s."
-
-#~ msgid "Low"
-#~ msgstr "Zems"
-
-#~ msgid "Medium"
-#~ msgstr "Vidçjs"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Daţi uzlabojumi đim drođîbas lîmenis, un galvenais ir tas, ka tagad ir\n"
-#~ "vairâk drođîbas brîdinâjumu un pârbauţu."
-
-#~ msgid "mount failed"
-#~ msgstr "montçđana neizdevâs"
-
-#~ msgid "Boot mode"
-#~ msgstr "Sâknçđanas reţîms"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Eksperta"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "GNU/Linux laiku rçíina pçc GMT jeb \"Grîničas Meridiâna Laika\" un "
-#~ "pârvçrđ\n"
-#~ "to par vietçjo laiku atbilstođi jűsu izvçlçtajai laika joslai."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "Pieslçgties Internetam"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Atslçgties no Interneta"
-
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Konfigurçt tîkla pieslçgumu (LAN vai Interneta)"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Uz kuru disku vçlaties to pârvietot?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Lűdzu izvçlieties pakotnes, ko vçlaties instalçt"
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Info"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Gnome darbastacija"
-
-#~ msgid "authentification"
-#~ msgstr "autentifikâcija"
-
-#~ msgid "user"
-#~ msgstr "lietotâjs"
-
-#~ msgid "Scanning available nfs shared resource"
-#~ msgstr "Skançju piejamos nfs kopîgos resursus"
-
-#~ msgid "Scanning available nfs shared resource of server %s"
-#~ msgstr "Skançju piejamos nfs kopîgos resursus uz servera %s"
-
-#~ msgid "Scanning available samba shared resource"
-#~ msgstr "Skançju piejamos samba kopîgos resursus"
-
-#~ msgid "Scanning available samba shared resource of server %s"
-#~ msgstr "Skançju piejamos samba kopîgos resursus uz servera %s"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
-#~ "\n"
-#~ msgstr "Lűdzu izvçlieties jűsu peles tipu."
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "Iziet"
-
-#~ msgid "Removable media"
-#~ msgstr "Izňemams datu nesçjs"
-
-#~ msgid "Active"
-#~ msgstr "Aktîva"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "Nç"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "Printeris, modelis \"%s\", atrasts pie "
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Lokâlâ printera ierîce"
-
-#~ msgid "Printer Device"
-#~ msgstr "Printera ierîce"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Attâls CUPS serveris"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "Attâls CUPS serveris"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Sistçmas reţîms"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "Cits"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Lűdzu izvçlieties jűsu tastatűras izkârtojumu."
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Lűdzu uzklikđíiniet uz partîcijas"
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Tips: "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Slikts rezerves kopijas fails"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "X konfigurçđana"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Printera ierîce"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Atcelt"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "Labi"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Pele"
-
-#
-#, fuzzy
-#~ msgid "toto"
-#~ msgstr "toot"
-
-#, fuzzy
-#~ msgid "Starting your connection..."
-#~ msgstr "Izmçěinu pieslçgumu..."
-
-#, fuzzy
-#~ msgid "Closing your connection..."
-#~ msgstr "Izmçěinu pieslçgumu..."
-
-#, fuzzy
-#~ msgid "The system is now disconnected."
-#~ msgstr "Sistçma pađlaik ir pieslçgta Internetam."
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Norâdiet apjomu, ko vçlaties instalçt"
-
-#~ msgid "Total size: "
-#~ msgstr "Kopçjais izmçrs: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Lűdzu uzgaidiet, "
-
-#~ msgid "Total time "
-#~ msgstr "Kopçjais laiks"
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "Vai izmantot jau esođo X11 konfigurâciju?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
-#~ msgstr ""
-#~ "Kurai ierîcei ir pieslçgts printeris\n"
-#~ "(atcerieties, ka /dev/lp0 atbilst LPT1:)?\n"
-
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#, fuzzy
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr ""
-#~ "Brîdinâjums, tîkla adapteris jau ir konfigurçts.\n"
-#~ "Vai vçlaties to konfigurçt atkârtoti?"
-
-#~ msgid "New"
-#~ msgstr "Jauns"
-
-#~ msgid "Remote"
-#~ msgstr "Attâla"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Lűdzu uzklikđíiniet uz partîcijas"
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Nenoteiktîba (%s), esiet precîzâks\n"
-
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (noklusçti %s) "
-
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "Jűsu izvçle? (noklusçti %s ievadiet `none', ja nav) "
-
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "lasîđanai nevar atvçrt /etc/sysconfig/autologin: %s"
-
-#~ msgid "Do you want to restart the network"
-#~ msgstr "Vai vçlaties pârstartçt tîklu"
-
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "Vai jűs piekrîtat?"
-
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Gatavojos pârstartçt tîkla ierîci:\n"
-
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "Gatavojos pârstartçt tîkla ierîci %s. Vai piekrîtat?"
-
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Ja vien jűs neesat pârliecinâts par citu izvçli, parasti ir jâizvçlas\n"
-#~ "\"/dev/hda\" (primârais galvenais IDE disks) vai \"/dev/sda\" (pirmais\n"
-#~ "SCSI disks)."
-
-#, fuzzy
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "Savienojuma tips: "
-
-#, fuzzy
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Norâdiet noklusçto lietotâju:"
-
-#, fuzzy
-#~ msgid "Test the mouse here."
-#~ msgstr "Lűdzu notestçjiet peli"
-
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr "Lűdzu norâdiet vçlamo instalçđanas un sistçmas izmantođanas valodu."
-
-#~ msgid ""
-#~ "You need to accept the terms of the above license to continue "
-#~ "installation.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Accept\" if you agree with its terms.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Refuse\" if you disagree with its terms. Installation "
-#~ "will end without modifying your current\n"
-#~ "configuration."
-#~ msgstr ""
-#~ "Lai turpinâtu instalçđanu, jums ir jâpieňem đîs licences nosacîjumi.\n"
-#~ "\n"
-#~ "\n"
-#~ "Nospiediet \"Pieňemt\", ja piekrîtat nosacîjumiem.\n"
-#~ "\n"
-#~ "\n"
-#~ "Nospiediet \"Noraidît\", ja nepiekrîtat nosacîjumiem. Instalçđana tiks "
-#~ "pârtraukta bez pađreizçjâs\n"
-#~ "konfigurâcijas izmaiňâm."
-
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr "Sarakstâ norâdiet jűsu tastatűrai atbilstođu izkârtojumu"
-
-#~ msgid ""
-#~ "If you wish other languages (than the one you choose at\n"
-#~ "beginning of installation) will be available after installation, please "
-#~ "chose\n"
-#~ "them in list above. If you want select all, you just need to select \"All"
-#~ "\"."
-#~ msgstr ""
-#~ "Ja vçlaties, lai citas valodas (izňemot to, ko norâdîjât instalçđanas\n"
-#~ "sâkumâ) bűtu pieejamas pçc instalçđanas, lűdzu norâdiet tâs augstâk\n"
-#~ "esođajâ sarakstâ. Ja vçlaties izmantot visas, nospiediet \"Viss\"."
-
-#~ msgid ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!"
-#~ msgstr ""
-#~ "Izvçlieties:\n"
-#~ "\n"
-#~ " - Pielâgota: Ja pietiekami labi pârzinat GNU/Linux, jums tiks dota\n"
-#~ " iespçja norâdît sistçmu pielietojumu. Sîkâka informâcija bűs\n"
-#~ " pieejam vçlâk.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Eksperta: Noderçs, ja jűs labi pârzinat GNU/Linux un vçlaties veikt\n"
-#~ " precîzi pielâgotu instalâciju. Tâpat kâ pielâgotas instalâcijas\n"
-#~ " gadîjumâ, jums tiks dota iespçja norâdît sistçmas pielietojumu.\n"
-#~ " Tomçr lűdzu, NEIZVÇLIETIES ĐO, JA JŰS NEESAT PÂRLIECINÂTS PAR\n"
-#~ " SAVU RÎCÎBU!"
-
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "Tagad jums ir jânorâda mađînas pielietojums. Varat izvçlçties:\n"
-#~ "\n"
-#~ "* Darbastacija: đî ir ideâla izvçle, ja plânojat sistçmu galvenokârt "
-#~ "izmantot ikdienas vajadzîbâm birojâ vai mâjâs.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Izstrâdei: ja plânojat sistçmu izmantot galvenokârt programmatűras "
-#~ "izstrâdei, đî ir laba izvçle. Đajâ\n"
-#~ " gadîjumâ tiks instalçts pilns programmu komplekts, lai jűs varçtu "
-#~ "kompilçt, atkďűdot un formatçt sâkumkodu vai\n"
-#~ " veidot programmatűras pakotnes.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Serveris: ja plânojat sistçmu izmantot kâ serveri, đî ir laba izvçle. "
-#~ "Tas var bűt failu serveris (NFS vai\n"
-#~ " SMB), drukas serveris (Unix stila vai Microsoft Windows stila), "
-#~ "autentificçđanas serveris (NIS),\n"
-#~ " datubâzu serveris utt. Đajâ gadîjumâ neceriet, ka tiks instalçti kâdi "
-#~ "izskaistinâjumi (KDE, GNOME, un tml.)."
-
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "Tagad varat izvçlçties instalçjamo vai uzlabojamo pakotňu grupu.\n"
-#~ "\n"
-#~ "\n"
-#~ "Pçc tam DrakX pârbaudîs, vai pietiek vietas to visu instalçđanai.\n"
-#~ "Ja nav vietas, jűs brîdinâs par to. Ja vçlaties turpinât, neskatoties\n"
-#~ "uz to, izvçlçto grupu instalçđana turpinâsies, taču tiks izlaistas\n"
-#~ "daţas mazâk noderîgas pakotnes. Saraksta apakđâ varat izvçlçties\n"
-#~ "opciju \"Atseviđíu pakotňu izvçle\"; đajâ gadîjumâ jums vajadzçs\n"
-#~ "caurskatît vairâk nekâ 1000 pakotňu sarakstu..."
-
-#~ msgid ""
-#~ "You can now choose individually all the packages you\n"
-#~ "wish to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can expand or collapse the tree by clicking on options in the left "
-#~ "corner of\n"
-#~ "the packages window.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you prefer to see packages sorted in alphabetic order, click on the "
-#~ "icon\n"
-#~ "\"Toggle flat and group sorted\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want not to be warned on dependencies, click on \"Automatic\n"
-#~ "dependencies\". If you do this, note that unselecting one package may "
-#~ "silently\n"
-#~ "unselect several other packages which depend on it."
-#~ msgstr ""
-#~ "Tagad jűs varat atseviđíi izvçlçties visas pakotnes, ko gribat "
-#~ "insrtalçt.\n"
-#~ "\n"
-#~ "\n"
-#~ "Jűs varat izvçstr vai sakďaut koku, noklikđíinot uz opcijâm pakotňu loga\n"
-#~ "kreisajâ stűrî.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ja jűs vçlaties redzçt visas sakotnes sakârtotas alfabçta secîbâ,\n"
-#~ "noklikđíiniet uz ikonas \"Sakârtots vienâ sarakstâ vai pa grupâm\"\n"
-#~ "\n"
-#~ "\n"
-#~ "Ja jűs nevçlaties, lai jűs brîdina par atkarîbâm, noklikđíiniet uz\n"
-#~ "\"Automâtiskas atkarîbas\". Ja jűs tâ izdarât, ňemiet vçrâ, ka "
-#~ "atteikđanâs\n"
-#~ "no vienas pakotnes var izsaukt atteikđanos no vairâkâm citâm pakotnçm,\n"
-#~ "kas ir no tâs atkarîgas."
-
-#~ msgid ""
-#~ "If you have all the CDs in the list above, click Ok. If you have\n"
-#~ "none of those CDs, click Cancel. If only some CDs are missing, unselect "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "Ja jums ir visi đajâ sarakstâ norâdîtie CD, nospiediet Labi.\n"
-#~ "Ja jums nav neviena no norâdîtajiem CD, nospiediet Atcelt.\n"
-#~ "Ja trűkst tikai daţu CD, sarakstâ atslçdziet tos un nospiediet Labi."
-
-#~ msgid ""
-#~ "If you wish to connect your computer to the Internet or\n"
-#~ "to a local network please choose the correct option. Please turn on your "
-#~ "device\n"
-#~ "before choosing the correct option to let DrakX detect it automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you do not have any connection to the Internet or a local network, "
-#~ "choose\n"
-#~ "\"Disable networking\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you wish to configure the network later after installation, or if you "
-#~ "have\n"
-#~ "finished to configure your network connection, choose \"Done\"."
-#~ msgstr ""
-#~ "Ja vçlaties savu datoru pieslçgt Internetam vai lokâlam datortîklam,\n"
-#~ "lűdzu izvçlieties pareizu opciju. Lűdzu vispirms ieslçdziet attiecîgu\n"
-#~ "ierîci, pirms izvçlaties opciju, lai DrakX noteiktu to automâtiski.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ja jums nav nekâda pieslçguma Internetam vai lokâlam datortîklam,\n"
-#~ "izvçlieties \"Atslçgt tîklu\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Ja jűs vçlaties konfigurçt tîklu vçlâk pçc instalçđanas, vai arî esat\n"
-#~ "jau pabeiguđi konfigurçt jűsu tîkla pieslçgumu, izvçlieties \"Izdarîts\"."
-
-#~ msgid ""
-#~ "No modem has been detected. Please select the serial port on which it is "
-#~ "plugged.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, the first serial port (called \"COM1\" under Microsoft\n"
-#~ "Windows) is called \"ttyS0\" under Linux."
-#~ msgstr ""
-#~ "Modçms nav atrasts. Lűdzu norâdiet, kuram seriâlajam portam tas "
-#~ "pieslçgts.\n"
-#~ "\n"
-#~ "\n"
-#~ "Jűsu zinâđanai, pirmais seriâlais ports (ko Microsoft Windows sauc par\n"
-#~ "\"COM1\") Linux vidç tiek saukts par \"ttyS0\"."
-
-#~ msgid ""
-#~ "You may now enter dialup options. If you don't know\n"
-#~ "or are not sure what to enter, the correct informations can be obtained "
-#~ "from\n"
-#~ "your Internet Service Provider. If you do not enter the DNS (name "
-#~ "server)\n"
-#~ "information here, this information will be obtained from your Internet "
-#~ "Service\n"
-#~ "Provider at connection time."
-#~ msgstr ""
-#~ "Tagad jűs varat ievadît iezvanpieejas opcijas. Ja jűs nezinat vai neesat\n"
-#~ "pârliecinâts, ko ievadît, pareizu informâciju var saňemt no jűsu "
-#~ "Interneta\n"
-#~ "pakalpojumu sniedzçja. Ja jűs đeit neievadât DNS (vârdu servera) "
-#~ "informâciju,\n"
-#~ "đî informâcija tiks iegűta no jűsu Interneta pakalpojumu sniedzçja\n"
-#~ "pieslçgđanâs laikâ."
-
-#~ msgid ""
-#~ "If your modem is an external modem, please turn on it now to let DrakX "
-#~ "detect it automatically."
-#~ msgstr ""
-#~ "Ja jums ir ârçjs modçms, lűdzu ieslçdziet to un ďaujiet DrakX to noteikt "
-#~ "automâtiski."
-
-#~ msgid "Please turn on your modem and choose the correct one."
-#~ msgstr "Lűdzu ieslçdziet jűsu modçmu un norâdiet pareizo modeli."
-
-#~ msgid ""
-#~ "If you are not sure if informations above are\n"
-#~ "correct or if you don't know or are not sure what to enter, the correct\n"
-#~ "informations can be obtained from your Internet Service Provider. If you "
-#~ "do not\n"
-#~ "enter the DNS (name server) information here, this information will be "
-#~ "obtained\n"
-#~ "from your Internet Service Provider at connection time."
-#~ msgstr ""
-#~ "Ja jűs neesat pârliecinâts, vai augstâk esođâ informâcija ir pareiza, "
-#~ "vai\n"
-#~ "arî jűs nezinat vai neesat pârliecinâts, ko ievadît, pareizu informâciju\n"
-#~ "var saňemt no jűsu Interneta pakalpojumu sniedzçja. Ja jűs đeit "
-#~ "neievadât\n"
-#~ "DNS (vârdu servera) informâciju, đî informâcija tiks iegűta no jűsu\n"
-#~ "Interneta pakalpojumu sniedzçja pieslçgđanâs laikâ."
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, the correct informations can "
-#~ "be\n"
-#~ "obtained from your Internet Service Provider."
-#~ msgstr ""
-#~ "Tagad varat ievadît jűsu datora vârdu, ja tas nepiecieđamas.\n"
-#~ "Ja jűs to nezinat vai neesat pârliecinâts, ko ievadît, pareizu "
-#~ "informâciju\n"
-#~ "var saňemt no jűsu Interneta pakalpojumu sniedzçja."
-
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Tagad varat konfigurçt tîkla ierîci.\n"
-#~ "\n"
-#~ " * IP adrese: ja to nezinat vai neesat pârliecinâts, pajautâjiet tîkla "
-#~ "administratoram.\n"
-#~ " Jums nav jâievada IP adrese, ja zemâk izvçlaties \"Automâtisks IP"
-#~ "\".\n"
-#~ "\n"
-#~ " - Tîklamaska: \"255.255.255.0\" parasti ir laba izvçle. Ja nezinat vai "
-#~ "neesat pârliecinâts, pajautâjiet\n"
-#~ "tîkla administratoram.\n"
-#~ "\n"
-#~ " - Automâtisks IP: ja jűsu datortîkls izmanto BOOTP vai DHCP protokolu, "
-#~ "izvçlieties đo opciju. Kad tâ izvçlçta,nnav jânorâda \"IP addrese\". Ja "
-#~ "nezinat vai neesat pârliecinâts, pajautâjiet tîkla administratoram."
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, ask your network administrator."
-#~ msgstr ""
-#~ "Tagad varat ievadît jűsu datora vârdu, ja tas nepiecieđamas.\n"
-#~ "Ja jűs to nezinat vai neesat pârliecinâts, pajautâjiet tîkla "
-#~ "administratoram."
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, leave blank."
-#~ msgstr ""
-#~ "Tagad varat ievadît jűsu datora vârdu, ja tas nepiecieđams.\n"
-#~ "Ja nezinat vai neesat pârliecinâts, atstâjiet tukđu."
-
-#~ msgid ""
-#~ "You may now enter dialup options. If you're not sure what to enter, the\n"
-#~ "correct information can be obtained from your ISP."
-#~ msgstr ""
-#~ "Tagad jűs varat ievadît iezvanîđanâs opcijas. Ja jűs nezinat, ko "
-#~ "ievadît,\n"
-#~ "vajadzîgo informâciju var saňemt no jűsu ISP."
-
-#~ msgid ""
-#~ "If you will use proxies, please configure them now. If you don't know if\n"
-#~ "you should use proxies, ask your network administrator or your ISP."
-#~ msgstr ""
-#~ "Ja jűs izmantosit proxy serverus, lűdzu konfigurçjiet tos. Ja jűs\n"
-#~ "nezinat, vai izmantosit proxy, pajautâjiet tîkla administratoram vai\n"
-#~ "savam ISP."
-
-#~ msgid ""
-#~ "You can install cryptographic package if your internet connection has "
-#~ "been\n"
-#~ "set up correctly. First choose a mirror where you wish to download "
-#~ "packages and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "Ja jűsu Interneta pieslçgums ir konfigurçts pareizi, jűs varat instalçt\n"
-#~ "kriptogrâfijas pakotnes. Vispirms norâdiet spoguďserveri, no kura\n"
-#~ "ielâdçt pakotnes, tad izvçlieties instalçjamâs pakotnes.\n"
-#~ "\n"
-#~ "\n"
-#~ "Atcerieties, ka spoguďserveris un kriptogrâfijas pakotnes ir jâizvçlas\n"
-#~ "atbilstođi jűsu valsts likumdođanai."
-
-#~ msgid "You can now select your timezone according to where you live."
-#~ msgstr "Tagad varat norâdît laika joslu, kurâ jűs dzîvojat."
-
-#~ msgid ""
-#~ "You can configure a local printer (connected to your computer) or remote\n"
-#~ "printer (accessible via a Unix, Netware or Microsoft Windows network)."
-#~ msgstr ""
-#~ "Jűs varat konfigurçt lokâlu printeri (kas pieslçgts jűsu datoram) vai\n"
-#~ "attâlu printeri (pieejami Unix, Netware vai Microsoft Windows tîklâ)."
-
-#~ msgid ""
-#~ "If you wish to be able to print, please choose one printing system "
-#~ "between\n"
-#~ "CUPS and LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS is a new, powerful and flexible printing system for Unix systems "
-#~ "(CUPS\n"
-#~ "means \"Common Unix Printing System\"). It is the default printing system "
-#~ "in\n"
-#~ "Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR is the old printing system used in previous Mandrake Linux "
-#~ "distributions.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you don't have printer, click on \"None\"."
-#~ msgstr ""
-#~ "Ja jűs vçlaties izmantot printeri, izvçlieties vienu no drukas sistçmâm "
-#~ "- \n"
-#~ "CUPS vai LRP.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS ir jauna, jaudîga un elastîga drukas sistçma Unix sistçmâm (CUPS\n"
-#~ "nozîmç \"Common Unix Printing System\"). Đî ir noklusçtâ Mandrake Linux\n"
-#~ "drukas sistçma.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR ir vecâ drukas sistçma, kas tika izmantota iepriekđçjâs Mandrake "
-#~ "Linux\n"
-#~ "versijâs.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ja jums nav printera, izvçlieties \"Neviens\"."
-
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these types "
-#~ "requires\n"
-#~ "a different setup.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select \"Local\n"
-#~ "printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine, select\n"
-#~ "\"Remote printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Microsoft Windows "
-#~ "machine\n"
-#~ "(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
-#~ msgstr ""
-#~ "GNU/Linux var strâdât ar daţâdiem printeru tipiem. Katram no điem tipiem\n"
-#~ "ir nepiecieđama atđíirîgi uzstâdîjumi.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ja jűsu printeris ir fiziski pieslçgts jűsu datoram, izvçlieties "
-#~ "\"Lokâls\n"
-#~ "printeris\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Ja jűs vçlaties piekďűt printerim, kas ir pieslçgts attâlam Microsoft\n"
-#~ "Windows datoram (vai Unix datoram, kas izmanto SMB protokolu), "
-#~ "izvçlieties\n"
-#~ "\"SMB/Windows 95/98/NT\"."
-
-#~ msgid ""
-#~ "Please turn on your printer before continuing to let DrakX detect it.\n"
-#~ "\n"
-#~ "You have to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of printer: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you must have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer a more meaningful name, you "
-#~ "have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Description: this is optional but can be useful if several printers "
-#~ "are connected to your computer or if you allow\n"
-#~ " other computers to access to this printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Location: if you want to put some information on your\n"
-#~ " printer location, put it here (you are free to write what\n"
-#~ " you want, for example \"2nd floor\").\n"
-#~ msgstr ""
-#~ "Lűdzu ieslçdziet jűsu printeri, pirms turpinât un ďaut DrakX to noteikt.\n"
-#~ "\n"
-#~ "Đeit jums ir jâievada noteikta informâcija.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printera nosaukums: drukas spolçtâjs izmanto \"lp\" kâ noklusçto "
-#~ "printera nosaukumu, tâpçc jums ir jâbűt\n"
-#~ " printerim, kas saucas \"lp\". Ja jums ir tikai viens printeris, jűs "
-#~ "varat tam pieđíirt vairâkus nosaukumus.\n"
-#~ " Nosaukumi ir jâatdala ar vertikâlas svîtras simbolu (\"|\"). "
-#~ "Tâdçjâdi, ja jűs gribat izmantot saprotamâku\n"
-#~ " nosaukumu, jűs to varat norâdît pirmo, piemçram, \"Mans printeris|lp"
-#~ "\". Printeris, kura nosaukumâ ir \"lp\",\n"
-#~ " bűs noklusçtais printeris.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Apraksts: nav obligâts, bet var noderçt, ja jűsu datoram ir "
-#~ "pieslçgti vairâki printeri, vai arî jűs gribat\n"
-#~ " atďaut citiem datoriem pieslçgties jűsu printerim.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Atrađanâs vieta: ja gribat, varat sniegt informâciju par jűsu "
-#~ "printera\n"
-#~ " atrađanâs vietu (đeit jűs varat rakstît visu, ko vçlaties, "
-#~ "piemçram,\n"
-#~ " \"otrajâ stâvâ\").\n"
-
-#~ msgid ""
-#~ "You need to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of queue: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you need have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer to have a more meaningful "
-#~ "name, you have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ " \n"
-#~ " * Spool directory: it is in this directory that printing jobs are "
-#~ "stored. Keep the default choice\n"
-#~ " if you don't know what to use\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printer Connection: If your printer is physically connected to your "
-#~ "computer, select \"Local printer\".\n"
-#~ " If you want to access a printer located on a remote Unix machine, "
-#~ "select \"Remote lpd printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to access a printer located on a remote Microsoft "
-#~ "Windows machine (or on Unix machine using SMB\n"
-#~ " protocol), select \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to acces a printer located on NetWare network, select "
-#~ "\"NetWare\".\n"
-#~ msgstr ""
-#~ "Đeit jums ir jâievada noteikta informâcija.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Rindas nosaukums: drukas spolçtâjs izmanto \"lp\" kâ noklusçtâ "
-#~ "printera nosaukumu, tâpçc jums ir jâbűt\n"
-#~ " printerim, kas saucas \"lp\". Ja jums ir tikai viens printeris, jűs "
-#~ "varat tam pieđíirt vairâkus nosaukumus.\n"
-#~ " Nosaukumi ir jâatdala ar vertikâlas svîtras simbolu (\"|\"). "
-#~ "Tâdçjâdi, ja jűs gribat izmantot saprotamâku\n"
-#~ " nosaukumu, jűs to varat norâdît pirmo, piemçram, \"Mans printeris|lp"
-#~ "\". Printeris, kura nosaukumâ ir \"lp\",\n"
-#~ " bűs noklusçtais printeris.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Spolçđanas katalogs: tieđi đajâ katalogâ tiek glabâti drukas "
-#~ "uzdevumi. Ja nezinat, ko ievadît,\n"
-#~ " atstâjiet noklusçto vçrtîbu\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printera pieslçgums: Ja jűsu printeris fiziski ir pieslçgts jűsu "
-#~ "datoram, izvçlieties \"Lokâls printeris\".\n"
-#~ " Ja jűs vçlaties piekďűt printerim, kas pieslçgts attâlam Unix "
-#~ "datoram, izvçlieties \"Attâls lpd printeris\".\n"
-#~ "\n"
-#~ "\n"
-#~ " Ja jűs vçlaties izmantot printeri, kas pieslçgts attâlam Microsoft "
-#~ "Windows datoram (vai Unix datoram, kas\n"
-#~ " izmanto SMB protokolu), izvçlieties \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " Ja jűs vçlaties izmantot printeri, kas atrodas NetWare tîklâ, "
-#~ "izvçlieties \"NetWare\".\n"
-
-#~ msgid ""
-#~ "Your printer has not been detected. Please enter the name of the device "
-#~ "on\n"
-#~ "which it is connected.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, most printers are connected on the first parallel port. "
-#~ "This\n"
-#~ "one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
-#~ "Windows."
-#~ msgstr ""
-#~ "Jűsu printeris nav atrasts. Lűdzu ievadiet ierîces nosaukumu, kurai tas "
-#~ "ir\n"
-#~ "pieslçgts.\n"
-#~ "\n"
-#~ "\n"
-#~ "Jűsu zinâđanai, vairums printeru ir pieslçgti pirmajam paralçlajam "
-#~ "portam.\n"
-#~ "Đo portu GNU/Linux vidç sauc par \"/dev/lp0\" bet Microsoft Windows vidç\n"
-#~ "par \"LPT1\"."
-
-#~ msgid "You must now select your printer in the above list."
-#~ msgstr "Tagad jums ir jâizvçlâs printeri no augstâk esođâ saraksta."
-
-#~ msgid ""
-#~ "Please select the right options according to your printer.\n"
-#~ "Please see its documentation if you don't know what choose here.\n"
-#~ "\n"
-#~ "\n"
-#~ "You will be able to test your configuration in next step and you will be "
-#~ "able to modify it if it doesn't work as you want."
-#~ msgstr ""
-#~ "Lűdzu izvçlieties jűsu printerim atbilstođas opcijas.\n"
-#~ "Izlasiet dokumentâciju, ja nezinat, ko izvçlçties.\n"
-#~ "\n"
-#~ "\n"
-#~ "Nâkamajâ solî jűs varçsit pârbaudît izvçlçto konfigurâciju un izmainît "
-#~ "to,\n"
-#~ "ja printeris nedarbosies pareizi."
-
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "Tagad varat ievadît jűsu Mandrake Linux sistçmas root paroli.\n"
-#~ "Parole ir jâievada divas reizes, lai pârliecinâtos, ka abas kopijas\n"
-#~ "sakrît un jűs neesat kďűdîjies.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root ir sistçmas administrators un vienîgais lietotâjs, kam ir atďauts\n"
-#~ "izmainît sistçmas konfigurâciju. Đî iemesla dçď rűpîgi izvçlieties đo\n"
-#~ "paroli! Neautorizçta root konta izmantođana var bűt ďoti bîstama\n"
-#~ "sistçmas integritâtei, tâs datiem un citâm tai pieslçgtajâm sistçmâm.\n"
-#~ "\n"
-#~ "\n"
-#~ "Parolei ir jâbűt vismaz 8 simbolus garai burtu un ciparu kombinâcijai.\n"
-#~ "To nekad nevajadzçtu pierakstît uz papîra.\n"
-#~ "\n"
-#~ "\n"
-#~ "Neizvçlieties pârâk garu vai sareţěîtu paroli: jums to ir\n"
-#~ "jâspçj atcerçties bez pârâk lielas piepűles."
-
-#~ msgid ""
-#~ "You may now create one or more \"regular\" user account(s), as\n"
-#~ "opposed to the \"privileged\" user account, root. You can create\n"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "Tagad jűs varat pievienot vienu vai vairâkus \"parastu\" lietotâju\n"
-#~ "kontus kâ pretstatu \"priviliěçta\" lietotâja kontam root. Varat "
-#~ "izveidot\n"
-#~ "vienu vai vairâkus kontus katrai personai, kam bűs atďauts izmantot\n"
-#~ "jűsu datoru. Atcerieties, ka katram lietotâja kontam ir sava\n"
-#~ "konfigurâcija (grafiskâ vide, programmu konfigurâcija un tml.) un savs\n"
-#~ "\"mâjas katalogs\", kurâ đî konfigurâcija tiek glabâta.\n"
-#~ "\n"
-#~ "\n"
-#~ "Vispirms izveidojiet kontu pats sev! Pat ja jűs bűsit vienîgais\n"
-#~ "datora lietotâjs, jűs NEDRÎKSTAT ikdienâ lietot root kontu: tas ir ďoti\n"
-#~ "liels drođîbas risks. Ďoti bieţi tikai daţi nepareizi nodrukâti burti\n"
-#~ "var padarît jűsu sistçmu nelietojamu.\n"
-#~ "\n"
-#~ "\n"
-#~ "Đî iemesla dçď jums jâiereěistrçjas sistçmâ, izmantojot lietotâja kontu,\n"
-#~ "ko jűs tűlît izveidosit, un jâiereěistrçjas kâ root tikai "
-#~ "administrçđanas\n"
-#~ "un uzturçđanas uzdevumu veikđanai."
-
-#~ msgid ""
-#~ "Creating a boot disk is strongly recommended. If you can't\n"
-#~ "boot your computer, it's the only way to rescue your system without\n"
-#~ "reinstalling it."
-#~ msgstr ""
-#~ "Ir ďoti ieteicams izveidot sâknçđanas disketi. Ja jums neizdosies "
-#~ "startçt\n"
-#~ "savu datoru, tâ bűs vienîgais veids, kâ to izglâbt bez pârinstalçđanas."
-
-#, fuzzy
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <number>: use the corresponding text mode.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories\n"
-#~ "stored in \"/tmp\" when you boot your system, select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the\n"
-#~ "BIOS about the amount of RAM present in your computer. As consequence, "
-#~ "Linux may\n"
-#~ "fail to detect your amount of RAM correctly. If this is the case, you "
-#~ "can\n"
-#~ "specify the correct amount or RAM here. Please note that a difference of "
-#~ "2 or 4\n"
-#~ "MB between detected memory and memory present in your system is normal."
-#~ msgstr ""
-#~ "LILO un grub galvenâs opcijas ir:\n"
-#~ " - Sâknçđanas ierîce: Norâda ierîces nosaukumu (t.i., cietâ diska\n"
-#~ "partîciju), uz kuras atrodas sâknçđanas sektors. Ja vien neesat\n"
-#~ "pârliecinâts par ko citu, izvçlieties \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Pauze pirms noklusçtâ attçla sâknçđanas: Norâda laiku sekundes\n"
-#~ "desmitdaďâs, ko sâknçtâjs gaida pirms pirmâ attçla ielâdes.\n"
-#~ "Tas ir ieteicams sistçmâm, kas sâknçjas tieđi no cietâ diska tűlît pçc\n"
-#~ "tastatűras aktivizçđanas. Sâknçđana sâkas bez pauzes, ja \"pauze\" nav\n"
-#~ "norâdîta vai ir nulle.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video reţîms: Tas norâda VGA teksta reţîmu, kas tiek izvçlçts\n"
-#~ "sâknçđanas laikâ. Ir pieejamas sekojođas vçrtîbas: \n"
-#~ " * normâls: izvçlas normâlu 80x25 teksta reţîmu.\n"
-#~ " * <skaitlis>: izmanto atbilstođu teksta reţîmu."
-
-#~ msgid ""
-#~ "SILO is a bootloader for SPARC: it is able to boot\n"
-#~ "either GNU/Linux or any other operating system present on your computer.\n"
-#~ "Normally, these other operating systems are correctly detected and\n"
-#~ "installed. If this is not the case, you can add an entry by hand in this\n"
-#~ "screen. Be careful as to choose the correct parameters.\n"
-#~ "\n"
-#~ "\n"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "anyone, in which case you can delete the corresponding entries. But\n"
-#~ "in this case, you will need a boot disk in order to boot them!"
-#~ msgstr ""
-#~ "SILO ir sâknçtâjs SPARC sistçmâm: tas spçj sâknçt GNU/Linux\n"
-#~ "vai jebkuru citu operçtâjsistçmu, kas ir uzstâdîta jűsu datorâ.\n"
-#~ "Parasti citas operçtâjsistçmas tiek korekti noteiktas un instalçtas.\n"
-#~ "Ja tâ nenotiek, jűs đajâ ekrânâ varat ar roku pievienot ierakstu. Esiet\n"
-#~ "uzmanîgs, izvçloties pareizus parametrus.\n"
-#~ "\n"
-#~ "\n"
-#~ "Jűs varbűt arî vçlaties neďaut nevienam piekďűt pârçjâm "
-#~ "operçtâjsistçmâm,\n"
-#~ "un đajâ gadîjumâ jűs varat izdzçst attiecîgos ierakstus. Bet đajâ\n"
-#~ "gadîjumâ jums bűs nepiecieđama sâknçđanas diskete, lai tâs sâknçtu!"
+#~ msgid "Choose options for server"
+#~ msgstr "Norâdiet servera opcijas"
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ "SILO galvenâs opcijas ir:\n"
-#~ " - Sâknçtâja instalçđana: Norâda, kur jűs vçlaties novietot "
-#~ "informâciju,\n"
-#~ "kas nepiecieđama GNU/Linux sâknçđanai. Ja vien neesat pârliecinâts\n"
-#~ "par ko citu, izvçlieties \"Diska pirmais sektors (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Pauze pirms noklusçtâ attçla sâknçđanas: Norâda laiku sekundes\n"
-#~ "desmitdaďâs, ko sâknçtâjs gaida pirms pirmâ attçla ielâdes.\n"
-#~ "Tas ir ieteicams sistçmâm, kas sâknçjas tieđi no cietâ diska tűlît pçc\n"
-#~ "tastatűras aktivizçđanas. Sâknçđana sâkas bez pauzes, ja \"pauze\" nav\n"
-#~ "norâdîta vai ir nulle."
-
-#~ msgid ""
-#~ "Now it's time to configure the X Window System, which is the\n"
-#~ "core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "Ir pienâcis laiks konfigurçt X Window System, kas ir GNU/Linux GUI\n"
-#~ "(grafiskâ lietotâja interfeisa) pamats. Lai to izdarîtu, jums ir\n"
-#~ "jâkonfigurç video karte un monitors. Tomçr vairums no điem soďiem ir\n"
-#~ "automatizçti, tâpçc jűsu uzdevums var bűt tikai pârbaudît izdarîto\n"
-#~ "izvçli un apstiprinât parametrus :)\n"
-#~ "\n"
-#~ "\n"
-#~ "Kad konfigurçđana ir pabeigta, tiks startçts X (ja vien jűs\n"
-#~ "nelűdzat DrakX to nedarît), lai jűs pârbaudîtu un apskatîtu, vai\n"
-#~ "parametri jűs apmierina. Ja tie neder, jűs varat atgriezties un tos\n"
-#~ "nomainît tik reizes, cik bűs nepiecieđams."
+#~ msgid "Monitor not configured"
+#~ msgstr "Monitors nav konfigurçts"
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ "Ja ar X konfigurâciju kaut kas nav kârtîbâ, izmantojiet đîs opcijas,\n"
-#~ "lai pareizi konfigurçtu X Window System."
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Grafiskâ karte vçl nav konfigurçta"
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "Ja dodat priekđroku darba uzsâkđanai grafiskâ reţîmâ, izvçlietis \"Jâ\",\n"
-#~ "citâdi izvçlieties \"Nç\"."
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Izđíirtspçjas vçl nav izvçlçtas"
#~ msgid ""
-#~ "Your system is going to reboot.\n"
#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
+#~ "try to change some parameters"
#~ msgstr ""
-#~ "Jűsu sistçma tiks pârstartçta.\n"
#~ "\n"
-#~ "Pçc pârstartçđanas jűsu jaunâ Mandrake Linux sistçma tiks ielâdçta\n"
-#~ "automâtiski. Ja vçlaties sâknçt kâdu citu jau uzstâdîtu operçtâjsistçmu,\n"
-#~ "lűdzu izlasiet papildus norâdîjumus."
+#~ "mçěiniet izmainît daţus parametrus"
-#~ msgid "Czech (Programmers)"
-#~ msgstr "Čehijas (programmçtâju)"
+#~ msgid "An error occurred:"
+#~ msgstr "Atklâta kďűda:"
-#~ msgid "Slovakian (Programmers)"
-#~ msgstr "Slovâkijas (programmçtâju)"
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Atliek %d sekundes"
-#~ msgid "Name of the profile to create:"
-#~ msgstr "Veidojamâ profila nosaukums:"
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Vai viss ir pareizi?"
-#~ msgid "Write /etc/fstab"
-#~ msgstr "Ierakstît /etc/fstab"
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Atklâta kďűda, mçěiniet izmainît daţus parametrus"
-#~ msgid "Format all"
-#~ msgstr "Formatçt visu"
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 serveris: %s"
-#~ msgid "After formatting all partitions,"
-#~ msgstr "Pçc visu partîciju formatçđanas"
+#~ msgid "Show all"
+#~ msgstr "Parâdît visu"
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "visi đâjâs partîcijâs esođie dati tiks pazaudçti"
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Gatavoju X-Window konfigurâciju"
-#~ msgid "Reload"
-#~ msgstr "Pârlâdçt"
+#~ msgid "What do you want to do?"
+#~ msgstr "Ko jűs vçlaties darît?"
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr "Vai vçlaties izveidot auto instalçđanas disketi linux replikâcijai?"
+#~ msgid "Change Monitor"
+#~ msgstr "Monitora maiňa"
-#~ msgid "ADSL configuration"
-#~ msgstr "ADSL konfigurâcija"
+#~ msgid "Change Graphics card"
+#~ msgstr "Grafiskâs kartes maiňa"
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ "Izmantojot attâlu CUPS serveri, đeit jums nav nepiecieđams\n"
-#~ "konfigurçt nevienu printeri. Printeri tiks atrasti automâtiski,\n"
-#~ "ja vien serveris nav pieslçgts citam tîklam; tâdâ gadîjumâ jums\n"
-#~ "ir jânorâda CUPS servera IP adrese un, iespçjams, porta numurs."
+#~ msgid "Change Server options"
+#~ msgstr "Servera opciju maiňa"
-#, fuzzy
-#~ msgid "Remote queue name missing!"
-#~ msgstr "Attâlâ rinda"
+#~ msgid "Change Resolution"
+#~ msgstr "Izđíirtspçjas maiňa"
-#, fuzzy
-#~ msgid "Command line"
-#~ msgstr "Domçna nosaukums"
+#~ msgid "Show information"
+#~ msgstr "Parâdît informâciju"
-#, fuzzy
-#~ msgid "Modify printer"
-#~ msgstr "Nav printera"
+#~ msgid "Test again"
+#~ msgstr "Mçěinât vçlreiz"
-#, fuzzy
-#~ msgid "Network Monitoring"
-#~ msgstr "Tîkla konfigurâcija"
+#~ msgid "Setting security level"
+#~ msgstr "Uzstâdu drođîbas lîmeni"
-#~ msgid "Profile "
-#~ msgstr "Profils "
+#~ msgid "Graphics card"
+#~ msgstr "Grafiskâ karte"
-#, fuzzy
-#~ msgid "Connection Time: "
-#~ msgstr "Savienojuma tips: "
-
-#, fuzzy
-#~ msgid "Connecting to Internet "
-#~ msgstr "Pieslçgties Internetam"
-
-#, fuzzy
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "Atslçgties no Interneta"
-
-#, fuzzy
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "Atslçgties no Interneta"
-
-#, fuzzy
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "Atslçgties no Interneta"
+#~ msgid "Select a graphics card"
+#~ msgstr "Izvçlieties grafisko karti"
-#, fuzzy
-#~ msgid "Connection complete."
-#~ msgstr "Savienojuma nosaukums"
-
-#, fuzzy
-#~ msgid "Default Runlevel"
-#~ msgstr "Noklusçts"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "Konfigurâcijas faila saturu neizdodas saprast."
-
-#~ msgid "Adapter"
-#~ msgstr "Adapteris"
-
-#, fuzzy
-#~ msgid "Disable network"
-#~ msgstr "Atslçgt"
-
-#, fuzzy
-#~ msgid "Enable network"
-#~ msgstr "Ieslçgt"
-
-#~ msgid ""
-#~ "You can now test your mouse. Use buttons and wheel to verify\n"
-#~ "if settings are good. If not, you can click on \"Cancel\" to choose "
-#~ "another\n"
-#~ "driver."
-#~ msgstr ""
-#~ "Tagad varat izmçěinât peli. Izmantojiet pogas un riteni, lai\n"
-#~ "pârliecinâtos, ka konfigurâcija ir pareiza. Ja nav, varat nospiest\n"
-#~ "\"Atcelt\" un izvçlçties citu draiveri."
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "DSL (vai ADSL) pieslçgums"
-
-#, fuzzy
-#~ msgid "Choose"
-#~ msgstr "Pele"
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "Brîdinâjums: đîs grafiskâs kartes izmçěinâđana var uzkârt datoru"
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr "Jűs varat tieđi norâdît URI, lai piekďűtu printerim ar CUPS."
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Parasts VGA, 640x480 pie 60 Hz"
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "Jâ, izdrukât ASCII izmçěinâjuma lapu"
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 pie 56 Hz"
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "Jâ, izdrukât PostScript izmçěinâjuma lapu"
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514 savietojams, 1024x768 pie 87 Hz ar joslâm (nav 800x600)"
-#~ msgid "Paper Size"
-#~ msgstr "Papîra izmçrs"
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 pie 87 Hz ar joslâm, 800x600 pie 56 Hz"
-#~ msgid "Eject page after job?"
-#~ msgstr "Vai izmest lapu pçc izdrukas?"
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Uzlabots Super VGA, 800x600 pie 60 Hz, 640x480 pie 72 Hz"
-#~ msgid "Uniprint driver options"
-#~ msgstr "Uniprint draivera opcijas"
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Ne-joslots SVGA, 1024x768 pie 60 Hz, 800x600 pie 72 Hz"
-#~ msgid "Color depth options"
-#~ msgstr "Krâsu dziďuma opcijas"
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "Augstas frekvences SVGA, 1024x768 pie 70 Hz"
-#~ msgid "Print text as PostScript?"
-#~ msgstr "Drukât tekstu kâ PostScript?"
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Multi-frekvenču, kas uztur 1280x1024 pie 60 Hz"
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "Vai labot teksta kâpňveida izdruku?"
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Multi-frekcenču, kas uztur 1280x1024 pie 74 Hz"
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Lappuđu skaits vienâ izdrukas lapâ"
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Multi-frekvenču, kas uztur 1280x1024 pie 76 Hz"
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "Labâ/Kreisâ mala punktos (1/72 collas daďâs)"
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Monitors, kas uztur 1600x1200 pie 70 Hz"
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "Augđçjâ/Apakđçjâ mala punktos (1/72 collas daďâs)"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "Papildus GhostScript opcijas"
-
-#~ msgid "Extra Text options"
-#~ msgstr "Papildus teksta opcijas"
-
-#~ msgid "Reverse page order"
-#~ msgstr "Ačgârna lappuđu secîba"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Izvçlieties attâla printera pieslçgumu"
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Monitors, kas uztur 1600x1200 pie 76 Hz"
#~ msgid ""
-#~ "Every printer need a name (for example lp).\n"
-#~ "Other parameters such as the description of the printer or its location\n"
-#~ "can be defined. What name should be used for this printer and\n"
-#~ "how is the printer connected?"
-#~ msgstr ""
-#~ "Katram printerim ir nepiecieđams nosaukums (piemçram, lp).\n"
-#~ "Var norâdît arî citus parametrus, piemçram, printera aprakstu vai tâ\n"
-#~ "atrađanâs vietu. Kâdu nosaukumu pieđíirt đim printerim, un kâdâ veidâ\n"
-#~ "printeris ir pieslçgts?"
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Kopçjais jűsu izvçlçto grupu izmçrs ir aptuveni %d MB.\n"
#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a\n"
-#~ "name (often lp) and a spool directory associated with it. What\n"
-#~ "name and directory should be used for this queue and how is the printer "
-#~ "connected?"
-#~ msgstr ""
-#~ "Katrai drukas rindai (uz kuru tiek adresçti drukas uzdevumi) ir "
-#~ "nepiecieđams\n"
-#~ "nosaukums (bieţi lp) un tai piesaistîts spolçđanas katalogs. Kâdu "
-#~ "nosaukumu\n"
-#~ "un katalogu izmantot đai rindai un kâ ir pieslçgts printeris?"
-
-#~ msgid "Name of queue"
-#~ msgstr "Rindas nosaukums"
-
-#~ msgid "Spool directory"
-#~ msgstr "Spolçđanas katalogs"
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ msgstr ""
-#~ "Lai palielinâtu sistçmas drođîbu, izvçlieties \"Izmantot shadow failu\"\n"
-#~ "un \"Izmantot MD5 paroles\"."
-
-#~ msgid ""
-#~ "If your network uses NIS, select \"Use NIS\". If you don't know, ask "
-#~ "your\n"
-#~ "network administrator."
-#~ msgstr ""
-#~ "Ja jűsu tîklâ lieto NIS, izvçlieties \"Izmantot NIS\". Ja jűs to nezinat\n"
-#~ "pajautâjiet savam tîkla administratoram."
-
-#~ msgid "yellow pages"
-#~ msgstr "dzeltenâs lapas"
-
-#, fuzzy
-#~ msgid "Light configuration"
-#~ msgstr "LAN konfigurâcija"
-
-#~ msgid "Provider dns 1"
-#~ msgstr "Pakalpojumu sniedzçja dns 1"
-
-#~ msgid "Provider dns 2"
-#~ msgstr "Pakalpojumu sniedzçja dns 2"
-
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr "Kâ jűs vçlaties pieslçgties Internetam?"
-
-#, fuzzy
-#~ msgid "Selected size %d%s"
-#~ msgstr "Izvçlieties failu"
-
-#, fuzzy
-#~ msgid "Opening your connection..."
-#~ msgstr "Izmçěinu pieslçgumu..."
-
-#, fuzzy
-#~ msgid "Configure..."
-#~ msgstr "Konfigurçju..."
-
-#~ msgid "This startup script try to load your modules for your usb mouse."
-#~ msgstr "Đis startçđanas skripts mçěina ielâdçt moduďus jűsu usb pelei."
-
-#~ msgid "Boot style configuration"
-#~ msgstr "Sâknçđanas stila konfigurçđana"
-
-#~ msgid ""
-#~ "Now that your Internet connection is configured,\n"
-#~ "your computer can be configured to share its Internet connection.\n"
-#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
-#~ "(LAN).\n"
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
#~ "\n"
-#~ "Would you like to setup the Internet Connection Sharing?\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
-#~ "Tagad, kad ir konfigurçts jűsu Interneta pieslçgums,\n"
-#~ "datoru var konfigurçt tâ, lai kopîgi izmantotu Interneta pieslçgumu.\n"
-#~ "Piezîme: jums ir nepiecieđams atseviđís tîkla adapteris, lai uzstâdîti "
-#~ "lokâlo datortîklu (LAN).\n"
+#~ "Ja jűs vçlaties instalçt mazâk nekâ đo izmçru,\n"
+#~ "procentuâli izvçlieties instalçjamo pakotňu daudzumu.\n"
#~ "\n"
-#~ "Vai vçlaties uzstâdît Interneta pieslçguma koplietođanu?\n"
-
-#~ msgid "Automatic dependencies"
-#~ msgstr "Automâtiskas atkarîbas"
-
-#~ msgid "Configure LILO/GRUB"
-#~ msgstr "LILO/GRUB konfigurçđana"
-
-#~ msgid "Create a boot floppy"
-#~ msgstr "Sâknçđanas disketes radîđana"
-
-#~ msgid "Choice"
-#~ msgstr "Izvçle"
-
-#~ msgid "horizontal nice looking aurora"
-#~ msgstr "horizontâla jauka izskata aurora"
-
-#~ msgid "vertical traditional aurora"
-#~ msgstr "vertikâla tradicionâla aurora"
-
-#~ msgid "gMonitor"
-#~ msgstr "gMonitors"
+#~ "Zems procentu lîmenis instalçs tikai vissvarîgâkâs pakotnes;\n"
+#~ "100% lîmenî tiks instalçtas visas izvçlçtâs pakotnes."
#~ msgid ""
-#~ "You can now select some miscellaneous options for your system.\n"
-#~ "\n"
-#~ "* Use hard drive optimizations: this option can improve hard disk "
-#~ "performance but is only for advanced users. Some buggy\n"
-#~ " chipsets can ruin your data, so beware. Note that the kernel has a "
-#~ "builtin blacklist of drives and chipsets, but if\n"
-#~ " you want to avoid bad surprises, leave this option unset.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Choose security level: you can choose a security level for your system. "
-#~ "Please refer to the manual for complete\n"
-#~ " information. Basically, if you don't know what to choose, keep the "
-#~ "default option.\n"
-#~ "\n"
+#~ "You have space on your disk for only %d%% of these packages.\n"
#~ "\n"
-#~ "* Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the BIOS about the amount of RAM present in\n"
-#~ " your computer. As consequence, Linux may fail to detect your amount of "
-#~ "RAM correctly. If this is the case, you can\n"
-#~ " specify the correct amount or RAM here. Please note that a difference "
-#~ "of 2 or 4 MB between detected memory and memory\n"
-#~ " present in your system is normal.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Removable media automounting: if you would prefer not to manually mount "
-#~ "removable media (CD-Rom, floppy, Zip, etc.) by\n"
-#~ " typing \"mount\" and \"umount\", select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories stored in \"/tmp\" when you boot your system,\n"
-#~ " select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Enable num lock at startup: if you want NumLock key enabled after "
-#~ "booting, select this option. Please note that you\n"
-#~ " should not enable this option on laptops and that NumLock may or may "
-#~ "not work under X."
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
#~ msgstr ""
-#~ "Tagad varat izvçlçties daţâdas sistçmas opcijas.\n"
-#~ "\n"
-#~ "* Izmantot cietâ diska optimizâcijas: đî opcija var uzlabot cietâ diska "
-#~ "veiktspçju, taču tâ ir paredzçta tikai pieredzçjuđiem lietotâjiem:\n"
-#~ " daţas kďűdainas mikroshçmas var iznîcinât jűsu datus, tâpçc jűs esat "
-#~ "brîdinâts. Atcerieties, ka kodolâ ir iebűvçts disku un mikroshçmu\n"
-#~ " melnais saraksts, tomçr, ja vçlaties iztikt bez nepatîkamiem\n"
-#~ " pârsteigumiem, neizvçlieties đo opciju.\n"
-#~ "\n"
+#~ "Jums uz diska ir vieta tikai %d%% no đîm pakotnçm.\n"
#~ "\n"
-#~ "* Izvçlieties drođîbas lîmeni: jűs varat izvçlçties sistçmas drođîbas\n"
-#~ " lîmeni. Pilnîgu informâciju meklçjiet rokasgrâmatâ. Parasti, ja\n"
-#~ " nezinat, atstâjiet noklusçto vçrtîbu.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Precîzs RAM apjoms, ja nepiecieđams: diemţçl műsdienu datoru\n"
-#~ " pasaulç nav vienotas metodes, kâ pajautât BIOSam par jűsu datorâ\n"
-#~ " uzstâdîtâs atmiňas apjomu. Rezultâtâ Linux ne vienmçr pareizi\n"
-#~ " nosaka jűsu datora RAM apjomu. Ja tâ notiek, jűs đeit varat\n"
-#~ " norâdît pareizu RAM apjomu. Ňemiet vçrâ, ka 2 vai 4 MB atđíirîba\n"
-#~ " ir normâla.\n"
-#~ "\n"
-#~ "* Nomainâmu datu nesçju automontçđana: ja nevçlaties katru reizi montçt\n"
-#~ " nomainâmus datu nesçjus (CD-ROM, disketi, Zip u.c.), drukâjot \"mount"
-#~ "\" un \"umount\", izvçlieties đo opciju.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Iztîrît \"/tmp\" katras sâknçđanas laikâ: ja jűs vçlaties sistçmas "
-#~ "sâknçđanas laikâ izdzçst visus failus un\n"
-#~ " katalogus, kas atrodas \"/tmp\", izvçlieties đo opciju.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Ieslçgt NumLock palaiđanas laikâ: ja vçlaties, lai pçc sâknçđanas "
-#~ "bűtu ieslçgts NumLock, izvçlieties đo\n"
-#~ " opciju. Ňemiet vçrâ, ka to nevajadzçtu izvçlçties klçpjdatoriem, un "
-#~ "ka NumLock var strâdât vai nestrâdât X vidç."
+#~ "Ja vçlaties instalçt mazâk, procentuâli izvçlieties instalçjamo pakotňu\n"
+#~ "daudzumu. Zems procentu lîmenis instalçs tikai vissvarîgâkâs pakotnes;\n"
+#~ "%d%% lîmenis instalçs tik daudz pakotňu, cik ir iespçjams."
-#~ msgid "Sorry, the mail configuration is not yet implemented. Be patient."
-#~ msgstr ""
-#~ "Atvainojiet, pasta konfigurçđana vçl nav realizçta. Esiet pacietîgi."
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Nâkamajâ solî jűs varçsit izvçlçties daudz precîzâk."
-#
-#~ msgid "Internet/Network access"
-#~ msgstr "Internets/Pieeja tîklam"
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Instalçjamo pakotňu procentuâlais daudzums"
-#, fuzzy
-#~ msgid "Miscellaneous"
-#~ msgstr "Daţâdi jautâjumi"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Izvçlieties drođîbas lîmeni?"
-#~ msgid "Miscellaneous questions"
-#~ msgstr "Daţâdi jautâjumi"
+#~ msgid "hide expert mode"
+#~ msgstr "noslçpt eksperta reţîmu"
-#~ msgid "Can't use supermount in high security level"
-#~ msgstr "Nevar izmantot supermount augstâ drođîbas lîmenî"
+#~ msgid "show expert mode"
+#~ msgstr "paradît eksperta reţîmu"
#~ msgid ""
-#~ "beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
-#~ "If you want to be root, you have to login as a user and then use \"su\".\n"
-#~ "More generally, do not expect to use your machine for anything but as a "
-#~ "server.\n"
-#~ "You have been warned."
+#~ "If '%s' is a removable peripheral,\n"
+#~ " verify that a media is inserted."
#~ msgstr ""
-#~ "ňemiet vçrâ: PIE ĐÎ DROĐÎBAS LÎMEŇA ROOT SESIJAS ATVÇRĐANA NO KONSOLES\n"
-#~ "NAV ATĎAUTA! Ja vçlaties bűt root, jums vispirms ir jâatver parasta\n"
-#~ "lietotâja sesija un tad jâizmanto \"su\". Vispârîgi runâjot, neceriet\n"
-#~ "izmantot savu datoru kam citam kâ vien servera uzdevumiem.\n"
-#~ "Jűs esat brîdinâts."
+#~ "Ja '%s' ir nomainâma ârçja iekârta,\n"
+#~ " pârliecinieties, ka ir ielikts datu nesçjs."
#~ msgid ""
-#~ "Be carefull, having numlock enabled causes a lot of keystrokes to\n"
-#~ "give digits instead of normal letters (eg: pressing `p' gives `6')"
+#~ "WARNING! This will format '%s'.\n"
+#~ "All data will be erased on the peripheral '%s'.\n"
+#~ "If you want to continue, press OK. "
#~ msgstr ""
-#~ "Esiet uzmanîgs, numlock ieslçgđana liek daudziem taustiňiem parasto\n"
-#~ "burtu vietâ râdît ciparus (piemçram, `p' nospieđana dod `6')"
-
-#~ msgid "not connected"
-#~ msgstr "nav pieslçgts"
-
-#, fuzzy
-#~ msgid "Actions"
-#~ msgstr "Atrađanâs vieta"
-
-#~ msgid "Scientific applications"
-#~ msgstr "Zinâtniskâs programmas"
+#~ "BRÎDINÂJUMS! '%s' tiks formatçts.\n"
+#~ "Visi ârçjâs iekârtas '%s' dati tiks izdzçsti.\n"
+#~ "Ja vçlaties turpinât, nospiediet OK. "
-#~ msgid "File/Print/Samba"
-#~ msgstr "Serveris, Failu/Drukas/Samba"
+#~ msgid "unknown"
+#~ msgstr "nezinâms"
-#~ msgid "DNS/DHCP "
-#~ msgstr "Serveris, DNS/DHCP"
+#~ msgid "Select a module or write his name:"
+#~ msgstr "Izvçlieties moduli vai ierakstiet tâ nosaukumu:"
-#~ msgid "First DNS Server"
-#~ msgstr "Pirmais DNS serveris"
+#~ msgid "Category"
+#~ msgstr "Kategorija"
-#~ msgid "Second DNS Server"
-#~ msgstr "Otrais DNS serveris"
+#~ msgid "preload module"
+#~ msgstr "pirmsielâdçt moduli"
-#~ msgid "using module"
-#~ msgstr "izmantojot moduli"
+#~ msgid "click on a category"
+#~ msgstr "uzklikđíiniet uz kategorijas"
-#
-#~ msgid "Development, Database"
-#~ msgstr "Izstrâde, Datubâze"
+#~ msgid "Remove"
+#~ msgstr "Noňemt"
-#~ msgid "Development, Integrated Environment"
-#~ msgstr "Izstrâde, Integrçtâ vide"
+#~ msgid "Tool for boot disk creation"
+#~ msgstr "Rîks sâknçđanas diska veidođanai"
-#
-#~ msgid "Development, Standard tools"
-#~ msgstr "Izstrâde, Standartrîki"
+#~ msgid "Show expert mode"
+#~ msgstr "Parâdît eksperta reţîmu"
-#~ msgid "Which bootloader(s) do you want to use?"
-#~ msgstr "Kuru(s) sâknçtâju(s) vçlaties izmantot?"
+#~ msgid "modules"
+#~ msgstr "moduďi"
-#~ msgid "loopback"
-#~ msgstr "loopback"
+#~ msgid "Boot disk maker. Still in early stage.\n"
+#~ msgstr "Sâknçđanas disketes veidotâjs. Pagaidâm izstrâdes sâkumstadijâ.\n"
diff --git a/perl-install/share/po/mt.po b/perl-install/share/po/mt.po
index cdf4678f3..18b84c24d 100644
--- a/perl-install/share/po/mt.po
+++ b/perl-install/share/po/mt.po
@@ -5,33 +5,64 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-10 18:12CET\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2002-07-27 07:42CET\n"
"Last-Translator: Ramon Casha <ramon.casha@linux.org.mt>\n"
"Language-Team: Maltese <mt@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 0.9.5\n"
+"X-Generator: KBabel 0.9.6\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Ikkonfigura l-heads kollha independentement"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "UĹźa estensjoni Xinerama"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Ikkonfigura l-kard \"%s\" (%s) biss"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB jew iĹźjed"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Agħşel server X"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X server"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Konfigurazzjoni multi-head"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -39,41 +70,44 @@ msgstr ""
"Is-sistema tiegħek tissaporti konfigurazzjoni \"multi-head\".\n"
"Xi trid tagħmel?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Kard grafika"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Agħşel id-daqs tal-memorja tal-kard tal-grafika"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Agħşel kard grafika"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "Konfigurazzjoni XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Agħşel server X"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Liema konfigurazzjoni ta' XFree trid li jkollok?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X server"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Ikkonfigura l-heads kollha independentement"
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Agħşel driver"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "UĹźa estensjoni Xinerama"
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "Driver X"
+#: ../../Xconfig/card.pm_.c:379
+#, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Ikkonfigura l-kard \"%s\"%s biss"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Liema konfigurazzjoni ta' XFree trid li jkollok?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s b'aċċelerazzjoni 3D"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -84,32 +118,17 @@ msgstr ""
"Il-kard tiegħek hija magħrufa minn XFree %s, li jista' jkollu sapport aħjar "
"2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Il-kard tiegħek tista' tagħmel użu minn aċċelerazzjoni 3D b' XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s b'aċċelerazzjoni 3D"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Il-kard tiegħek tista' tagħmel użu minn aċċelerazzjoni 3D b' XFree %s.\n"
-"DIN HIJA FAĊILITÀ SPERIMENTALI U TISTA' TWAĦĦAL IL-KOMPJUTER."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s b'aċċelerazzjoni 3D ESPERIMENTALI"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -121,31 +140,57 @@ msgstr ""
"Il-card tiegħek hija magħrufa minn XFree %s, li jista' jkollu sapport aħjar "
"2D."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Il-kard tiegħek tista' tagħmel użu minn aċċelerazzjoni 3D b' XFree %s.\n"
+"DIN HIJA FAĊILITÀ SPERIMENTALI U TISTA' TWAĦĦAL IL-KOMPJUTER."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (driver tal-iskrin għall-installazzjoni)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Konfigurazzjoni XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Agħşel id-daqs tal-memorja tal-kard tal-grafika"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Ikkonfigura għaşliet tas-server"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Trid işşomm il-bidliet?\n"
+"Il-konfigurazzjoni kurrenti hija:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Agħşel skrin"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Skrin"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Personalizzat"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Ä eneriku"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+msgid "Vendor"
+msgstr "Manifattur"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -169,512 +214,327 @@ msgstr ""
"kapaċi juri l-iskrin tiegħek, għax tista' tagħmillu l-ħsara.\n"
"Jekk għandek xi dubju, agħşel valur şgħir."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Frekwenza orizzontali"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Frekwenza vertikali"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Skrin mhux issettjat"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Kard grafika għad m'hix issettjata"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Reşoluzzjoni għadha ma ngħaşlitx"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Trid tittestja din il-konfigurazzjoni?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Twissija: it-test ta' din il-kard grafika jista' jwaħħal il-kompjuter"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Test tal-konfigurazzjoni"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 kuluri (8 bit)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"ipprova ibdel xi parametri"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 elf kulur (15 bit)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Instabet problema:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 elf kulur (16 bit)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "ÄŚiereÄĄ f' %d sekondi"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 miljun kulur (24 bit)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Dan is-seting huwa tajjeb?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 biljun kulur (32 bit)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Instabet problema. Ipprova ibdel xi parametri"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "ReĹźoluzzjonijiet"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "ReĹźoluzzjoni"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Agħşel reşoluzzjoni u finezza ta' kuluri"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Kard grafika: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Server XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "IĹźjed"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Ikkanċella"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "ModalitĂ  esperti"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Uri kollox"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Trid tittestja din il-konfigurazzjoni?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "ReĹźoluzzjonijiet"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Test tal-konfigurazzjoni"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Tqassim tat-tastiera: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Tip ta' maws: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Apparat maws: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Skrin: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Frek.Orizzontali Skrin: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Frek. Vertikali Skrin: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Kard grafika: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Identifikazzjoni tal-kard grafika: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Memorja grafika: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Numru ta' kuluri: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "ReĹźoluzzjoni: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Server XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Driver XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Qed nipprepara l-konfigurazzjoni X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "X'tixtieq tagħmel?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Nibdel l-iskrin"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Nibdel il-kard grafika"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Nibdel l-għaşliet tas-server"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Nibdel ir-reĹźoluzzjoni"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Nara l-informazzjoni"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "NerÄĄa' nittestja"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Noħroĥ"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Trid işşomm il-bidliet?\n"
-"Il-konfigurazzjoni kurrenti hija:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X fil-bidu"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Nista' nissettja l-kompjuter biex awtomatikament jidħol f' X malli jitla'.\n"
"Trid ittella' X Windows meta tixgħel?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Jekk jogħĥbok oħroĥ u erĥa' idħol fuq %s biex tara l-bidliet."
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Jekk jogħĥbok oħroĥ mid-desktop u agħfas Ctrl-Alt-Backspace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 kuluri (8 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 elf kulur (15 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 elf kulur (16 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 miljun kulur (24 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 biljun kulur (32 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB jew iĹźjed"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "VGA standard, 640x480 b' 60Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 b' 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514/kompatibbli, 1024x768 b' 87 Hz interlaced (ma jieħux 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 b' 87 Hz interlaced, 800x600 b' 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Super VGA estiĹź, 800x600 b' 60 Hz, 640x480 b' 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "SVGA mhux interlaced, 1024x768 b' 60 Hz, 800x600 b' 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "SVGA frekwenza għolja, 1024x768 b' 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frekwenza li jiflaħ 1280x1024 b' 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frekwenza li jiflaħ 1280x1024 b' 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frekwenza li jiflaħ 1280x1024 b' 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Skrin li jiflaħ 1600x1200 b' 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Skrin li jiflaħ 1600x1200 b' 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "L-ewwel settur tal-partizzjoni \"boot\""
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "L-ewwel settur tal-ħard disk (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "Installazzjoni SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Fejn tixtieq tinstalla l-\"bootloader\"?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "Installazzjoni LILO/grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO b'menu testwali"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO b'menu grafiku"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Tella' minn DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Għażliet prinċipali tal-bootloader"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Liema bootloader tuĹźa"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Installazzjoni tal-bootloader"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Diska/apparat \"boot\""
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ma jaħdimx ma' kompjuters antiki)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "ŝgħir"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "compact"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Konfigurazzjoni video"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Stennija qabel ittella' l-għażla impliċita"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Password"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Password (erÄĄa')"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Irrestrinĥi l-għaşliet tal-linja tal-kmand"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "restrict"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Clean /tmp kull meta tixgħel"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Daqs eşatt ta' memorja jekk meħtieĥ (sibt %d RAM)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Ippermetti profili differenti"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Agħti d-daqs tar-RAM f'MB"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"L-għaşla \"irrestrinĥi l-għaşliet tal-linja tal-kmand\" m'għandha ebda "
"effett minngħajr password"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "ErÄĄa' pprova"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Il-passwords ma jaqblux"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "MessaÄĄÄĄ tal-bidu"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Stennija Open Firmware"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Skadenza tal-ħin għall-kernel boot"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Ippermetti boot mis-CD?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Ippermetti Boot OF?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "OS Impliċitu?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -682,84 +542,89 @@ msgid ""
"\n"
"On which drive are you booting?"
msgstr ""
+"Int għaşilt li tinstalla l-bootloader fuq partizzjoni. \n"
+"Dan jimplika li diĥà għandek bootloader fuq il-ħard disk mnejn tibbutja (eş: "
+"System Commander).\n"
+"\n"
+"Minn fuq liema drive tibbutja?"
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Hawn huma l-elementi differenti>\n"
"Tista' şşid işjed jew tibdel dawk li hemm."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Ĺťid"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Lest"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Biddel"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Liema tip ta' sistema operattiva trid işşid?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "OS ieħor (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "OS ieħor (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "OS ieħor (Windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Image"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "ŝid fl-aħħar"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Ikteb-aqra"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabella"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Mhux sikur"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Isem"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Impliċitu"
@@ -791,53 +656,77 @@ msgstr "Trid tispeċifika partizzjoni \"root\""
msgid "This label is already used"
msgstr "Dan l-isem diÄĄĂ  qed jintuĹźa"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Sibt %s interfaċċji %s"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Għandek işjed?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Il-kompjuter għandu interfaċċji %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Le"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Iva"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Ara info. dwar ħardwer"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Qed ninstalla driver għal %s kard %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(modulu %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+"Issa trid tipprovdi l-għaşliet lill-modulu %s.\n"
+"Innota li l-indirizzi jridu jiddaħħlu bil-prefiss 0x, bħal \"0x123\"."
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Tista' tipprovdi l-għaşliet lill-modulu %s.\n"
+"L-għaşliet għandhom il-format \"isem=valur isem=valur ...\".\n"
+"Per eĹźempju, \"io=0x300 irq=7\"."
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Għaşliet tal-modulu:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Liema driver %s tridni nipprova?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -854,37 +743,15 @@ msgstr ""
"it-\n"
"tfittix iĥiegħel lill-kompjuter jeħel, imma dan m'għandux jagħmel ħsara."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Fittex"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Speċifika informazzjoni"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Tista' tipprovdi l-għaşliet lill-modulu %s.\n"
-"L-għaşliet għandhom il-format \"isem=valur isem=valur ...\".\n"
-"Per eĹźempju, \"io=0x300 irq=7\"."
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Għaşliet tal-modulu:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -893,50 +760,54 @@ msgstr ""
"Il-modulu %s ma rnexxielux jitla'.\n"
"Trid terĥa' tipprova b'parametri oħra?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "aċċess għall-programmi X"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "aċċess għall-għodda rpm"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "ippermetti \"su\""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "aċċess għall-fajls amministrattivi"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(%s diÄĄĂ  miĹźjud)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Dan il-password sempliċi wisq"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Jekk jogħĥbok agħti isem ta' user"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"L-isem tal-user jista' jkun fih biss ittri şgħar, numri, \"-\" u \"_\"."
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+msgid "The user name is too long"
+msgstr "Dan l-isem ta' user huwa twil wisq"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Dan l-isem ta' user diÄĄĂ  jeĹźisti"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Ĺťid user"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -945,32 +816,32 @@ msgstr ""
"Daħħal dettalji ta' user\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Aċċetta user"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Isem veru"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Isem tal-user"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Stampa"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Awto-login"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -979,87 +850,73 @@ msgstr ""
"wieħed.\n"
"Trid tissettja din il-faċilità?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Agħżel il-user impliċitu:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Agħşel liema \"window manager\" trid tħaddem:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Agħşel liema lingwa trid tuşa."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr "Tista' tagħşel lingwi oħra li jkun u disponibbli wara li tinstalla"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Kollha"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Ippermetti l-users kollha"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Personalizzat"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "Ebda offerti (sharing)"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Irid jiÄĄi nstallat il-pakkett %s. Tridni ninstallah?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Tista' toffri direttorji bl-NFS jew Samba. Liema trid?"
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Pakkett meħtieĥ %s huwa nieqes"
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
+"Trid tippermetti lill-users li joffru xi direttorji fid-direttorju personali "
+"tagħhom għal fuq in-network?\n"
+"Jekk tippermetti dan, il-users ikunu jistgħu jagħşlu \"Offri\" jew \"Share\" "
+"ÄĄo konqueror jew nautilus.\n"
+"\n"
+"\"Personalizzat\" jippermetti setings għal kull user.\n"
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Ikkanċella"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr "ÄŚaddem userdrake"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -1068,31 +925,31 @@ msgstr ""
"grupp \"fileshare\". Tista' tuşa userdrake biex işşid\n"
"users ma' dan il-grupp."
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Bieb miftuħ beraħ!"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Ftit li xejn"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Standard"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Tajjeb"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
msgstr "Tajjeb ħafna"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoiku"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1103,7 +960,7 @@ msgstr ""
"kompjuter imqabbad ma' oħrajn permezz ta' network jew ma' l-internet. Ma "
"hemm ebda password."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1111,7 +968,7 @@ msgstr ""
"Il-passwords issa huma mixgħula, imma l-uşu fuq l-internet jew network xorta "
"m'hux rakkomandat."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1119,7 +976,7 @@ msgstr ""
"Dan huwa s-seting rakkomandat jekk se tuĹźa dan il-kompjuter fuq l-internet "
"bħala klijent."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1127,13 +984,14 @@ msgstr ""
"Diġà hemm xi restrizzjonijiet, u iżjed testijiet awtomatiċi jitħaddmu kuljum "
"bil-lejl."
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"B'dan il-livell ta' sigurtà jsir possibbli li tuşa dan il-kompjuter bħala "
"server.\n"
@@ -1142,36 +1000,36 @@ msgstr ""
"minn ħafna kompjuters oħra. Jekk int se tuşa l-kompjuter bħala klijent biss, "
"jew biex taċċessa l-internet, jaqbillek livell iżjed baxx."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Ibbaşat fuq il-livell ta' qabel, imma issa s-sistema hija magħluqa għal "
"kollox.\n"
"Is-setinga tas-sigurtà qegħdin fil-massimu."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Agħşel livell ta' sigurtà"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Livell ta' sigurtĂ "
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Uşa libsafe għas-servers"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Din hija librerija li tipproteÄĄi kontra attakki \"buffer overflow\" u "
"\"fomat string\"."
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr "Amministratur tas-sigurtĂ  (login jew imejl)"
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1188,53 +1046,53 @@ 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_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Merhba ghal GRUB - ghazla ta' sistema operattiva"
#. -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_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Uza l-buttuni %c u %c biex taghzel liema element huwa mmarkat."
#. -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_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr ""
"Aghfas Enter biex tibda' s-sistema operattiva mmarkata, 'e' biex tbiddel"
#. -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_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "il-kmand qabel tibda', jew 'c' ghal linja ta' kmand."
#. -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_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "L-ghazla mmarkata se tinbeda' awtomatikament f' %d sekondi"
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "M'hemmx bişşejjed spazju fuq /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Ma tistax tinstalla l-bootloader fil-partizzjoni %s\n"
@@ -1247,15 +1105,19 @@ msgstr "għad m'hemmx għajnuna implementata.\n"
msgid "Boot Style Configuration"
msgstr "Konfigurazzjoni ta' l-istil ta' boot"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Fajl"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Fajl/O_ħroĥ"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1290,14 +1152,14 @@ msgstr "ModalitĂ  yaboot"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Bħalissa qed tuşa %s bħala BootManager.\n"
"Klikkja \"ikkonfigura\"\" biex tħaddem il-konfiguratur."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Ikkonfigura"
@@ -1307,7 +1169,7 @@ msgid "System mode"
msgstr "ModalitĂ  sistema"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "ÄŚaddem X-Windows malli titla'"
#: ../../bootlook.pm_.c:148
@@ -1318,14 +1180,16 @@ msgstr "Le, ma rridx awto-login"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Iva, rrid awto-login b'dan il-user u desktop"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "OK"
@@ -1373,7 +1237,7 @@ msgstr "Ma nistax nieħu ritratti tal-iskrin qabel toħloq il-partizzjonijiet"
msgid "Screenshots will be available after install in %s"
msgstr "Ir-ritratti jkunu disponibbli wara l-installazzjoni f' %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Franza"
@@ -1381,7 +1245,7 @@ msgstr "Franza"
msgid "Costa Rica"
msgstr "Kosta Rika"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "BelÄĄju"
@@ -1405,11 +1269,12 @@ msgstr "NorveÄĄja"
msgid "Sweden"
msgstr "Svezja"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Netherlands"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "Italja"
@@ -1417,7 +1282,7 @@ msgstr "Italja"
msgid "Austria"
msgstr "Awstrija"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "Stati Uniti"
@@ -1425,8 +1290,8 @@ msgstr "Stati Uniti"
msgid "Please make a backup of your data first"
msgstr "ÄŚu \"backup\" tal-informazzjoni qabel tkompli"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Aqra sew!"
@@ -1439,11 +1304,12 @@ msgstr ""
"Jekk bi ħsiebek tuża aboot, kun ċert li tħalli spazju fil-bidu tad-diska "
"(2048 setturi bişşejjed)"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Problema"
@@ -1451,11 +1317,11 @@ msgstr "Problema"
msgid "Wizard"
msgstr "Saħħar"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Agħşel azzjoni"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1467,77 +1333,77 @@ msgstr ""
"Nissuġġerixxi li l-ewwel iċċekken dik il-partizzjoni\n"
"(klikkja fuqha, u agħfas \"ibdel daqs\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Jekk jogħĥbok klikkja fuq partizzjoni"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Dettalji"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "Journalised FS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Vojt"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Oħrajn"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Tipi ta' filesystem"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Oħloq"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tip"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "UĹźa \"%s\" minnflok"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "ÄŚassar"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "L-ewwel agħfas \"şmonta\""
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1545,67 +1411,72 @@ msgstr ""
"Jekk tibdel it-tip ta' partizzjoni %s, l-informazzjoni kollha li hemm fuqha "
"tintilef"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Agħşel partizzjoni"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Agħşel partizzjoni oħra"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Oħroĥ"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Idħol f'modalità għal esperti"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Lura f'modalitĂ  normali"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Annulla"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Trid tkompli xorta?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Oħroĥ minngħajr ma tikteb"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Trid toħroĥ minngħajr ma tikteb it-tabella tal-partizzjonijiet?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "Trid tikteb il-modifiki għal /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Awto-allokazzjoni"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Neħħi kollox"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "IĹźjed"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "Informazzjoni dwar il-ħard disk"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Il-partizzjonijiet primarji kollha mimlijin"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Ma nistax inĹźid iĹźjed partizzjonijiet"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1613,31 +1484,31 @@ msgstr ""
"Biex işşid işjed partizzjonijiet, trid tħassar waħda milli hemm biex tkun "
"tista' toħloq partizzjoni estişa"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "Ikteb it-tabella ta' partizzjonijet"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "ErÄĄa tella' tabella ta' partizzjonijiet"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Salva tabella ta' partizzjonijiet"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "ErÄĄa' aqra t-tabella ta' partizzjonijiet"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "Awto-muntar ta' diski li jinħarĥu"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Agħşel fajl"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1645,11 +1516,11 @@ msgstr ""
"Il-tabella tal-partizzjonijiet għall-backup m'għandiex l-istess daqs.\n"
"Tkompli xorta?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Twissija"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1657,122 +1528,129 @@ msgstr ""
"Daħħal floppy fid-drive\n"
"Kull ma hemm fuq il-floppy se jitħassar"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Qed nipprova nsalva t-tabella ta' partizzjonijiet"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Informazzjoni dettaljata"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Post għall-immontar"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Għaşliet"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Ibdel daqs"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Mexxi"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formattja"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Immonta"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Ĺťid ma' RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Ĺťid ma' LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Ĺťmonta"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Neħħi mir-RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Neħħi mill-LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Biddel RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Uşa bħala loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Oħloq partizzjoni ĥdida"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Settur tal-bidu: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Daqs f' MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Tip ta' filesystem: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Punt ta' mmuntar: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Preferenzi: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+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/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "Trid tneħħi l-fajl ta' loopback?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Ibdel tip ta' partizzjoni"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Liema filesystem trid?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Qed nibdel minn ext2 għal ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Fejn trid timmonta l-fajl ta' loopback %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Fejn trid timmonta d-diska %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1781,129 +1659,134 @@ msgstr ""
"għal loopback.\n"
"L-ewwel neħħiha minn loopback"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Qed nikkalkula l-limiti tal-filesystem FAT"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Qed nibdel id-daqs"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Din il-partizzjoni ma tistax tinbidel id-daqs tagħha"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr ""
"L-informazzjoni kollha fuq din il-partizzjoni għandha tiĥi kkupjata fuq "
"backup"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Wara li tibdel id-daqs tal-partizzjoni %s, l-informazzjoni kollha fuqha "
"tintilef"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Agħşel id-daqs il-ĥdid"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Daqs ÄĄdid f'MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Fuq liema diska trid tmexxiha?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Settur"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Fuq liema settur trid tmexxiha?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Qed titmexxa"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Qed jitmexxa l-partizzjoni..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Agħşel RAID eşistenti biex işşid miegħu"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "ÄĄdid"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Agħşel LVM eşistenti biex işşid miegħu"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "Isem tal-LVM?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Din il-partizzjoni ma tistax tintuşa għal loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Isem ta' fajl għal loopback: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Agħti isem ta' fajl"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Fajl diĥà qed jintuşa minn loopback ieħor, agħşel ieħor"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Fajl diÄĄĂ  jeĹźisti. TuĹźa lilu?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Għaşliet għall-immuntar"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Varji"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "apparat"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "livell"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "daqs ta' \"chunk\""
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Oqgħod attent: dan il-proċess huwa perikoluż."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "X'tip ta' partizzjoni?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Il-pakkett %s huwa meħtieĥ. Tridni ninstallah?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1915,7 +1798,7 @@ msgstr ""
"Jekk tuşa l-LILO din ma taħdimx, jekk ma tuşax il-LILO ma jkollokx bşonn "
"partizzjoni /boot."
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1928,7 +1811,7 @@ msgstr ""
"LILO, \n"
"kun ċert li toħloq partizzjoni /boot, li tkun qabel ċilindru 1024."
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1938,130 +1821,130 @@ msgstr ""
"Ebda bootloader m'hu kapaċi jħaddem dan mingħajr partizzjoni /boot.\n"
"Għalhekk aċċerta li jkollok partizzjoni /boot mhux fuq ir-RAID."
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "It-tabella tal-partizzjonijiet tad-diska %s se tinkiteb fuq id-diska."
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Trid tirributja sabiex il-bidliet ikollhom effett."
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Wara li tifformattja l-partizzjoni %s, l-informazzjoni kollha fuqha tintilef."
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Qed nifformattja"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Qed nifformattja fajl ta' loopback %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Qed nifformattja partizzjoni %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Aħbi fajls"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Mexxi fajls għal partizzjoni ĥdida"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"Id-direttorju %s diÄĄĂ  fih xi fajls\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "Qed jitmexxew il-fajls għal partizzjoni ĥdida"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Qed nikkopja %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Qed inneħħi %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "partizzjoni %s issa magħrufa bħala %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Apparat: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Ittra tad-diska fid-DOS: %s (probabbli)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Tip: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Isem: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Bidu: settur %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Daqs: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s setturi"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Ċilindri %d sa %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Formattjat\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Mhux formattjat\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Immuntat\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2070,7 +1953,7 @@ msgstr ""
"Fajl/s ta' loopback:\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2078,27 +1961,27 @@ msgstr ""
"Partizzjoni li tibda' impliċitament\n"
" (għad-DOS/Windows, mhux għal-lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Livell %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Daqs ta' \"chunk\" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "Diski RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Isem ta' fajl loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2110,7 +1993,7 @@ msgstr ""
"hija partizzjoni ta' Driver,\n"
"jaqbillek tħalliha kif inhi.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2122,64 +2005,64 @@ msgstr ""
"\"bootstrap\" qegħda biex\n"
"tagħşel os meta tixgħel.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Daqs: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Ġeometrija: %s ċilindri, %s heads, %s setturi\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "Diski LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tip ta' tabella tal-partizzjonijiet: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
-msgid "on bus %d id %d\n"
-msgstr "fuq bus %d id %d\n"
+msgid "on channel %d id %d\n"
+msgstr "fuq kanal %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Għaşliet: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "Ċavetta taċ-ċifrazzjoni tal-filesystem (password)"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "Agħżel ċavetta għaċ-ċifrazzjoni tal-filesystem"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Din iċ-ċavetta taċ-ċifrazzjoni huwa sempliċi wisq (irid ikun twil tal-inqas %"
"d ittri)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "Il-muftieħ taċ-ċifrar ma jaqbilx"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "Ċavetta taċ-ċifrazzjoni"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "Ċavetta taċ-ċifrazzjoni (darb' oħra)"
@@ -2188,35 +2071,62 @@ msgid "Change type"
msgstr "Ibdel tip"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Jekk jogħĥbok klikkja fuq mezz"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr "Ma nistax nilloggja bil-user \"%s\" (password ħaşin?)"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+msgid "Domain Authentication Required"
+msgstr "Awtentikazzjoni tad-dominju meħtieĥ"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Another one"
+msgstr "Ieħor"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Which username"
+msgstr "Liema user"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+"Jekk jogħġbok daħħal il-user, password u dominju biex taċċessa dan il-"
+"kompjuter"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+msgid "Username"
+msgstr "User"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+msgid "Domain"
+msgstr "Dominju"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "Fittex servers"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formattjar ta' %s falla"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ma nafx kif nifformattja %s b'tip %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
-msgstr ""
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck falla b'kodiċi %d jew sinjal %d"
+msgstr "immuntar ta' partizzjoni %s fid-direttorju %s falla"
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "problema fl-iĹźmuntar ta' %s: %s"
@@ -2233,67 +2143,310 @@ msgstr "b' /usr"
msgid "server"
msgstr "server"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Ma tistax tuşa JFS għal partizzjonijiet işgħar minn 16MB"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Ma tistax tuşa ReiserFS għal partizzjonijiet işgħar minn 32MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Punti ta' mmuntar iridu jibdew b' /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "DiÄĄĂ  hemm partizzjoni b'punt ta' mmuntar %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Ma tistax tuşa volum loĥiku LVM għall-punt ta' mmuntar %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Dan id-direttorju irid jibqa' fil-filesystem root."
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
-"Għandek bşonn filesystem vera (ext2, reiserfs) għal dan il-punt ta' mmuntar\n"
+"Għandek bşonn filesystem vera (ext2/ext3, reiserfs, xfs jew jfs) għal dan il-"
+"punt ta' mmuntar\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Ma tistax tuża filesystem iċċifrat għall-punt ta' mmuntar %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "M'hemmx bişşejjed spazju għal awto-allokazzjoni"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr "M'hemm xejn x'nagħmel"
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Problema waqt il-ftuħ ta' %s għall-kitba: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Instabet problema - ebda apparat validu ma nstab fejn jinħolqu filesystems "
"ġodda. Iċċekkja l-kompjuter għall-kawża ta' din il-problema."
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "M'għandek ebda partizzjoni!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+msgid "Auto-detect"
+msgstr "Għarfien awtomatiku"
+
+#: ../../harddrake/bttv.pm_.c:64
+msgid "Unknown|Generic"
+msgstr "Mhux magħruf/Ġeneriku"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr "Mhux magħruf|CPH05X (bt878) [diversi manifatturi]"
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr "Mhux magħruf|CPH06X (bt878) [diversi manifatturi]"
+
+#: ../../harddrake/bttv.pm_.c:193
+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 ""
+"Għal ħafna \"TV cards\" moderni, il-modulu bttv tal-kernel GNU/Linux "
+"awtimatikament isib il-parametri tajba.\n"
+"Jekk il-kard ma tingħarafx sew, tista' ĥĥegħlu jieħu t-tuner u kard it-tajba "
+"minn hawn. Sempliċiment agħżel il-kard u parametri jekk meħtieġa."
+
+#: ../../harddrake/bttv.pm_.c:196
+msgid "Card model :"
+msgstr "Mudell tal-kard :"
+
+#: ../../harddrake/bttv.pm_.c:197
+msgid "PLL setting :"
+msgstr "Seting PLL :"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr "Numru ta' buffers għall-kattura :"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr "numru ta' buffers għall-kattura mmapp"
+
+#: ../../harddrake/bttv.pm_.c:199
+msgid "Tuner type :"
+msgstr "Tip ta' tuner :"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr "Sapport għar-radju :"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr "ippermetti sapport għal radju"
+
+#: ../../harddrake/ui.pm_.c:12
+msgid "/_Quit"
+msgstr "/_Oħroĥ"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Għajnuna"
+
+#: ../../harddrake/ui.pm_.c:14
+msgid "/_Help..."
+msgstr "/_Għajnuna..."
+
+#: ../../harddrake/ui.pm_.c:15
+msgid "/_About..."
+msgstr "/_Dwar..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Modulu"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Mudell tal-kard :"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Ikkanċella"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr "Bus"
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "Module"
+msgstr "Modulu"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr "Kassi ta' medja"
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Deskrizzjoni"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+msgid "Bus identification"
+msgstr "Identifikazzjoni tal-bus"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr "Post fuq il-bus"
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Agħşel fajl"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Apparat gateway"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 buttoni"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+msgid "Harddrake2 version "
+msgstr "Harddrake2 verĹźjoni "
+
+#: ../../harddrake/ui.pm_.c:122
+msgid "Detected hardware"
+msgstr "ÄŚardwer misjub"
+
+#: ../../harddrake/ui.pm_.c:136
+msgid "Informations"
+msgstr "Informazzjoni"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr "Čaddem għodda ta' konfigurazzjoni"
+
+#: ../../harddrake/ui.pm_.c:158
+msgid "Configure module"
+msgstr "Ikkonfigura modulu"
+
+#: ../../harddrake/ui.pm_.c:168
+msgid "Detection in progress"
+msgstr "Għaddej l-għarfien"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Stenna ftit"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr "ewlieni"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "secondary"
+msgstr "sekondarju"
+
+#: ../../harddrake/ui.pm_.c:260
+#, c-format
+msgid "Running \"%s\" ..."
+msgstr "Qed jitħaddem \"%s\"..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr "Dwar Harddrake"
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+"Dan huwa Harddrake, għodda tal-Mandrake għall-konfigurazzjoni tal-ħardwer.\n"
+"VerĹźjoni:"
+
+#: ../../harddrake/ui.pm_.c:281
+msgid "Author:"
+msgstr "Awtur:"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr "Għajnuna ta' Harddrake"
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2307,7 +2460,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2439,9 +2592,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2804,7 +2956,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2816,9 +2968,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2892,21 +3043,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2922,9 +3072,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"F'dan il-punt int trid tagħşel fejn, fuq il-ħard disk, trid tinstalla s-\n"
"sistema operattiva Mandrake Linux. Jekk il-ħard disk huwa vojt, jew jekk\n"
@@ -3011,9 +3161,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3214,38 +3363,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3424,11 +3567,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3487,7 +3630,7 @@ msgstr ""
"diffiċli tirrispondihom jekk ma tafx sew lill-GNU/Linux, għalhekk tagħżilx\n"
"din il-klassi jekk ma tafx x'qed tagħmel."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3512,7 +3655,7 @@ msgstr ""
"Klikkja fuq il-buttuna \"Oħrajn\" biex tara l-lista kompleta ta' \n"
"tastiera li hemm fis-sistema."
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3538,7 +3681,7 @@ msgstr ""
"Innota li tista' tagħşel kemm trid lingwi. Ladarba tkun għaşilt il-lingwi\n"
"li trid agħfas \"OK\" biex tkompli."
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3566,7 +3709,7 @@ msgstr ""
"setings jaħdmu sew. Jekk il-maws ma jaħdimx sew agħfas \"spazju\" jew\n"
"[Enter] biex tikkanċella u terġa tagħżel ieħor."
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3574,23 +3717,23 @@ msgstr ""
"Jekk jogħĥbok agħşel il-port it-tajjeb. Per eşempju, il-port \"COM1\" fil-\n"
"Windows huwa ekwivalenti għal \"ttyS0\" fil-GNU/Linux."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3652,7 +3795,7 @@ msgstr ""
"Jekk il-kompjuter tiegħek mhux imqabbad ma' network amministrat, agħşel\n"
"\"Fajls lokali\" għall-awtentikazzjoni."
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3674,7 +3817,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3682,7 +3825,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3746,7 +3889,7 @@ msgstr ""
"tneħħi l-element. \"ŝid\" joħloq element ĥdid, u \"Lest\" imur fil-pass\n"
"li jmiss ta' l-installazzjoni."
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3772,7 +3915,7 @@ msgstr ""
"floppy\n"
"apposta biex tidħol f'dawn is-sistemi operattivi!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3785,29 +3928,28 @@ msgstr ""
"\n"
"Jekk ma tafx x'inti tagħmel, agħşel \"L-ewwel settur tad-diska (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3847,7 +3989,7 @@ msgstr ""
"Altrimenti, CUPS huwa aħjar għax huwa iżjed sempliċi u jaħdem aħjar fuq \n"
"network."
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3872,7 +4014,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"DrakX issa se jfittex apparat IDE fuq il-kompjuter tiegħek. Huwa wkoll\n"
@@ -3902,7 +4044,7 @@ msgstr ""
"apparat\n"
"fuq il-Windows ukoll)."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3912,9 +4054,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3926,7 +4067,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" 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"
@@ -3952,7 +4093,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3979,18 +4120,17 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3998,12 +4138,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -4045,7 +4184,7 @@ msgstr ""
"assoċjati\n"
"magħha."
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4055,7 +4194,7 @@ msgstr ""
"Mandrake Linux fuqha. Oqgħod attent, l-informazzjoni kollha fuq din id-\n"
"diska jintilef u ma jkunx jista' jinÄĄab lura!"
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4073,20 +4212,23 @@ msgstr ""
"Klikkja \"Ikkanċella\" biex twaqqaf dan il-proċess minngħajr ma tħassar\n"
"l-informazzjoni u partizzjonijiet fuq dan il-ħard disk."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
"missing), this generally means your boot floppy in not in sync with the "
"Installation medium (please create a newer boot floppy)"
msgstr ""
+"Ma nistax naċċessa moduli tal-kernel li jikkorrispondu għall-kernel (fajl %s "
+"nieqes). Dan normalment ifisser li l-floppy mhuwiex sinkronizzat mal- "
+"installazzjoni. Jekk jogħĥbok oħloq floppy ĥdida biex tistartja fuqha."
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr "Trid ukoll tifformattja %s"
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4111,20 +4253,20 @@ msgstr ""
"\n"
"Ĺťgur li trid tinstalla dawn is-servers?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "Ma nsitax nuşa \"broadcast\" minngħajr dominju NIS"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Daħħal floppy formattjata FAT fid-drive %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Din il-floppy m'hix formattjata FAT"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4132,7 +4274,7 @@ msgstr ""
"Bex tuşa din l-għaşla ta' pakketti, ħaddem l-installazzjoni b' \"linux "
"defcfg=floppy\""
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Problema fil-qari tal-fajl %s"
@@ -4162,7 +4304,7 @@ msgstr "Għandek bşonn partizzjoni \"swap\""
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -4170,59 +4312,59 @@ msgstr ""
"\n"
"Trid tkompli xorta?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Għandek bşonn partizzjoni FAT immuntata fuq /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "UĹźa l-ispazju vojt"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "M'hemmx bişşejjed spazju vojt biex jinħolqu l-partizzjonijiet il-ĥodda"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "UĹźa partizzjoni eĹźistenti"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "M'hemmx partizzjonijiet eĹźistenti x'nuĹźa"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Uşa l-partizzjoni tal-Windows għal loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Liema partizzjoni trid tuşa għal Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Agħşel id-daqsijiet"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Daqs tal-partizzjoni root f' MB: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Daqs tal-partizzjoni Swap f' MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "UĹźa l-ispazju vojt fil-partizzjoni tal-Windows"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Liema partizzjoni trid tibdlilha d-daqs?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Qed nikkalkula l-limiti tal-filesystem tal-Windows"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4232,13 +4374,16 @@ msgstr ""
"kapaċi tbiddel din il-partizzjoni - instabet din il-problema:\n"
"%s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"Il-partizzjoni tal-Windows hija mgerfxa wisq. Jekk jogħĥbok ħaddem \"defrag"
"\"."
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -4259,56 +4404,56 @@ msgstr ""
"tieħu \"backup\" tal-informazzjoni importanti.\n"
"Meta tkun ċert, agħfas Ok."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "X'daqs trid işşomm għall-windows fuq"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "partizzjoni %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Bdil tad-daqs FAT falla: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"M'hemmx partizzjoijiet FAT biex tibdel id-daqs jew biex tuşahom bħala\n"
"\"loopback\" (jew m'hemmx bişşejjed spazju)."
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "ÄŚassar kull m'hemm fid-diska"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Neħħi l-Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Għandek işjed minn ħard disk waħda. Fuq liema trid tinstalla l-Linux?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"Il-partizzjonijiet kollha fuq id-diska %s u l-informazzjoni ta' ÄĄo fihom se "
"jintilfu"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Partizzjonament personalizzat"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "UĹźa fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4317,11 +4462,11 @@ msgstr ""
"Tista' tippartizzjona %s.\n"
"X'ħin tlesti, tinsiex tikteb il-bidliet billi tittajpja \"w\"."
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "M'għandekx bişşejjed spazju fuq il-partizzjoni Windows."
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Ma nistax insib spazju fejn ninstalla."
@@ -4329,16 +4474,16 @@ msgstr "Ma nistax insib spazju fejn ninstalla."
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Is-saħħar ta' partizzjonament DrakX sab dawn is-soluzzjonijiet:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Partizzjonament falla: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Qed intella' n-network"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Qed innişşel in-network"
@@ -4350,12 +4495,12 @@ msgstr ""
"Inqalgħet problema, imma ma nafx kif nieħu ħsieba sew.\n"
"Tista' tkompli b'risku tiegħek"
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Punt ta' mmuntar doppju %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4367,12 +4512,12 @@ msgstr ""
"Tista' tiċċekkja s-CD fuq kompjuter diġà nstallat permezz tal-kmand \"rpm -"
"qpl Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Merħba għal %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "M'hemmx drive floppy"
@@ -4382,9 +4527,9 @@ msgstr "M'hemmx drive floppy"
msgid "Entering step `%s'\n"
msgstr "Dieħel fil-pass \"%s\"\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4394,197 +4539,153 @@ msgstr ""
"dan,\n"
"agħfas F1 meta titla' s-CD, imbgħad ittajpja \"text\"."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Klassi ta' installazzjoni"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr "Jekk jogħĥbok agħşel waħda minn dawn il-klassijiet ta' installazzjoni:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Id-daqs totali tal-gruppi li għaşilt huwa madwar %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Jekk tixtieq tinstalla inqas minn dawn id-daqs, agħżel il-perċentaġġ\n"
-"ta' pakketti li trid tinstalla.\n"
-"\n"
-"Perċentaġġ baxx jinstalla biss l-iżjed programmi importanti;\n"
-"perċentaġġ ta 100%% jinstalla l-pakketti kollha magħżula."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Fuq id-diska għandek spazju għal %d%% biss minn dawn il-pakketti.\n"
-"\n"
-"Jekk tixtieq tinstalla inqas minn hekk, agħżel il-perċentaġġ tal-\n"
-"pakketti li trid tinstalla. Perċentaġġ baxx jinstalla biss l-iżjed \n"
-"programmi importanti; perċentaġġ ta %d%% jinstalla kemm jista' jkun."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Tkun tista' tagħżilhom b'mod iżjed speċifiku fil-pass li jmiss."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Perċentaġġ ta' pakketti x'tinstalla"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Għaşla ta' gruppi ta' pakketti"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Agħşel pakketti individwalment"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Daqs totali: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Pakkett ħaşin"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Isem: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "VerĹźjoni: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Daqs: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Importanza: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Ma tistax tagħşel dan il-pakkett għax ma fadalx bişşejjed spazju għalih"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Dawn huma l-pakketti li se jiÄĄu nstallati"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Dawn huma l-pakketti li se jiĥu mneħħija"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Ma tistax tagħşel dan il-pakkett"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Dan il-pakkett huwa kruċjali, ma jistax jitneħħa"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Ma tistax tneħħi l-għaşla minn dan il-pakkett, diĥà nstallat."
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Dan il-pakkett għandu bşonn jiĥi aĥĥornat.\n"
"ŝgur li trid tneħħi l-għaşla?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Ma tistax tneħħi l-għaşla minn dan il-pakkett. Irid jiĥi aĥĥornat."
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Uri l-pakketti magħşula awtomatikament"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Installa"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Aqra/ikteb fuq floppy"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "Qed naĥĥorna l-għaşla ta' pakketti"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "Installazzjoni minima"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Agħşel il-pakketti li trid tinstalla"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Qed ninstalla"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Qed nistima"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "ÄŚin li fadal "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Stenna ftit, qed nipprepara l-installazzjoni"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d pakketti"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Qed jinstalla il-pakkett %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Naċċetta"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Ma naċċettax"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4600,17 +4701,17 @@ msgstr ""
"Jekk m'għandekx din id-diska, agħfas \"Ikkanċella\" biex taqbeż il-pakketti "
"li qegħdin fuqha."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Trid tkompli xorta?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Kien hemm problema fl-ordni tal-pakketti:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Kien hemm problema fl-installazzjoni tal-pakketti:"
@@ -4645,6 +4746,38 @@ msgid ""
"respective authors and are protected by intellectual property and \n"
"copyright laws applicable to software programs.\n"
msgstr ""
+"\n"
+"Twissija\n"
+"\n"
+"Jekk jogħĥbok aqra sew it-termini ta' taħt. Jekk ma taqbilx ma xi parti,\n"
+"ma tistax tinstalla s-CD li jmiss. Agħfas \"Ma naċċettax\" biex tkompli \n"
+"l-installazzjoni minngħajr dan is-CD.\n"
+"\n"
+"\n"
+"Xi komponenti tas-CD li jmiss ma jaqgħux taħt il-liċenzja GPL jew liċenzji\n"
+"simili. Kull komponent simili għalhekk huwa kontrollat mit-termini u\n"
+"kundizzjonijiet tal-liċenzja speċifika tiegħu. Jekk jogħġbok aqra sew\n"
+"u segwi dawn il-liċenzji speċifiċi qabel tuża jew tiddistribwixxi dawn il-\n"
+"komponenti.\n"
+"Dawn il-liċenzji ġeneralment jipprojbixxu t-trasferiment, kupjar (ħlief \n"
+"bħala backup), ridistribuzzjoni, \"reverse engineering\", dişassemblaĥĥ,\n"
+"dekompilazzjoni jew modifika ta' dawn il-komponenti. Ksur ta' dan\n"
+"il-qbil jittermina immedjatament id-drittijiet tiegħek taħt din il-"
+"liċenzja.\n"
+"Sakemm il-liċenzja ma tagħtikx dawn id-drittijiet, normalment ma tistax\n"
+"tinstalla dawn il-programmi duq işjed minn kompjuter wieħed, jew \n"
+"tadattahom biex jintuşaw fuq network. Jekk għandek xi dubju, jekk \n"
+"jogħĥbok ikkuntattja direttament lid-distributur jew editur tal-komponent.\n"
+"It-trasferiment lill terzi partijiet jew kupjar ta' dawn il-komponenti "
+"inkluĹź\n"
+"id-dokumentazzjoni normalment huwa miċħud.\n"
+"\n"
+"\n"
+"Id-drittijiet kollha tal-komponenti tas-CD li jmiss huma tal-awturi "
+"rispettivi u\n"
+"huma protetti minn liÄĄijiet ta' propjetĂ  intellettwali u copyright "
+"applikabbli\n"
+"għal programmi ta' softwer.\n"
#: ../../install_steps_interactive.pm_.c:67
msgid "An error occurred"
@@ -4654,11 +4787,11 @@ msgstr "Inqalgħet problema"
msgid "Do you really want to leave the installation?"
msgstr "ŝgur trid toħroĥ mill-installazzjoni?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Qbil mal-liċenzja"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4673,7 +4806,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -4779,109 +4912,113 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr "Żgur li tirrifjuta l-liċenzja?"
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Tastiera"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "Jekk jogħĥbok agħşel tqassim tat-tastiera."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Hawn issib lista sħiħa tat-tastieri disponibbli"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Liema klassi ta' installazzjoni trid?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Installa/AÄĄÄĄorna"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Din hija installazzjoni ÄĄdida jew aÄĄÄĄornament?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Rakkomandat"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Espert"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "AÄĄÄĄornament"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "AÄĄÄĄorna l-pakketti biss"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Jekk jogħĥbok agħşel it-tip tal-maws."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Port tal-maws"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Jekk jogħĥbok agħşel il-port serjali li miegħu hemm imqabbad il-maws."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Emulazzjoni tal-buttuni"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Emulazzjoni ta' buttuna #2"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Emulazzjoni ta' buttuna #3"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Qed nissettja kard PCMCIA..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Qed nikkonfigura IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "m'hemmx partizzjonijiet disponibbli"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Qed niskannja partizzjonijiet biex insib punti ta' mmuntar"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Agħşel punti ta' mmuntar"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4893,7 +5030,7 @@ msgstr ""
"\n"
"Trid titlef il-partizzjonijiet kollha?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4901,7 +5038,7 @@ msgstr ""
"DiskDrake ma rnexxielux jaqra t-tabella tal-partizzjonijiet.\n"
"Jekk tkompli jkun riskju tiegħel!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -4909,79 +5046,80 @@ msgstr ""
"M'hemmx spazju għal bootstrap ta' 1MB. L-installazzjoni se tkompli, imma "
"biex tħaddem is-sistema trid toħloq partizzjoni bootstrap f' Diskdrake."
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr "Ebda partizzjoni root ma nstabet biex issir aÄĄÄĄornament"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Partizzjoni root"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Liem hi l-partizzjoni root tas-sistema?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Trid tirristartja sabiex il-bidliet fit-tabella tal-partizzjonijiet ikollhom "
"effett."
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Agħşel liema partizzjonijiet trid tifformattja"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Trid tiċċekkja għal blokki ħżiena?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Qed nifformattja l-partizzjonijiet"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Qed noħloq u nifformattja fajl %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"M'hemmx bişşejjed swap biex issir l-installazzjoni, jekk jogħĥbok şid ftit "
"swap"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Qed insib pakketti disponibbli u nerÄĄa' nibni d-database RPM..."
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "Qed insib pakketti disponibbli"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Qed insib pakketti x'naÄĄÄĄorna"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+msgid "Looking at packages already installed..."
+msgstr "Qed naqra l-pakketti diÄĄĂ  nstallati..."
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Is-sistema m'għandiex bişşejjed spazju għall-installazzjoni jew aĥĥornament "
"(%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Komplet (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimu (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Rakkomandat (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -4989,56 +5127,55 @@ msgstr ""
"Jekk jogħĥbok agħşel \"ikteb\" jew \"aqra\" l-għaşla tal-pakketti fuq\n"
"floppy. Il-format huwa l-istess bħal floppies ĥenerati bl-auto_install."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Aqra' mill-floppy"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Qed tinqara' l-floppy"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Għaşla ta' pakketti"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "Daħħal floppy li fiha għaşla ta' pakketti"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Ikteb fuq floppy"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Id-daqs tal-għaşla huwa ikbar mill-ispazju disponibbli"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr "Tip ta' installazzjoni"
-#: ../../install_steps_interactive.pm_.c:672
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-"Għadek m'għaşiltx grupp ta' pakketti\n"
-"Jekk jogħĥbok agħşel installazzjoni minima li trid."
+"Għadek m'għaşilt ebda grupp ta' pakketti\n"
+"Jekk jogħĥbok agħşel installazzjoni minima li trid:"
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "Bl-XWindows"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr "B' dokumentazzjoni baĹźika (rakkomandat)"
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr "Installazzjoni verament minima (mingħajr urpmi)"
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5048,16 +5185,16 @@ msgstr ""
"Jekk m'għandek ebda waħda agħfas \"Ikkanċella\".\n"
"Jekk m'għandekx uħud minnhom, neħħi li m'għandekx u agħfas \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM immarkat \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Qed nipprepara l-installazzjoni"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -5066,23 +5203,23 @@ msgstr ""
"Qed jiÄĄi nstallat il-pakkett %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Konfigurazzjoni ta' wara l-installazzjoni"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Jekk jogħĥbok daħħal \"boot floppy\" fid-drive %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Jekk jogħĥbok daħħal \"update modules floppy\" fid-drive %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5154,167 +5291,202 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-"Issa tista' tnişşel pakketti aĥĥornati li ĥew pubblikati wara li\n"
-"din id-distribuzzjoni inħarĥet.\n"
+"Issa għandek l-opportunità li tnişşel pakketti aĥĥornati. Dawn ĥew "
+"ippubblikati \n"
+"wara li din id-distribuzzjoni inħarĥet. Jistgħu jinkludu tiswijiet ta' "
+"problemi jew \n"
+"sigurtĂ .\n"
"\n"
-"Tista' tikseb tiswijiet ta' sigurtĂ  jew bugs, imma jrid ikollok\n"
-"konnessjoni mal-internet biex tipproċedi.\n"
+"Biex tnişşel dawn il-pakketti, jrid ikollok konnessjoni mal-internet qed "
+"taħdem.\n"
"\n"
"Trid tinstalla dawn l-aÄĄÄĄornamenti?"
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Qed nikkuntattja l-website ta' Mandrake Linux biex nikseb lista tal-mirja "
"disponibbli"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Agħşel mera minn fejn trid iĥĥib il-pakketti"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Qed nikkuntattja l-mera biex nikseb lista tal-pakketti disponibbli"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Liem hi ş-şona orarja tiegħek?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "ArloÄĄÄĄ tal-kompjuter issettjat GMT"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Sinkronizzazzjoni tal-ħin awtomatiku (permezz ta' NTP)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "Server NTP"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Server CUPS remot"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Ebda printer"
-#: ../../install_steps_interactive.pm_.c:1032
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
-msgstr "Għandek işjed?"
+msgstr "Għandek kard tal-awdjo ISA?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
+"ÄŚaddem \"sndconfig\" wara l-installazzjoni biex tikkonfigura l-kard awdjo."
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
+"Ebda kard tal-awdjo ma nstabet. Ipprova ħaddem \"harddrake\" wara l-"
+"installazzjoni"
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Sommarju"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Maws"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "ŝona tal-ħin"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Printer"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "Kard ISDN"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Kard awdjo"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "Kard TV"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+msgid "Windows PDC"
+msgstr "Windows PDC"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Fajls lokali"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Issettja l-password ta' \"root\""
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Ebda password"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr "Dan il-password sempliċi wisq (irid ikun twil tal-inqas %d ittri)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Awtentikazzjoni"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "Awtentikazzjoni LDAP"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "DN baĹźi LDAP"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "Server LDAP"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "Awtentikazzjoni NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "Dominju NIS"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "Server NIS"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+msgid "Authentication Windows PDC"
+msgstr "Awtentikazzjoni Windows PDC"
+
+#: ../../install_steps_interactive.pm_.c:1139
+msgid "Windows Domain"
+msgstr "Dominju tal-Windows"
+
+#: ../../install_steps_interactive.pm_.c:1140
+msgid "PDC Server Name"
+msgstr "Isem is-server PDC"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+"Biex dan jaħdem fuq PDC W2K, aktarx ikollok bşonn lill-amministratur "
+"iħaddem: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" "
+"everyone /add u jirristartja s-server."
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -5344,20 +5516,20 @@ msgstr ""
"Jekk tixtieq toħloq bootdisk għas-sistema tiegħek, daħħal floppy fl-ewwel \n"
"drive u agħfas OK."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Floppy drive ewlieni"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "It-tieni floppy drive"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "AqbeĹź"
-#: ../../install_steps_interactive.pm_.c:1194
-#, fuzzy, c-format
+#: ../../install_steps_interactive.pm_.c:1199
+#, 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 "
@@ -5372,15 +5544,17 @@ msgid ""
"%s"
msgstr ""
"Bootdisk personalizzata tipprovdi mezz kif ittella' s-sistema Linux\n"
-"minngħajr ma' tinstalla l-bootloader normali. Dan huwa utli jekk ma "
-"tixtieqz\n"
-"tinstalla LILO (jew grub) fuq is-sistema tiegħek, jew jekk xi programm \n"
-"ineħħilek il-LILO, jew jekk LILO ma jaħdimx mal-ħardwer tiegħek. Bootdisk \n"
-"personalizzata tista' wkoll tintuĹźa mal-\"image\" tat-tiswija (rescue) ta' \n"
-"Mandrake, biex ikun iżjed faċli tirkupra minn problemi serji.\n"
-"Tixtieq toħloq bootdisk għas-sistema tiegħek?"
+"minngħajr ma' tiddependi fuq il-bootloader normali. Dan huwa utli jekk ma\n"
+"tixtieqx tinstalla LILO (jew grub) fuq is-sistema tiegħek, jew jekk xi "
+"sistema \n"
+"operattiva oħra tneħħilek il-LILO, jew jekk LILO ma jaħdimx mal-ħardwer \n"
+"tiegħek. Bootdisk personalizzata tista' wkoll tintuşa mal-\"image\" tat-"
+"tiswija\n"
+"(rescue) ta' Mandrake, biex ikun iżjed faċli tirkupra minn problemi serji.\n"
+"Tixtieq toħloq bootdisk għas-sistema tiegħek?\n"
+"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5388,29 +5562,34 @@ msgid ""
"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
"because XFS needs a very large driver)."
msgstr ""
+"\n"
+"\n"
+"(TWISSIJA! Int qed tuşa XFS bħala l-partizzjoni root.\n"
+"Aktarx ma tistax toħloq bootdisk fuq floppy waħda 1.44MB,\n"
+"għax id-driver tal-XFS huwa kbir ħafna)."
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Jiddispjaċini, ebda floppy drive disponibbli"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Agħşel liema floppy drive tixtieq tuşa biex toħloq il-bootdisk"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
msgstr "Daħħal floppy ĥdida f' %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Qed tinħoloq diska \"boot\""
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Qed nipprepara l-bootloader"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5422,11 +5601,11 @@ msgstr ""
"L-installazzoni se tkompli, imma trid tuĹźa BootX biex \n"
"ittella' l-Linux."
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Trid tuĹźa \"aboot\"?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5434,15 +5613,15 @@ msgstr ""
"Problema fl-installazzjoni ta' aboot.\n"
"trid tipprova timponi l-installazzoni anke jekk tħassar l-ewwel partizzjoni?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Qed ninstalla l-bootloader"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "L-installazzjoni tal-bootloader falla. Dan kien il-messaÄĄÄĄ:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5460,18 +5639,17 @@ msgstr ""
" Imbgħad ittajpja: shut-down\n"
"Meta jerĥa' jitla' għandek tara l-prompt tal-bootloader."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Daħħal floppy vojta' fi drive %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Qed jinħoloq floppy awto-installazzjoni"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5481,7 +5659,8 @@ msgstr ""
"\n"
"Trid toħroĥ issa?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5492,7 +5671,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5507,18 +5686,23 @@ msgstr ""
"Linux, iċċekkja s-sezzjoni \"Errata\" li hemm fuq:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Informazzjoni dwar kif tissettja s-sistema tinstab fil-kapitlu \"Post-install"
"\" \n"
"fl-Official Mandrake Linux User's Guide."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+#, fuzzy
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakesoft.com/sales/contact"
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Oħloq floppy awto-installa"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5532,15 +5716,15 @@ msgstr ""
"\n"
"Forsi tippreferi tuĹźa \"replay\" tal-installazzjoni.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Awtomatizzata"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Replay"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Ikteb l-għaşla ta' pakketti"
@@ -5567,44 +5751,24 @@ msgstr "consolehelper nieqes"
msgid "Choose a file"
msgstr "Agħşel fajl"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Avvanzat"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr "BaĹźiku"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Stenna ftit"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Espandi friegħi"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Agħlaq friegħi"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Aqleb bejn lista sempliċi jew kategorizzata"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Għaşla ħaşina, erĥa' pprova\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "L-għażla tiegħek? (impliċita: %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -5613,38 +5777,45 @@ msgstr ""
"Elementi li trid timla':\n"
"%s"
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "L-għażla tiegħek? (0/1, impliċitu: %s) "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "Buttuna \"%s\": %s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+msgid "Do you want to click on this button?"
msgstr "Trid tikklikkja din il-buttuna?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr "daħħal `void' għal element vojt"
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "L-għażla tiegħek? (impliċita: \"%s\"%s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Hemm ħafna affarijiet minn xiex tagħşel (%s).\n"
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
+"Jekk jogħĥbok agħşel l-ewwel numru minn dawn l-għaxra li trid tbiddel, jew "
+"agħfas Enter biex tkompli.\n"
+"X'tagħşel?"
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -5653,327 +5824,327 @@ msgstr ""
"=> Nota, l-isem inbidel:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr "ErÄĄa' sottometti"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Ċekk (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Ä ermaniĹź"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Spanjol"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "FinlandiĹź"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Franċiż"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "NorveÄĄiĹź"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Pollakk"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Russu"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "SvediĹź"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Tastiera UK"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Tastiera US"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "AlbaniĹź"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armen (antik)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armen (tajprajter)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armen (fonetiku)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "AĹźeri (latin)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "BelÄĄjan"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr "Bulgaru (fonetiku)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "Bulgaru (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "BraĹźiljan (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Bjelorussu"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Svizzeru (tqassim Ä ermaniĹź)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Svizzeru (tqassim Franċiż)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Ċekk (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Ä ermaniĹź (bla deadkeys)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "DaniĹź"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (NorveÄĄiĹź)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak (SvediĹź)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estonjan"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Ä orÄĄjan (tqassim \"Russu\")"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Ä orÄĄjan (tqassim \"Latin\")"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Grieg"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "UngeriĹź"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Kroat"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "IĹźraeli"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "IĹźraeli (fonetiku)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iranjan"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "IslandiĹź"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Taljan"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Ä appuniĹź 106 buttuna"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Korean"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latin Amerikan"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Litwan AZERTY (antik)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Litwan AZERTY (ÄĄdid)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litwan QWERTY \"number row\""
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litwan QWERTY fonetiku"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "Latvjan"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Maċedonjan"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "OlandiĹź"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Pollakk (qwerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Pollakk (qwertz)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "PortugiĹź"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "KanadiĹź (Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Rumen (qwertz)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Rumen (qwerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Russu (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Sloven"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovakk (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovakk (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "Serb (ċirilliku)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr "Tamil"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thai"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "TaÄĄik"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Tork (mudell tradizzjonali \"F\")"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Tork (mudell modern \"Q\")"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukranjan"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Tastiera US (internazzjonali)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "VjetnamiĹź qwerty \"numeric row\""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Jugoslav (latin)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr "Buttuna Alt leminija"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr "IĹź-ĹźewÄĄ buttuni \"shift\" flimkien"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr "Ctrl u Shift flimkien"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr "Buttuna CapsLock"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr "Ctrl u Alt flimkien"
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr "Alt u Shift flimkien"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr "Buttuna \"Menu\""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr "Buttuna \"Windows\" tax-xellug"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr "Buttuna \"Windows\" tal-lemin"
@@ -5986,7 +6157,29 @@ msgstr "Muntaġġ ċirkolari %s\n"
msgid "Remove the logical volumes first\n"
msgstr "L-ewwel neħħi l-volumi loġiċi minn ġo fih\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+msgid "a number"
+msgstr "numru"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr "%d numri separati b'virgoli"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr "%d strings separati b'virgoli"
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr "numri separati b'virgoli"
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated strings"
+msgstr "strings separati b'virgoli"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -6029,10 +6222,6 @@ msgstr "buttuna waħda"
msgid "Generic 2 Button Mouse"
msgstr "Ä eneriku 2 buttuni"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Ä eneriku"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Rota"
@@ -6097,38 +6286,56 @@ msgstr "ebda"
msgid "No mouse"
msgstr "Ebda maws"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Jekk jogħĥbok ittestja l-maws"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Biex tħaddem il-maws"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "MEXXI R-ROTA!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-*-*-bold-r-normal--17-*-100-100-p-*-iso8859-3,*-r-*"
+msgstr ""
+"-*-times new roman-bold-r-normal--17-*-*-*-p-*-iso8859-3,-*-lucidux serif-*-"
+"r-normal--17-*-*-*-p-*-iso8859-3,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Spiċċa"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Li jmiss ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Ta' qabel"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Dan tajjeb?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Info"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Espandi friegħi"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Agħlaq friegħi"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Aqleb bejn lista sempliċi jew kategorizzata"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Aqbad ma' l-internet"
@@ -6175,7 +6382,7 @@ msgstr ""
"Ebda kard tan-network ethernet ma nstabet fuq il-kompjuter.\n"
"Ma nistax nissettja dan it-tip ta' kollegament minngħajrha."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Agħżel l-interfaċċja tan-network"
@@ -6190,7 +6397,7 @@ msgstr ""
msgid "no network card found"
msgstr "ebda kard tal-internet ma stabet"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Konfigurazzjoni tan-network"
@@ -6206,15 +6413,15 @@ msgstr ""
"tal-kompjuter tiegħek irid ikun wieħed sħiħ, bħal\n"
"\"anna.finanzi.ditta.com\""
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Isem tal-kompjuter"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Saħħar tal-Konfigurazzjoni tan-Network"
@@ -6270,7 +6477,7 @@ msgstr "Konfigurazzjoni ISDN"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Agħşel provider.\n"
" Jekk m'hux fil-lista, agħşel \"mhux imnişşel\""
@@ -6289,14 +6496,14 @@ msgstr "Protokoll għall-kumplament tad-dinja"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Protokoll għall-kumplament tad-dinja\n"
" ebda kanal D (leased line)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Liema protokoll trid tuĹźa?"
#: ../../network/isdn.pm_.c:199
@@ -6320,7 +6527,8 @@ 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"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Jekk il-kard hija ISA, il-valuri fuq l-iskrin li jmiss għandhom ikunu "
@@ -6337,13 +6545,13 @@ msgid "Continue"
msgstr "Kompli"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Liema hija l-kard ISDN tiegħek?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Sibt kard ISDN PCI, imma ma nafx x'tip hi. Jekk jogħĥbok agħşel kard PCI fuq "
"l-iskrin li jmiss."
@@ -6360,47 +6568,47 @@ msgstr "Jekk jogħĥbok agħşel ma' liema port serjali huwa mqabbad il-maws."
msgid "Dialup options"
msgstr "Għaşliet \"dialup\""
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Isem tal-konnessjoni"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Numru tat-telefon"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Login"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "IbbaĹźat fuq scripts"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "IbbaĹźat fuq terminal"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Isem tad-dominju"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "L-ewwel server DNS (opzjonali)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "It-tieni server DNS (opzjonali)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6408,7 +6616,7 @@ msgstr ""
"\n"
"Tista taqta' minn ma' l-internet jew tirrikonfigura l-konnessjoni."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6416,11 +6624,11 @@ msgstr ""
"\n"
"Tista tirrikonfigura l-konnessjoni."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Bħalissa int imqabbad ma' l-internet."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6428,32 +6636,32 @@ msgstr ""
"\n"
"Tista taqbad mal-internet jew tirrikonfigura l-konnessjoni."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Bħalissa m'intix imqabbad ma' l-internet."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Aqbad"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Aqta'"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr "Ikkonfigura l-konnessjoni"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Konfigurazzjoni u konnessjoni tal-internet"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Issa se nikkonfiguraw il-konnessjoni %s"
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6472,12 +6680,12 @@ msgstr ""
"\n"
"Agħfas OK biex tkompli."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Konfigurazzjoni tan-network"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6489,9 +6697,9 @@ msgstr ""
"Agħfas Ok biex iżżomm din il-konfigurazzjoni, jew ikkanċella biex\n"
"tbiddel il-konfigurazzjoni tal-internet u network.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"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"
@@ -6501,66 +6709,72 @@ msgstr ""
"Hawnhekk se nikkonfiguraw il-konnessjoni tal-internet/network.\n"
"Jekk ma tixtieqx tuşa l-għarfien awtomatiku (autodetect), neħħi l-marka.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Agħşel profil li trid tissettja"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Uşa għarfien awtomatiku (auto-detect)"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "ModalitĂ  esperti"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Qed infittex l-apparat..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Konnessjoni b'modem normali"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "misjub fuq port %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "Konnessjoni ISDN"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "%s misjub"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "Konnessjoni ADSL"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "misjub fuq interfaċċja %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Konnessjoni Cable"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "konnessjoni cable misjuba"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "Konnessjoni LAN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "kard/s ethernet misjuba"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Agħşel liema konnessjoni trid tissettja"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6570,23 +6784,23 @@ msgstr ""
"Liema minnhom trid tuĹźa?\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Konnessjoni ma' l-internet"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Trid taqbad b'din il-konnessjoni malli tixgħel?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Konfigurazzjoni network"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr "In-network irid jiÄĄi ristartjat."
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6597,7 +6811,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6607,7 +6821,7 @@ msgstr ""
"Din il-konfigurazzjoni issa se tiĥi applikata għas-sistema.\n"
"\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6615,19 +6829,19 @@ msgstr ""
"Wara li jkun lest, aħna nirrikkmandaw li tirristartja s-sistema X biex "
"tevita problemi ta' bdil fl-isem tal-kompjuter."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
"Instabu xi problemi waqt il-konfigurazzjoni.\n"
"Ittestja l-konnessjoni permezz ta' net_monitor jew mcc. Jekk il-konnessjoni "
"ma taħdimx, tista' terĥa' tħaddem il-konfigurazzjoni."
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"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."
@@ -6637,7 +6851,7 @@ msgstr ""
"Sempliċiment aċċetta li żżomm dan l-apparat konfigurat.\n"
"Jekk tbiddel il-valuri ta' taħt dawn jieħdu post il-konfigurazzjoni preşenti."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6646,38 +6860,42 @@ msgstr ""
"Jekk jogħĥbok daħħal il-konfigurazzjoni IP għal dan il-kompjuter.\n"
"Kull element huwa indirizz IP fil-format deċimali bit-tikek (eż, 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Qed nikkonfigura apparat tan-network %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (driver %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "Indirizz IP"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "IP Awtomatiku"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+msgid "Start at boot"
+msgstr "Tella' fil-bidu"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "L-indirizz IP irid ikun fil-format \"1.2.3.4\""
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6688,64 +6906,64 @@ msgstr ""
"Dan irid ikun isem sħiħ, bħal \"joe.linux.org.mt\".\n"
"Tista' wkoll iddaħħal l-indirizz IP tal-gateway, jekk għandek wieħed."
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "Server DNS"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (eĹź. %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Apparat gateway"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Konfigurazzjoni tal-proxies"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Ĺťomm kont tal-ID tal-kard tan-network (utli fuq laptops)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Proxy mistenni jibda' http://"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Proxy mistenni jibda' ftp://"
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Konfigurazzjoni ta' l-internet"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Trid tipprova taqbad ma' l-internet issa?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Qed nittestja l-kollegament..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Is-sistema issa mqabbda ma' l-internet."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Għal raĥunijiet ta' sikurezza, issa se naqta'"
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6753,111 +6971,116 @@ msgstr ""
"Is-sistema donnha ma setgħetx taqbad ma' l-internet.\n"
"Ipprova erÄĄa' kkonfiguraha."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Konfigurazzjoni tal-konnessjoni"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Jekk jogħġbok imla' jew iċċekkja l-elementi t'hawn taħt"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ tal-kard"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Mem. tal-kard (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "IO tal-kard"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "IO_0 tal-kard"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "IO_1 tal-kard"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Numru tat-telefon tiegħek"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Isem tal-provider (eĹź. provider.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Telefon tal-provider"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "DNS 1 tal-provider (opzjonali)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "DNS 2 tal-provider (opzjonali)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Agħşel il-pajjiş"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Tip ta' daljar"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Veloċità tal-konnessjoni"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "ÄŚin biex tiskadi l-konnessjoni (sek)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Login tal-kont (user name)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Password tal-kont"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr "Renju Unit"
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "immuntar falla: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Partizzjoni estiĹźa m'hix sapportita fuq din il-pjattaforma"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Għandek toqba fit-tabella tal-partizzjonijiet imma ma nistax nuşaha.\n"
"L-unika soluzzjoni hija li tmexxi l-partizzjoni primarja sabiex din it-toqba "
"tkun maÄĄenb il-partizzjoni estiĹźa"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Restawr minn fajl %s falliet: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Fajl ta' backup ħaşin"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Problema waqt kitba fil-fajl %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6867,186 +7090,186 @@ msgstr ""
"It-test biex niċċekkja l-integrità tal-informazzjoni falla.\n"
"Dan ifisser li kull ma tikteb fuq id-diska jista' jispiċċa mimli mbarazz."
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "neċessarju"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "importanti"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "tajjeb ħafna"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "tajjeb"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "forsi"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Sistema ta' Printjar Komuni tal-Unix"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR Ä enerazzjoni Ä dida"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Line Printer Daemon"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Printja minngħajr kju"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Printer lokali"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Printer remot"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Printer fuq server CUPS remot"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Printer fuq server lpd remot"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Printer tan-network (TCP/socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Printer fuq SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Printer fuq server NetWare"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Daħħal URI tal-printer"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "Għaddi x-xogħol lill kmand"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Mudell mhux magħruf"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "Printers lokali"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "Printers remoti"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr " fuq port parallell \\/*%s"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", printer USB \\/*%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", apparat multi-funzjoni fuq port parallell \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ", apparat multi-funzjoni fuq USB"
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ", apparat multi-funzjoni fuq HP JetDirect"
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ", apparat multi-funzjoni"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, c-format
msgid ", printing to %s"
msgstr ", qed jipprintja fuq %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr "fuq server LPD \"%s\", printer \"%s\""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", server TCP/IP \"%s\", printer \"%s\""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr "fuq server Windows \"%s\", share \"%s\""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr "fuq server Novell \"%s\", printer \"%s\""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ", bil-kmand %s"
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr "Printer dirett (bla driver)"
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(fuq %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(fuq dan il-kompjuter)"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Fuq server CUPS \"%s\""
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Impliċitu)"
@@ -7068,18 +7291,15 @@ msgstr ""
"Il-printers li hemm fuq servers CUPS m'għandhomx bşonn jiĥu ssettjati minn "
"hawn; dawn il-printers jiĥu magħrufa awtomatikament."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-#, fuzzy
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
msgid "CUPS configuration"
-msgstr "Konfigurazzjoni"
+msgstr "Konfigurazzjoni CUPS"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-#, fuzzy
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
msgid "Specify CUPS server"
-msgstr "Server CUPS remot"
+msgstr "Speċifika server CUPS"
#: ../../printerdrake.pm_.c:71
-#, fuzzy
msgid ""
"To get access to printers on remote CUPS servers in your local network you "
"do not have to configure anything; the CUPS servers inform your machine "
@@ -7089,17 +7309,14 @@ msgid ""
"to enter the CUPS server IP address and optionally the port number to get "
"the printer information from the server, otherwise leave these fields blank."
msgstr ""
-"Għal servers CUPS remoti, m'għandekx bşonn tagħşel printer minn hawn; is-"
-"servers CUPS jinfurmaw lill-kompjuter tiegħek awtomatikament dwar il-"
-"printers li għandhom. Il-printers kollha li jaf bihom il-kompjuter tiegħek "
-"huma mniżżla taħt \"Printer impliċitu\". Agħżel liema printer minn dawn "
-"tridu jkun dak impliċitu u agħfas il-buttuna \"applika/erġa' aqra printers"
-"\". L-istess buttuna tintuĹźa biex tara printers ÄĄodda li saru disponibbli "
-"(tista' tieħu sa' 30 sekonda biex il-kompjuter jinduna bi printers ĥodda "
-"CUPS). Meta s-server CUPS qiegħed fuq network separat, trid tagħti l-"
-"indirizz IP tas-server CUPS, u possibbilment in-numru tal-port sabiex tikseb "
-"l-informazzjoni dwar il-printers minn dan is-server, altrimenti ħalli dawn l-"
-"elementi vojta."
+"Biex taċċessa printers fuq servers CUPS fuq l-istess network lokali, "
+"m'għandek bşonn tikkonfigura xejn; is-servers CUPS jinfurmaw lill-kompjuter "
+"tiegħek awtomatikament dwar il-printers li għandhom. Il-printers kollha li "
+"jaf bihom il-kompjuter tiegħek huma mnişşla taħt \"Printers remoti\" fil-"
+"parti prinċipali ta' Printerdrake. Meta s-server CUPS qiegħed fuq network "
+"separat, trid iddaħħal l-indirizz IP tas-server CUPS, u possibbilment in-"
+"numru tal-port sabiex tikseb l-informazzjoni dwar il-printers minn dan is-"
+"server, altrimenti ħalli dawn l-elementi vojta."
#: ../../printerdrake.pm_.c:72
msgid ""
@@ -7121,7 +7338,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "L-indirizz IP jidher xi ħaĥa hekk: 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "In-numru tal-port irid ikun sħiħ!"
@@ -7129,7 +7346,7 @@ msgstr "In-numru tal-port irid ikun sħiħ!"
msgid "CUPS server IP"
msgstr "Indirizz IP tas-server CUPS"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Port"
@@ -7137,20 +7354,12 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Konfigurazzjoni CUPS awtomatika"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Qed infittex apparat..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Ittestja ports"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr "Ĺťid printer ÄĄdid"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7172,13 +7381,13 @@ msgstr ""
"jagħtik aċċess għad-drivers tal-printers kollha disponibbli, l-għażliet tad-"
"driver, u t-tipi ta' konnessjoni."
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Printer lokali"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7209,11 +7418,11 @@ msgstr ""
"\"ModalitĂ  esperti\" meta trid tissettja printer fuq kompjuter remot, jekk "
"printerdrake ma jsibux awtomatikament."
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr "Għarfien awtomatiku tal-printers"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7236,11 +7445,11 @@ msgstr ""
"tbiddel is-setings impliċiti (daqs tal-karta, kwalità eċċ), agħżel \"Printer"
"\" mis-sezzjoni \"Ħardwer\" taċ-Ċentru tal-Kontroll Mandrake."
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr "Għarfien awtomatiku tal-printers"
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7256,33 +7465,37 @@ msgstr ""
"\n"
"Trid li tkompli bl-għarfien awtomatiku tal-printers?"
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "Għarfien awtomatiku"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr "Issettja printer manwalment"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Ittestja ports"
+
+#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
msgstr "Instab %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Printer fuq port parallell \\/*%s"
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr "Printer USB \\/*%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
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, ..., "
@@ -7293,11 +7506,11 @@ msgstr ""
"isem tal-port jew fajl fl-input. (Portijiet parallelli: /dev/lp0=LPT1, /dev/"
"lp1=LPT2 eċċ; printers USB: /dev/usb/lp0, /dev/usb/lp1 eċċ)"
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
msgstr "Trid iddaħħal isem ta' port jew fajl!"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
@@ -7305,7 +7518,7 @@ msgstr ""
"Ebda printer lokali ma nstab!\n"
"\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
@@ -7313,7 +7526,7 @@ msgstr ""
"Printers tan-network jistgħu jiĥu ssettjati biss wara l-installazzjoni. "
"Agħżel \"Ħardwer\" u mbgħad \"Printer\" miċ-Ċentru tal-Kontroll Mandrake."
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
@@ -7321,7 +7534,7 @@ msgstr ""
"Biex tinstalla printer min-network, klikkja \"Ikkanċella\", aqleb għall-"
"modalità esperti, u erĥa' agħşel \"ŝid printer ĥdid\"."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7329,7 +7542,7 @@ msgstr ""
"Dan huwa l-printer li nstab awtomatikament. Jekk dan m'hux il-printer li "
"ridt tissettja, daħħal isem ta' port/fajl fil-linja tal-input."
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7338,7 +7551,7 @@ msgstr ""
"agħşel il-printer li trid tissettja, jew daħħal isem ta' port/fajl fil-linja "
"tal-input."
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7349,7 +7562,7 @@ msgstr ""
"issir awtomatikament. Jekk il-printer ma ngħarafx sew, jew jekk tippreferi "
"konfigurazzjoni personalizzata, ixgħel \"Konfigurazzjoni manwali\"."
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7361,7 +7574,7 @@ msgstr ""
"awtomatikament. Jekk il-printer ma ngħarafx sew, jew jekk tippreferi "
"konfigurazzjoni personalizzata, ixgħel \"Konfigurazzjoni manwali\"."
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7369,11 +7582,11 @@ msgstr ""
"Jekk jogħĥbok agħşel il-port fejn huwa mqabbad il-printer, jew agħşel isem "
"ta' port/fajl fil-linja ta' kmand."
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
msgstr "Jekk jogħĥbok agħşel il-port ma' fejn hu mqabbad il-printer."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7382,52 +7595,66 @@ msgstr ""
"eċċ. L-ewwel printer USB = /dev/usb/lp0, it-tieni printer USB = /dev/usb/lp1 "
"eċċ )"
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
msgstr "Trid tagħşel/iddaħħal printer/apparat!"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
msgstr "Konfigurazzjoni manwali"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
+#, fuzzy
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
"Il-printer tiegħek huwa apparat multi-funzjonali tal-HP (OfficeJet, PSC, "
-"PhotoSmart, LaserJet 1100/1200/1220/3200/3300 bi skaner)?"
+"LaserJet 1100/1200/1220/3200/3300 bi skaner), HP Photosmart P100 jew 1315, "
+"jew HP LaserJet 2200?"
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
msgstr "Qed ninstalla l-pakkett HPOJ..."
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr "Qed niċċekkja u nikkonfigura l-apparat HPOJ..."
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
msgstr "Qed ninstalla pakkett SANE..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Qed ninstalla pakketti..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr "Skannjar fuq apparat multi-funzjoni HP"
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+#, fuzzy
+msgid "Photo memory card access on your HP multi-function device"
+msgstr "Skannjar fuq apparat multi-funzjoni HP"
+
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr "Qed nagħmel il-port tal-printer disponibbli għal CUPS..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr "Qed jinqara d-database ta' printers"
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Għaşliet għal printer lpd remot"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7435,27 +7662,27 @@ msgstr ""
"Biex tipprintja fuq printer remot lpd, trid tagħti l-isem tal-kompjuter kif "
"ukoll l-isem tal-printer fuq dak is-server."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Isem tal-kompjuter remot"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Isem tal-printer remot"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "Isem tal-kompjuter remot nieqes!"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "Isem tal-printer remot nieqes!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Għaşliet għal printer SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7468,35 +7695,35 @@ msgstr ""
"possibbilment l-isem u password tal-user li trid taqbad bih, u informazzjoni "
"dwar il-workgroup."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "Isem tal-kompjuter SMB"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP tas-server SMB"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Isem tal-printer (share)"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Workgroup"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "Trid tagħti l-isem jew l-indirizz IP tas-server"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "Isem tal-printer (share name) nieqes!"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
-msgstr ""
+msgstr "TWISSIJA TA' SIGURTÀ!"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7519,8 +7746,27 @@ msgid ""
"type in Printerdrake.\n"
"\n"
msgstr ""
+"Int se tissettja l-printing fuq kont tal-Windows li jeħtieĥ password. "
+"Minħabba difett fl-arkitettura tal-klijent Samba, il-password titpoĥĥa b'mod "
+"li jinqara' fuq il-linja ta' kmand li juşa dan il-klijent biex tibgħat ix-"
+"xogħol lis-server Windows. Għalhekk huwa possibbli għal kull user li hemm "
+"fuq dan il-kompjuter li jara l-password billi juşa kmand bħal \"ps auxwww"
+"\".\n"
+"\n"
+"Aħna nirrakkomandaw li tagħmel uşu minn waħda minn dawn l-alternattivi (fil-"
+"każi kollha trid taċċerta li l-kompjuters fuq in-network lokali biss "
+"għandhom aċċess għas-server Windows, per eżempju permezz ta' firewall):\n"
+"\n"
+"Uşa kont minngħajr password fuq is-server Windows, per eşempju l-kont \"GUEST"
+"\" jew kont speċjali dedikat għall-printing. Tneħħix il-protezzjoni tal-"
+"password mall-kont personali jew dak tal-amministratur.\n"
+"\n"
+"Issettja s-server tal-Windows biex jagħmel dan il-printer disponibbli taħt "
+"il-protokoll LPD, imbgħad issettja l-printer fuq dan il-kompjuter permezz "
+"tat-tip ta' konnessjoni \"%s\" minn PrinterDrake.\n"
+"\n"
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7528,20 +7774,28 @@ msgid ""
"type in Printerdrake.\n"
"\n"
msgstr ""
+"Issettja s-server tal-Windows biex jagħmel dan il-printer disponibbli taħt "
+"il-protokoll IPP u ssettja l-printing minn din il-magna biex tuĹźa l-"
+"konnessjoni tip \"%s\" minn Printerdrake.\n"
+"\n"
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
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 ""
+"Qabbad il-printer ma' server Linux u ħalli kompjuters Windows juşawh bħala "
+"klijent.\n"
+"\n"
+"Trid tkompli tissettja dan il-printer kif qed tagħmel issa?"
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Għaşliet tal-printer NetWare"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
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 "
@@ -7553,27 +7807,27 @@ msgstr ""
"jista' jkun differenti mill-isem TCP/IP), kif ukoll l-isem tal-kju ta' "
"printjar li tixtieq tuĹźa, u isem u password tal-user jekk hemm bĹźonn."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Server tal-printer"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Isem tal-Kju tal-Ipprintjar"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "Isem tas-server NCP nieqes!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "Isem tal-kju NCP nieqes!"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
msgstr "Għaşliet Printer TCP/Socket"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -7585,19 +7839,19 @@ msgstr ""
"tal-port ġeneralment huwa 9100. Fuq printers oħra dan ivarja. Iċċekkja l-"
"manwal tal-printer."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Isem tal-printer"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "isem tal-printer nieqes"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "URI tal-printer"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
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 "
@@ -7607,11 +7861,11 @@ msgstr ""
"format tal-CUPS jew tal-Foomatic. Innota li mhux kull tip ta' URI huwa "
"aċċettat mill-spoolers kollha."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "Trid iddaħħal URI validu!"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -7619,28 +7873,23 @@ msgstr ""
"Kull printer jeħtieĥ isem, (eş, \"printer\"). Id-deskrizzjoni u post "
"m'għandhomx bşonn jimtlew. Huma kummenti għall-uşu tiegħek."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Isem tal-printer"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Deskrizzjoni"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Post"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr "Qed nipprepara d-database tal-printers..."
-#: ../../printerdrake.pm_.c:1112
-#, fuzzy
+#: ../../printerdrake.pm_.c:1136
msgid "Your printer model"
-msgstr "Isem tal-printer remot"
+msgstr "Il-mudell tal-printer tiegħek"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7654,27 +7903,35 @@ msgid ""
"\n"
"%s"
msgstr ""
+"Printerdrake qabbel l-isem tal-mudell li jirrişulta mill-għarfien tal-"
+"printer mal-mudelli llistjati fid-database sabiex isib l-aħjar għaşla. Din l-"
+"għażla tista' tkun ħażina, speċjalment jekk il-printer anqas jinsab f'din il-"
+"lista. Għalhekk iċċekkja jekk din l-għażla hix tajba u agħfas \"Dan il-"
+"mudell huwa tajjeb\" jekk iva, u jekk le agħfas \"Agħşel mudell manwalment\" "
+"biex tagħşel mudell inti fl-iskrin li jmiss.\n"
+"\n"
+"Għall-printer tiegħek Printerdrake sab:\n"
+"\n"
+"%s"
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-#, fuzzy
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
msgid "The model is correct"
-msgstr "Dan tajjeb?"
+msgstr "Dan il-mudell huwa tajjeb"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-#, fuzzy
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
msgid "Select model manually"
-msgstr "Agħşel user manwalment"
+msgstr "Agħşel mudell manwalment"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Għaşla tal-mudell tal-printer"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Liema mudell ta' printer għandek?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7688,17 +7945,19 @@ msgstr ""
"sew. Jekk il-mudell immarkat m'huwiex tajjeb jew qiegħed fuq \"printer dirett"
"\" ara jekk issibx il-mudell int fil-lista."
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
+"Jekk il-printer tiegħel mhux imnişşel, agħşel mudell kompatibbli (ara l-"
+"manwal tal-printer) jew wieħed simili."
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "Konfigurazzjoni OKI WinPrinter"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7707,20 +7966,30 @@ msgid ""
"first parallel port before you print a test page. Otherwise the printer will "
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
+"Qed tikkonfigura \"OKI laser winprinter\". Dawn il-printers juĹźaw protokoll "
+"ta' kommunikazzjoni speċjali u għalhekk jaħdmu biss meta jkunu mqabbdin ma' "
+"l-ewwel port parallell. Meta l-printer ikun imqabbad ma' port ieħor jew ma' "
+"print server, jekk jogħĥbok l-ewwel qabbdu ma' l-ewwel port parallell qabel "
+"tipprintja paĥna biex tittestja, inkella l-printer ma jaħdimx. It-tip ta' "
+"konnessjoni jiÄĄi injorat mid-driver."
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "Konfigurazzjoni inkjet Lexmark"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
"printer to a local port or configure it on the machine where it is connected "
"to."
msgstr ""
+"Il-drivers tal-printer ipprovduti minn Lexmark jissapportjaw biss printers "
+"lokali, mhux printers fuq magni remoti jew print servers. Jekk jogħĥbok "
+"qabbad il-printer ma' port lokali jew ikkonfigurah fuq il-magna fejn qiegħed "
+"imqabbad."
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7733,7 +8002,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7749,22 +8018,22 @@ msgstr ""
"extra) huma settjati sew. Innota li jekk tagħşel kwalità/reşoluzzjoni għolja "
"ħafna il-printing jista' jdum ħafna işjed u/jew juşa işjed inka."
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Għaşla %s trid tkun numru sħiħ!"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "Għaşla %s trid tkun numru!"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "Għaşla %s barra mil-limiti!"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7773,11 +8042,11 @@ msgstr ""
"Tixtieq tissettja dan il-printer (\"%s\")\n"
"bħala l-printer impliċitu?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "PaÄĄni biex tittestja"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7789,39 +8058,39 @@ msgstr ""
"printers bi ftit memorja tista' anqas tipprintja. F'ħafna kaşi huwa "
"bişşejjed li tipprintja l-paĥna standard."
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "Ebda paÄĄni ta' testjar"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Printja"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "PaÄĄna standard"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr "PaÄĄna alternattiva (Letter)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "PaÄĄna alternattiva (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "PaÄĄna fotografika"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
msgstr "Tipprintjax paĥna għal test"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Qed nipprintja paÄĄna/i ta' test..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7836,7 +8105,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -7844,15 +8113,15 @@ msgstr ""
"Il-paĥna/i intbagħatu fuq il-printer.\n"
"Jista jgħaddi xi ftit ħin qabel jibda' l-printjar.\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr "ÄŚadem sewwa?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr "Printer dirett"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7865,7 +8134,7 @@ msgstr ""
"programmi grafiċi jħalluk tagħżel il-printer jew tbiddel is-setings "
"faċilment.\n"
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
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 "
@@ -7875,8 +8144,8 @@ msgstr ""
"tal-ipprintjar ta' ħafna programmi, imma iddaħħalx l-isem tal-fajl hemm għax "
"dak jissupplixxih il-programm.\n"
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7889,18 +8158,18 @@ msgstr ""
"partikulari. Sempliċiment żid is-setings li trid fuq il-linja ta' kmand, eż "
"\"%s <file>\". "
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#, fuzzy, 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\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
"Biex tikseb lista ta' għaşliet disponibbli għal dan il-printer, aqra l-lista "
"li tidher taħt, jew agħfas il-buttuna \"Lista ta' għaşliet tal-printer\". %"
"s.\n"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -7908,7 +8177,7 @@ msgstr ""
"Dawn huma l-għaşliet disponibbli għal dan il-printer:\n"
"\n"
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -7917,8 +8186,8 @@ msgstr ""
"Biex tipprintja fajl mil-linja ta' kmand (terminal) uĹźa l-kmand \"%s <fajl>"
"\".\n"
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -7928,7 +8197,7 @@ msgstr ""
"tal-ipprintjar ta' ħafna programmi, imma iddaħħalx l-isem tal-fajl hemm għax "
"dak jissupplixxih il-programm.\n"
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -7936,7 +8205,7 @@ msgstr ""
"Biex tikseb lista ta' għaşliet disponibbli għal dan il-printer agħfas il-"
"buttuna \"Lista ta' għaşliet tal-printer\"."
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -7945,7 +8214,7 @@ msgstr ""
"Biex tipprintja fajl mil-linja ta' kmand (terminal) uĹźa l-kmand \"%s <fajl>"
"\" jew \"%s <fajl>\".\n"
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7960,7 +8229,7 @@ msgstr ""
"desktop li tħallik twaqqaf il-printjar kollu, per eşempju jekk jeħlulek il-"
"karti.\n"
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7973,29 +8242,40 @@ msgstr ""
"ta' printjar partikulari. Sempliċiment żid is-setings li trid fuq il-linja "
"ta' kmand, eĹź \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Agħlaq"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Printjar/skannjar fuq \"%s\""
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Printjar/skannjar fuq \"%s\""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Printjar/skannjar fuq \"%s\""
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Printjar fuq printer \"%s\""
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Agħlaq"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "Lista ta' għaşliet tal-printer"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -8003,36 +8283,36 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr "Qed jinqara informazzjoni dwar printer..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "Trasferixxi konfigurazzjoni tal-printer"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8047,7 +8327,7 @@ msgstr ""
"trasferiti, imma xogħlijiet eşistenti ta' printjar ma jiĥux trasferiti.\n"
"Mhux il-kjus kollha jistgħu jiĥu trasferiti minħabba dawn ir-raĥunijiet:\n"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8055,7 +8335,7 @@ msgstr ""
"CUPS ma jaċċettax printers fuq servers Novell jew servers li jibgħatu d-data "
"lill kmand \"free format\".\n"
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -8063,11 +8343,11 @@ msgstr ""
"PDQ jaċċetta biss printers lokali, printers remoti LPD, u printers Socket/"
"TCP.\n"
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD u LPRng ma jaċċettawx printers IPP.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8075,7 +8355,7 @@ msgstr ""
"Apparti minn dan, kjus li ma nħalqux b'dan il-programm jew \"foomatic-"
"configure\" ma jistgħux jiĥu trasferiti."
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8085,7 +8365,7 @@ msgstr ""
"Ukoll, printer ikkonfigurati bil-fajls PPD provduti mill-manufatturi jew bi "
"drivers CUPS nativi ma jistgħux jiĥu trasferiti."
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8094,15 +8374,15 @@ msgstr ""
"\n"
"Immarka l-printers li trid tittrasferixxi u klikkja \"Trasferixxi\"."
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr "Tittrasferixxix printers"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr "Trasferixxi"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8113,11 +8393,11 @@ msgstr ""
"Klikkja \"trasferixxi\" biex tħassar li hemm.\n"
"Tista' wkoll tagħtih isem ĥdid jew taqbşu."
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "L-isem tal-printer jista' jkun fih biss ittri, numri, u underscore"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8126,16 +8406,16 @@ msgstr ""
"il-printer \"%s\" diÄĄĂ  jeĹźisti. \n"
"Trid tħassar il-konfigurazzjoni tiegħu?"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Isem tal-printer ÄĄdid"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr "Qed nittrasferixxi %s..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8144,29 +8424,29 @@ msgstr ""
"Int ittrasferixxejt il-printer li kien impliċitu qabel (\"%s\"). Trid li "
"jerġa' jkun il-printer impliċitu taħt is-sistema l-ġdida %s?"
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr "Qed nerÄĄa' naqra' l-printers..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr "Konfigurazzjoni ta' printer remot"
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "Qed nibda' n-network..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr "Ikkonfigura n-network issa"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "FunzjonalitĂ  tan-network m'hix konfigurata"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8178,11 +8458,11 @@ msgstr ""
"għandu mnejn ma tkunx tuşa l-printer li qed tissettja issa. Kif trid "
"tipproċedi?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr "Kompli kkonfigura mingħajr network"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8198,7 +8478,7 @@ msgstr ""
"\"Konnessjoni\", u wara ssettja l-printer, mill-istess Ċentru tal-Kontroll, "
"sezzjoni \"ÄŚardwer\"/\"Printer\"."
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
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 "
@@ -8208,24 +8488,24 @@ msgstr ""
"jogħġbok iċċekkja l-konfigurazzjoni tal-ħardwer, imbgħad erġa' pprova "
"kkonfigura l-printer remot."
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr "Qed nirristartja s-sistema ta' printjar..."
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "għoli"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr "paranojd"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Qed ninstalla sistema ta' printjar taħt livell ta' sigurtà %s"
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8250,11 +8530,11 @@ msgstr ""
"\n"
"Ĺťgur li trid tikkonfigura l-ipprintjar fuq dan il-kompjuter?"
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr "Qed nistartja s-sistema ta' printjar waqt ix-xegħil"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8276,65 +8556,63 @@ msgstr ""
"\n"
"Trid li terĥa' tixgħel it-tlugħ awtomatiku tas-sistema ta' printjar?"
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr "Qed niċċekkja s-softwer li hemm installat..."
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr "Qed inneħħi LPRng..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr "Qed inneħħi LPD..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "Agħşel \"spooler\" tal-printer"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "Liema sistema ta' printjar (spooler) tixtieq tuĹźa?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Qed nikkonfigura l-printer \"%s\"..."
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
msgstr "Qed ninstalla Foomatic..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Għaşliet tal-printer"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr "Qed jiÄĄi preparat PrinterDrake..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-#, fuzzy
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
msgid "Configuring applications..."
-msgstr "Qed nikkonfigura l-printer \"%s\"..."
+msgstr "Qed nikkonfigura programmi..."
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "Tixtieq tissettja l-printing?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr "Sistema ta' pprintjar: "
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
-#, fuzzy
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -8342,10 +8620,11 @@ msgid ""
"OpenOffice.org."
msgstr ""
"Dawn huma l-printers ikkonfigurati. Klikkja-djoppju fuq printer biex "
-"tbiddillu l-konfigurazzjoni, biex tissettjah bħala printer impliċitu, jew "
-"tara informazzjoni dwaru."
+"tbiddillu l-konfigurazzjoni, biex tissettjah bħala printer impliċitu, "
+"biextara informazzjoni dwaru, jew biex tagħmel printer remot CUPS "
+"aċċessibbli minn StarOffice / OpenOffice.org."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -8355,29 +8634,32 @@ msgstr ""
"tbiddillu l-konfigurazzjoni, biex tissettjah bħala printer impliċitu, jew "
"tara informazzjoni dwaru."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr "ErÄĄa' aqra l-lista ta' printers (biex issib printers remoti CUPS)"
-#: ../../printerdrake.pm_.c:2464
-#, fuzzy
+#: ../../printerdrake.pm_.c:2535
msgid "Change the printing system"
-msgstr "Ikkonfigura sistema tal-ipprintjar"
+msgstr "Ibdel is-sistema tal-ipprintjar"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "ModalitĂ  normali"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Noħroĥ"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr "Trid tikkonfigura dan il-printer?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "Biddel il-konfigurazzjoni tal-printer"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, c-format
msgid ""
"Printer %s\n"
@@ -8386,103 +8668,103 @@ msgstr ""
"Printer %s\n"
"Xi trid tagħmel b'dan il-printer?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr "Agħmel dan!"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "Tip ta' konnessjoni tal-printer"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "Isem, deskrizzjoni u fejn qiegħed il-printer"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr "Ditta, mudell u driver tal-printer"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr "Ditta u mudell tal-printer"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr "Nissettja dan bħala l-printer impliċitu"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr ""
+msgstr "Ĺťid dan il-printer ma' StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr ""
+msgstr "Neħħi dan il-printer minn StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr "Nipprintja paÄĄni biex nittestja"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
msgstr "Inkun naf kif nuĹźa dan il-printer"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "Neħħi printer"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, c-format
-msgid "Removing old printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
msgstr "Qed inneħħi l-printer antik \"%s\"..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Printer impliċitu"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Il-printer \"%s\" issa ssettjat bħala printer impliċitu"
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr ""
+msgstr "Qed jiÄĄi miĹźjud printer ma' StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr ""
+msgstr "Il-printer \"%s\" ÄĄie miĹźjud ma' StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr ""
+msgstr "Ma rnexxielix inĹźid il-printer \"%s\" ma' StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr ""
+msgstr "Qed nitneħħa printer minn StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr ""
+msgstr "Il-printer \"%s\" tneħħa minn StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr ""
+msgstr "Ma rnexxielix inneħħi l-printer \"%s\" minn StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "ŝgur li trid tneħħi l-printer \"%s\"?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Qed jitneħħa printer \"%s\"..."
+msgid "Removing printer \"%s\"..."
+msgstr "Qed jitneħħa l-printer \"%s\"..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
#: ../../proxy.pm_.c:78
@@ -8566,24 +8848,63 @@ msgstr "Il-passwords ma jaqblux. ErÄĄa' pprova!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Ma nistax inĹźid partizzjoni fuq RAID _formattjat_ md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Ma nistax nikteb fajl %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid falla"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid falla (forsi raidtools m'hux installat?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "M'hemmx bişşejjed partizzjonijiet għal RAID livell %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Oqgħod attent jekk tuşa dan il-livell. Il-kompjuter tiegħek jista' ikun işed "
+"faċli tużah, imma jkun vulnerabbli ħafna. Qatt m'għandu jintuża fuq "
+"kompjuter imqabbad ma' oħrajn permezz ta' network jew ma' l-internet. Ma "
+"hemm ebda password."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+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 ""
+"B'dan il-livell ta' sigurtà jsir possibbli li tuşa dan il-kompjuter bħala "
+"server.\n"
+"Is-sigurtà hija għolja biżżejjed biex jintuża bħala server li jaċċetta "
+"konnessjonijiet\n"
+"minn ħafna kompjuters oħra. Jekk int se tuşa l-kompjuter bħala klijent biss, "
+"jew biex taċċessa l-internet, jaqbillek livell iżjed baxx."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "Għaşliet avvanzati"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Għaşliet"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "ÄŚaddem is-sistema tal-awdjo ALSA (Advanced Linux Sound Architecture)"
@@ -8640,7 +8961,7 @@ msgstr ""
"HardDrake iħaddem inkjesta tal-ħardwer, u jista' jsib u \n"
"jikkonfigura apparat ĥdid li twaħħal."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr "Apache huwa server tal-web. Huwa jista' joffri fajls HTML u CGI."
@@ -8714,7 +9035,7 @@ msgstr ""
"Linux Virtual Server, li jintuĹźa biex tibni servers kbar u \n"
"effiċjenti ħafna."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -8791,7 +9112,7 @@ msgstr ""
"kompjuters li jaĥixxu bħala servers għal protokolli li juşaw il-\n"
"mekkaniĹźmu RPC."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -8886,7 +9207,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Qsim ta' fajls"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "Sistema"
@@ -9015,6 +9336,7 @@ msgstr ""
"tal-kompilatur GNU gcc kif ukoll l-aqwa ambjenti ta' şviluppar Sors Miftuħ."
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
msgstr "Ċentru tal-Kontroll Mandrake"
@@ -9120,14 +9442,12 @@ msgstr ""
"il-prodotti huma disponibbli online fuq il-ħanut elettroniku tagħna."
#: ../../share/advertising/13-Nvert.pl_.c:9
-#, fuzzy
msgid ""
"For more information on MandrakeSoft's Professional Services and commercial "
"offerings, please see the following web page:"
msgstr ""
"Għal işjed tagħrif dwar is-servizzi professjonali ta' MandrakeSoft kif ukoll "
-"offerti kummerċjali, jekk jogħġbok ċemplilna fuq in-numru \"toll-free\" li "
-"tara hawn:"
+"offerti kummerċjali, jekk jogħġbok ara din il-website:"
#: ../../share/advertising/13-Nvert.pl_.c:11
msgid "http://www.mandrakesoft.com/sales/contact"
@@ -9137,6 +9457,15 @@ msgstr "http://www.mandrakesoft.com/sales/contact"
msgid "Installing packages..."
msgstr "Qed ninstalla pakketti..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Jekk jogħĥbok oħroĥ mid-desktop u agħfas Ctrl-Alt-Backspace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Jekk jogħĥbok oħroĥ u erĥa' idħol fuq %s biex tara l-bidliet."
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -9145,6 +9474,145 @@ msgstr ""
"Ma nistax naqra t-tabella tal-partizzjoni - hija mħarbta wisq :(\n"
"Ča nipprova nkompli nneħħi partizzjonijet ħşiena"
+#: ../../standalone/drakTermServ_.c:189
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Konfigurazzjoni tat-Terminal Server tal-Mandrake"
+
+#: ../../standalone/drakTermServ_.c:204
+msgid "Enable Server"
+msgstr "Ippermetti server"
+
+#: ../../standalone/drakTermServ_.c:211
+msgid "Disable Server"
+msgstr "DiĹźabilita server"
+
+#: ../../standalone/drakTermServ_.c:219
+msgid "Start Server"
+msgstr "Startja server"
+
+#: ../../standalone/drakTermServ_.c:226
+msgid "Stop Server"
+msgstr "Waqqaf server"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr "Etherboot Floppy/ISO"
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr "Net Boot Images"
+
+#: ../../standalone/drakTermServ_.c:240
+msgid "Add/Del Users"
+msgstr "ŝid/neħħi users"
+
+#: ../../standalone/drakTermServ_.c:242
+msgid "Add/Del Clients"
+msgstr "ŝid/neħħi klijenti"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Għajnuna"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr "Flopi \"boot\""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr "ISO \"boot\""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr "Ibni kernel sħiħ -->"
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr "Dan jieħu diversi minuti."
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr "Ebda kernel m'hu magħşul!"
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr "Ibni NIC waħda -->"
+
+#: ../../standalone/drakTermServ_.c:533
+msgid "No nic selected!"
+msgstr "Ebda NIC m'hu magħşul!"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr "Ibni kernels kollha -->"
+
+#: ../../standalone/drakTermServ_.c:550
+msgid "<-- Delete"
+msgstr "<-- ÄŚassar"
+
+#: ../../standalone/drakTermServ_.c:557
+msgid "Delete All NBIs"
+msgstr "ÄŚassar NBIs kollha"
+
+#: ../../standalone/drakTermServ_.c:619
+msgid "Add User -->"
+msgstr "Ĺťid user -->"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr "<-- ÄŚassar user"
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr "Ĺťid klijent -->"
+
+#: ../../standalone/drakTermServ_.c:733
+msgid "<-- Del Client"
+msgstr "<- ÄŚassar klijent"
+
+#: ../../standalone/drakTermServ_.c:739
+msgid "dhcpd Config..."
+msgstr "Konfigurazznoji dhcpd..."
+
+#: ../../standalone/drakTermServ_.c:886
+msgid "Write Config"
+msgstr "Ikteb konfig."
+
+#: ../../standalone/drakTermServ_.c:944
+msgid "Please insert floppy disk:"
+msgstr "Jekk jogħĥbok daħħal flopi:"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr "Ma nistax naċċessa l-flopi!"
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr "Il-flopi tista' titneħħa issa"
+
+#: ../../standalone/drakTermServ_.c:953
+msgid "No floppy drive available!"
+msgstr "M'hemmx drive flopi!"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr "Fajl ISO \"etherboot\" hija %s"
+
+#: ../../standalone/drakTermServ_.c:964
+#, fuzzy
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr "Kien hemm xi problema!"
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr "L-ewwel irid jinħoloq /etc/dhcp.d!"
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "Problema!"
@@ -9197,6 +9665,10 @@ msgstr ""
"Jekk jogħĥbok agħşel għal kull pass, jekk tridhiex tkun bħal din l-"
"installazzjoni, jew tkunx manwali"
+#: ../../standalone/drakautoinst_.c:83
+msgid "Creating auto install floppy"
+msgstr "Qed jinħoloq flopi awto-installazzjoni"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -9209,12 +9681,12 @@ msgstr ""
"\n"
"Il-parametri għall-awto-installazzjoni jinstabu fil-parti tax-xellug."
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Prosit!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9222,28 +9694,19 @@ msgstr ""
"Il-floppy ÄĄie ÄĄenerat kif mitlub.\n"
"Issa tista' tirrepeti l-installazzjoni."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr "Awto-installazzjoni"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr "Ĺťid element"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr "Neħħi l-aħħar element"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
@@ -9253,7 +9716,7 @@ msgstr ""
" Rapport DrakBackup\n"
"\n"
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9265,19 +9728,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9289,63 +9740,85 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr "progress totali"
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr "ÄŚu backup ta' fajls tas-sistema..."
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
msgstr "Fajls ta' backup fil-ħard disk..."
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
msgstr "ÄŚu backup ta' fajls tal-users..."
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr "Progress tal-backup lill-ħard disk..."
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
msgstr "Ču backup ta' fajls oħrajn..."
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, fuzzy, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
"lista ta' fajls mibgħuta bl-FTP : %s\n"
" "
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
+#, fuzzy
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
"\n"
-"(!) Problema fil-konnessjoni FTP. Ma kienx possibbli nibgħat il-fajls bl-"
-"FTP.\n"
+" Problema fil-konnessjoni FTP. Ma kienx possibbli nibgħat il-fajls bl-FTP.\n"
+
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr "(!) Problema biex jintbagħat imejl. \n"
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+msgid " Error during mail sending. \n"
+msgstr " Problema biex jintbagħat imejl. \n"
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
msgstr "Għaşla ta' fajls"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr "Agħşel fajls jew direttorju u klikkja \"ŝid\""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -9353,26 +9826,26 @@ msgstr ""
"\n"
"Jekk jogħĥbok immarka l-għaşliet kollha li għandek bşonn.\n"
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Dawn l-għaşliet jieħdu backup u jirrestawraw il-fajls kollha tad-direttorju /"
"etc.\n"
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr "ÄŚu backup tal-fajls tas-sistema (direttorju /etc)"
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr "Uşa backups inkrementali (tħassarx l-antiki)"
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Tinkludix fajls kritiċi (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -9380,83 +9853,77 @@ msgstr ""
"B'din l-għaşla tkun tista' tirrestawra kwalinkwa verşjoni\n"
"tad-direttorju /etc."
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
msgstr "Jekk jogħĥbok agħşel il-users kollha li trid tinkludi f'dan il-backup."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr "Tinkludix il-cache tal-browser"
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Uşa backups inkrementali (tħassarx l-antiki)"
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
msgstr "Neħħi l-magħşula"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr "Users"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
msgstr "Uşa konnessjoni FTP għall-backup"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
msgstr "Jekk jogħĥbok daħħal l-isem jew IP tal-kompjuter."
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
"Jekk jogħĥbok daħħal id-direttorju fejn\n"
" trid tpoÄĄÄĄi l-backup fuq il-kompjuter."
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
msgstr "Jekk jogħĥbok daħħal il-login"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
msgstr "Jekk jogħĥbok daħħal il-password"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
msgstr "Ftakar dan il-password"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "Konnessjoni FTP"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Konnessjoni Ĺźgura"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr "Uşa CD/DVDROM għall-backup"
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
msgstr "Jekk jogħĥbok agħşel id-daqs tas-CD"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
msgstr "Jekk jogħĥbok immarka hawn jekk qed tuşa medja CDRW"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr "Jekk jogħĥbok immarka hawn jekk trid tħassar is-CDRW qabel"
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
@@ -9464,7 +9931,7 @@ msgstr ""
"Jekk jogħĥbok immarka hawn jekk trid tinkludi\n"
" boot tal-installazzoni fuq is-CD."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -9472,16 +9939,21 @@ msgstr ""
"Jekk jogħĥbok daħħal l-isem tal-apparat CD Writer\n"
" eĹź: 0,1,0"
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
msgstr "Uşa tape għall-backup"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr "Jekk jogħĥbok daħħal l-isem tal-apparat għall-backup"
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Jekk jogħĥbok immarka hawn jekk trid tħassar is-CDRW qabel"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -9489,51 +9961,57 @@ msgstr ""
"Jekk jogħĥbok daħħal id-daqs massimu\n"
" permess għal DrakBackup"
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
+#: ../../standalone/drakbackup_.c:1497
+#, fuzzy
+msgid "Please enter the directory to save to:"
msgstr "Jekk jogħĥbok daħħal id-direttorju fejn tikteb:"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
msgstr "Uşa kwota għall-fajls tal-backup."
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
msgstr "Network"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr "ÄŚard disk / NFS"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Tip"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr "kull siegħa"
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr "kuljum"
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr "kull ĥimgħa"
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr "kull xahar"
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
msgstr "UĹźa daemon"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -9541,7 +10019,7 @@ msgstr ""
"Jekk jogħĥbok agħşel l-intervall\n"
"ta' ħin għal kull backup"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
@@ -9549,71 +10027,67 @@ msgstr ""
"Jekk jogħĥbok agħşel\n"
"il-medja għall-backup."
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Uşa ħard disk bid-daemon"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "UĹźa FTP bid-daemon"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+#, fuzzy
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr "Aċċerta li d-daemon \"cron\" huwa nkluż fis-servizzi."
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr "Ibgħat rapport bl-imejl wara kull backup lill:"
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "Xiex"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "Fejn"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "Meta"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
msgstr "Işjed għaşliet"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
msgstr "Konfigurazzjoni DrakBackup"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
msgstr "Jekk jogħĥbok agħşel fejn trid tieħu backup"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr "fuq ħard disk"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr "fuq in-network"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
msgstr "Jekk jogħĥbok agħşel ta' xiex trid tieħu backup"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
msgstr "ÄŚu backup tas-sistema"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr "ÄŚu backup tal-users"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr "Agħşel user manwalment"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
@@ -9621,7 +10095,7 @@ msgstr ""
"\n"
"Sorsi tal-backup: \n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
@@ -9629,7 +10103,7 @@ msgstr ""
"\n"
"- Fajls tas-sistema:\n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
@@ -9637,7 +10111,7 @@ msgstr ""
"\n"
"- Fajls tal-user:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
@@ -9645,7 +10119,7 @@ msgstr ""
"\n"
"- Fajls oħrajn:\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
@@ -9654,16 +10128,45 @@ msgstr ""
"\n"
"- Ikteb fuq ħard disk fid-direttorju : %s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Apparat maws: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"- Ikteb bl-FTP fuq kompjuter : %s\n"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
"\n"
"- Ikteb bl-FTP fuq kompjuter : %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -9672,7 +10175,7 @@ msgstr ""
"\t\t isem ta' user: %s\n"
"\t\t fuq direttorju: %s \n"
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
@@ -9680,19 +10183,19 @@ msgstr ""
"\n"
"- Għaşliet:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr "\tTinkludix fajls tas-sistema\n"
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr "\tBackups juĹźaw tar u bzip2\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr "\tBackups juĹźaw tar u gzip\n"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
@@ -9701,27 +10204,41 @@ msgstr ""
"\n"
"- Daemon (%s) include :\n"
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr "\t-ÄŚard disk.\n"
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr "\t-Network bl-FTP.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr "\t-Network bl-SSH.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t-Network bl-FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t-Network bl-FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Ebda konfigurazzjoni, agħşel Saħħar jew Avvanzat\n"
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
@@ -9729,7 +10246,7 @@ msgstr ""
"Lista ta' informazzjoni x'tirrestawra:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
@@ -9737,132 +10254,135 @@ msgstr ""
"Lista ta' informazzjoni korrotta:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
msgid "Please uncheck or remove it on next time."
msgstr "Jekk jogħĥbok neħħiha d-darba li jmiss."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr "Fajls tal-backup ÄĄew korrotti"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr " L-informazzjoni kollha magħşula ĥiet..........."
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr " restawrata għal fuq %s "
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
msgid " Restore Configuration "
msgstr " Konfigurazzjoni ta' restawr....."
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr "OK biex tirrestawra fajls oħra."
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Lista ta' users x'tirrestawra (l-iżjed data riċenti ta' kull user biss "
"importanti)"
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
msgstr "ÄŚu backup ta' fajls tas-sistema qabel:"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
msgid "please choose the date to restore"
msgstr "jekk jogħĥbok agħşel data biex tirrestawra"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
msgstr "Uşa ħard disk għal backup"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+msgid "Please enter the directory to save:"
+msgstr "Jekk jogħĥbok daħħal id-direttorju fejn tikteb:"
+
+#: ../../standalone/drakbackup_.c:2416
+msgid "FTP Connection"
+msgstr "Konnessjoni FTP"
+
+#: ../../standalone/drakbackup_.c:2424
+msgid "Secure Connection"
+msgstr "Konnessjoni Ĺźgura"
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
msgstr "Irrestawra mill-ħard disk"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr "Jekk jogħĥbok daħħal id-direttorju fejn qegħdin il-backups"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
msgstr "Agħşel media ieħor biex tirrestawra minnu"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
msgid "Other Media"
msgstr "Media oħrajn"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
msgid "Restore system"
msgstr "Irrestawra sistema"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
msgstr "Irrestawra users"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
msgstr "Irrestawra ieħor"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr "Agħşel direttorju biex tirrestawra (minnflok / )"
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Agħmel backup ĥdid qabel tirrestawra (għal backups inkrementali biss)"
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr "Neħħi d-direttorji tal-users qabel tirrestawra."
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr "Irrestawra l-backups kollha"
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
msgid "Custom Restore"
msgstr "Restawr personalizzat"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Għajnuna"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "Ta' qabel"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "Ikteb"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
msgstr "Ibni backup"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
msgstr "Irrestawra"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "Li jmiss"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -9870,7 +10390,7 @@ msgstr ""
"Jekk jogħĥbok ibni backup qabel tirrestawraha...\n"
" jew ivverifika li d-direttorju huwa tajjeb."
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
@@ -9880,31 +10400,35 @@ msgstr ""
" ir-rapport ma ntbagħatx.\n"
" Jekk jogħĥbok ikkonfigura s-sendmail"
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Lista ta' pakketti x'tinstalla"
+#: ../../standalone/drakbackup_.c:2933
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Dawn huma l-pakketti li se jiÄĄu nstallati"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
+#, fuzzy
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
"Problema biex jintbagħat fajl bl-FTP.\n"
" Jekk jogħĥbok ikkoreĥi l-konfigurazzjoni FTP."
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
msgstr "Jekk jogħĥbok agħşel informazzjoni x'tirrestawra"
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
msgstr "Jekk jogħĥbok agħşel media għall-backup..."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
msgstr "Jekk jogħĥbok agħşel informazzjoni x'tikkopja"
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -9912,77 +10436,77 @@ msgstr ""
"Ebda fajl ta' konfigurazzjoni ma nstab.\n"
"Agħşel Saħħar jew Avvanzat."
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr "Qed jiÄĄi Ĺźviluppat... stenna ftit."
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
msgid "Backup system files"
msgstr "ÄŚu backup tal-fajls tas-sistema"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
msgid "Backup user files"
msgstr "ÄŚu backup tal-fajls tal-users"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
msgid "Backup other files"
msgstr "Ču backup ta' fajls oħrajn"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr "Progress totali"
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr "qed jintbagħatu fajls bl-FTP"
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
msgid "Sending files..."
msgstr "Qed nibgħat fajls..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr "Lista ta' informazzjoni x'tinkludi fuq is-CDROM"
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
msgid "Please enter the cd writer speed"
msgstr "Jekk jogħġbok daħħal il-veloċità tas-CD Writer"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr "Jekk jogħĥbok daħħal l-isem tal-apparat tas-CD Writer (eş, 0,1,0)"
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
msgstr ""
"Jekk jogħĥbok ittikkja jekk trid tinkludi \"boot\" tal-installazzjoni fuq is-"
"CD."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
msgid "Backup Now from configuration file"
msgstr "ÄŚu backup issa minn fajl ta' konfigurazzjoni"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
msgid "View Backup Configuration."
msgstr "Ara Konfigurazzjoni Backup."
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
msgid "Wizard Configuration"
msgstr "Konfigurazzjoni b'Saħħar"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
msgid "Advanced Configuration"
msgstr "Konfigurazzjoni Avvanzata"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
msgstr "ÄŚu Backup Issa"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -10042,7 +10566,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10056,7 +10580,7 @@ msgstr ""
" jew mydomain fil-fajl /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -10132,7 +10656,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -10183,13 +10707,18 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft ta' DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10221,7 +10750,7 @@ msgstr ""
" il-programm. Jekk le, ikteb lill-Free Software Foundation, Inc., \n"
" 59, Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -10297,7 +10826,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -10315,7 +10844,7 @@ msgstr ""
"jintbagħat lis-server.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10336,7 +10865,7 @@ msgstr ""
"tista' titlef l-informazzjoni kollha. Huwa mportanti li\n"
"toqgħod attent u ma tbiddilx il-fajls tal-backup manwalment.\n"
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -10416,99 +10945,523 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "L-installazzjoni ta' %s falliet. Dan kien il-messaÄĄÄĄ:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr "Għodda għar-rapporti dwar bugs tal-Mandrake"
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr "Saħħar ta' l-ewwel darba"
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr "Għodda tas-sinkronizzazzjoni"
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+msgid "Standalone Tools"
+msgstr "Għodda indipendenti"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr "HardDrake"
+
+#: ../../standalone/drakbug_.c:54
+msgid "Mandrake Online"
+msgstr "Mandrake Online"
+
+#: ../../standalone/drakbug_.c:55
+msgid "Menudrake"
+msgstr "Menudrake"
+
+#: ../../standalone/drakbug_.c:56
+msgid "Msec"
+msgstr "Msec"
+
+#: ../../standalone/drakbug_.c:57
+msgid "Remote Control"
+msgstr "Kontroll remot"
+
+#: ../../standalone/drakbug_.c:58
+msgid "Software Manager"
+msgstr "ManiÄĄÄĄjar tas-sofwer"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr "Urpmi"
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr "Għodda għall-migrazzjoni mill-Windows"
+
+#: ../../standalone/drakbug_.c:61
+msgid "Userdrake"
+msgstr "Userdrake"
+
+#: ../../standalone/drakbug_.c:62
+msgid "Configuration Wizards"
+msgstr "Sħaħar tal-Konfigurazzjoni"
+
+#: ../../standalone/drakbug_.c:71
+msgid "Application:"
+msgstr "Programm:"
+
+#: ../../standalone/drakbug_.c:75
+msgid "Package: "
+msgstr "Pakkett:"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr "Kernel:"
+
+#: ../../standalone/drakbug_.c:83
+msgid "Release: "
+msgstr "ÄŚarÄĄa:"
+
+#: ../../standalone/drakbug_.c:87
+#, fuzzy
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+"\n"
+"\n"
+"Biex tissottometti rapport dwar bug, klikkja l-buttuna \"Rapport\".\n"
+"Dan jiftaħ web browser fuq il-paĥna https://www.bugzilla.com\n"
+"fejn issib formola x'timla'. L-informazzjoni li wrejt hawn fuq jiÄĄi\n"
+"trasferit lil dak is-server.\n"
+"\n"
+
+#: ../../standalone/drakbug_.c:101
+msgid "Not installed"
+msgstr "Mhux installat"
+
+#: ../../standalone/drakbug_.c:110
+msgid "Report"
+msgstr "Rapport"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr "qed naqbad mas-saħħar Bugzilla ..."
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Ebda browser disponibbli. Jekk jogħĥbok installa wieħed"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Konfigurazzjoni network (%d adattur/i)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profil: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "ÄŚassar profil..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Profil xi tħassar:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Profil ÄĄdid..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr "Isem tal-profil ÄĄdid (il-profil il-ÄĄdid ikun kopja ta' dak kurrenti) :"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Isem tal-kompjuter: "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Aċċess għall-internet"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Tip:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Gateway:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Interfaċċja:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Stat:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "Stenna ftit"
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Ikkonfigura l-aċċess għall-internet..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "Konfigurazzjoni LAN"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Driver"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Interfaċċja"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protokoll"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Stat"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Ikkonfigura network lokali (LAN)..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "Klikkja hawn biex tħaddem is-saħħar ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Saħħar..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Applika"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Stenna ftit... qed napplika l-konfigurazzjoni"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Imqabbad"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Mhux imqabbad"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Aqbad..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Aqta'..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+"Twissija: instabet konnessjoni oħra tal-Internet, forsi qed tuşa n-network "
+"tiegħek"
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"M'għandek ebda interfaċċja konfigurata.\n"
+"L-ewwel ikkonfigurahom billi tikklikkja \"ikkonfigura\""
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "Konfigurazzjoni LAN"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Adattur %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Protokoll Boot"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Tella' fil-bidu"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "Klijent DHCP"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "ixgħel issa"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "itfi issa"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Din l-interfaċċja għadha ma ġietx konfigurata.\n"
+"Čaddem is-saħħar tal-konfigurazzjoni mill-window ewlenija"
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Għad m'għandekx konnessjoni mal-internet.\n"
+"Oħloq waħda billi tikklikkja \"Ikkonfigura\""
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Konfigurazzjoni tal-konnessjoni internet"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Konfigurazzjoni tal-konnessjoni internet"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Tip ta' konnessjoni: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parametri"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Gateway"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Kard Ethernet"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "Klijent DHCP"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "uĹźu: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Isem tal-modulu"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Daqs"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "ħolqien ta' diska \"boot\""
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "standard"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Problema DrakFloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "verĹźjoni tal-kernel"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Ä enerali"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Taqsima esperti"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "argumenti opzjonali mkinitrd"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Ĺťid modulu"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "ĥiegħel"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "jekk meħtieĥ"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "neħħi moduli SCSI"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "neħħi moduli RAID"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Neħħi modulu"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "RiĹźultat"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Oħloq id-diska"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Aċċerta li hemm diska fl-apparat %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"M'hemmx diska fl-apparat %s, jew ma tistax tinkiteb.\n"
+"Jekk jogħĥbok daħħal waħda."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Ma stajtx noħloq proċess: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Ma stajtx nagħlaq mkbootdisk sew: \n"
+"%s \n"
+"%s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr "Fittex fonts installati"
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr "Neħħi l-marka minn fonts installati"
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr "fittex fonts kollha"
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
msgid "no fonts found"
msgstr "ma stabux fonts"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "lest"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr "ma stajtx insib fonts fuq il-partizzjonijiet immuntati"
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr "Erĥa' agħşel fonts tajbin"
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr "ma stajtx insib fonts.\n"
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr "Fittex fonts fil-lista ta' nstallati"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr "Ikkupjar ta' fonts"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
msgid "True Type fonts installation"
msgstr "Installazzjoni ta' fonts TrueType"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr "stenna sakemm għaddej ttmkfdir..."
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr "Installazzjoni TrueType lest"
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr "KonverĹźjoni ta' fonts"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr "qed nibni type1inst"
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr "Riferenzi għall-Ghostscript"
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr "KonverĹźjoni ta' fonts ttf"
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr "KonverĹźjoni ta' fonts pfm"
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr "Issopprimi fajls temporanji"
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr "Irristartja XFS"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr "Issopprimi fajls ta' fonts"
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
msgid "xfs restart"
msgstr "ristartja l-xfs"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10522,107 +11475,107 @@ msgstr ""
"-Tista' tinstalla fonts bis-sistema normali. F'kaşi rari, fonts ħşiena "
"jistgħu iwaħħlulek is-server X."
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
msgid "Fonts Importation"
msgstr "Importazzjoni ta' fonts"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr "Ä ib fonts mill-Windows"
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr "Neħħi fonts"
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Għaşliet avvanzati"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
msgstr "Lista ta' fonts"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
msgid "Choose the applications that will support the fonts :"
msgstr "Agħşel il-programmi li se juşaw il-fonts :"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
msgstr "Printers ġeneriċi"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr "Agħşel il-fajl tal-font jew direttorju u agħfas \"ŝid\""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
msgstr "Installa lista"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr "Klikkja hawn jekk inti ċert"
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr "Klikkja hawn jekk m'intix ċert."
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr "Xejn magħşul"
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
msgid "Selected All"
msgstr "Kollox magħşul"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
msgstr "Neħħi lista"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr "Testijiet preliminari"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
msgstr "Ikkopja fonts għas-sistema"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr "Installa u kkonverti fonts"
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
msgid "Post Install"
msgstr "Wara l-installazzjoni"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
msgstr "Neħħi fonts mis-sistema"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
msgid "Post Uninstall"
msgstr "Wara t-tneħħija"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Qsim tal-konnessjoni tal-internet"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr "Jiddispjaċini, aħna nissapportjaw biss kernels 2.4."
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Il-qsim tal-konnessjoni tal-internet huwa mixgħul"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10634,31 +11587,31 @@ msgstr ""
"\n"
"X'tixtieq tagħmel?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "itfi"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "ikkanċella"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "ri-konfigura"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Qed innişşel is-servers..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Il-qsim tal-konnessjoni tal-internet issa mitfi"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Il-qsim tal-konnessjoni tal-internet huwa mitfi"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10670,19 +11623,19 @@ msgstr ""
"\n"
"X'tixtieq tagħmel?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "ħaddem"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Qed intella' s-servers..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Qsim tal-konnessjoni tal-internet issa mixgħul."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10698,21 +11651,21 @@ msgstr ""
"Nota: irid ikollok adattur tal-internet dedikat biex tissettja n-network "
"lokali (LAN)"
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interfaċċja %s (tuża modulu %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Interfaċċja %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Ebda adattur tan-network fuq is-sistema!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10720,11 +11673,11 @@ msgstr ""
"Ebda adattur tan-network ethernet ma nstab fuq is-sistema tiegħek. Jekk "
"jogħĥbok ħaddem l-għodda tal-konfigurazzjoni tal-ħardwer."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Interfaċċja tan-network"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10739,7 +11692,7 @@ msgstr ""
"\n"
"Se nissettja n-network lokali fuq dak l-adattur."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -10747,11 +11700,11 @@ msgstr ""
"Jekk jogħĥbok agħşel liema adattur tan-network se jkun imqabbad man-network "
"lokali (LAN)."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr "Interfaċċja tan-network diġà konfigurata"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10766,15 +11719,15 @@ msgstr ""
"\n"
"Tista' tagħmilha manwalment imma trid tkun taf x'qed tagħmel."
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr "Ri-konfigurazzjoni awtomatika"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr "Uri l-konfigurazzjoni kurrenti tal-interfaċċja"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10791,7 +11744,7 @@ msgstr ""
"Attribuzzjoni IP: %s\n"
"Driver: %s"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
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 C-Class Network that "
@@ -10810,33 +11763,33 @@ msgstr ""
"DCHP.\n"
"\n"
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr "Network lokali klassi C"
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr "IP ta' dan is-server DHCP"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr "Erġa' kkonfigura l-interfaċċja u s-server DHCP"
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "In-network lokali ma jispiċċax b' \".0\", ħiereġ 'il barra."
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Possibbilment hemm konflitt fl-indirizz LAN fil-konfigurazzjoni ta' %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Instabet konfigurazzjoni ta' firewall!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10844,20 +11797,20 @@ msgstr ""
"Twissija: Instabet konfigurazzjoni eşistenti ta' firewall. Għandek mnejn "
"tkun trid tirranÄĄaha manwalment wara l-installazzjoni."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Qed nikkonfigura..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Qed nikkonfigura scripts, ninstalla softwer u ntella' servers..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Problemi fl-installazzjoni tal-pakkett %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10867,23 +11820,23 @@ msgstr ""
"Issa tista taqsam konnessjonijiet ma' kompjuters oħra fuq in-network lokali, "
"permezz tal-faċilità ta' konfigurazzjoni awtomatika (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "Dan il-konfigurazzjoni diĥà sar, imma bħalissa mitfi."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Dan il-konfigurazzjoni diĥà sar, u bħalissa attivat."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Ebda qsim tal-konnessjoni għadu ma ĥie konfigurat."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Konfigurazzjoni tal-qsim tal-konnessjoni mal-internet"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10898,214 +11851,6 @@ msgstr ""
"\n"
"Ikklikkja \"Ikkonfigura\" biex tħaddem is-saħħar tal-konfigurazzjoni."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Konfigurazzjoni network (%d adattur/i)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "ÄŚassar profil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Profil xi tħassar:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Profil ÄĄdid..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr "Isem tal-profil ÄĄdid (il-profil il-ÄĄdid ikun kopja ta' dak kurrenti) :"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Isem tal-kompjuter: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Aċċess għall-internet"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tip:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Interfaċċja:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Stat:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Stenna ftit"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Ikkonfigura l-aċċess għall-internet..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Konfigurazzjoni LAN"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Driver"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interfaċċja"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokoll"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Stat"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Ikkonfigura network lokali (LAN)..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Klikkja hawn biex tħaddem is-saħħar ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Saħħar..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Applika"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Stenna ftit... qed napplika l-konfigurazzjoni"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Imqabbad"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Mhux imqabbad"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Aqbad..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Aqta'..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Twissija: instabet konnessjoni oħra tal-Internet, forsi qed tuşa n-network "
-"tiegħek"
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"M'għandek ebda interfaċċja konfigurata.\n"
-"L-ewwel ikkonfigurahom billi tikklikkja \"ikkonfigura\""
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Konfigurazzjoni LAN"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adattur %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Protokoll Boot"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Tella' fil-bidu"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "Klijent DHCP"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "ixgħel issa"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "itfi issa"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Din l-interfaċċja għadha ma ġietx konfigurata.\n"
-"Čaddem is-saħħar tal-konfigurazzjoni mill-window ewlenija"
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Għad m'għandekx konnessjoni mal-internet.\n"
-"Oħloq waħda billi tikklikkja \"Ikkonfigura\""
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Konfigurazzjoni tal-konnessjoni internet"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Konfigurazzjoni tal-konnessjoni internet"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Tip ta' konnessjoni: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametri"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Kard Ethernet"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "Klijent DHCP"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Livell ta' SigurtĂ "
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Ċentru tal-Kontroll"
@@ -11114,63 +11859,92 @@ msgstr "Ċentru tal-Kontroll"
msgid "Choose the tool you want to use"
msgstr "Agħşel l-għodda li trid tuşa"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\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 ""
+"XawTV mhux installat!\n"
+"\n"
+"\n"
+"Jekk għandek kard TV imma DrakX ma ndunax biha (m'hemmx modulu bttv\n"
+"ĥo \"/etc/modules\") u anqas installa xawtv, jekk jogħĥbok ibgħat ir-"
+"riĹźultat\n"
+"ta' \"lspcidrake -v -f\" lill \"install\\@mandrakesoft.com\" bis-suÄĄÄĄett\n"
+"\"undetected TV card\".\n"
+"\n"
+"\n"
+"Tista' tinstallah billi tittajpja \"urpmi xawtv\" bħala root, ĥo terminal."
+
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
msgstr "Kanada (cable)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr "Stati Uniti (bcast)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr "Stati Uniti (cable)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr "Stati Uniti (cable-hrc)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr "Ċina (bcast)"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr "Ä appun (bcast)"
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr "Ä appun (cable)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
msgstr "Ewropa tal-Lvant"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+msgid "France [SECAM]"
+msgstr "Franza [SECAM]"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
msgstr "Irlanda"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
msgstr "Ewropa tal-Punent"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
msgstr "Awstralja"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr "New Zealand"
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr "Afrika t'Isfel"
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr "ArÄĄentina"
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
@@ -11178,27 +11952,43 @@ msgstr ""
"Jekk jogħĥbok,\n"
"daħħal it=\"TV norm\" u l-pajjiş"
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr "TV norm :"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr "ReÄĄjun :"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr "Tfittix għal stazzjonijiet tat-TV għaddej"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr "Qed infittex stazzjonijiet tat-TV"
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+msgid "There was an error while scanning for TV channels"
+msgstr "Kien hemm problema waqt it-tfittix għal kanali televişivi"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr "XawTV mhux installat!"
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr "Il-ÄĄurnata t-tajba!"
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr "Issa tista' tħaddem xawtv (taħt l-XWindows)!\n"
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
-msgstr ""
+msgstr "Ebda kard TV ma nstabet!"
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -11209,6 +11999,14 @@ msgid ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+"Ebda kard TV ma nstabet fuq il-kompjuter. Jekk jogħġbok iċċekkja li hemm "
+"kard li tieħu l-Linux imqabbda sew.\n"
+"\n"
+"\n"
+"Tista' şşur id-database ta' apparat magħruf fuq:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
@@ -11243,7 +12041,7 @@ msgstr "Ma stajtx nibda' l-aÄĄÄĄornament \"live\"!!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr "Il-bidliet saru, imma biex ikunu effettivi trid tilloggja 'l barra"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -11291,21 +12089,21 @@ msgstr "/Għa_şliet"
msgid "/Options/Test"
msgstr "/Għaşliet/Test"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Għajnuna"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr "/Għajnuna/_Dwar..."
#: ../../standalone/logdrake_.c:118
msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
+msgstr ""
+"-monotype-andale mono-medium-r-*-*-*-100-*-*-*-*-iso8859-3,-adobe-courier-"
+"medium-r-*-*-*-100-*-*-*-*-iso8859-3,*"
#: ../../standalone/logdrake_.c:119
msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
+msgstr ""
+"-monotype-andale mono-bold-r-*-*-*-100-*-*-*-*-iso8859-3,-adobe-courier-bold-"
+"r-*-*-*-100-*-*-*-*-iso8859-3,*"
#: ../../standalone/logdrake_.c:173
msgid "User"
@@ -11355,7 +12153,7 @@ msgstr "Kalendarju"
msgid "Content of the file"
msgstr "Kontenut tal-fajl"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr "Twissija Imejl/SMS"
@@ -11364,11 +12162,11 @@ msgstr "Twissija Imejl/SMS"
msgid "please wait, parsing file: %s"
msgstr "stenna ftit... qed jinqara l-fajl: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
msgstr "Konfigurazzjoni Imejl/twissijiet SMS"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
@@ -11378,63 +12176,94 @@ msgstr ""
"\n"
"Hawn, tista' tissettja s-sistema tal-allerti.\n"
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Isem tad-dominju"
#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
+#, fuzzy
+msgid "Ftp Server"
+msgstr "Waqqaf server"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Server tal-imejl Postfix, news server Inn"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "Startja server"
#: ../../standalone/logdrake_.c:422
+#, fuzzy
+msgid "SSH Server"
+msgstr "Server NIS"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Servizzi"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Server tal-printer"
+
+#: ../../standalone/logdrake_.c:431
msgid "service setting"
msgstr "seting tas-servizz"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr "Tirċievi twissija jekk wieħed minn dawn is-servizzi ma jibqax jaħdem"
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
msgstr "seting tat-tagħbija"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr "Tirċievi twissija jekk it-tagħbija taqbeż dan il-valur"
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
msgstr "konfigurazzjoni tal-allerti"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr "Ikkonfigura l-mod kif is-sistema tibgħatlek twissijiet"
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Ikteb b'isem ÄĄdid..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Jekk jogħĥbok agħşel it-tip ta' maws."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "Ebda serial_usb ma nstab\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Emula t-tielet buttuna?"
+#: ../../standalone/printerdrake_.c:49
+msgid "Reading printer data ..."
+msgstr "Qed tinqara informazzjoni dwar printer..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "Qed infittex apparat..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -11455,11 +12284,12 @@ msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
+"Scannerdrake ma rnexxielux isib l-iskaner %s tiegħek.\n"
+"Jekk jogħĥbok agħşel apparat fejn hu mqabbad l-iskaner."
#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
msgid "choose device"
-msgstr "Diska/apparat \"boot\""
+msgstr "agħşel apparat"
#: ../../standalone/scannerdrake_.c:102
#, c-format
@@ -11479,6 +12309,23 @@ msgid ""
"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
"applications menu."
msgstr ""
+"L-iskaner %s issa ÄĄie konfigurat.\n"
+"Tista' tiskannja dokumenti permezz ta' XSane taħt Multimedia/Grafika fil-"
+"menu tal-programmi."
+
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr "Xi apparat fil-klassi tal-ħardwer \"%s\" tneħħew:\n"
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+"\n"
+"Ä ie miĹźjud xi apparat fil-klassi %s:\n"
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
@@ -11749,46 +12596,44 @@ msgstr "Ma jistax jinfetaħ %s għall-kitba: %s\n"
#: ../../tinyfirewall.pm_.c:180
msgid "No I don't need DHCP"
-msgstr ""
+msgstr "Le, m'għandix bşonn DHCP"
#: ../../tinyfirewall.pm_.c:180
msgid "Yes I need DHCP"
-msgstr ""
+msgstr "Iva għandi bşonn DHCP"
#: ../../tinyfirewall.pm_.c:181
msgid "No I don't need NTP"
-msgstr ""
+msgstr "Le, m'għandix bşonn NTP"
#: ../../tinyfirewall.pm_.c:181
msgid "Yes I need NTP"
-msgstr ""
+msgstr "Iva għandi bşonn NTP"
#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
msgid "Don't Save"
-msgstr ""
+msgstr "Tiktibx"
#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
#: ../../tinyfirewall.pm_.c:206
msgid "Save & Quit"
-msgstr ""
+msgstr "Ikteb u oħroĥ"
#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-#, fuzzy
msgid "Firewall Configuration Wizard"
-msgstr "Konfigurazzjoni tal-Firewall"
+msgstr "Saħħar tal-konfigurazzjoni tal-Firewall"
#: ../../tinyfirewall.pm_.c:199
msgid "No (firewall this off from the internet)"
-msgstr ""
+msgstr "Le (agħlaq dan mill-internet bil-firewall)"
#: ../../tinyfirewall.pm_.c:200
msgid "Yes (allow this through the firewall)"
-msgstr ""
+msgstr "Iva (ħalli 'l dan jgħaddi mill-firewall)"
#: ../../tinyfirewall.pm_.c:232
-#, fuzzy
msgid "Please Wait... Verifying installed packages"
-msgstr "Stenna ftit, qed nipprepara l-installazzjoni"
+msgstr "Stenna ftit, qed nivverifika l-pakketti nstallati"
#: ../../tinyfirewall.pm_.c:238
#, c-format
@@ -11796,6 +12641,8 @@ msgid ""
"Failure installing the needed packages : %s and Bastille.\n"
" Try to install them manually."
msgstr ""
+"Ma rnexxieliex ninstalla l-pakketti meħtieĥa: %s u Bastille.\n"
+" Ipprova nstallahom manwalment."
#: ../../share/compssUsers:999
msgid "Web/FTP"
@@ -11883,10 +12730,6 @@ msgid "Multimedia - Sound"
msgstr "Multimedia - awdjo"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Għodda"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Dokumentazzjoni"
@@ -11990,10 +12833,6 @@ msgstr ""
"Sett għodda biex taqra u tibgħat imejl u \"news\", u biex tibbrawşja l-web"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arkivjar, emulaturi u monitors"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Finanzi Personali"
@@ -12039,33 +12878,291 @@ msgstr "Multimedia - ÄŚruq ta' CDs"
msgid "Scientific Workstation"
msgstr "Xjentifiku"
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Tista' tipprovdi l-għaşliet lill-modulu %s."
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "fsck falla b'kodiċi %d jew sinjal %d"
+
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Identifikazzjoni tal-kard grafika: %s\n"
+
+#~ msgid "Choose options for server"
+#~ msgstr "Ikkonfigura għaşliet tas-server"
+
+#~ msgid "Monitor not configured"
+#~ msgstr "Skrin mhux issettjat"
+
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Kard grafika għad m'hix issettjata"
+
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Reşoluzzjoni għadha ma ngħaşlitx"
+
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "ipprova ibdel xi parametri"
+
+#~ msgid "An error occurred:"
+#~ msgstr "Instabet problema:"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "ÄŚiereÄĄ f' %d sekondi"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Dan is-seting huwa tajjeb?"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Instabet problema. Ipprova ibdel xi parametri"
-#~ msgid "mount failed"
-#~ msgstr "immuntar falla"
+#~ msgid "XFree86 server: %s"
+#~ msgstr "Server XFree86: %s"
+
+#~ msgid "Show all"
+#~ msgstr "Uri kollox"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Qed nipprepara l-konfigurazzjoni X-Window"
+
+#~ msgid "What do you want to do?"
+#~ msgstr "X'tixtieq tagħmel?"
+
+#~ msgid "Change Monitor"
+#~ msgstr "Nibdel l-iskrin"
+
+#~ msgid "Change Graphics card"
+#~ msgstr "Nibdel il-kard grafika"
+
+#~ msgid "Change Server options"
+#~ msgstr "Nibdel l-għaşliet tas-server"
+
+#~ msgid "Change Resolution"
+#~ msgstr "Nibdel ir-reĹźoluzzjoni"
+
+#~ msgid "Show information"
+#~ msgstr "Nara l-informazzjoni"
+
+#~ msgid "Test again"
+#~ msgstr "NerÄĄa' nittestja"
+
+#~ msgid ""
+#~ "Description of the fields:\n"
+#~ "\n"
+#~ "Bus: this is the physical bus on which the device is plugged (eg: PCI, "
+#~ "USB, ...)\n"
+#~ "\n"
+#~ "Bus identification: \n"
+#~ "- pci devices : this list the vendor, device, subvendor and subdevice PCI "
+#~ "ids\n"
+#~ "\n"
+#~ "Description: this field describe the device\n"
+#~ "\n"
+#~ "Location on the bus: \n"
+#~ "- pci devices: this gives the PCI slot, device and function of this card\n"
+#~ "- eide devices: the device is either a slave or a master device\n"
+#~ "- scsi devices: the scsi bus and the scsi device ids\n"
+#~ "\n"
+#~ "Media class: class of hardware device\n"
+#~ "\n"
+#~ "Module: the module of the GNU/Linux kernel that handle that device\n"
+#~ "\n"
+#~ "Vendor: the vendor name of the device\n"
+#~ msgstr ""
+#~ "Deskrizzjoni tal-kaxex:\n"
+#~ "\n"
+#~ "Bus: Din hija l-\"bus\" fiĹźika fejn huwa mqabbad l-apparat (eĹź: PCI, "
+#~ "USB, ...)\n"
+#~ "\n"
+#~ "Identifikazzjoni tal-Bus: \n"
+#~ "- apparat pci : dan jagħti lista tal-IDs tal-manufatturi, sotto-"
+#~ "manufatturi u sotto-apparat PCI\n"
+#~ "\n"
+#~ "Deskrizzjoni: din il-kaxxa tiddeskrivi l-apparat\n"
+#~ "\n"
+#~ "Post fuq il-bus: \n"
+#~ "- apparat pci: dan jagħti l-islott, apparat u funzjoni tal-kard\n"
+#~ "- apparat eide: l-apparat huwa \"master\" jew \"slave\"\n"
+#~ "- apparat scsi: il-bus u id tal-apparat SCSI\n"
+#~ "\n"
+#~ "Klassi tal-medja: klassi ta' apparat ħardwer\n"
+#~ "\n"
+#~ "Modulu: il-modulu tal-kernel GNU/Linux li jieħu ħsieb l-apparat\n"
+#~ "\n"
+#~ "Manufattur: isem il-manufattur ta' l-apparat\n"
+
+#~ msgid "Use Hard Drive with daemon"
+#~ msgstr "Uşa ħard disk bid-daemon"
+
+#~ msgid "Use FTP with daemon"
+#~ msgstr "UĹźa FTP bid-daemon"
+
+#~ msgid "Package List to Install"
+#~ msgstr "Lista ta' pakketti x'tinstalla"
+
+#~ msgid "proftpd"
+#~ msgstr "proftpd"
+
+#~ msgid "sshd"
+#~ msgstr "sshd"
+
+#~ msgid "webmin"
+#~ msgstr "webmin"
+
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
+
+#~ msgid "Setting security level"
+#~ msgstr "Livell ta' SigurtĂ "
+
+#~ msgid "Graphics card"
+#~ msgstr "Kard grafika"
+
+#~ msgid "Select a graphics card"
+#~ msgstr "Agħşel kard grafika"
+
+#~ msgid "Choose a X driver"
+#~ msgstr "Agħşel driver"
+
+#~ msgid "X driver"
+#~ msgstr "Driver X"
+
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr ""
+#~ "Twissija: it-test ta' din il-kard grafika jista' jwaħħal il-kompjuter"
+
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "VGA standard, 640x480 b' 60Hz"
+
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 b' 56 Hz"
+
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514/kompatibbli, 1024x768 b' 87 Hz interlaced (ma jieħux 800x600)"
+
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 b' 87 Hz interlaced, 800x600 b' 56 Hz"
+
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Super VGA estiĹź, 800x600 b' 60 Hz, 640x480 b' 72 Hz"
+
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "SVGA mhux interlaced, 1024x768 b' 60 Hz, 800x600 b' 72 Hz"
+
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "SVGA frekwenza għolja, 1024x768 b' 70 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Multi-frekwenza li jiflaħ 1280x1024 b' 60 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Multi-frekwenza li jiflaħ 1280x1024 b' 74 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Multi-frekwenza li jiflaħ 1280x1024 b' 76 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Skrin li jiflaħ 1600x1200 b' 70 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Skrin li jiflaħ 1600x1200 b' 76 Hz"
+
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Id-daqs totali tal-gruppi li għaşilt huwa madwar %d MB.\n"
+
+#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
+#~ msgstr ""
+#~ "Jekk tixtieq tinstalla inqas minn dawn id-daqs, agħżel il-perċentaġġ\n"
+#~ "ta' pakketti li trid tinstalla.\n"
+#~ "\n"
+#~ "Perċentaġġ baxx jinstalla biss l-iżjed programmi importanti;\n"
+#~ "perċentaġġ ta 100%% jinstalla l-pakketti kollha magħżula."
+
+#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
+#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
+#~ msgstr ""
+#~ "Fuq id-diska għandek spazju għal %d%% biss minn dawn il-pakketti.\n"
+#~ "\n"
+#~ "Jekk tixtieq tinstalla inqas minn hekk, agħżel il-perċentaġġ tal-\n"
+#~ "pakketti li trid tinstalla. Perċentaġġ baxx jinstalla biss l-iżjed \n"
+#~ "programmi importanti; perċentaġġ ta %d%% jinstalla kemm jista' jkun."
+
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Tkun tista' tagħżilhom b'mod iżjed speċifiku fil-pass li jmiss."
+
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Perċentaġġ ta' pakketti x'tinstalla"
+
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Agħşel livell ta' sigurtà"
+
+#~ msgid "Complete (%dMB)"
+#~ msgstr "Komplet (%dMB)"
+
+#~ msgid "Minimum (%dMB)"
+#~ msgstr "Minimu (%dMB)"
+
+#~ msgid "Recommended (%dMB)"
+#~ msgstr "Rakkomandat (%dMB)"
+
+#~ msgid ""
+#~ "Is your printer a multi-function device from HP (OfficeJet, PSC, "
+#~ "PhotoSmart, LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+#~ msgstr ""
+#~ "Il-printer tiegħek huwa apparat multi-funzjonali tal-HP (OfficeJet, PSC, "
+#~ "PhotoSmart, LaserJet 1100/1200/1220/3200/3300 bi skaner)?"
+
+#~ msgid ""
+#~ "***********************************************************************\n"
+#~ "\n"
+#~ msgstr ""
+#~ "***********************************************************************\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "\n"
+#~ "\n"
+#~ "***********************************************************************\n"
+#~ "\n"
+#~ msgstr ""
+#~ "\n"
+#~ "\n"
+#~ "***********************************************************************\n"
+#~ "\n"
#~ msgid ""
-#~ "Can't access kernel modules corresponding to your kernel (file %s is "
-#~ "missing)"
+#~ "\n"
+#~ "(!) FTP connexion problem: It was not possible to send your backup files "
+#~ "by FTP.\n"
#~ msgstr ""
-#~ "Ma nistax naċċessa l-moduli tal-kernel li jikkorrispondu mal-kernel "
-#~ "tiegħek (fajl %s nieqes)"
+#~ "\n"
+#~ "(!) Problema fil-konnessjoni FTP. Ma kienx possibbli nibgħat il-fajls bl-"
+#~ "FTP.\n"
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-*-*-medium-r-normal-*-12-*-*-*-p-*-iso8859-3,*-r-*"
+#~ msgid "(!) Error during mail sending. \n"
+#~ msgstr "(!) Problema biex jintbagħat imejl. \n"
-#~ msgid "None"
-#~ msgstr "Ebda"
+#~ msgid "USA (bcast)"
+#~ msgstr "Stati Uniti (bcast)"
-#~ msgid "Choose a default printer!"
-#~ msgstr "Agħżel printer impliċitu!"
+#~ msgid "China (bcast)"
+#~ msgstr "Ċina (bcast)"
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Applika/erÄĄa' aqra' printers"
+#~ msgid "Japan (bcast)"
+#~ msgstr "Ä appun (bcast)"
-#~ msgid "About"
-#~ msgstr "Dwar"
+#~ msgid "Utilities"
+#~ msgstr "Għodda"
-#~ msgid " Help "
-#~ msgstr " Għajnuna "
+#~ msgid "Archiving, emulators, monitoring"
+#~ msgstr "Arkivjar, emulaturi u monitors"
diff --git a/perl-install/share/po/nl.po b/perl-install/share/po/nl.po
index 9270f3cfd..28f146910 100644
--- a/perl-install/share/po/nl.po
+++ b/perl-install/share/po/nl.po
@@ -1,81 +1,117 @@
-# Translation file of Mandrake graphic install
-# Copyright (C) 1999-2000 Mandrakesoft
-# Jo <rainbow@linuxfan.com>, 1999
-# Tom Laermans <sidewinder@linuxfreak.com>, 2000
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) 2000 Free Software Foundation, Inc.
+# Copyright (c) 2000 MandrakeSoft
# Niels Gras <niels.gras@wanadoo.nl>, 2000
-# Reinout van Schouwen <reinout@cs.vu.nl>, 2001, 2002
+# Jeroen ten Berge <j.ten.berge@twinbit.nl>, 2002
+# Reinout van Schouwen <reinout@cs.vu.nl>, 2002
+# Peter Bosch <peter.bosch@hccnet.nl>, 2002
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-01 01:34+0100\n"
-"Last-Translator: Reinout van Schouwen <reinout@cs.vu.nl>\n"
-"Language-Team: Dutch <vertaling@nl.linux.org>\n"
+"Project-Id-Version: drakfloppy 0.30\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2002-07-24 13:29+0200\n"
+"Last-Translator: Peter Bosch <peter.bosch@hccnet.nl>\n"
+"Language-Team: Nederlands <vertaling@nl.linux.org>\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=iso-8859-1\n"
+"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 0.9.6\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Configureer alle koppen afzonderlijk"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Gebruik Xinerama-uitbreiding"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Configureer alleen kaart \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB of meer"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Selecteer een X-server"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X-Server"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
-msgstr "Multi-koppen configuratie"
+msgstr "Multi-koppen instelling"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-"Uw systeem ondersteunt een configuratie met meerdere koppen.\n"
+"Uw systeem ondersteunt een instelling met meerdere koppen.\n"
"Want wenst u te doen?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Grafische kaart"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Selecteer de geheugengrootte van uw grafische kaart"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Selecteer een grafische kaart"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "XFree instellingen"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Selecteer een X-server"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Welke instellingen van XFree wilt u hebben?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X-Server"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Configureer alle koppen afzonderlijk"
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Kiest u een X-stuurprogramma"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Gebruik Xinerama-uitbreiding"
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "X-stuurprogramma"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Configureer alleen kaart \"%s\" (%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Welke configuratie van XFree wilt u hebben?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s met 3D hardware acceleratie"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -86,34 +122,17 @@ msgstr ""
"Uw kaart wordt ondersteund door XFree %s, welke betere ondersteuning zou \n"
"kunnen hebben in 2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Uw kaart kan 3D acceleratie ondersteuning krijgen met XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s met 3D hardware acceleratie"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Uw kaart kan 3D acceleratie ondersteuning krijgen met XFree %s.\n"
-"LET OP: DIT IS EEN EXPERIMENTELE ONDERSTEUNING, WELKE UW COMPUTER KAN "
-"LATEN \n"
-"VASTLOPEN."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s met EXPERIMENTELE 3D hardware acceleratie"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -127,31 +146,58 @@ msgstr ""
"Uw kaart wordt ondersteund door XFree %s, welke betere ondersteuning zou \n"
"kunnen hebben in 2D."
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (installatie beeldscherm-stuurprogramma"
-
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree configuratie"
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Uw kaart kan 3D acceleratie ondersteuning krijgen met XFree %s.\n"
+"LET OP: DIT IS EEN EXPERIMENTELE ONDERSTEUNING, WELKE UW COMPUTER KAN LATEN "
+"VASTLOPEN."
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Selecteer de geheugengrootte van uw grafische kaart"
+#: ../../Xconfig/card.pm_.c:445
+msgid "Xpmac (installation display driver)"
+msgstr "Xpmac (installatie beeldscherm-stuurprogramma)"
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Selecteer de opties voor de X-server"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Veranderingen bewaren?\n"
+"De huidige instelling is:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Selecteer een monitor"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Aangepast"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Algemeen"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+msgid "Vendor"
+msgstr "Uitgever"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -167,521 +213,335 @@ msgstr ""
"De twee cruciale parameters zijn de verticale verversingsratio, d.w.z.\n"
"de snelheid waarmee het volledige scherm wordt ververst en nog "
"belangrijker \n"
-"de horizontale sync ratio, dit is de snelheid waaraan de scanlijnen worden\n"
+"de horizontale sync ratio, dit is de snelheid waaraan de scanlijnen worden "
"geschreven\n"
"\n"
"Het is UITERMATE BELANGRIJK dat u geen monitor type opgeeft die een sync "
"bereik\n"
-"heeft die de mogelijkheden van uw monitor overschrijdt: u kan uw monitor\n"
+"heeft die de mogelijkheden van uw monitor overschrijdt: u kan uw monitor "
"beschadigen.\n"
-"Bij twijfel maakt u best een voorzichtige keuze."
+"Bij twijfel maak een voorzichtige keuze."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Horizontale verversingsratio"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Verticale verversingsratio"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor niet geconfigureerd"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Grafische kaart nog niet geconfigureerd"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Resoluties nog niet gekozen"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Wenst u de configuraties te testen?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-"Waarschuwing: door deze grafische kaart te testen, kan uw computer vastlopen"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Configuratie Testen"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 kleuren (8 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"probeer enkele parameters aan te passen"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32.000 kleuren (15 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Er is een fout opgetreden:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65.000 kleuren (16 bits)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Verdwijnt binnen %d seconden"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 miljoen kleuren (24 bits)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Is dit de juiste instelling?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 miljard kleuren (32 bits)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Er is een fout opgetreden, probeer een aantal parameters aan te passen"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Resoluties"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Resolutie"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Kies resolutie en kleurdiepte"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Grafische kaart: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86-server: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Meer"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Annuleren"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Expert modus"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Toon alles"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Wenst u de instellingen te testen?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Resoluties"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Instelling Testen"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Toetsenbord instelling: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Muistype: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
-msgstr "Muis: %s\n"
+msgstr "Muis apparaat: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Monitor Horizontale Sync: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Monitor verticale verversing: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Grafische kaart: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Identificatie grafische kaart: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Videogeheugen: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Kleurdiepte: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Resolutie: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86-server: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 stuurprogramma: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Bezig met het voorbereiden van de X-Window configuratie"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Wat wenst u te doen?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Verander Monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Verander grafische kaart"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Verander Server-opties"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Resolutie wijzigen"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Informatie tonen"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Opnieuw testen"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Beëindig"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Veranderingen bewaren?\n"
-"De huidige configuratie is:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X bij opstarten"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
-"Ik kan uw computer instellen om automatisch X te starten bij opstarten.\n"
+"Ik kan uw computer instellen om automatisch X te starten bij het opstarten.\n"
"Wenst u X te starten bij het opstarten?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Gelieve opnieuw in te loggen op %s om de wijzigingen te activeren"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Gelieve uit te loggen en daarna Ctrl-Alt-Backspace te gebruiken"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 kleuren (8 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32.000 kleuren (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65.000 kleuren (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 miljoen kleuren (24 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 miljard kleuren (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB of meer"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standaard VGA, 640x480 aan 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 aan 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 Compatibel, 1024x768 aan 87 Hz interlaced (geen 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 aan 87 Hz interlaced, 800x600 aan 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Extended Super VGA, 800x600 aan 60 Hz, 640x480 aan 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Non-Interlaced SVGA, 1024x768 aan 60 Hz, 800x600 aan 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "High Frequency SVGA, 1024x768 aan 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frequency in staat om 1280x1024 aan 60 Hz weer te geven"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frequency in staat om 1280x1024 aan 74 Hz weer te geven"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frequency in staat om 1280x1024 aan 76 Hz weer te geven"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Multi-frequency in staat om 1600x1200 aan 70 Hz weer te geven"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Multi-frequency in staat om 1600x1200 aan 76 Hz weer te geven"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Eerste sector van boot-partitie"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
-msgstr "Eerste sector van station (MBR)"
+msgstr "Eerste sector van schijf (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "SILO Installatie"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Waar wenst u de bootloader te installeren?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "LILO/grub-installatie"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO met tekst-menu"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO met grafisch menu"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Opstarten vanuit DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Bootloader algemene opties"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Welke bootloader te gebruiken"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Bootloader installatie"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Boot-apparaat"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (werkt niet met oude BIOS'en)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Compact"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "compact"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Video-modus"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
-msgstr "Pauze voor het opstarten van standaard-beeld"
+msgstr "Pauze voor het opstarten van standaard-kernel"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Wachtwoord"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Wachtwoord (nogmaals)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Commandoregel-opties beperken"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "beperken"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Elke keer bij opstarten /tmp legen"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Juiste RAM-grootte (indien nodig) (%d MB gevonden)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Meerdere profielen inschakelen"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Geef de RAM-grootte in MB"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"De optie ``Commandoregel-opties beperken'' heeft geen nut zonder wachtwoord"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Gelieve opnieuw te proberen"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
-msgstr "De wachtwoorden kloppen niet met elkaar"
+msgstr "De wachtwoorden komen niet overeen"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Initialisatie-bericht"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
-msgstr "Open Firmware Delay"
+msgstr "Open Firmware Vertraging"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Kernel opstart-wachttijd"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Opstarten van CD mogelijk maken?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Opstarten van OF mogelijk maken?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Standaard besturingssysteem?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -689,84 +549,89 @@ msgid ""
"\n"
"On which drive are you booting?"
msgstr ""
+"U heeft besloten om de bootloader op een partitie te installeren.\n"
+"Dit betekent dat U al een bootloader op de opstart schijf hebt.\n"
+"(Bijv. System Commander)\n"
+"\n"
+"Van welke schijf start U op ?"
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
-"Hier zijn de ingangen voor LILO.\n"
+"Hier zijn de waardes voor LILO.\n"
"U kunt er enkele toevoegen of de bestaande wijzigen."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Toevoegen"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Klaar"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Aanpassen"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
-msgstr "Welk type ingang wenst u toe te voegen?"
+msgstr "Welk type waarde wenst u toe te voegen?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Ander OS (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Ander OS (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Ander OS (Windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
-msgstr "Beeld"
+msgstr "Kernel"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
-msgstr "Achteraan toevoegen"
+msgstr "Toevoegen"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
-msgstr "Lezen/schrijven"
+msgstr "Lezen-schrijven"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabel"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Onveilig"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Naam"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Standaard"
@@ -780,7 +645,7 @@ msgstr "Geen Video"
#: ../../any.pm_.c:336
msgid "Remove entry"
-msgstr "Ingang verwijderen"
+msgstr "Waarde verwijderen"
#: ../../any.pm_.c:339
msgid "Empty label not allowed"
@@ -788,63 +653,87 @@ msgstr "Lege naam is niet toegelaten"
#: ../../any.pm_.c:340
msgid "You must specify a kernel image"
-msgstr "U dient een kernel-beeldbestand aan te geven"
+msgstr "U dient een kernel-bestand aan te geven"
#: ../../any.pm_.c:340
msgid "You must specify a root partition"
-msgstr "U dient een root-partitie aan te geven"
+msgstr "U dient een hoofdmap(root)-partitie aan te geven"
#: ../../any.pm_.c:341
msgid "This label is already used"
msgstr "Deze naam wordt al gebruikt"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "%s %s interfaces gevonden"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
-msgstr "Heeft u er nog één?"
+msgstr "Heeft u er nog ĂŠĂŠn?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Heeft u een %s interface?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Nee"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Ja"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Bekijk hardware-info"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Bezig met installeren van stuurprogramma voor %s kaart %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(module %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+"U kunt nu de opties doorgeven aan module %s.\n"
+"Merk op dat een adres moet worden ingegeven met de prefix 0x zoals '0x123'"
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"U mag nu de opties voor module %s ingeven.\n"
+"Opties staan in het formaat ``naam=waarde naam2=waarde2 ...''.\n"
+"Bijvoorbeeld, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Module-opties:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Welk %s stuurprogramma moet ik proberen?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -855,45 +744,21 @@ msgid ""
"should\n"
"not cause any damage."
msgstr ""
-"In sommige gevallen heeft het stuurprogramma van %s extra informatie nodig\n"
-"om juist te werken, alhoewel het meestal ook zonder goed werkt. Wil u\n"
+"In sommige gevallen heeft het stuurprogramma %s extra informatie nodig\n"
+"om juist te werken, alhoewel het meestal ook zonder goed werkt. Wilt u\n"
"extra opties invoeren of laat u liever het stuurprogramma zijn informatie\n"
"zelf zoeken? Soms zal de automatische detectie de computer laten hangen,\n"
"maar het zou geen schade mogen veroorzaken."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Automatisch Detecteren"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Geef opties"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"U kunt nu zijn opties doorgeven aan module %s.\n"
-"Merk op dat een adres moet worden ingegeven met de prefix 0x zoals '0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"U mag nu de opties voor module %s ingeven.\n"
-"Opties staan in het formaat ``naam=waarde naam2=waarde2 ...''.\n"
-"Bijvoorbeeld, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Module-opties:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -902,50 +767,54 @@ msgstr ""
"Het laden van module %s is niet gelukt.\n"
"Wenst u opnieuw te proberen met andere parameters?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "toegang tot X-programma's"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "toegang tot rpm-gereedschappen"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "\"su\" toestaan"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "toegang tot administratieve bestanden"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(%s reeds toegevoegd)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Dit wachtwoord is te eenvoudig"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Gelieve een gebruikersnaam in te geven"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"De gebruikersnaam mag slechts kleine letters, cijfers, `-' en`_' bevatten"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+msgid "The user name is too long"
+msgstr "Deze gebruikersnaam is te lang"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
-msgstr "Deze gebruikersnaam werd reeds toegevoegd"
+msgstr "Deze gebruikersnaam is al toegevoegd"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Gebruiker toevoegen"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -954,123 +823,107 @@ msgstr ""
"Geef een gebruiker in\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Gebruiker aanvaarden"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Echte naam"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Gebruikersnaam"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Pictogram"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Automatisch inloggen"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
msgstr ""
-"Ik kan uw computer instellen om automatisch bij een bepaalde gebruiker in te "
-"loggen.\n"
+"Ik kan uw computer instellen om automatisch ĂŠĂŠn gebruiker in te loggen.\n"
"Wilt u van deze mogelijkheid gebruik maken?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Kies de standaard gebruiker:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Selecteer de 'window manager' die u wilt gebruiken:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Gelieve een taal te kiezen."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr "U kunt andere talen kiezen die beschikbaar zullen zijn na installatie"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Alles"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Alle gebruikers toestaan"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Aangepast"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "Niet delen"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "Pakket %s dient geďnstalleerd te worden. Wilt u het installeren?"
+msgstr "Pakket %s dient geĂŻnstalleerd te worden. Wilt u het installeren?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-"U kunt bestandssystemen exporteren met behulp van NFS of Samba. Welke "
-"daarvan wilt u gebruiken?"
+"U kunt bestandssystemen delen met behulp van NFS of Samba. Welke daarvan "
+"wilt u gebruiken?"
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Verplicht pakket %s is afwezig"
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
+"Wilt U gebruikers toestaan om enkelle eigen mappen te delen ?\n"
+"Door toe-te-staan kunnen gebruikers in Konquerer en nautilus\n"
+"simpel met \"Share\" hun mappen delen.\n"
+"\n"
+"\"Custom\" sta per gebruiker instellingen toe.\n"
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Annuleren"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr "Userdrake opstarten"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -1079,31 +932,31 @@ msgstr ""
"\"fileshare\". U kunt met userdrake een gebruiker\n"
"aan deze groep toevoegen."
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
-msgstr "Welkom, krakers!"
+msgstr "Welkom Bij krakers"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
-msgstr "Zeer laag"
+msgstr "Weinig"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Standaard"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Hoog"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
msgstr "Hoger"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
-msgstr "Paranoďde"
+msgstr "ParanoĂŻde"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1111,11 +964,11 @@ msgid ""
msgstr ""
"Dit niveau moet met voorzichtigheid gebruikt worden. Het maakt uw systeem\n"
"makkelijker te gebruiken maar erg gevoelig: het moet niet gebruikt worden "
-"als\n"
-"machine die met andere computers of het internet verbonden is. Er worden\n"
+"indien de\n"
+"machine met andere computers of het internet verbonden is. Er worden\n"
"geen wachtwoorden gebruikt."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1123,15 +976,15 @@ msgstr ""
"Wachtwoorden zijn nu ingeschakeld, maar het gebruik als genetwerkte computer "
"is nog steeds niet aanbevolen."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
msgstr ""
-"Dit is de standaardbeveiliging, aangeraden voor een computer die als client "
+"Dit is de standaardbeveiliging, aangeraden voor een computer die als cliĂŤnt "
"met het Internet verbonden zal worden."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1139,13 +992,14 @@ msgstr ""
"Er zijn al enkele restricties en meer automatische checks worden iedere "
"nacht gedraaid."
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Met dit veiligheidsniveau wordt het mogelijk dit systeem als server te "
"gebruiken.\n"
@@ -1154,35 +1008,36 @@ msgstr ""
"een\n"
"client op het Internet is, dan kunt u beter een lager niveau kiezen."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Gebaseerd op het vorige niveau, maar nu is het systeem volledig afgesloten.\n"
"Beveiligingsfuncties staan op hun maximumwaarde."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Kies een veiligheids-niveau"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Veiligheids-niveau"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Gebruik libsafe voor servers"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Een bibliotheek welke bescherming biedt tegen \"buffer-overflow\"- en "
"\"format string\"-aanvallen."
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+#, fuzzy
+msgid "Security Administrator (login or email)"
+msgstr "Beveiligings Administrator (gebruikersnaam of e-mail)"
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1193,85 +1048,89 @@ msgid ""
msgstr ""
"Welkom bij %s - Kies uw besturingssysteem!\n"
"\n"
-"Kies een ingang uit de bovenstaande lijst\n"
+"Kies een waarde uit de bovenstaande lijst\n"
"of wacht %d seconden voor de standaard-opstartkeuze.\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_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welkom bij GRUB - Kies uw besturingssysteem!"
#. -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_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Gebruik de %c en %c-toetsen om te aangeduide ingang te selecteren."
+msgstr "Gebruik de %c en %c-toetsen om de aangeduide waarde te selecteren."
#. -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_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Druk Enter om het geselecteerde besturingssysteem te booten, druk 'e'"
#. -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_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
-msgstr " om de ingang eerst te bewerken, of 'c' voor een command-line."
+msgstr " om de waarde eerst te bewerken, of 'c' voor een command-line."
#. -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_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr ""
-"De aangeduide ingang zal automatisch gestart worden binnen %d seconden."
+"De aangeduide waarde zal automatisch gestart worden binnen %d seconden."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "niet genoeg ruimte in /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "U kunt de opstart-lader niet installeren op een %s-partitie\n"
#: ../../bootlook.pm_.c:46
msgid "no help implemented yet.\n"
-msgstr "Helaas geen hulp beschikbaar.\n"
+msgstr "Nog geen hulp beschikbaar.\n"
#: ../../bootlook.pm_.c:62
msgid "Boot Style Configuration"
-msgstr "Configuratie van opstart-stijl"
+msgstr "Instelling van opstart-stijl"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
-msgstr "/_Bestand:"
+msgstr "/_Bestand"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
-msgstr "/Bestand/_Beëindig"
+msgstr "/Bestand/_Afsluiten"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
#: ../../bootlook.pm_.c:91
msgid "NewStyle Categorizing Monitor"
-msgstr "Nieuwe stijl (in categorieën)"
+msgstr "Nieuwe stijl (in categorieĂŤn)"
#: ../../bootlook.pm_.c:92
msgid "NewStyle Monitor"
@@ -1300,24 +1159,24 @@ msgstr "Yaboot modus"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"U gebruikt op dit moment %s als Opstart-manager.\n"
-"Klik op Configureer om de instel-'wizard' te starten."
+"Klik op Configureer om de instel-hulp te starten."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Configureren"
#: ../../bootlook.pm_.c:141
msgid "System mode"
-msgstr "Systeemvorm"
+msgstr "Systeem modus"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Open het X-Window systeem bij opstarten"
#: ../../bootlook.pm_.c:148
@@ -1328,21 +1187,23 @@ msgstr "Nee, ik wil niet automatisch inloggen"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ja, ik wil automatisch inloggen met deze (gebruiker, werkomgeving)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "OK"
#: ../../bootlook.pm_.c:229
#, c-format
msgid "can not open /etc/inittab for reading: %s"
-msgstr "kan /etc/inittab niet openen: %s"
+msgstr "kan /etc/inittab niet lezen: %s"
#: ../../common.pm_.c:94
msgid "GB"
@@ -1383,7 +1244,7 @@ msgstr "Kan geen schermafdruk maken voor het partitioneren"
msgid "Screenshots will be available after install in %s"
msgstr "Schermafdrukken zullen beschikbaar zijn na installatie in %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Frankrijk"
@@ -1391,9 +1252,9 @@ msgstr "Frankrijk"
msgid "Costa Rica"
msgstr "Costa Rica"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
-msgstr "België"
+msgstr "BelgiĂŤ"
#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
msgid "Czech Republic"
@@ -1415,28 +1276,29 @@ msgstr "Noorwegen"
msgid "Sweden"
msgstr "Zweden"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Nederland"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
-msgstr "Italië"
+msgstr "ItaliĂŤ"
#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
msgid "Austria"
msgstr "Oostenrijk"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "Verenigde Staten"
#: ../../diskdrake/hd_gtk.pm_.c:94
msgid "Please make a backup of your data first"
-msgstr "Gelieve eerst een veiligheidskopie van uw gegevens te maken"
+msgstr "Maak eerst een veiligheidskopie van uw gegevens"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Lees aandachtig!"
@@ -1447,108 +1309,109 @@ msgid ""
"at the beginning of the disk"
msgstr ""
"Als u aboot wenst te gebruiken, wees dan voorzichtig en laat vrije ruimte "
-"(2048 sectoren is genoeg)\n"
+"over (2048 sectoren is genoeg)\n"
"aan het begin van de schijf"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Fout"
#: ../../diskdrake/hd_gtk.pm_.c:151
msgid "Wizard"
-msgstr "Wizard"
+msgstr "Hulp"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Kies een actie"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
"I suggest you first resize that partition\n"
"(click on it, then click on \"Resize\")"
msgstr ""
-"U heeft één grote FAT-partitie\n"
+"U heeft ĂŠĂŠn grote FAT-partitie\n"
"(meestal gebruikt door Microsoft DOS/Windows).\n"
"Ik stel voor dat u eerst de grootte van die partitie aanpast\n"
"(klik erop, en klik daarna op \"Grootte Aanpassen\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Gelieve op een nieuwe partitie te klikken"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Details"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
-msgstr "Journalised FS"
+msgstr "Gejournaliseerd bestandssysteem"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Virtueel geheugen"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Leeg"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
-msgstr "Ander type"
+msgstr "Overig"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Bestandssysteem types:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
-msgstr "Creëer"
+msgstr "CreĂŤer"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Type"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
-msgstr "Gebruik ``%s'' in de plaats"
+msgstr "Gebruik ``%s'' in plaats"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Verwijderen"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Gebruik eerst ``Ontkoppelen''"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1556,67 +1419,72 @@ msgstr ""
"Na het veranderen van het type van partitie %s, zullen alle gegevens op deze "
"partitie verloren gaan"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Kies een partitie"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Kies een andere partitie"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Afsluiten"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Schakel naar expert-modus"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Schakel naar normale modus"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Ongedaan maken"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Toch doorgaan?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
-msgstr "Beëindig zonder opslaan"
+msgstr "Afsluiten zonder opslaan"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
-msgstr "Beëindigen zonder de partitietabel weg te schrijven?"
+msgstr "Afsluiten zonder de partitietabel weg te schrijven?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "Wilt u de /etc/fstab aanpassingen bewaren"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Automatisch toewijzen"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Alles wissen"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Meer"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "Informatie over harde schijf"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Alle primaire partities zijn al toegewezen"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Ik kan geen partitie meer toevoegen"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1624,31 +1492,31 @@ msgstr ""
"Om meer partities te kunnen maken, zal u er een moeten verwijderen. Dan kan\n"
"er een uitgebreide (extended) partitie worden bijgemaakt"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "Partitietabel schrijven"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "Partitietabel terughalen"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Partitietabel redden"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "Partitietabel opnieuw laden"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "Automatische koppeling van verwisselbare media"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Selecteer bestand"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1656,134 +1524,141 @@ msgstr ""
"De backup partitietabel heeft niet dezelfde grootte\n"
"Toch verdergaan?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Waarschuwing"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
msgstr ""
-"Plaats een floppy in het station.\n"
+"Plaats een floppy in station\n"
"Alle gegevens op deze floppy zullen verloren gaan"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Proberen om partitietabel te redden"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Gedetailleerde informatie"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Koppelpunt"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opties"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Grootte aanpassen"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Verplaatsen"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formatteren"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Koppelen"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Toevoegen aan RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Toevoegen aan LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Ontkoppelen"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Verwijderen uit RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Verwijderen uit LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "RAID aanpassen"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Voor Loopback gebruiken"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
-msgstr "Nieuwe partitie creëren"
+msgstr "Nieuwe partitie creĂŤren"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Start-sector: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Grootte in MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Bestandssysteem-type: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Koppelpunt: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Voorkeur: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+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/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "Het loopback-bestand verwijderen?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Verander partitietype"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
-msgstr "Welk bestandssysteem wenst u?"
+msgstr "Welk bestandssysteem wilt u?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
-msgstr "Bezig met omschakelen van ext2 naar ext3"
+msgstr "Omschakelen van ext2 naar ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
-msgstr "Waar wenst u dit loopback-apparaat %s aan te koppelen?"
+msgstr "Waar wenst u loopback-apparaat %s aan te koppelen?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
-msgstr "Waaraan wenst u dit apparaat %s te koppelen?"
+msgstr "Waar wilt u apparaat %s koppelen?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1791,129 +1666,134 @@ msgstr ""
"Kan een koppelpunt niet verzetten omdat deze partitie gebruikt wordt als\n"
"loopback. Verwijder de loopback eerst."
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Bezig met berekenen van FAT bestandssysteemgrenzen"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
-msgstr "Bezig met de grootte aan te passen"
+msgstr "Grootte aanpassen"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Deze partitie is niet in grootte aanpasbaar"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr ""
-"Er zou een reservekopie moeten gemaakt worden van alle gegevens op deze "
+"Er zou een reservekopie gemaakt moeten worden van alle gegevens op deze "
"partitie."
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Na het veranderen van de grootte van partitie %s, zullen alle gegevens op "
"deze partitie verloren gaan"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Kies de nieuwe grootte"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Nieuwe grootte in MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Naar welke schijf wenst u het te verplaatsen?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sector"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Naar welke sector wenst u het te verplaatsen?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Aan het verplaatsen"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Partitie aan het verplaatsen..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Kies een bestaande RAID om aan toe te voegen"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "nieuw"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Kies een bestaande LVM om aan toe te voegen"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
-msgstr "Naam van LVM?"
+msgstr "Naam van de LVM?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Deze partitie kan niet gebruikt worden voor loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Loopback-bestandsnaam: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Voer een bestandsnaam in"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Loopback-bestand is al in gebruik, gelieve een ander te kiezen"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Het bestand bestaat al. Wenst u het te gebruiken?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Koppel-opties:"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Diversen"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "apparaat"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "niveau"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
-msgstr "chunk-grootte"
+msgstr "blok grootte"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Voorzichtig: deze operatie is gevaarlijk."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Welk type partitionering?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Pakket %s dient geĂŻnstalleerd te worden. Wilt u het installeren?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1927,162 +1807,164 @@ msgstr ""
"heeft\n"
"/boot niet nodig."
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
"the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
"If you plan to use the LILO boot manager, be careful to add a /boot partition"
msgstr ""
-"De partitie die u selecteerde als rootpartitie (/) bevindt zich fysiek "
+"De partitie die u selecteerde als hoofdpartitie (/) bevindt zich fysiek "
"voorbij\n"
"de 1024e cylinder van de harde schijf en u heeft geen /boot partitie.\n"
"Indien u de LILO boot manager wenst te gebruiken, zorg er dan voor dat u "
"een\n"
"/boot partitie toevoegt aan het begin van de schijf"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"So be careful to add a /boot partition"
msgstr ""
-"U heeft een software RAID partitie als root (/) geselecteerd.\n"
+"U heeft een software RAID partitie als hoofd (/) geselecteerd.\n"
"Geen bootloader kan dit aan zonder een /boot partitie, dus wees er zeker\n"
"van ook een /boot-partitie toe te voegen."
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Partitietabel van schijf %s wordt weggeschreven!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "U zal moeten herstarten voordat de aanpassing van kracht wordt"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Na het formatteren van partitie %s, zullen alle gegevens op deze partitie "
"verloren zijn"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Bezig met formatteren"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Bezig met formatteren van loopback-bestand %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Bezig met formatteren van partitie %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Bestanden verbergen"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Bestanden naar de nieuwe partitie verplaatsen"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"Map %s bevat reeds gegevens\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "Bezig met verplaatsen van bestanden naar de nieuwe partitie"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
-msgstr "Bezig met kopiëren van %s"
+msgstr "Bezig met kopiĂŤren van %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Bezig met verwijderen van %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "partitie %s heet vanaf nu %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Apparaat: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS schijfletter: %s (dit is slechts een gok)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Type: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Naam: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Start: sector %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Grootte: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sectoren"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cylinder %d tot %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Geformatteerd\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Niet geformatteerd\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Gekoppeld\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
-msgstr "Loopback-bestand(en): %s\n"
+msgstr ""
+"Loopback-bestand(en):\n"
+" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2090,27 +1972,27 @@ msgstr ""
"Standaard te starten partitie\n"
" (om MS-DOS te booten, niet voor lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Niveau %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
-msgstr "Chunk-grootte %s\n"
+msgstr "Blok-grootte %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-schijven %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback bestandsnaam: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2119,11 +2001,11 @@ msgid ""
msgstr ""
"\n"
"De kans is aanwezig dat deze\n"
-"partitie een Driver partitie is, u\n"
+"partitie een stuurprogramma partitie is, u\n"
"kunt hem waarschijnlijk beter met\n"
"rust laten.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2133,102 +2015,131 @@ msgstr ""
"\n"
"Deze speciale Bootstrap\n"
"partitie is voor het\n"
-"duaal-opstarten van uw systeem.\n"
+"multi-opstarten van uw systeem.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Grootte: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Indeling: %s cylinders, %s koppen, %s sectoren\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-schijven %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partitietabel-type: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "op bus %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Opties: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
-msgstr "Sleutel voor bestandssysteemencryption"
+msgstr "Sleutel voor bestandssysteem-versleuteling"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
-msgstr "Kies uw sleutel voor bestandssysteemencryption"
+msgstr "Kies uw sleutel voor bestandssysteem-versleuteling"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
-"Deze encryption-sleutel is te makkelijk (moet tenminste %d tekens lang zijn)"
+"Deze versleutelings-sleutel is te makkelijk (moet tenminste %d tekens lang "
+"zijn)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
-msgstr "De encryption-sleutels kloppen niet met elkaar"
+msgstr "De versleuteling-sleutels kloppen niet met elkaar"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
-msgstr "Encryptionsleutel"
+msgstr "versleutelings sleutel"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
-msgstr "Encryptionsleutel (nogmaals)"
+msgstr "versleutelings sleutel (nogmaals)"
#: ../../diskdrake/removable.pm_.c:47
msgid "Change type"
msgstr "Verander partitietype"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Gelieve op een media-soort te klikken"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr "Kan niet inloggen met gebruikersnaam %s (verkeerd wachtwoord?)"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+msgid "Domain Authentication Required"
+msgstr "Domein Authenticatie Vereist"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Another one"
+msgstr "Een andere"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Which username"
+msgstr "Welke gebruikersnaam"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+#, fuzzy
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+"Voer uw gebruikersnaam, wachtwoord en domeinnaam in om met deze host te "
+"verbinden."
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+msgid "Username"
+msgstr "Gebruikersnaam"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+msgid "Domain"
+msgstr "Domein"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "Servers zoeken"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatteren van %s mislukt"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ik weet niet hoe %s in type %s te formatteren"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "het koppelen van partitie %s in map %s is mislukt"
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck is mislukt met afsluitcode %d of signaal %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "fout bij ontkoppelen %s: %s"
@@ -2245,70 +2156,320 @@ msgstr "met /usr"
msgid "server"
msgstr "server"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "U kan JFS niet gebruiken op een partitie kleiner dan 16MB"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "U kan ReiserFS niet gebruiken op een partitie kleiner dan 32MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Koppelpunten moeten beginnen met een /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Er is al een partitie met als koppelpunt %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "U kunt geen LVM logisch deel voor koppelpunt %s gebruiken"
+msgstr "U kunt geen LVM schijf voor koppelpunt %s gebruiken"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
-msgstr "Deze map zou binnen het root bestandssysteem moeten blijven"
+msgstr "Deze map zou binnen het hoofd bestandssysteem moeten blijven"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
-"U benodigt een geavanceerd bestandssysteem (ext2, reiserfs) voor dit "
-"koppelpunt\n"
+"U heeft een echt bestandssysteem (ext2/ext3, reiserfs, xfs of jfs) voor dit "
+"koppelpunt nodig\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "U kunt geen versleuteld bestandssysteem voor koppelpunt %s gebruiken"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "Niet voldoende vrije ruimte voor automatische toewijzing"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr "Niets meer te doen"
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Fout bij het openen van %s voor schrijfbewerking: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Er is een fout opgetreden - er werden geen geldige apparaten gevonden "
"waarop\n"
-"nieuwe bestandssystemen konden worden gecreëerd. Gelieve uw hardware na te\n"
+"nieuwe bestandssystemen konden worden gecreĂŤerd. Gelieve uw hardware na te\n"
"kijken voor de oorzaak van dit probleem."
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "U heeft helemaal geen partities!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+msgid "Auto-detect"
+msgstr "Autodetecteren"
+
+#: ../../harddrake/bttv.pm_.c:64
+msgid "Unknown|Generic"
+msgstr "Onbekend|Algemeen"
+
+#: ../../harddrake/bttv.pm_.c:96
+#, fuzzy
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr "Onbekend|CPH05X (bt878) [vele uitvoeringen]"
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr "Onbekend|CPH06X (bt878) [vele uitvoeringen]"
+
+#: ../../harddrake/bttv.pm_.c:193
+#, fuzzy
+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 ""
+"Voor de meeste modere TV-kaarten worden de juiste parameters automatisch "
+"door de bttv module van de GNU/Linux kernel gedetecteerd.\n"
+"Als uw kaart niet goed is herkent, kunt u de juiste tuner en kaart-type hier "
+"handmatig aangeven. Selecteer alleen parameters voor de kaart als dit nodig "
+"is."
+
+#: ../../harddrake/bttv.pm_.c:196
+msgid "Card model :"
+msgstr "Kaart model:"
+
+#: ../../harddrake/bttv.pm_.c:197
+msgid "PLL setting :"
+msgstr "PLL instelling:"
+
+#: ../../harddrake/bttv.pm_.c:198
+#, fuzzy
+msgid "Number of capture buffers :"
+msgstr "Aantal opname buffers:"
+
+#: ../../harddrake/bttv.pm_.c:198
+#, fuzzy
+msgid "number of capture buffers for mmap'ed capture"
+msgstr "aantal van opname buffers voor mmap-opname:"
+
+#: ../../harddrake/bttv.pm_.c:199
+msgid "Tuner type :"
+msgstr "Tuner type :"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr "Radio ondersteuning:"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr "activeer radio ondersteuning"
+
+#: ../../harddrake/ui.pm_.c:12
+msgid "/_Quit"
+msgstr "/_Afsluiten"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Hulp"
+
+#: ../../harddrake/ui.pm_.c:14
+msgid "/_Help..."
+msgstr "/_Help..."
+
+#: ../../harddrake/ui.pm_.c:15
+msgid "/_About..."
+msgstr "/_Info over..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Module"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Kaart model:"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Annuleren"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr "Bus"
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "Module"
+msgstr "Module"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+#, fuzzy
+msgid "Media class"
+msgstr "Mediaklasse"
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Beschrijving"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+msgid "Bus identification"
+msgstr "Bus identificatie"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+#, fuzzy
+msgid "Location on the bus"
+msgstr "Locatie op de bus"
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Selecteer bestand"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Gateway apparaat"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 knoppen"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+msgid "Harddrake2 version "
+msgstr "Harddrake2 versie "
+
+#: ../../harddrake/ui.pm_.c:122
+msgid "Detected hardware"
+msgstr "Gedetecteerde hardware"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Informatie"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr "Start configuratie-tool"
+
+#: ../../harddrake/ui.pm_.c:158
+msgid "Configure module"
+msgstr "Module configureren"
+
+#: ../../harddrake/ui.pm_.c:168
+msgid "Detection in progress"
+msgstr "Bezig met detecteren"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Even geduld"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr "Primaire"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "secondary"
+msgstr "secundaire"
+
+#: ../../harddrake/ui.pm_.c:260
+#, c-format
+msgid "Running \"%s\" ..."
+msgstr "Draait \"%s\" ..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr "Info over Harddrake"
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+"Dit is HardDrake, een Mandrake hardware configuratie-tool.\n"
+"Versie:"
+
+#: ../../harddrake/ui.pm_.c:281
+msgid "Author:"
+msgstr "Auteur:"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr "Harddrake help"
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2322,7 +2483,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2345,7 +2506,7 @@ msgstr ""
"in tegenstelling tot \"root\", de \"administrator\", zullen de gebruikers "
"die\n"
" u hier toevoegt geen recht hebben om iets te veranderen behalve hun eigen \n"
-"bestanden en hun eigen configuratie. U zult tenminste één gebruiker voor \n"
+"bestanden en hun eigen instellingen. U zult tenminste ĂŠĂŠn gebruiker voor \n"
"uzelf aan moeten maken. Deze account is degene waar u voor dagelijks "
"gebruik \n"
"op zult inloggen. Alhoewel het erg praktisch is om iedere dag als \"root\" \n"
@@ -2410,13 +2571,13 @@ msgid ""
"\"second lowest SCSI ID\", etc."
msgstr ""
"Hierboven zijn de bestaande Linux partities afgebeeld die op uw harde\n"
-"schijf gevonden zijn. U kunt de keuzes die gemaakt zijn door de wizard\n"
+"schijf gevonden zijn. U kunt de keuzes die gemaakt zijn door de hulp\n"
"behouden, ze zijn goed voor de meeste doorsnee installaties.\n"
"Indien u veranderingen maakt, moet u in ieder geval een root partitie\n"
-"(\"/\") definiëren. Kies een partitie niet te klein, anders zult u niet in\n"
+"(\"/\") definiĂŤren. Kies een partitie niet te klein, anders zult u niet in\n"
"staat zijn genoeg software te installeren. Indien u uw gegevens op een\n"
"aparte partitie wilt bewaren, dient u tevens een \"/home\" partitie te\n"
-"creëren (alleen mogelijk wanneer er meer dan één Linux partitie\n"
+"creĂŤren (alleen mogelijk wanneer er meer dan ĂŠĂŠn Linux partitie\n"
"beschikbaar is).\n"
"\n"
"Elke partitie is als volgt afgebeeld: \"Naam\", \"Capaciteit\"\n"
@@ -2441,7 +2602,7 @@ msgstr ""
"\n"
"In het geval van SCSI harde schijven betekent een \"a\" \"laagste SCSI ID"
"\",\n"
-"een \"b\" \"het op één na laagste SCSI ID\", etc."
+"een \"b\" \"het op ĂŠĂŠn na laagste SCSI ID\", etc."
#: ../../help.pm_.c:72
msgid ""
@@ -2468,9 +2629,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2519,10 +2679,10 @@ msgstr ""
"\n"
"Pakketten zijn samengebracht in groepen die corresponderen met een\n"
"bepaald gebruik van uw computer. De groepen zelf zijn ingedeeld in vier\n"
-"categorieën:\n"
+"categorieĂŤn:\n"
"\n"
"* \"Werkstation\": indien u van plan bent uw computer als werkstation te\n"
-"gaan gebruiken, selecteer dan één of meer van de corresponderende\n"
+"gaan gebruiken, selecteer dan ĂŠĂŠn of meer van de corresponderende\n"
"groepen. \n"
"\n"
"* \"Ontwikkeling\": als de computer gebruikt gaat worden voor programmeren,\n"
@@ -2530,11 +2690,11 @@ msgstr ""
"\n"
"* \"Server\": als de computer bestemd is voor server-doeleinden, dan\n"
"kunt u aangeven welke van de meest algemene diensten u op uw\n"
-"computer geďnstalleerd wilt zien.\n"
+"computer geĂŻnstalleerd wilt zien.\n"
"\n"
"* \"Grafische Omgeving\": tot slot is dit waar u uw voorkeur voor een "
"grafische\n"
-"omgeving kunt aangeven. Tenminste één moet geselecteerd zijn als u een\n"
+"omgeving kunt aangeven. Tenminste ĂŠĂŠn moet geselecteerd zijn als u een\n"
"grafisch werkstation wilt hebben!\n"
"\n"
"Bij het bewegen van de muispijl boven een groepnaam zal er een korte "
@@ -2564,12 +2724,12 @@ msgstr ""
"U kunt het \"Individuele pakketselectie\"-vakje selecteren, welke nuttig is "
"als\n"
"u bekend bent met de aangeboden pakketten of indien u totale controle wenst\n"
-"over wat er geďnstalleerd zal worden.\n"
+"over wat er geĂŻnstalleerd zal worden.\n"
"\n"
"In het geval dat u de installatie in \"Opwaarderen\"-modus heeft gestart, "
"kunt u\n"
"alle groepen deselecteren om te voorkomen dat er nieuwe pakketten "
-"geďnstalleerd\n"
+"geĂŻnstalleerd\n"
"worden. Dit is nuttig bij het repareren of het vernieuwen van een bestaand "
"systeem."
@@ -2618,7 +2778,7 @@ msgstr ""
"Wanneer u een pakket in de boom selecteert, verschijnt een beschrijving\n"
"aan de rechterkant. Zodra uw selectie klaar is, klikt u de \"Installeren\"-\n"
"knop welke het installatieproces in gang zal zetten. Afhankelijk van de\n"
-"snelheid van uw apparatuur en het aantal pakketten dat geďnstalleerd\n"
+"snelheid van uw apparatuur en het aantal pakketten dat geĂŻnstalleerd\n"
"moet worden, kan het enige tijd duren om het proces te voltooien. Een\n"
"geschatte tijd tot voltooiing wordt weergegeven op het scherm om u te\n"
"helpen inschatten of er nog tijd is om te genieten van een kopje koffie.\n"
@@ -2626,14 +2786,14 @@ msgstr ""
"!! Als een server-pakket geselecteerd is, ofwel bedoeld ofwel omdat\n"
"het onderdeel is van een gehele groep, zal u gevraagd worden om\n"
"te bevestigen dat u deze servers echt wilt installeren. Onder Mandrake\n"
-"Linux worden alle geďnstalleerde servers standaard ingeschakeld\n"
+"Linux worden alle geĂŻnstalleerde servers standaard ingeschakeld\n"
"tijdens het opstarten. Zelfs wanneer zij veilig zijn en geen bekende\n"
"beveiligingsgebreken hadden op het moment dat de distributie "
"werdnuitgebracht, kan het gebeuren dat beveiligingsfouten ontdekt worden\n"
"nadat deze versie van Mandrake Linux afgemaakt werd. Indien u niet\n"
"weet wat een bepaalde dienst geacht wordt te doen of waarom het\n"
-"geďnstalleerd wordt, klikt u dan \"Nee\". Klikken op \"Ja\" zorgt ervoor\n"
-"dat de getoonde diensten geďnstalleerd worden en dat ze automatisch\n"
+"geĂŻnstalleerd wordt, klikt u dan \"Nee\". Klikken op \"Ja\" zorgt ervoor\n"
+"dat de getoonde diensten geĂŻnstalleerd worden en dat ze automatisch\n"
"ingeschakeld zullen worden. !!\n"
"\n"
"De \"Automatische afhankelijkheden\"-optie schakelt eenvoudigweg het\n"
@@ -2645,7 +2805,7 @@ msgstr ""
"Het minuscule diskette-pictogram onderaan de lijst stelt u in staat de\n"
"pakketten-lijst te laden die tijdens een eerdere installatie gekozen was.\n"
"Als u klikt op dit pictogram zal u gevraagd worden een diskette in het\n"
-"diskettestation te plaatsen welke gecreëerd was aan het eind van een\n"
+"diskettestation te plaatsen welke gecreĂŤerd was aan het eind van een\n"
"andere installatie. Zie de tweede tip van de laatste stap over hoe u een\n"
"dergelijke diskette aanmaakt."
@@ -2688,12 +2848,12 @@ msgstr ""
"systeembeheerder bij de hand heeft.\n"
"\n"
"U kunt het hoofdstuk over Internetverbindingen in het handboek\n"
-"raadplegen voor details over de configuratie, of gewoon wachten\n"
-"totdat uw systeem geďnstalleerd is en dan het beschreven programma\n"
-"gebruiken om uw verbinding te configureren.\n"
+"raadplegen voor details over de instellingen, of gewoon wachten\n"
+"totdat uw systeem geĂŻnstalleerd is en dan het beschreven programma\n"
+"gebruiken om uw verbinding in te stellen.\n"
"\n"
-"Indien u wenst het netwerk later na de installatie te configureren of\n"
-"indien u klaar bent met het configureren van uw verbinding, klikt u\n"
+"Indien u wenst het netwerk later na de installatie in te stellen of\n"
+"indien u klaar bent met het instellen van uw verbinding, klikt u\n"
"op \"Annuleren\"."
#: ../../help.pm_.c:186
@@ -2758,7 +2918,7 @@ msgstr ""
"de getoonde lijst kunt u een server kiezen bij u in de buurt. Uiteraard\n"
"moet u een werkende internetverbinding hebben voordat deze functie\n"
"werkt. Dit zorgt er tevens voor dat er een tijdsserver op uw computer\n"
-"wordt geďnstalleerd die mogelijkerwijs gebruikt kan worden door\n"
+"wordt geĂŻnstalleerd die mogelijkerwijs gebruikt kan worden door\n"
"andere computers op uw lokale netwerk."
#: ../../help.pm_.c:217
@@ -2795,14 +2955,14 @@ msgstr ""
"oplossend vermogen mogelijk, afhankelijk van de grootte van uw monitor.\n"
"Een venster zal verschijnen en u vragen of u het kunt zien.\n"
"\n"
-"Indien u een \"Expert\"-installatie uitvoert, komt u in de X configuratie "
-"wizard.\n"
+"Indien u een \"Expert\"-installatie uitvoert, komt u in de X instellingen "
+"hulp.\n"
"Zie het corresponderende stuk in de handleiding voor meer informatie over\n"
-"deze wizard.\n"
+"deze hulp.\n"
"\n"
"Als u het bericht tijdens de test kunt zien en \"Ja\" antwoordt, zal DrakX\n"
"doorgaan naar de volgende stap. Zoniet, dan betekent dat gewoon dat de\n"
-"configuratie onjuist was. De test zal in dat geval automatisch eindigen na\n"
+"instelling onjuist was. De test zal in dat geval automatisch eindigen na\n"
"10 seconden en het scherm herstellen."
#: ../../help.pm_.c:237
@@ -2825,7 +2985,7 @@ msgstr ""
"configuratie\n"
"te wijzigen door een lijst van geldige modi te tonen die het gevonden "
"heeft,\n"
-"en u vragen er één te selecteren.\n"
+"en u vragen er ĂŠĂŠn te selecteren.\n"
"\n"
"Als een uiterste uitwijkmogelijkheid, als het u niet lukt X aan de praat te\n"
"krijgen, kiest u \"Grafische kaart wijzigen\", selecteer \"Niet vermelde "
@@ -2850,7 +3010,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2862,9 +3022,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2882,7 +3041,7 @@ msgstr ""
"geval dat uw computer niet kan opstarten van de CD-ROM, moet u terugkomen\n"
"naar deze stap voor hulp in tenminste twee situaties:\n"
"\n"
-" * wanneer de opstart-lader geďnstalleerd wordt, zal DrakX de boot sector "
+" * wanneer de opstart-lader geĂŻnstalleerd wordt, zal DrakX de boot sector "
"(MBR)\n"
"van uw eerste harde schijf overschrijven (tenzij u een andere "
"opstartbeheerder\n"
@@ -2940,21 +3099,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2970,21 +3128,21 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Op dit punt moet u kiezen waar op uw harde schijf u uw Mandrake Linux\n"
"besturingssysteem wilt installeren. Als uw harde schijf leeg is of als een\n"
"ander besturingssysteem alle beschikbare ruimte inneemt, dan zult u\n"
"de harde schijf moeten partitioneren. Partitioneren houdt in dat u uw harde\n"
-"schijf in logische stukken onderverdeelt om ruimte te creëren voor uw "
+"schijf in logische stukken onderverdeelt om ruimte te creĂŤren voor uw "
"nieuwe\n"
"Mandrake Linux besturingssysteem.\n"
"\n"
"Omdat de effecten van het partitioneringsproces over het algemeen niet\n"
"terug te draaien zijn, kan partitioneren intimiderend en spannend zijn voor\n"
-"een onervaren gebruiker. Gelukkig is er een wizard die dit proces\n"
+"een onervaren gebruiker. Gelukkig is er een hulp die dit proces\n"
"vereenvoudigt. Raadpleeg de handleiding voordat u begint en neem de\n"
"tijd.\n"
"\n"
@@ -2992,8 +3150,8 @@ msgstr ""
"DiskDrake,\n"
"het partitioneringsprogramma van Mandrake Linux, dat u in staat stelt\n"
"om uw partities precies af te stellen. Zie het hoofdstuk over DiskDrake\n"
-"in de handleiding. Voor de installatie-interace kunt u de wizards gebruiken\n"
-"die hier beschreven zijn door op de \"Wizard\"-knop van het dialoogvenster\n"
+"in de handleiding. Voor de installatie-interace kunt u de hulpen gebruiken\n"
+"die hier beschreven zijn door op de \"Hulp\"-knop van het dialoogvenster\n"
"te klikken.\n"
"\n"
"Indien er reeds partities gedefinieerd zijn, hetzij van een vorige "
@@ -3002,21 +3160,21 @@ msgstr ""
"eenvoudigweg selecteren om uw Linux-systeem op te installeren.\n"
"\n"
"Indien er geen partities gedefinieerd zijn, zult u ze moeten aanmaken met\n"
-"de wizard. Afhankelijk van de configuratie van uw harde schijf, zijn er\n"
+"de hulp. Afhankelijk van de configuratie van uw harde schijf, zijn er\n"
"verscheidene opties beschikbaar:\n"
"\n"
" * \"Gebruik vrije ruimte\": deze optie zal leiden tot het automatisch\n"
"partitioneren van uw lege schijf/schijven. Er worden u verder geen vragen\n"
"gesteld.\n"
"\n"
-" * \"Gebruik bestaande partitie\": de wizard heeft één of meer bestaande\n"
+" * \"Gebruik bestaande partitie\": de hulp heeft ĂŠĂŠn of meer bestaande\n"
"Linux-partities op uw harde schijf gevonden. Indien u deze wilt gebruiken,\n"
"kiest u deze optie.\n"
"\n"
" * \"Gebruik vrije ruime op de Windows-partitie\": indien Microsoft Windows\n"
-"op uw harde schijf is geďnstalleerd en alle beschikbare ruimte in beslag "
+"op uw harde schijf is geĂŻnstalleerd en alle beschikbare ruimte in beslag "
"neemt,\n"
-"dient u vrije ruimte te creëren voor Linux-gegevens. Om dat te doen, kunt u "
+"dient u vrije ruimte te creĂŤren voor Linux-gegevens. Om dat te doen, kunt u "
"uw\n"
"Microsoft Windows-partitie en -gegevens wissen (zie \"Wis gehele schijf\"\n"
"of \"Expert-modus\"-oplossingen) om uw Microsoft Windows-partitie te\n"
@@ -3072,9 +3230,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3097,7 +3254,7 @@ msgstr ""
"voor:\n"
"\n"
" * \"auto-installatiediskette aanmaken\": om een installatiediskette te\n"
-"creëren weke de gehele installatie automatisch zal uitvoeren zonder hulp\n"
+"creĂŤren weke de gehele installatie automatisch zal uitvoeren zonder hulp\n"
"van een beheerder, gelijkend op de installatie die u zonet heeft\n"
"geconfigureerd.\n"
"\n"
@@ -3120,8 +3277,8 @@ msgstr ""
"installatieprogramma waarna u naar het helpscherm gaat door op de\n"
"[F1]-toets te drukken, en door ''linux defcfg=\"floppy\" '' in te geven.\n"
"\n"
-"(*) U heeft een FAT-geformatteerde dskette nodig (om er één onder\n"
-"GNU/Linux te creëren, typt u \"mformat a:\")"
+"(*) U heeft een FAT-geformatteerde dskette nodig (om er ĂŠĂŠn onder\n"
+"GNU/Linux te creĂŤren, typt u \"mformat a:\")"
#: ../../help.pm_.c:378
msgid ""
@@ -3151,7 +3308,7 @@ msgid ""
"for bad blocks on the disk."
msgstr ""
"Iedere nieuw gedefinieerde partitie moet geformatteerd worden voor\n"
-"gebruik (formatteren betekent het creëren van een bestandssysteem).\n"
+"gebruik (formatteren betekent het creĂŤren van een bestandssysteem).\n"
"\n"
"Op dit moment wilt u wellicht enkele reeds bestaande partities\n"
"herformatteren om alle gegevens erop te wissen. Indien u dat wenst\n"
@@ -3184,7 +3341,7 @@ msgid ""
"\n"
"Please be patient."
msgstr ""
-"Uw nieuwe Mandrake Linux besturingssysteem wordt nu geďnstalleerd.\n"
+"Uw nieuwe Mandrake Linux besturingssysteem wordt nu geĂŻnstalleerd.\n"
"Afhankelijk van het aantal pakketten dat u zult installeren en de snelheid\n"
"van uw computer, kan deze operatie enkele minuten tot een behoorlijk lange\n"
"tijd in beslag nemen.\n"
@@ -3277,38 +3434,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3339,7 +3490,7 @@ msgstr ""
"ander partitioneringsprogramma, kunt u bestaande partities gebruiken.\n"
"In andere gevallen moeten er harde schijf-partities gedefinieerd worden.\n"
"\n"
-"Om partities te creëren, dient u eerst een harde schijf te kiezen. U kunt "
+"Om partities te creĂŤren, dient u eerst een harde schijf te kiezen. U kunt "
"de\n"
"te partitioneren schijf selecteren door op \"hda\" te klikken voor de "
"eerste\n"
@@ -3353,7 +3504,7 @@ msgstr ""
"geselecteerde\n"
"harde schijf.\n"
"\n"
-" * \"Automatisch toewijzen\": deze optie creëert automatisch Ext2- en swap-\n"
+" * \"Automatisch toewijzen\": deze optie creĂŤert automatisch Ext2- en swap-\n"
"partities in de vrije ruimte op uw harde schijf.\n"
"\n"
" * \"Meer\": geeft toegang tot extra opties:\n"
@@ -3381,7 +3532,7 @@ msgstr ""
"dwingt gebruikers om handmatig verwisselbare media zoals diskettes en\n"
"CD-ROMs te koppelen en te ontkoppelen.\n"
"\n"
-" * \"Wizard\": gebruik deze optie indien u een wizard wenst te gebruiken om\n"
+" * \"Hulp\": gebruik deze optie indien u een hulp wenst te gebruiken om\n"
"uw harde schijf mee te partitioneren. Dit is aanbevolen als u geen brede "
"kennis\n"
"heeft over partitioneren.\n"
@@ -3402,7 +3553,7 @@ msgstr ""
"Wanneer een partitie is geselecteerd, kunt u deze toetscombinaties "
"gebruiken:\n"
"\n"
-" * Ctrl+c om een nieuwe partitie te creëren (als een lege ruimte is "
+" * Ctrl+c om een nieuwe partitie te creĂŤren (als een lege ruimte is "
"geselecteerd);\n"
"\n"
" * Ctrl+d om een partitie te verwijderen;\n"
@@ -3415,7 +3566,7 @@ msgstr ""
"\n"
"In het geval dat u op een PPC computer aan het installeren bent, zult u een "
"kleine\n"
-"HFS \"bootstrap\"-partitie van tenminste 1MB willen creëren welke gebruikt "
+"HFS \"bootstrap\"-partitie van tenminste 1MB willen creĂŤren welke gebruikt "
"zal\n"
"worden door de yaboot opstartlader. Indien u liever de partitie wat groter "
"maakt,\n"
@@ -3454,7 +3605,7 @@ msgid ""
"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
"disk or partition is called \"C:\")."
msgstr ""
-"Er is meer dan één Microsoft Windows partitie op uw harde schijf bespeurd.\n"
+"Er is meer dan ĂŠĂŠn Microsoft Windows partitie op uw harde schijf bespeurd.\n"
"Kiest u degene die u wilt verkleinen om uw nieuwe Mandrake Linux\n"
"besturingssysteem te kunnen installeren.\n"
"\n"
@@ -3480,7 +3631,7 @@ msgstr ""
" * \"d\" betekent \"slave apparaat op de secundaire IDE controller\".\n"
"\n"
"Bij SCSI harde schijven betekent een \"a\" \"laagste SCSI ID\", een\"b\" "
-"\"op één na laagste SCSI ID\", enzovoort.\n"
+"\"op ĂŠĂŠn na laagste SCSI ID\", enzovoort.\n"
"\n"
"\"Windows naam\" is de letter van uw harde schijf onder Windows (de\n"
"eerste schijf of partitie wordt \"C:\" genoemd)."
@@ -3500,11 +3651,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3539,7 +3690,7 @@ msgstr ""
"partities onveranderd te behouden.\n"
"\n"
" * \"Opwaarderen\" De installatieklasse laat u eenvoudigweg de pakketten\n"
-"vernieuwen die nu op uw Mandrake Linux-systeem geďnstalleerd zijn. Het\n"
+"vernieuwen die nu op uw Mandrake Linux-systeem geĂŻnstalleerd zijn. Het\n"
"behoudt de huidige partities van uw harde schijven zowel als de\n"
"gebruikersconfiguraties. Alle andere configuratiestappen van een gewone\n"
"installatie zullen beschikbaar blijven.\n"
@@ -3552,12 +3703,12 @@ msgstr ""
"Opwaarderen zou goed moeten gaan voor Mandrake Linux-systemen\n"
"vanaf versie 8.1.\n"
"\n"
-"Kies, afhankelijk van uw kennis van GNU/Linux, één van de volgende\n"
+"Kies, afhankelijk van uw kennis van GNU/Linux, ĂŠĂŠn van de volgende\n"
"mogelijkheden:\n"
"\n"
" * Aanbevolen: kies dit als u nog nooit een GNU/Linux besturingssysteem "
"hebt\n"
-"geďnstalleerd. De installatie zal erg gemakkelijk verlopen en er zullen u\n"
+"geĂŻnstalleerd. De installatie zal erg gemakkelijk verlopen en er zullen u\n"
"slechts enkele vragen gesteld worden.\n"
"\n"
" * Expert: als u een goede kennis bezit van GNU/Linux kunt u deze\n"
@@ -3567,7 +3718,7 @@ msgstr ""
"kan moeilijk zijn als u geen goede kennis van GNU/Linux bezit, dus kies dit\n"
"niet tenzij u weet wat u doet."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3596,7 +3747,7 @@ msgstr ""
"Klik op de \"Meer\"-knop om de complete lijst van ondersteunde\n"
"toetsenbordindelingen te zien."
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3613,7 +3764,7 @@ msgstr ""
"Kiest u de gewenste taal voor installatie en gebruik op uw computer.\n"
"\n"
"Door te klikken op de \"Geavanceerd\"-knop kunt u andere talen selecteren\n"
-"die op uw werkstation geďnstalleerd moeten worden. Het selecteren van\n"
+"die op uw werkstation geĂŻnstalleerd moeten worden. Het selecteren van\n"
"andere talen zal de taalspecifieke bestanden voor systeemdocumentatie\n"
"en applicaties installeren. Als u bijvoorbeeld gastheer bent voor Spaanse\n"
"gebruikers op uw machine, selecteert u Nederlands als eerste taal in het\n"
@@ -3621,11 +3772,11 @@ msgstr ""
"naast\n"
"\"Spaans|Spanje\".\n"
"\n"
-"Merk op dat meerdere talen geďnstalleerd kunnen worden. Zodra u enige\n"
+"Merk op dat meerdere talen geĂŻnstalleerd kunnen worden. Zodra u enige\n"
"extra taalgebieden heeft geselecteerd, klikt u op de \"OK\"-knop om verder\n"
"te gaan."
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3642,7 +3793,7 @@ msgid ""
msgstr ""
"Normaal gesproken neemt DrakX aan dat u een tweeknops-muis heeft en\n"
"zal deze instellen voor het nadoen van een derde knop. DrakX zoekt zelf uit\n"
-"of dit een PS/2-, seriële- of USB-muis is.\n"
+"of dit een PS/2-, seriĂŤle- of USB-muis is.\n"
"\n"
"Indien u een ander type muis wenst te specificeren, selecteer dan het "
"juiste\n"
@@ -3653,7 +3804,7 @@ msgstr ""
"controleren dat de instellingen goed zijn. Als de muis niet correct werkt,\n"
"druk dan op de spatiebalk of Enter om te \"Annuleren\" en kies opnieuw."
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3661,23 +3812,23 @@ msgstr ""
"Gelieve de juiste poort te kiezen. COM1 onder Windows wordt bijvoorbeeld\n"
"\"ttyS0\" genoemd onder GNU/Linux."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3736,7 +3887,7 @@ msgstr ""
"Indien uw computer niet verbonden is aan een beheerd netwerk, zult u\n"
"willen kiezen voor \"Lokale bestanden\" als wijze van authenticatie."
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3758,7 +3909,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3766,7 +3917,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3813,7 +3964,7 @@ msgstr ""
"\n"
" * \"Opstartapparaat\": in de meeste gevallen zult u de standaardkeuze\n"
"(\"/dev/hda\") niet veranderen, maar als u dat prefereert kan de\n"
-"opstartlader op de tweede harde schijf (\"/dev/hdb\") geďnstalleerd\n"
+"opstartlader op de tweede harde schijf (\"/dev/hdb\") geĂŻnstalleerd\n"
"worden, of zelfs op een diskette (\"/dev/fd0\").\n"
"\n"
" * \"Periode voordat standaard beeldbestand opgestard wordt\":\n"
@@ -3825,7 +3976,7 @@ msgstr ""
"\"\n"
"te kiezen) u ervoor moet zorgen dat u een manier heeft om uw Mandrake\n"
"Linux-systeem op te starten! Zorg er tevens voor dat u weet wat u doet\n"
-"wanneer u één van de opties wijzigt. !!\n"
+"wanneer u ĂŠĂŠn van de opties wijzigt. !!\n"
"\n"
"Onder de \"Geavanceerd\"-knop in dit dialoogvenster zitten veel\n"
"geavanceerde opties, waar alleen een gevorderde gebruiker iets\n"
@@ -3835,13 +3986,13 @@ msgstr ""
"wordt u de lijst van opstartopties getoond die beschikbaar zullen zijn\n"
"bij het opstarten.\n"
"\n"
-"Als er een ander besturingssysteem op uw computer geďnstalleerd is, zal\n"
+"Als er een ander besturingssysteem op uw computer geĂŻnstalleerd is, zal\n"
"het automatisch aan het opstartmenu worden toegevoegd. U kunt hier de\n"
"bestaande opties fijn afregelen. Selecteer een item en klik op \"Wijzigen\"\n"
-"om hem te wijzigen of te verwijderen; \"Toevoegen\" creëert een nieuw\n"
+"om hem te wijzigen of te verwijderen; \"Toevoegen\" creĂŤert een nieuw\n"
"item en \"Klaar\" gaat door naar de volgende installatiestap."
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3856,7 +4007,7 @@ msgstr ""
"LILO (de LInux LOader) en GRUB zijn opstart-laders: ze kunnen Linux of\n"
"eender welk ander besturingssysteem opstarten op uw computer.\n"
"Normaal gesproken worden deze besturingssystemen correct bespeurd en\n"
-"geďnstalleerd. Als dit niet het geval is, kunt u handmatig een ingang "
+"geĂŻnstalleerd. Als dit niet het geval is, kunt u handmatig een ingang "
"toevoegen\n"
"op dit scherm. Let goed op dat u de juiste opties kiest.\n"
"\n"
@@ -3865,7 +4016,7 @@ msgstr ""
"In dat geval kunt u de overeenkomstige ingangen verwijderen. Maar dan zult\n"
"u echter wel een opstartdiskette nodig hebben om ze nog te kunnen opstarten!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3880,29 +4031,28 @@ msgstr ""
"Tenzij u precies weet wat u doet, kiest u \"Eerste sector van\n"
"station (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3911,7 +4061,7 @@ msgid ""
"networks."
msgstr ""
"Hier selecteren we een printsysteem voor uw computer. Andere\n"
-"besturingssystemen geven u er wellicht maar één, maar Mandrake\n"
+"besturingssystemen geven u er wellicht maar ĂŠĂŠn, maar Mandrake\n"
"heeft er drie.\n"
"\n"
" * \"pdq\" - hetgeen betekent \"print, don't queue\", is de keuze indien\n"
@@ -3943,7 +4093,7 @@ msgstr ""
"verdient CUPS de voorkeur omdat het eenvoudiger is en beter werkt\n"
"in netwerkverband."
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3968,18 +4118,18 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"DrakX is nu bezig met het bespeuren van IDE-apparaten die in uw\n"
-"computer aanwezig zijn. Het zal tevens zoeken naar één of meer PCI\n"
+"computer aanwezig zijn. Het zal tevens zoeken naar ĂŠĂŠn of meer PCI\n"
"SCSI-kaart(en) in uw systeem. Als een SCSI-kaart gevonden is, zal\n"
"DrakX automatisch he geschikte stuurprogramma installeren.\n"
"\n"
"Omdat hardware-bespeuring niet altijd een stuk hardware bespeurt, zal\n"
"DrakX u vragen om te bevestigen dat er een PCI SCSI-kaart aanwezig is.\n"
"Klik op \"Ja\" indien u weet dat er een SCSI-kaart in uw machine is\n"
-"geďnstalleerd. U krijgt een lijst van SCSI-kaarten te zien waaruit u kunt\n"
+"geĂŻnstalleerd. U krijgt een lijst van SCSI-kaarten te zien waaruit u kunt\n"
"kiezen. Klik op \"Nee\" indien u geen SCSI-hardware heeft. In het geval\n"
"dat u niet zeker bent dan kunt u de lijst van bespeurde hardware in uw\n"
"computer nagaan door \"Bekijk hardware-info\" te selecteren en op \"OK\"\n"
@@ -4001,7 +4151,7 @@ msgstr ""
"internettoegang heeft), of uit Microsoft Windows (als u deze hardware\n"
"met Windows heeft gebruikt op uw systeem)."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -4011,9 +4161,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -4025,7 +4174,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" 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"
@@ -4050,8 +4199,62 @@ msgid ""
"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
"selections."
msgstr ""
+"U kent extra parameters toevoegen voor yaboot, voor andere\n"
+"besturingssystemen, alternatieve kernels of voor een nood opstart\n"
+"bestand.\n"
+"\n"
+"Voor andere besturingssystemen bestaan de parameters uit een\n"
+"naam (label) en een hoofd partitie (root partitie).\n"
+"\n"
+"Voor Linux zijn er nog enkelle extra opties:\n"
+"\n"
+" * Label: Dit is simpelweg de naam die U moet invoeren op de yaboot\n"
+" prompt om deze opstart optie te selecteren;\n"
+"\n"
+" * Image: dit is de naam van de kernel, gebruikelijk is vmlinux of een\n"
+" variatie van vmlinux-met-een-extensie;\n"
+"\n"
+" * Root: het hoofd apparaat (root) voor uw Linux installatie;\n"
+"\n"
+" * Append: op Apple apparaten wordt de kernel-append optie veel\n"
+" gebruikt om te assisteren bij het ingebruik nemen van\n"
+" de video apparatuur, of om het toetsenbord en muis te\n"
+" activeren ivm de ontbrekende 2e en 3e muisknop op een\n"
+" standaard apple muis. Dit zijn wat voorbeelden:\n"
+"\n"
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=\n"
+" 103,111 hda=autotune\n"
+"\n"
+" video=atyfb:vmode=12,cmode=24 adb_buttons=103,111\n"
+"\n"
+" * Initrd: deze optie kan voor twee doelen gebruikt worden, het kunnen\n"
+" laden van initiele modulen voordat het opstart apparaat\n"
+" bereikbaar is, of om een geheugen schijf te laden voor een\n"
+" nood opstart situatie;\n"
+"\n"
+" * Initrd-size: de standaard geheugen schijf grootte is 4MB, indien U\n"
+" een grotere geheugenschijf wilt laden, kunt U met "
+"deze\n"
+" optie de grootte instellen;\n"
+"\n"
+" * Read-write: normaal gesproken wordt de hoofd(root) partitie tijdens\n"
+" opstarten alleen-lezen geladen om een controlle "
+"te\n"
+" kunnen uitvoeren alvorens \"live\" te gaan.\n"
+" Hier kunt U deze optie met de hand instellen;\n"
+"\n"
+" * NoVideo: indien het Apple video apparaat exceptioneel veel\n"
+" problemen geeft, kunt U hiermee opstarten in een\n"
+" zogenaamde \"novideo\" modus met standaard\n"
+" framebuffer ondersteuning;\n"
+"\n"
+" * Default: selecteerd deze selectie als de standaard selectie,\n"
+" deze selectie zal op de yaboot prompt dan standaard\n"
+" verkozen zijn wanneer U op ENTER drukt. Deze selectie\n"
+" zal ook met een \"*\" herkenbaar zijn als U op de TAB\n"
+" toets drukt op de yaboot-prompt."
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -4078,18 +4281,58 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-
-#: ../../help.pm_.c:862
+"Yaboot is een zogenaamde bootloader (opstart selector) voor moderne\n"
+"MacIntosh apparatuur. Het kan GNU/Linux, MacOS of MacOSX opstarten\n"
+"indien aanwezig op uw computer. Normaal gesproken worden deze\n"
+"besturingssystemen automatisch gedetecteerd en ingesteld. Als dit niet het\n"
+"geval is, dan kunt U hier handmatig deze toegangen toevoegen. Kijk uit\n"
+"om de correcte parameters te selecteren.\n"
+"\n"
+"Yaboots hoofd opties zijn:\n"
+"\n"
+" * Init Message: een eenvoudig tekst bericht getoond voor de bootprompt\n"
+" (opstart regel);\n"
+"\n"
+" * Boot Device: indiceert waar U de benodigde informatie om GNU/Linux\n"
+" op te starten wilt plaatsen. Normaal gesproken "
+"stelt U\n"
+" eerder in waar U deze informatie wilt plaatsen;\n"
+" * Open Firmware Delay: Anders dan LILO zijn er twee vertragingen\n"
+" beschikbaar met yaboot. De "
+"eerste vertraging\n"
+" wordt in seconden ingesteld en "
+"op dit punt kunt\n"
+" U kiezen uit CD, OF opstart, "
+"MacOS of Linux;\n"
+"\n"
+" * Kernel Boot Timeout: deze pauze komt overeen met de boot delay van\n"
+" LILO. Na het selecteren van Linux "
+"heeft U een\n"
+" tijd van 0,1 seconden voordat uw "
+"standaard\n"
+" kernel wordt geselecteerd;\n"
+"\n"
+" * Enable CD Boot?: het instellen van deze optie staat U toe op te starten\n"
+" met \"C\" voor CD op de opstart "
+"prompt;\n"
+"\n"
+" * Enable OF Boot?: het instellen van deze optie staat U toe om \"N\" voor\n"
+" Open Firmware start te selecteren op de "
+"bootprompt;\n"
+"\n"
+" * Default OS: hier kunt U selecteren welk besturingssysteem automatisch\n"
+" wordt gestart na de Open Firmware vertraging."
+
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -4097,12 +4340,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -4139,7 +4381,7 @@ msgstr ""
"te stellen aan de hand van de tijdzone waarin u zich bevindt.\n"
"\n"
" * \"Printer\": klikken op de \"Geen printer\"-knop zal de "
-"printerconfiguratie-wizard\n"
+"printerconfiguratie-hulp\n"
"openen.\n"
"\n"
" * \"Geluidskaart\": indien een geluidskaart bespeurd is op uw systeem, "
@@ -4157,7 +4399,7 @@ msgstr ""
"hier weergegeven. U kunt op de knop klikken om de parameters aan te passen\n"
"die erbij horen."
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4167,7 +4409,7 @@ msgstr ""
"Mandrake Linux partitie op te installeren. Wees voorzichtig, alle data die\n"
"op deze schijf staat zal verloren gaan, en niet terug te halen zijn!"
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4187,20 +4429,24 @@ msgstr ""
"Klik op \"Annuleren\" om deze operatie te annuleren zonder daarbij \n"
"gegevens of partities aanwezig op schijf te verliezen."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
"missing), this generally means your boot floppy in not in sync with the "
"Installation medium (please create a newer boot floppy)"
msgstr ""
+"Kan kernel modulen behorend bij uw kernel niet benaderen (bestand %s "
+"ontbreekt), dit betekent normaal gesproken dat uw opstartdiskette niet "
+"hetzelfde is als die van het installatie medium. (Maak een nieuwe boot "
+"diskette)"
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr "U dient tevens %s te formatteren"
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4224,21 +4470,21 @@ msgstr ""
"\n"
"Weet u zeker dat u deze servers wilt installeren?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "Kan niet uitzenden zonder NIS-domein"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr ""
"Plaats een met het FAT-bestandssysteem geformatteerde diskette in station %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Deze diskette is niet FAT-geformatteerd"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4246,7 +4492,7 @@ msgstr ""
"Om deze opgeslagen pakketselectie te gebruiken, start u de installatie \n"
"met ''linux defcfg=floppy''"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Fout bij het lezen van bestand %s"
@@ -4276,7 +4522,7 @@ msgstr "U moet een swap-partitie hebben"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -4284,60 +4530,60 @@ msgstr ""
"\n"
"Toch verdergaan?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr ""
"U moet een partitie met FAT-bestandssysteem gekoppeld hebben aan /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Gebruik vrije ruimte"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Niet genoeg vrije ruimte om nieuwe partities te maken"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Gebruik een bestaande partitie"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Er is geen bestaande partitie om te gebruiken"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Gebruik de Windows partitie voor loopback "
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Welke partitie wenst u te gebruiken voor Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Kies de grootte"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Root-partitie-grootte in MB:"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Swap-partitie-grootte in MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Gebruik de vrije ruimte op de Windows partitie"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Van welke partitie wilt u de grootte veranderen?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Bezig met berekenen van Windows bestandssysteemgrenzen"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4346,12 +4592,15 @@ msgstr ""
"De FAT grootte-aanpasser was niet instaat met uw partitie om te gaan, \n"
"dit is fout gegaan: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"Uw Windows partitie is te gefragmenteerd, start a.u.b. eerst ``defrag'' eerst"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -4374,56 +4623,56 @@ msgstr ""
"veiligheidskopie van uw data.\n"
"Als u zeker bent, klik dan OK."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Welke grootte wilt u gebruiken om windows op?"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "Partitie %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT grootte-aanpassing mislukt: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Er is geen FAT partitie om de grootte van aan te passen of om als \n"
"loopback te gebruiken (of er is te weinig ruimte over)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Volledige harde schijf wissen"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Verwijder Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "U heeft meer dan één harde schijf, op welke wilt u Linux installeren?"
+msgstr "U heeft meer dan ĂŠĂŠn harde schijf, op welke wilt u Linux installeren?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"ALLE bestaande partities en de data die ze bevatten, zal worden gewist van "
"schijf %s"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Aangepaste schijf-partitionering"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Gebruik fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4432,28 +4681,28 @@ msgstr ""
"U kan nu uw schijf %s partitioneren.\n"
"Vergeet niet op te slaan met `w' wanneer u klaar bent."
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "U heeft niet genoeg vrije ruimte op uw Windows partitie"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Ik kan geen partitie meer toevoegen"
#: ../../install_interactive.pm_.c:246
msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "De DrakX partitie wizard heeft de volgende oplossingen gevonden:"
+msgstr "De DrakX partitie hulp heeft de volgende oplossingen gevonden:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Partitionering mislukt: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Bezig met opstarten van het netwerk"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Bezig met stoppen van het netwerk"
@@ -4465,12 +4714,12 @@ msgstr ""
"Er is een fout opgetreden, maar ik weet niet hoe deze te behandelen.\n"
"Als u verdergaat, is dit op eigen risico."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Dubbel koppelpunt %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4478,16 +4727,16 @@ msgid ""
"\"\n"
msgstr ""
"Sommige belangrijke pakketen werden niet juist\n"
-"geďnstalleerd. Of uw cdrom drive of uw cdrom is defect.\n"
-"Controleer de cdrom op een geďnstalleerde computer met\n"
+"geĂŻnstalleerd. Of uw cdrom drive of uw cdrom is defect.\n"
+"Controleer de cdrom op een geĂŻnstalleerde computer met\n"
"\"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Welkom bij %s!"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Geen diskettestation beschikbaar"
@@ -4497,9 +4746,9 @@ msgstr "Geen diskettestation beschikbaar"
msgid "Entering step `%s'\n"
msgstr "Overgang naar stap `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4509,197 +4758,152 @@ msgstr ""
"kunt u een text installatie proberen. Om dit te doen, drukt u op `F1'\n"
"terwijl de CDROM opstart, en dan voert u `text' in."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Installatie-klasse"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr "Gelieve een van de volgende installatieklasses te kiezen:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "De totale grootte voor de geselecteerde groepen is ongeveer %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Als u minder dan deze grootte wenst te installeren,\n"
-"selectere dan het percentage pakketten dat u wenst te installeren.\n"
-"\n"
-"Een laag percentage zal enkel de belangrijkste pakketten installeren;\n"
-"een percentage van 100%% zal alle geselecteerde pakketten installeren."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"U heeft schijfruimte voor slechts %d%% van deze pakketten.\n"
-"\n"
-"Als u minder wenst te installeren,\n"
-"selecteer dan het percentage pakketten dat u wenst te installeren.\n"
-"Een laag percentage zal enkel de belangrijkste pakketten installeren;\n"
-"een percentage van %d%% zal alle geselecteerde pakketten installeren."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Het is mogelijk preciezer te kiezen in de volgende stap."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Percentage pakketten om te installeren"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Pakket-groep Selectie"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Individuele pakketselectie"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Totale grootte: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Slecht pakket"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Naam: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Versie: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Grootte: %d kB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Belangrijkheid: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "U kan dit pakket niet selecteren omdat er te weinig vrije ruimte is"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
-msgstr "De volgende pakketten zullen geďnstalleerd worden"
+msgstr "De volgende pakketten zullen geĂŻnstalleerd worden"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
-msgstr "De volgende pakketten zullen gedeďnstalleerd worden"
+msgstr "De volgende pakketten zullen gedeĂŻnstalleerd worden"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "U kan dit pakket niet (de)selecteren"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Dit is een verplicht pakket, het kan niet gedeselecteerd worden"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "U kan dit pakket niet deselecteren. Het is al geinstalleerd."
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Dit pakket moet opgewaardeerd worden.\n"
"Weet u zeker dat u het wenst te deselecteren?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "U kunt dit pakket niet deselecteren. Het moet opgewaardeerd worden."
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Toon automatisch geselecteerde pakketten"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Installeren"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Laden/Opslaan op diskette"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "Bezig met vernieuwen van pakket-selectie"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "Minimale installatie"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Kies de pakketten die u wenst te installeren"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Bezig met installeren"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Bezig met schatten"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Tijd over "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Bezig met voorbereiden van installatie, even geduld alstublieft"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d pakketten"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Bezig met installeren van pakket %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Accepteren"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Weigeren"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4716,17 +4920,17 @@ msgstr ""
"Als u deze CD niet heeft, klik dan Annuleren om verdere installatie vanaf "
"deze CD te vermijden."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Toch verdergaan?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Er was een fout bij het sorteren van de pakketten:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Er was een fout bij het installeren van de pakketten:"
@@ -4782,11 +4986,11 @@ msgstr ""
"component voorkomen. Het doorbreken van deze overeenkomst zal \n"
"onmiddelijk uw rechten onder de specifieke licentie opheffen. Tenzij \n"
"de specifieke licentie u zulke rechten toekent, kunt u in het algemeen \n"
-"de programma's niet op meer dan één machine installeren, of hen \n"
+"de programma's niet op meer dan ĂŠĂŠn machine installeren, of hen \n"
"aanpassen voor gebruik over een netwerk. Als u twijfelt, neem dan \n"
"alstublieft rechtstreeks contact op met de distributeur van het \n"
"component. \n"
-"Het doorgeven aan een derde partij of het kopiëren van dergelijke \n"
+"Het doorgeven aan een derde partij of het kopiĂŤren van dergelijke \n"
"componenten is in het algemeen verboden.\n"
"\n"
"\n"
@@ -4803,11 +5007,11 @@ msgstr "Er is een fout opgetreden"
msgid "Do you really want to leave the installation?"
msgstr "Weet u zeker dat u het installatieprogramma wilt verlaten?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Licentie overeenkomst"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4822,7 +5026,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -4927,110 +5131,215 @@ msgid ""
"Paris - France.\n"
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+"Introductie\n"
+"\n"
+"Het besturingssysteem en de verschillende componenten beschikbaar in de "
+"Mandrake Linux distributie zullen vanaf nu \" Software Producten\" heten.\n"
+"De Software Producten zijn, niet gebonden aan de programmas, methoden, "
+"regels en documentatie, niet gebonden aan het besturingssysteem en de "
+"verschillende onderdelen van de Mandrake Linux distributie.\n"
+"\n"
+"\n"
+"1. Licentie Overeenkomst\n"
+"\n"
+"Lees dit document zorgvuldig. Dit document is een licentie overeenkomst "
+"tussen U en MandrakeSoft S.A. welke van toepassing is op de software "
+"producten.\n"
+"Bij het installeren, dupliceren of gebruiken van de software in welke vorm "
+"dan ook accepteerd U zich volledig te houden aan de bewoording en "
+"voorwaarden van deze licentie.\n"
+"Als U met welke voorwaarde dan ook het niet eens bent, dan mag U deze "
+"Software Producten niet installeren, dupliceren of gebruiken in welke vorm "
+"dan ook.\n"
+"Elke poging om de Software Producten te installeren, dupliceren of gerbuiken "
+"in welke vorm dan ook zonder aan de bewoording en voorwaarden van deze "
+"licentie te voldoen is ongeldig en verliest U het verdere recht onder deze "
+"licentie. Bij verlies van het recht dient U alle kopien te vernietigen van "
+"deze Software Producten.\n"
+"\n"
+"\n"
+"2. Beperkte Garantie\n"
+"\n"
+"De Software Producten en meegeleverde documentatie zijn geleverd zoals ze "
+"zijn zonder garantie, voorzover dat dat wettelijk is toegestaan.\n"
+"MandrakeSoft S.A. zal in geen enkelle omstandigheid, en voorzover dat "
+"wettelijk is toegestaan, verantwoordelijk zijn voor elke vorm van speciale, "
+"incidentele, directe of indirecte schade (inclusief zonder beperking schade "
+"door verlies van zaken, interuptie van zaken, financieel verlies, wettelijke "
+"kosten en boetes resulterend van een rechtszaak/uitspraak, of elke andere "
+"vorm van kosten) veroorzaakt door het gebruik of het niet kunnen gebruiken "
+"van de Software Producten, zelfs als MandrakeSoft S.A. geadviseerd werd over "
+"de mogelijkheid danwel voorkomen van dergelijke schades.\n"
+"\n"
+"BEPERKTE AANSPRAKELIJKHEID VERBONDEN AAN HET BEZIT OF GEBRUIK VAN VERBODEN "
+"SOFTWARE IN SOMMIGE LANDEN\n"
+"\n"
+"Voorzover toegestaan door de wet, MandrakeSoft S.A. of zijn distribuanten "
+"kunnen in geen geval aansprakelijk worden gesteld voor elke vorm van schade "
+"hoe dan ook welke kunnen voortkomen door het bezit of gebruik van Software "
+"componenten of het ophalen van Software componenten van een van Mandrake "
+"Linux websites, welke verboden of beperkt zijn in sommige landen door lokale "
+"wetgeving.\n"
+"Deze beperkte aansprakelijkheid is ook geldig maar niet beperkt aan het "
+"gebruik van de sterke versleutelings componenten bijgesloten in de Software "
+"Producten.\n"
+"\n"
+"\n"
+"3. De GPL Licentie en gerelateerde licenties\n"
+"\n"
+"De Software Producten bestaan uit componenten gemaakt door verschillende "
+"personen of entiteiten. De meeste componenten zijn gekoppeld aan de "
+"bewoording danwel voorwaarden van de GNU General Public License, hierna GPL "
+"genoemd, of van vergelijkbare licenties. De meeste van deze licenties staan "
+"u toe de desbetreffende software te gebruiken, dupliceren, aanpassen of "
+"herdistribueren van de componenten welke deze licenties omvatten. Draagt U "
+"zorg voor het aandachtig lezen van deze licenties alvorens de software te "
+"gebruiken. Elke vraag die voortkomt uit het lezen van een component zijn "
+"licentie kunt U adresseren aan de desbetreffende auteur en niet aan "
+"MandrakeSoft S.A.\n"
+"De programmatuur ontwikkeld door MandrakeSoft S.A. maken gebruik van de GPL "
+"licentie. Documentatie geschreven door MandrakeSoft S.A. zijn per stuk van "
+"hun eigen licentie voorzien. Controlleer de documentatie voor verdere "
+"details.\n"
+"\n"
+"\n"
+"4. Intellectuele eigendoms rechten\n"
+"\n"
+"Alle rechten op de verschillende componenten van de Software Producten zijn "
+"eigendom van hun eigen auteur en zijn beschermd door intellectuele "
+"eigendoms- en kopierecht-rechten toegewezen aan computer programmatuur.\n"
+"MandrakeSoft S.A. behoudt het recht om de Software Producten te veranderen "
+"in zijn geheel of in onderdelen, op welke manier dan ook en voor elk doel.\n"
+"\"Mandrake\", \"Mandrake Linux\" en geassocieerde logos zijn handelsmerken "
+"van MandrakeSoft S.A.\n"
+"\n"
+"\n"
+"5. Landelijke rechten.\n"
+"\n"
+"Als welke portie dan ook van deze licentie niet geldig, illegaal of niet "
+"toepasselijk door een rechtszaak wordt bevonden, dan wordt de betreffende "
+"portie uitgesloten van dit contract. U blijft verder wel gebonden aan de "
+"overige toepasselijke secties van de overeenkomst.\n"
+"De bewoording en voorwaarden van deze licentie worden geregeerd door de wet "
+"van Frankrijk.\n"
+"Alle argumenten ten aanzien van deze licenties worden het liefst buiten een "
+"rechtszaak om besproken. Als een laatste oplossing, kan de argumentering "
+"worden voortgezet in de rechtszaal van Parijs - Frankrijk.\n"
+"Voor elke vraag over dit document, graag kontakt met MandrakeSoft S.A. "
+"opnemen.\n"
+"\n"
+"Dit document is vanuit het Engels vertaald door een onbeedigde vertaler. "
+"Voor het rechtsgeldig laten maken van dit document zult U dus een engelse "
+"versie van dit document op moeten halen en deze laten vertalen door een "
+"beedigd vertaler.\n"
+
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr "Weet u zeker dat u de licentie niet accepteert?"
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Toetsenbord"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "Gelieve uw toetsenbord-layout te kiezen."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Dit is de volledige lijst van beschikbare toetsenborden"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Welke installatie-klasse wenst u?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Installatie/Update"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Is dit een installatie of een opwaardering?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Aanbevolen"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Expert"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "Opwaarderen"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "Alleen pakketten opwaarderen"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Gelieve het type van uw muis te kiezen."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Muispoort"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
-msgstr "Met welke seriële poort is uw muis verbonden?"
+msgstr "Met welke seriĂŤle poort is uw muis verbonden?"
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Muisknoppen emuleren"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Emuleren van knop 2"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Emuleren van knop 3"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Bezig met configureren van PCMCIA-kaarten..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "IDE-Configuratie"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "Geen beschikbare partities"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Bezig met scannen van partities om mount punten te vinden"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Selecteer de koppelpunten"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -5044,7 +5353,7 @@ msgstr ""
"\n"
"Gaat u ermee akkoord alle partities te verliezen?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -5052,85 +5361,88 @@ msgstr ""
"DiskDrake kon de partitietabel niet correct inlezen.\n"
"Als u verdergaat, is dit op eigen risico!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
"Er is geen vrije ruimte voor een \"bootstrap\" van 1MB! De installatie zal "
"doorgaan, maar om uw systeem op te starten zult u de bootstrap partitie in "
-"DiskDrake moeten creëren."
+"DiskDrake moeten creĂŤren."
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr "Geen \"root\"-partitie gevonden om op te waarderen"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Root-partitie"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Wat is de root-partitie (/) van uw systeem?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"U dient te herstarten om de wijzigingen in de partitietabel te activeren."
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Kies de partities die u wenst te formatteren"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Slechte blocks checken?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Bezig met formatteren van partities"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Bezig met aanmaken en formatteren van bestand %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Niet genoeg swap voor de installatie, voeg er wat toe"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr ""
+"Bezig met zoeken naar beschikbare pakketten en opnieuw aanmaken van de rpm "
+"database..."
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "Bezig met zoeken naar beschikbare pakketten"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Bezig met zoeken naar pakketten om op te waarderen"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+msgid "Looking at packages already installed..."
+msgstr "Bezig met zoeken naar reeds geĂŻnstalleerde pakketten..."
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Uw systeem heeft niet genoeg ruimte over voor installatie of opwaardering (%"
"d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Volledig (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimaal (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Aanbevolen (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5138,35 +5450,35 @@ msgstr ""
"Gelieve te kiezen of u de pakketselectie wilt laden of opslaan op diskette.\n"
"Het formaat is dezelfde als de met auto_install gegenereerde diskettes."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Laden van diskette"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Bezig met het laden van diskette"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Pakket-selectie"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "Plaats een diskette met de pakket-selectie in diskettestation"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Schrijven naar floppy"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "De geselecteerde grootte is meer dan de beschikbare ruimte"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr "Type installatie"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5174,19 +5486,19 @@ msgstr ""
"U heeft geen enkele pakketgroep geselecteerd\n"
"Gelieve de minimale installatie die u wenst te kiezen."
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "Met X"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr "Met basis-documentatie (aanbevolen!)"
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr "Werkelijk minimale installatie (in het bijzonder geen urpmi)"
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5196,16 +5508,16 @@ msgstr ""
"Als u geen enkele van die CDs heeft, klik dan Annuleren.\n"
"Als maar enkele CDs zoek zijn, deselecteer ze dan, en klik Ok."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-Rom genaamd \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Bezig met voorbereiden van installatie"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -5214,23 +5526,23 @@ msgstr ""
"Bezig met installeren van pakket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Installatie na configuratie"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Plaats de gebruikte Opstartdiskette in station %s alstublieft"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Plaats de \"Modules Vernieuwen\"-diskette in station %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5266,7 +5578,7 @@ msgid ""
"Altadena California 91001\n"
"USA"
msgstr ""
-"U bent nu in staat software bedoeld voor encryptie te downloaden.\n"
+"U bent nu in staat software bedoeld voor versleuteling te downloaden.\n"
"\n"
"WAARSCHUWING:\n"
"\n"
@@ -5286,7 +5598,7 @@ msgstr ""
"aansprakelijk gehouden worden voor welke speciale, indirecte of incidentele\n"
"schade dan ook (inclusief, maar niet beperkt tot gederfde winsten, "
"onderbreking\n"
-"van zakendoen, verlies van commerciële gegevens en andere financiële\n"
+"van zakendoen, verlies van commerciĂŤle gegevens en andere financiĂŤle\n"
"verliezen, en eventuele aansprakelijkheden en vergoedingen die betaald\n"
"moeten worden als gevolg van een beslissing van een gerechtshof)\n"
"voortkomend uit gebruik, bezit, of alleen het downloaden van deze software,\n"
@@ -5301,13 +5613,14 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
@@ -5315,156 +5628,186 @@ msgstr ""
"die uitgebracht zijn nadat de distributie uitkwam.\n"
"\n"
"U kunt beveiligingsreparaties of reparaties van programmafouten verkrijgen,\n"
-"maar u heeft wel een geconfigureerde internetverbinding nodig om verderte "
+"maar u heeft wel een geconfigureerde internetverbinding nodig om verder te "
"gaan.\n"
"\n"
"Wenst u de vernieuwde pakketten te installeren?"
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
-"Bezig met verbinden met de Mandrake Linux website om de lijst met "
-"beschikbare mirrors te verkrijgen"
+"Bezig te verbinden met Mandrake Linux om de lijst met beschikbare spiegels "
+"te verkrijgen"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Kies een `mirror' om de pakketten van af te halen"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
-msgstr ""
-"Bezig met de `mirror' te contacteren om de lijst met beschikbarepakketten te "
-"verkrijgen"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Bezig met de spiegel de lijst met beschikbare pakketten te verkrijgen"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Wat is uw tijdzone?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Hardware-klok ingesteld op GMT"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatische tijdssynchronisatie (met gebruik van NTP)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "NTP-server"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Netwerk CUPS server"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Geen printer"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
msgstr "Heeft u een ISA geluidskaart?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Draai \"sndconfig\" na de installatie om uw geluidskaart te configureren"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Geen geluidskaart bespeurd. Probeer \"harddrake\" na de installatie"
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Overzicht"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Muis"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Tijdzone"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Printer"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "Interne ISDN kaart"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Geluidskaart"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV-kaart"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Windows (PDC) "
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Bestanden op deze computer"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Root-wachtwoord instellen"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Geen wachtwoord"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr "Dit wachtwoord is te makkelijk (moet tenminste %d tekens lang zijn)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Authenticatie"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "Authenticatie LDAP"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "LDAP-server"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "Authenticatie NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS-domein"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS-server"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Authenticatie Windows PDC"
+
+#: ../../install_steps_interactive.pm_.c:1139
+msgid "Windows Domain"
+msgstr "Windows Domein"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "PDC Server Naam"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+"Om dit voor een W2K PDC te laten werken, moet u misschien dit de admin laten "
+"uitvoeren:C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" "
+"everyone /add en de server opnieuw opstarten."
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -5491,19 +5834,19 @@ msgstr ""
"fouten. Wil u nu een bootdiskette aanmaken voor uw systeem?\n"
"Stop dan een diskette in het station en druk op \"OK\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Eerste diskettestation"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Tweede diskettestation"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Overslaan"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5528,7 +5871,7 @@ msgstr ""
"fouten. Wil u nu een opstartdiskette aanmaken voor uw systeem?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5539,32 +5882,32 @@ msgstr ""
"\n"
"\n"
"(WAARSCHUWING! U gebruikt XFS voor uw root-partitie,\n"
-"het creëren van een opstartdiskette op een 1.44MB-diskette\n"
+"het creĂŤren van een opstartdiskette op een 1.44MB-diskette\n"
"zal hoogstwaarschijnlijk mislukken omdat XFS een zeer groot\n"
"stuurprogramma benodigt)."
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Sorry, geen diskettestation beschikbaar"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Kies het diskettestation waarmee u de opstart-diskette wenst te maken"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
msgstr "Plaats een diskette in station %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Bezig met het aanmaken van de opstart-diskette"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Bezig met klaarmaken van opstartlader"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5577,11 +5920,11 @@ msgstr ""
"De installatie zal doorgaan, maar u zult BootX nodig \n"
"hebben om uw machine op te starten"
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Wenst u aboot te gebruiken?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5589,16 +5932,17 @@ msgstr ""
"Fout bij het installeren van aboot,\n"
"toch proberen te installeren, zelfs als dat de eerste partitie vernietigt?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Bezig met opstart-lader installeren"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
-"De installatie van de bootloader is mislukt. De volgende fout werd gevonden:"
+"De installatie van de opstartlader is mislukt. De volgende fout werd "
+"gevonden:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5617,18 +5961,17 @@ msgstr ""
"Bij de volgende keer opstarten zou u dan de opstartlader-prompt \n"
"moeten zien."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Plaats een lege floppy in station %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Bezig met aanmaken van auto-installatiediskette"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5636,9 +5979,10 @@ msgid ""
msgstr ""
"Sommige stappen zijn nog niet voltooid.\n"
"\n"
-"Weet u zeker dat u op dit moment wilt beëindigen?"
+"Weet u zeker dat u op dit moment wilt beĂŤindigen?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5649,7 +5993,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5663,16 +6007,21 @@ msgstr ""
"beschikbaar zijn, raadpleegt u de Errata, beschikbaar van:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/8.2errata.php3\n"
+"%s\n"
"\n"
"Informatie over het configureren van uw systeem is beschikbaar in het\n"
"\"post install\"-hoofdstuk van de Official Mandrake Linux User's Guide."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+#, fuzzy
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakesoft.com/sales/contact"
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Maak auto-installatiediskette aan"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5686,15 +6035,15 @@ msgstr ""
"\n"
"Wellicht geeft u de voorkeur aan het herhalen van de installatie.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Geautomatiseerd"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Herhalen"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Pakket-selectie opslaan"
@@ -5722,79 +6071,61 @@ msgstr "ontbrekende console-hulp"
msgid "Choose a file"
msgstr "Kies een bestand"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Geavanceerd"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr "Basis"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Even geduld"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr ""
-"Boom\n"
-"Uitbreiden"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr ""
-"Boom\n"
-"Inklappen"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Schakelen tussen gewoon en per-groep-gesorteerd"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Slechte keuze, probeer nog eens\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Uw keuze? (standaard %s)"
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
-msgstr "Items die u dient in te vullen:%s"
+msgstr ""
+"Waarden die u dient in te vullen:\n"
+"%s"
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Uw keuze? (0/1, standaard '%s')"
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "Knop '%s':%s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+msgid "Do you want to click on this button?"
msgstr "Wilt u op deze knop klikken?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr " voor `void' in voor void ingang"
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Uw keuze? (standaard '%s'%s)"
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Er zijn vele keuzes mogelijk (%s).\n"
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -5804,7 +6135,7 @@ msgstr ""
"te kiezen, of geef eenvoudigweg Enter om verder te gaan.\n"
"Uw keuze?"
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -5813,327 +6144,327 @@ msgstr ""
"=> Let op, een label is veranderd:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr "Opnieuw invoeren"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Tsjechisch (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Duits"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Spaans"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Fins"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Frans"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Noors"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Pools"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Russisch"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Zweeds"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "UK toetsenbord"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "US toetsenbord"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Albanees"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armeens (oud)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armeens (typmachine)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armeens (fonetisch)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbeidzjan (latin)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgisch"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr "Bulgaars (fonetisch)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "Bulgaars (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Braziliaans (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Belarusiaans"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Zwitsers (Duitse layout)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Zwitsers (Franse layout)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Tsjechisch (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Duits (geen dode toetsen)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Deens"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Noorwegen)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Zweeds)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Ests"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgisch (\"Russische\" layout)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgisch (\"Latin\" layout)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Grieks"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Hongaars"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Kroatisch"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Israelisch"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Israelisch (Fonetisch)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iraans"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "IJslands"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Italiaans"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Japans 106 toetsen"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Koreaans toetsenbord"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latijns-Amerikaans"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Lithuaans AZERTY (oud)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Lithuaans AZERTY (nieuw)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lithuaans \"nummer-rij\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lithuaans \"fonetisch\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "Lets"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Macedonisch"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Nederlands"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Pools (qwerty layout)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Pools (qwertz layout)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugees"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Canadees (Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Roemeens (qwertz)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Roemeens (qwerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Roemeens (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Sloveens"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovaaks (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovaaks (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "Servisch (cyrillisch)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr "Tamil"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thai-toetsenbord"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Tadzjikisch toetsenbord"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turks (traditioneel \"F\"-model)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turks (modern \"Q\"-model)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
-msgstr "Oekraďens"
+msgstr "OekraĂŻens"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US toetsenbord (internationaal)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamese \"nummer-rij\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Joegoslavisch (latin)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr "Rechter Alt-knop"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr "Beide Shift-toetsen tegelijkertijd"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr "Control- en Shift-toetsen tegelijkertijd"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr "CapsLock-toets"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr "Ctrl- en Alt-toetsen tegelijkertijd"
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr "Alt- en Shift-toetsen tegelijkertijd"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr "\"Menu\"-toets"
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr "Linker \"Windows\"-toets"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr "Rechter \"Windows\"-toets"
@@ -6146,7 +6477,29 @@ msgstr "Circulaire mounts: %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Verwijder eerst de logische delen\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+msgid "a number"
+msgstr "een nummer"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr "%d door komma's gescheiden nummers"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr "%d door komma's gescheiden tekenreedsen"
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr "door komma's gescheiden nummers"
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated strings"
+msgstr "door komma's gescheiden tekenreedsen"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -6189,17 +6542,13 @@ msgstr "1 knop"
msgid "Generic 2 Button Mouse"
msgstr "Algemene 2-knopsmuis"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Algemeen"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Wiel"
#: ../../mouse.pm_.c:49
msgid "serial"
-msgstr "seriëel"
+msgstr "seriĂŤel"
#: ../../mouse.pm_.c:52
msgid "Generic 3 Button Mouse"
@@ -6235,7 +6584,7 @@ msgstr "MM HitTablet"
#: ../../mouse.pm_.c:62
msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech-muis (seriëel, oud C7-type)"
+msgstr "Logitech-muis (seriĂŤel, oud C7-type)"
#: ../../mouse.pm_.c:66
msgid "busmouse"
@@ -6257,38 +6606,54 @@ msgstr "geen"
msgid "No mouse"
msgstr "Geen muis"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Test uw muis a.u.b."
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Welk type muis heeft u?"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "BEWEEG UW WIELTJE"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Fins"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Volgende ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Vorige"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Is dit correct?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Info"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Boom Uitbreiden"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Boom Inklappen"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Schakelen tussen gewoon en per-groep-gesorteerd"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Verbinden met het Internet"
@@ -6300,7 +6665,7 @@ msgid ""
"If you don't know, choose 'use pppoe'"
msgstr ""
"De meest gebruikte manier om te verbinden met adsl is met\n"
-"ppoe. Sommige verbindingen gebruiken pptp, enkele gebruiken\n"
+"pppoe. Sommige verbindingen gebruiken pptp, enkele gebruiken\n"
"dhcp. Als u het niet weet, kiest u 'gebruik pppoe'"
#: ../../network/adsl.pm_.c:22
@@ -6335,7 +6700,7 @@ msgstr ""
"Er is geen ethernet netwerk adapter op uw systeem gevonden.\n"
"Ik kan dit type connectie niet opzetten."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Kies de netwerk interface"
@@ -6348,7 +6713,7 @@ msgstr "Kies a.u.b. met welke netwerkkaart u met het Internet wilt verbinden"
msgid "no network card found"
msgstr "Geen netwerkkaart gevonden"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Bezig met configureren van netwerk"
@@ -6359,22 +6724,21 @@ msgid ""
"Your host name should be a fully-qualified host name,\n"
"such as ``mybox.mylab.myco.com''."
msgstr ""
-"Gelieve uw hostnaam in te voeren als u deze kent.\n"
-"Sommige DHCP servers hebben de hostnaam nodig om te werken.\n"
-"Het moet een volledige hostnaam zijn, zoals ``mybox.mylab.myco.com''.\n"
-"U mag ook het IP-adres van de gateway invoeren als u er een heeft."
+"Gelieve uw computernaam in te voeren als u deze kent.\n"
+"Sommige DHCP servers hebben de computernaam nodig om te werken.\n"
+"Het moet een volledige computernaam zijn, zoals ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
-msgstr "Host naam:"
+msgstr "Computer naam:"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
-msgstr "Netwerk-configuratie wizard"
+msgstr "Netwerk-configuratie hulp"
#: ../../network/isdn.pm_.c:22
msgid "External ISDN modem"
@@ -6428,7 +6792,7 @@ msgstr "ISDN Configuratie"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Selecteer uw provider.\n"
" Als uw provider niet in de lijst staat, kiest u Unlisted"
@@ -6447,14 +6811,14 @@ msgstr "Protocol voor de rest van de wereld"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Protocol voor de rest van de wereld \n"
" geen D-Channel (geleasde lijnen)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Welk protocol wenst u te gebruiken?"
#: ../../network/isdn.pm_.c:199
@@ -6478,7 +6842,8 @@ 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"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Als u een ISA kaart bezit, zouden de waardes op het volgende scherm moeten "
@@ -6495,13 +6860,13 @@ msgid "Continue"
msgstr "Verder"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Welke is uw ISDN kaart?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Ik heb een ISDN PCI kaart gevonden, maar ik ken het merk niet. Selecteer a.u."
"b. een PCI kaart op het volgende scherm."
@@ -6514,106 +6879,106 @@ msgstr ""
#: ../../network/modem.pm_.c:39
msgid "Please choose which serial port your modem is connected to."
-msgstr "Met welke seriële poort is uw modem verbonden?"
+msgstr "Met welke seriĂŤle poort is uw modem verbonden?"
#: ../../network/modem.pm_.c:44
msgid "Dialup options"
msgstr "Inbel-opties"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Verbindingsnaam"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Telefoonnummer"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Aanmeldingsnaam"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Gebaseerd op een script"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Gebaseerd op een terminal"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Domeinnaam"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Eerste DNS-server (optioneel)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Tweede DNS-server (optioneel)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
msgstr ""
"\n"
-"U kunt nu de verbrinding verbreken of uw connectie herconfigureren."
+"U kunt nu de verbinding verbreken of uw connectie opnieuw instellen."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
msgstr ""
"\n"
-"U kunt uw connectie herconfigureren"
+"U kunt uw connectie opnieuw instellen"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "U bent op dit moment aangesloten op het Internet."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
msgstr ""
"\n"
-"U kunt verbinding maken met het Internet of uw connectie herconfigureren"
+"U kunt verbinding maken met het Internet of uw connectie opnieuw instellen"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "U bent op dit moment niet aangesloten op het Internet."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Verbinden"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Verbinding verbreken"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr "Configureer de verbinding"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Internet verbinding & configuratie"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "We gaan nu de %s -verbinding configureren."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6627,127 +6992,132 @@ msgstr ""
"\n"
"\n"
"\n"
-"We gaan nu de %s -verbinding configureren.\n"
+"We gaan nu de %s -verbinding instellen.\n"
"\n"
"\n"
"Klik op OK om door te gaan."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
-msgstr "Netwerk-configuratie"
+msgstr "Netwerk-instellingen"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
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 ""
-"Omdat u een netwerk-installatie uitvoert, is uw netwerk reeds "
-"geconfigureerd.\n"
-"Klik op OK om uw configuratie te behouden, of op Annuleren om uw Internet & "
-"Netwerkverbinding opnieuw te configureren.\n"
+"Omdat u een netwerk-installatie uitvoert, is uw netwerk reeds ingesteld.\n"
+"Klik op OK om uw instellingen te behouden, of op Annuleren om uw Internet & "
+"Netwerkverbinding opnieuw in te stellen.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"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 ""
-"Welkom bij de Netwerk Configuratie Wizard\n"
+"Welkom bij de Netwerk Instellingen Hulp\n"
"\n"
-"We staan op het punt uw internet/netwerkverbinding te configureren.\n"
+"We staan op het punt uw internet/netwerkverbinding in te stellen.\n"
"Als u de auto-detectie niet wilt gebruiken, deselecteer het aankruisvakje "
"dan.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
-msgstr "Kies het profiel om te configureren"
+msgstr "Kies het profiel om in te stellen"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Gebruik auto-detectie"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Expert modus"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Bezig met het detecteren van apparaten..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Normale modemverbinding"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "gevonden op poort %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN-verbinding"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "%s ontdekt"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "ADSL-verbinding"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "gevonden op interface %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Kabelverbinding"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "kabelverbinding gevonden"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "LAN-verbinding"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "ethernet kaart(en) gevonden"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
-msgstr "Selecteer de verbinding die u wenst te configureren"
+msgstr "Selecteer de verbinding die u wenst in te stellen"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-"U heeft meerdere manieren om te verbinden met het Internet geconfigureerd.\n"
+"U heeft meerdere manieren om te verbinden met het Internet ingesteld.\n"
"Kies degene die u wenst te gebruiken.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Internetverbinding"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
-msgstr "Wenst u bij aboot uw connectie te starten?"
+msgstr "Wenst u bij het opstarten uw connectie te starten?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
-msgstr "Netwerk configuratie"
+msgstr "Netwerk instellingen"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr "Het netwerk dient herstart te worden"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6758,7 +7128,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6768,7 +7138,7 @@ msgstr ""
"\n"
"De configuratie zal nu worden toegepast op uw systeem.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6777,19 +7147,19 @@ msgstr ""
"te herstarten om het hostnaam-veranderingprobleem\n"
"te voorkomen."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
"Er zijn problemen opgetreden tijdens de configuratie.\n"
"Test uw verbinding via net_monitor of mcc. Indien uw verbinding niet werkt, "
"kunt u proberen de configuratie opnieuw op te starten."
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"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."
@@ -6800,7 +7170,7 @@ msgstr ""
"Als u de onderstaande velden aanpast, wordt het apparaat opnieuw "
"geconfigureerd"
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6810,218 +7180,227 @@ msgstr ""
"Elke ingang moet ingegeven worden als een IP adres in `dotted-decimal'-\n"
"vorm (bijvoorbeeld 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Bezig met configureren van netwerk-apparaat %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr "(driver %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP adres"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Netmasker"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(BootP/DHCP)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Automatisch IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+msgid "Start at boot"
+msgstr "Bij opstarten starten"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "Het IP-adres moet het formaat 1.2.3.4 hebben"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
"such as ``mybox.mylab.myco.com''.\n"
"You may also enter the IP address of the gateway if you have one"
msgstr ""
-"Gelieve uw hostnaam in te voeren.\n"
-"Het moet een volledige hostnaam zijn, zoals ``mybox.mylab.myco.com''.\n"
+"Gelieve uw computernaam in te voeren.\n"
+"Het moet een volledige computernaam zijn, zoals ``mybox.mylab.myco.com''.\n"
"U mag ook het IP-adres van de gateway invoeren als u er een heeft."
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS server"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (bijvoorbeeld %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Gateway apparaat"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Configuratie van proxie(s)"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP-proxy"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP-proxy"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Netwerkkaart id onthouden (nuttig voor laptops)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Proxy moet http://... zijn"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Proxy moet ftp://... zijn"
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Internet configuratie"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Wenst u nu te proberen een connectie te maken met Internet?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Bezig met testen van uw connectie..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "U bent op dit moment aangesloten op het Internet."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Vanwege beveiligingsredenen zal het nu worden neergelegd."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
msgstr ""
"Het lijkt erop dat dit systeem niet aangesloten is met\n"
-"het internet. Probeer uw connectie te herconfigureren."
+"het internet. Probeer uw connectie opnieuw in te stellen."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Connectie configuratie"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Selecteer of vul onderstaand veld a.u.b. in"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ van de kaart"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Mem (DMA) van de kaart"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "IO van de kaart"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "IO_0 van de kaart"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "IO_1 van de kaart"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Uw persoonlijke telefoonnummer"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Naam van uw provider (bijv. provider.nl)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Telefoonnummer van uw provider"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "DNS 1 van uw provider (optioneel)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "DNS 2 van uw provider (optioneel)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Kies uw land"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Inbel mode"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Verbindingssnelheid"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "Maximale wachttijd voor verbinding (in seconden)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Account Login (gebruikers-naam)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Wachtwoord"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr "Verenigd Koninkrijk"
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "koppelen mislukt: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Extended partitie niet ondersteund op dit platform"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Er zit een gat in uw partitietabel, maar ik kan het niet gebruiken.\n"
"De enige oplossing is om uw primaire partitie te verplaatsen zodat het gat "
"naast de extended partitie komt te liggen"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Het herstellen van bestand %s is niet gelukt: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Slechte reservekopie"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Fout bij het schrijven naar bestand %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7032,186 +7411,186 @@ msgstr ""
"dat wanneer er iets naar schijf wordt geschreven,\n"
"het uiteindelijk onleesbare troep wordt."
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "must-have"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "belangrijk"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "heel leuk"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "leuk"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "misschien"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Common Unix Printing System"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR New Generation"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Line Printer Daemon"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Lokale printer"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Netwerk printer"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Printer aan CUPS server op afstand"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Printer aan lpd server op afstand"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Netwerkprinter (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Printer aan SMB/Windows 95/98/NT server"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Printer aan NetWare server"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Voer een apparaat-URI voor de printer in"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "Job doorsluizen naar een commando"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Onbekend model"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "Lokale printers"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "Printers op afstand"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr "op parallelle poort \\/*%s"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", USB printer \\/*%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", multi-functioneel apparaat op parallelle poort \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ", multi-functioneel apparaat op USB"
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ". multi-functioneel apparaat op HP JetDirect"
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ", multi-functioneel apparaat"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, c-format
msgid ", printing to %s"
msgstr ", bezig met printen naar %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr "op LPD server \"%s\", printer \"%s\""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", TCP/IP host \"%s\", poort %s"
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr "op Windows server \"%s\", share \"%s\""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr "op Novell server \"%s\", printer \"%s\""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ", met gebruik van opdracht %s"
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr "Raw printer (geen stuurprogramma)"
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(aan %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(aan deze machine)"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Op CUPS-server \"%s\""
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Standaard)"
@@ -7233,11 +7612,11 @@ msgstr ""
"Printers aan een CUPS-server op afstand hoeft u hier niet te configureren; "
"deze printers zullen automatisch bespeurd worden."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
msgid "CUPS configuration"
msgstr "CUPS configuratie"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
msgid "Specify CUPS server"
msgstr "CUPS server specificeren"
@@ -7281,7 +7660,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "Het IP-adres zou er uit moeten zien als 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "Het poortnummer moet een geheel getal zijn!"
@@ -7289,7 +7668,7 @@ msgstr "Het poortnummer moet een geheel getal zijn!"
msgid "CUPS server IP"
msgstr "CUPS-server IP"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Poort"
@@ -7297,20 +7676,12 @@ msgstr "Poort"
msgid "Automatic CUPS configuration"
msgstr "Automatische CUPS-configuratie"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Bezig met het zoeken van apparaten..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Poorten testen"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr "Printer toevoegen"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7323,22 +7694,22 @@ msgid ""
"connection types."
msgstr ""
"\n"
-"Welkom bij de Printer Instellingen Wizard\n"
+"Welkom bij de Printer Instellingen Hulp\n"
"\n"
-"Deze wizard laat u lokale- of afstand-printers installeren die vanaf deze of "
+"Deze hulp laat u lokale- of afstand-printers installeren die vanaf deze of "
"andere computers in het netwerk gebruikt gaan worden.\n"
"\n"
"Het zal u vragen naar alle benodigde informatie om de printer in te stellen "
"en geeft u toegang tot alle beschikbare printer-stuurprogramma's, "
"stuurprogramma-opties en printerverbindingtypes."
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Lokale printer"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7356,9 +7727,9 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
"\n"
-"Welkom bij de Printer Instellingen Wizard\n"
+"Welkom bij de Printer Instellingen Hulp\n"
"\n"
-"Deze wizard helpt u bij het installren van uw printer(s) verbonden aan deze "
+"Deze hulp helpt u bij het installren van uw printer(s) verbonden aan deze "
"computer.\n"
"\n"
"Gelieve uw printer(s) in deze computer te pluggen en aan te zetten. Klik op "
@@ -7371,11 +7742,11 @@ msgstr ""
"Gebruik de \"Expert-modus\" van Printerdrake indien u een printer-op-afstand "
"wilt instellen die niet automatisch door Printerdrake getoond wordt."
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr "Automatisch bespeuren van printers"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7389,7 +7760,7 @@ msgid ""
"Center."
msgstr ""
"\n"
-"Gefeliciteerd, uw printer is nu geďnstalleerd en geconfigureerd!\n"
+"Gefeliciteerd, uw printer is nu geĂŻnstalleerd en geconfigureerd!\n"
"\n"
"U kunt afdrukken met de \"Afdrukken\"-opdracht in uw toepassingen (normaal "
"gesproken in het \"Bestand\"-menu).\n"
@@ -7399,11 +7770,11 @@ msgstr ""
"afdrukkwaliteit, ...), selecteert u dan \"Printer\" in het \"Hardware\"-"
"gedeelte van het Mandrake Controle Centrum."
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr "Automatisch bespeuren van printers"
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7420,33 +7791,37 @@ msgstr ""
"\n"
"Weet u zeker dat u uw printers automatisch wilt laten bespeuren?"
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "Bespeur automatisch"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr "Handmatig printer instellen"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Poorten testen"
+
+#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
msgstr "%s bespeurd"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Printer op parallelle poort \\/*%s"
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr "USB printer \\/*%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
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, ..., "
@@ -7458,11 +7833,11 @@ msgstr ""
"poorten: /dev/lp0, /dev/lp1, ..., equivalent aan LPT1:,LPT2:, ..., 1ste USB "
"printer: /dev/usb/lp0, 2de USB printer: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
msgstr "U dient een apparaat of bestandsnaam in te voeren!"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
@@ -7470,7 +7845,7 @@ msgstr ""
"Geen lokale printer gevonden!\n"
"\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
@@ -7478,7 +7853,7 @@ msgstr ""
"Netwerkprinters kunnen alleen na de installatie worden ingesteld. Kies "
"\"Hardware\" en daarna \"Printer\" in het Mandrake Controlecentrum."
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
@@ -7486,7 +7861,7 @@ msgstr ""
"Om netwerkprinters te installeren, klikt u op \"Annuleren\", schakel over "
"naar \"Expert modus\" en klik opnieuw op \"Nieuwe printer toevoegen\"."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7494,7 +7869,7 @@ msgstr ""
"De volgende printer is bespeurd. Is dit niet degene die u wilt configureren, "
"geef dan een apparaatnaam/bestandsnaam op de invoerregel"
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7502,7 +7877,7 @@ msgstr ""
"Dit is een lijst van alle automatisch bespeurde printers. Kiest u de printer "
"om in te stellen of geef een apparaatnaam/bestandsnaam op de invoerregel"
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7514,7 +7889,7 @@ msgstr ""
"of indien u liever een aangepaste printerconfiguratie wilt, zet dan "
"\"Handmatige configuratie\" aan."
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7527,7 +7902,7 @@ msgstr ""
"een aangepaste printerconfiguratie wenst, zet dan \"Handmatige configuratie"
"\" aan."
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7535,11 +7910,11 @@ msgstr ""
"Kiest u de poort waaraan uw printer is verbonden of geef een apparaatnaam/"
"bestandsnaam op de invoerregel"
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
msgstr "Kiest u de poort waaraan uw printer is verbonden."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7548,52 +7923,66 @@ msgstr ""
"LPT2:, ..., 1ste USB printer: /dev/usb/lp0, 2de USB printer: /dev/usb/"
"lp1, ...)."
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
msgstr "U dient een printer of apparaat te kiezen/in te voeren!"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
msgstr "Handmatige configuratie"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
+#, fuzzy
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
"Is uw printer een multi-functioneel apparaat van HP (OfficeJet, PSC, "
-"PhotoSmart LaserJet 1100/1200/1220/3200/3300 met scanner)?"
+"LaserJet 1100/1200/1220/3200/3300 met scanner), een HP PhotoSmart P100 of "
+"1315 of een HP LaserJet 2200 ?"
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
msgstr "Bezig met installeren van HPOJ pakket..."
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr "Bezig met nagaan en configureren van apparaat HPOJ ..."
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
msgstr "Bezig met installeren van SANE pakket..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Bezig met installeren van pakketten..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr "Scannen op uw HP multi-functioneel apparaat"
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+#, fuzzy
+msgid "Photo memory card access on your HP multi-function device"
+msgstr "Scannen op uw HP multi-functioneel apparaat"
+
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr "Bezig met beschikbaar maken van printerpoort voor CUPS..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr "Bezig met lezen van printer-database..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "lpd op afstand - Printer-opties"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7601,27 +7990,27 @@ msgstr ""
"Om een lpd-printer op afstand te gebruiken, dient u de hostnaam van de "
"printerserver en de printernaam op die server in te voeren."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Naam van host op afstand:"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Naam van printer op afstand"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "De naam van de host op afstand is afwezig!"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "De naam van de printer op afstand is afwezig!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) Printer-opties"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7634,35 +8023,35 @@ msgstr ""
"wenst en, indien nodig, informatie over gebruikersnaam, wachtwoord en "
"werkgroep."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "SMB-server host"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "SMB-server IP"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Sharenaam"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Werkgroep"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "Ofwel de servernaam ofwel het IP van de server moet ingevoerd worden!"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "Naam van Samba-share is afwezig!"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
-msgstr ""
+msgstr "VEILIGHEIDS WAARSCHUWING!"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7685,8 +8074,27 @@ msgid ""
"type in Printerdrake.\n"
"\n"
msgstr ""
+"U gaat afdrukken op een Windows gebruiker met wachtwoord. Vanwege een fout "
+"in de architectuur van de samba cliĂŤnt software wordt het wachtwoord als "
+"open text in de commando regel gebruikt. Dus het is mogelijk voor elke "
+"gebruiker op deze machine het wachtwoord te achterhalen dmv bijv. \"ps auxwww"
+"\".\n"
+"\n"
+"We raden daarom aan ĂŠĂŠn van de volgende alternatieven te gebruiken (in alle "
+"gevallen raden we aan alleen lokale computers toegang te verschaffen tot de "
+"windows server, bijvoorbeeld door gebruik te maken van een firewall) :\n"
+"\n"
+"Gebruik een wachtwoord-loze gebruikersnaam op de windows server, zoals de "
+"\"GUEST\" gebruiker of een speciale gebruiker alleen voor het afdrukken. "
+"Verwijder niet het wachtwoord van een gewone gebruikersnaam en zeker niet "
+"van de administrator gebruiker.\n"
+"\n"
+"Stel de windows server in met een unix-wachtrij (ĂĄla LPD) protocol. Stel dan "
+"het afdrukken van deze computer in met de \"%s\" verbindings type in "
+"Printerdrake.\n"
+"\n"
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7694,76 +8102,85 @@ msgid ""
"type in Printerdrake.\n"
"\n"
msgstr ""
+"Stel de windows server in om het IPP protocol beschikbaar te maken voor deze "
+"printer en stel het afdrukken voor deze computer in met de \"%s\" type in "
+"Printerdrake.\n"
+"\n"
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
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 ""
+"Verbind de printer met een linux server en laat de Windows computer(s) er "
+"als cliĂŤnten mee verbinden.\n"
+"\n"
+"Weet U zeker dat U het instellen van deze printer wilt vervolgen zoals U nu "
+"doet ?"
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "NetWare Printer-Opties"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
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 ""
-"Op naar een NetWare-printer af te drukken, dient u de NetWare Printer "
-"servernaam op te geven (deze kan verschillen van de TCP/IP hostnaam!) alsook "
-"de naam van de printerwachtrij waar u toegang tot wilt en, indien nodig, een "
-"gebruikersnaam en wachtwoord."
+"Om naar een NetWare-printer af te drukken, dient u de NetWare Printer "
+"servernaam op te geven (deze kan verschillen met de TCP/IP computernaam!) "
+"alsook de naam van de printerwachtrij waar u toegang tot wilt en, indien "
+"nodig, een gebruikersnaam en wachtwoord."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Printer Server"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Naam van de printerwachtrij"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "NCP-servernaam is afwezig!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "NCP-wachtrijnaam is afwezig!"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
msgstr "TCP/Socket Printer opties"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
"number is usually 9100, on other servers it can vary. See the manual of your "
"hardware."
msgstr ""
-"Om naar een TCP- of socketprinter af te drukken, dient u de hostnaam van de "
-"printer en zonodig het poortnummer op te geven. Op HP JetDirect-servers is "
-"het poortnummer over het algemeen 9100, op andere servers kan het variëren. "
-"U zij verwezen naar het handboek van uw hardware."
+"Om naar een TCP- of socketprinter af te drukken, dient u de computernaam van "
+"de printer en zonodig het poortnummer op te geven. Op HP JetDirect-servers "
+"is het poortnummer over het algemeen 9100, op andere servers kan het "
+"variĂŤren. Kijk voor de zekerheid naar het handboek van uw hardware."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
-msgstr "Printer hostnaam"
+msgstr "Printer computernaam"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
-msgstr "Printer hostnaam is afwezig!"
+msgstr "Printer computernaam is afwezig!"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Printerapparaat URI"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
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 "
@@ -7773,11 +8190,11 @@ msgstr ""
"voldoen aan ofwel de CUPS-, ofwel de Foomatic specificaties. Let op dat\n"
"niet alle URI-typen door alle \"spoolers\" ondersteund worden."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "Een geldige URI moet worden ingevoerd!"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -7786,27 +8203,23 @@ msgstr ""
"Beschrijving- en Locatie-velden behoeven niet te worden ingevuld. Dit zijn "
"opmerkingen voor de gebruikers."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Naam van de printer"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Beschrijving"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Locatie"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr "Bezig met voorbereiden van printer-database..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
msgid "Your printer model"
msgstr "Uw printermodel"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7832,24 +8245,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
msgid "The model is correct"
msgstr "Het model is juist"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
msgid "Select model manually"
msgstr "Handmatig model selecteren"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Selectie van printer-model"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Welk model printer heeft u?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7863,19 +8276,19 @@ msgstr ""
"correct heeft uitgevoerd. Zoek het juiste model in de lijst indien de "
"selectie staat op een onjuist model, of op \"Raw printer\"."
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
"Indien uw printer niet getoond wordt, kies dan een compatibel model (zie uw "
-"printerhandleiding) of één die er op lijkt."
+"printerhandleiding) of ĂŠĂŠn die er op lijkt."
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "OKI winprinter-configuratie"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7892,11 +8305,11 @@ msgstr ""
"printer niet werken. De instelling van het verbindingstype wordt door het "
"stuurprogramma genegeerd."
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "Lexmark inkjet-configuratie"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7908,7 +8321,7 @@ msgstr ""
"printservers. Gelieve uw printer aan een lokale poort te verbinden of hem te "
"configureren op de machine waaraan hij is verbonden."
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7931,7 +8344,7 @@ msgstr ""
"uitlijningpagina's af met \"lexmarkmaintain\" en pas de "
"kopuitlijningsinstellingen aan met dit programma."
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7947,22 +8360,22 @@ msgstr ""
"duplex-eenheid, extra trays) juist ingesteld zijn. Let op dat een zeer hoge "
"printkwaliteit het afdrukken behoorlijk kan vertragen."
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Optie %s moet een geheel getal zijn!"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "Optie %s moet een getal zijn!"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "Optie %s valt buiten het bereik!"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7971,11 +8384,11 @@ msgstr ""
"Wenst u deze printer (\"%s\")\n"
"als standaard printer in te stellen?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "Test-pagina's"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7988,39 +8401,39 @@ msgstr ""
"wellicht helemaal niet afgedrukt. In de meeste gevallen is het voldoende om "
"de standaard test-pagina af te drukken."
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "Geen test-pagina's"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Afdrukken"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "Standaard testpagina"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr "Alternatieve test-pagina (Letter-formaat)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "Alternatieve test-pagina (A4-formaat)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "Foto-testpagina"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
msgstr "Druk geen enkele testpagina af"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Bezig met afdrukken van testpagina(s)..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8035,7 +8448,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8043,15 +8456,15 @@ msgstr ""
"Testpagina's) werd(en) naar de printer gestuurd.\n"
"Het kan even duren voordat het eigenlijke afdrukken begint.\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr "Werkt het afdrukken naar behoren?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr "Kale ('raw') printer"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8065,7 +8478,7 @@ msgstr ""
"grafische hulpprogramma's stellen u in staat om de printer te kiezen en "
"gemakkelijk de opties te wijzigen.\n"
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
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 "
@@ -8075,8 +8488,8 @@ msgstr ""
"printdialogen van veel applicaties. Maar vul daar dan geen bestandsnaam in "
"omdat het af te drukken bestand wordt geleverd door de applicatie.\n"
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -8089,11 +8502,11 @@ msgstr ""
"voor een specifieke printtaak. Voeg de gewenste instellingen eenvoudigweg "
"toe aan de commandoregel, bijvoorbeeld \"%s <bestand>\"."
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#, fuzzy, 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\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
"Om de beschikbare opties voor de huidige printer te weten te komen, kunt u "
@@ -8101,7 +8514,7 @@ msgstr ""
"opties\".%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8109,7 +8522,7 @@ msgstr ""
"Dit is een lijst van de beschikbare opties voor de huidige printer:\n"
"\n"
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8118,8 +8531,8 @@ msgstr ""
"Om een bestand vanaf de commandoregel (terminalvenster) af te drukken, \n"
"gebruikt u het commando \"%s <bestand>\".\n"
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8129,7 +8542,7 @@ msgstr ""
"printdialogen van veel applicaties. Maar vul daar dan geen bestandsnaam in "
"omdat het af te drukken bestand wordt geleverd door de applicatie. \n"
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8137,7 +8550,7 @@ msgstr ""
"Om een lijst te verkrijgen van alle beschikbare opties voor de huidige "
"printer, klikt u op de knop \"Lijst van print-opties\"."
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8146,7 +8559,7 @@ msgstr ""
"Om een bestand vanaf de commandoregel (terminalvenster) af te drukken, \n"
"gebruikt u het commando \"%s <bestand>\" of \"%s <bestand>\".\n"
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8160,7 +8573,7 @@ msgstr ""
"\"STOP Printer!\", welke onmiddelijk alle printtaken stopt wanneer u er op "
"klikt. Dit is handig bijvoorbeeld in het geval van papierstoringen.\n"
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -8173,44 +8586,55 @@ msgstr ""
"van de opties voor een specifieke printtaak. Voeg de gewenste instellingen "
"eenvoudigweg toe aan de commandoregel, bijvoorbeeld \"%s <bestand>\".\n"
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Sluiten"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Bezig met afdrukken/scannen op \"%s\""
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Bezig met afdrukken/scannen op \"%s\""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Bezig met afdrukken/scannen op \"%s\""
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Bezig met afdrukken op printer \"%s\""
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Sluiten"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "Lijst van print-opties"
-#: ../../printerdrake.pm_.c:1766
-#, c-format
+#: ../../printerdrake.pm_.c:1802
+#, fuzzy, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
"Uw HP multifunctioneel apparaat is automatisch geconfigureerd om te kunnen "
"scannen. U kunt nu scannen met \"scanimage\" (\"scanimage -d hp:%s\" om de "
-"scanner te specificeren als u er meer dan één heeft) vanaf de commandoregel "
+"scanner te specificeren als u er meer dan ĂŠĂŠn heeft) vanaf de commandoregel "
"of met behulp van de grafische interfaces \"xscanimage\" of \"xsane\". "
"Indien u gebruik maakt van The GIMP, kunt u ook scannen door het juiste punt "
"te kiezen in het \"Bestand\"/\"Importeren\"-menu. U kunt ook \"man scanimage"
@@ -8219,39 +8643,30 @@ msgstr ""
"\n"
"Gebruik voor dit apparaat geen \"scannerdrake\"!"
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-"Uw HP multifunctioneel apparaat is automatisch geconfigureerd om te kunnen "
-"scannen. U kunt nu scannen vanaf de commandoregel met \"ptal-hp %s scan ..."
-"\". Scannen via een grafische interface of vanuit The GIMP is nog niet "
-"ondersteund voor uw apparaat. U vindt meer informatie in het bestand \"/usr/"
-"share/doc/hpoj-0.8/ptal-hp-scan.html\" op uw systeem. Als u een HP LaserJet "
-"1100 of 1200 heeft kunt u alleen scannen indien u de scanner-optie "
-"geďnstalleerd heeft.\n"
-"\n"
-"Gebruik voor dit apparaat geen \"scannerdrake\"!"
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr "Bezig met lezen van printer-informatie..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "Printer-configuratie overzetten"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8261,12 +8676,12 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
"U kunt de printerconfiguratie die u voor spooler %s uitgevoerd heeft, "
-"kopiëren naar %s, uw huidige spooler. Alle configuratiegegevens "
+"kopiĂŤren naar %s, uw huidige spooler. Alle configuratiegegevens "
"(printernaam, beschrijving, locatie, verbindingssoort, en standaard opties) "
"worden dan overgenomen, maar printtaken zullen niet worden overgezet.\n"
"Niet alle wachtrijen kunnen worden overgezet, vanwege de volgende redenen:\n"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8274,7 +8689,7 @@ msgstr ""
"CUPS ondersteunt geen printers op Novell-servers of printers die gegevens in "
"een vrije vorm-opdracht versturen.\n"
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -8282,11 +8697,11 @@ msgstr ""
"PDQ ondersteunt alleen printers aan deze computer, LPD printers op afstand, "
"en Socket/TCP printers.\n"
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD en LPRng ondersteunen geen IPP printers.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8294,7 +8709,7 @@ msgstr ""
"Daarbij komt dat wachtrijen die niet met dit programma of met \"foomatic-"
"configure\" zijn aangemaakt, niet kunnen worden overgezet."
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8304,7 +8719,7 @@ msgstr ""
"Ook printers geconfigureerd met door hun fabrikant geleverde PPD-bestanden, "
"of met eigen CUPS drivers, kunnen niet worden overgezet."
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8314,15 +8729,15 @@ msgstr ""
"Markeer de printers die u wilt overzetten en klik \n"
"\"Overzetten\"."
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr "De printers niet overzetten"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr "Overzetten"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8333,13 +8748,13 @@ msgstr ""
"Klik op \"Overzetten\" om deze te overschrijven.\n"
"U kunt ook een nieuwe naam ingeven of deze printer overslaan."
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"Een printernaam mag alleen letters, getallen en een laag liggend streepje "
"bevatten"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8348,16 +8763,16 @@ msgstr ""
"De printer \"%s\" bestaat reeds, \n"
"weet u zeker dat u de configuratie ervan wilt overschrijven?"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Nieuwe printernaam"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr "Bezig met overzetten van %s ..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8366,29 +8781,29 @@ msgstr ""
"U heeft uw vorige standaardprinter (\"%s\") overgezet. Moet dit ook de "
"standaardprinter worden in het nieuwe printsysteem %s?"
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr "Bezig met verversen van printergegevens..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr "Printer-op-afstand configureren"
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "Bezig met inschakelen van het netwerk..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr "Configureer het netwerk nu"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "Netwerk-functionaliteit niet geconfigureerd"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8400,11 +8815,11 @@ msgstr ""
"Als u verder wilt gaan zonder netwerkconfiguratie, zult u niet in staat zijn "
"om de printer te gebruiken die u nu configureert. Hoe wenst u verder te gaan?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr "Doorgaan zonder configureren van netwerk"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8415,13 +8830,13 @@ msgid ""
msgstr ""
"De netwerk-configuratie die uitgevoerd is tijdens de installatie kan op dit "
"moment niet worden ingeschakeld. Gaat u na of het netwerk toegankelijk is na "
-"het opnieuwopstarten van uw systeem. De configuratie is te corrigeren met "
+"het opnieuw opstarten van uw systeem. De configuratie is te corrigeren met "
"het Mandrake Controle Centrum, onderdeel \"Netwerk & Internet\"/\"Verbinding"
"\". Daarna kunt u de \n"
"printer instellen, ook met het Mandrake Control Center, onderdeel \"Hardware"
"\"/\"Printer\""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
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 "
@@ -8431,25 +8846,25 @@ msgstr ""
"Gelieve uw configuratie en uw hardware na te kijken. Probeert u daarna "
"opnieuw uw printer-op-afstand te configureren."
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr "Bezig met herstarten van het printsysteem..."
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "hoog"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
-msgstr "paranoďde"
+msgstr "paranoĂŻde"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
"Bezig met installeren van een printsysteem in het %s beveiligingsniveau"
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8474,11 +8889,11 @@ msgstr ""
"\n"
"Weet u zeker dat u het afdrukken wilt configureren op deze computer?"
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr "Het printsysteem zal bij het opstarten worden ingeschakeld"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8501,107 +8916,111 @@ msgstr ""
"Wilt u dat het automatisch inschakelen van het printsysteem weer wordt "
"aangezet?"
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
-msgstr "Bezig met nagaan welke software geďnstalleerd is..."
+msgstr "Bezig met nagaan welke software geĂŻnstalleerd is..."
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr "Bezig met verwijderen van LPRng..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr "Bezig met verwijderen van LPD..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "Selecteer printer-spooler"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "Welk printsysteem (\"spooler\") wilt u gebruiken?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Bezig met configureren van printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
+msgstr "Bezig met instellen van printer \"%s\" ..."
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
msgstr "Bezig met installeren van Foomatic..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Printer-opties"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr "Bezig met het voorbereiden van PrinterDrake..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
msgid "Configuring applications..."
-msgstr "Bezig met configureren van toepassingen ..."
+msgstr "Bezig met instellen van toepassingen ..."
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "Wenst u een printer in te stellen?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr "Printsysteem:"
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
"OpenOffice.org."
msgstr ""
-"De volgende printers zijn geconfigureerd. Dubbelklik op een printer om zijn "
+"De volgende printers zijn ingesteld. Dubbelklik op een printer om zijn "
"instellingen te wijzigen; om hem als standaardprinter in te stellen; om "
"informatie erover te bekijken; of om een printer op een CUPS-server op "
"afstand ter beschikking te stellen in Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
"it."
msgstr ""
-"De volgende printers zijn geconfigureerd. Dubbelklik op één ervan om zijn "
+"De volgende printers zijn geconfigureerd. Dubbelklik op ĂŠĂŠn ervan om zijn "
"instellingen te wijzigen; hem als standaardprinter in te stellen; of om "
"informatie erover te bekijken."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Printerlijst verversen (om alle CUPS printers-op-afstand zichtbaar te maken)"
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
msgid "Change the printing system"
msgstr "Wijzig het printsysteem"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Normale modus"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Afsluiten"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
-msgstr "Wenst u een andere printer te configureren?"
+msgstr "Wenst u een andere printer in te stellen?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
-msgstr "Printerconfiguratie aanpassen"
+msgstr "Printer instellingen aanpassen"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, c-format
msgid ""
"Printer %s\n"
@@ -8610,115 +9029,114 @@ msgstr ""
"Printer %s\n"
"Wat wilt u aanpassen aan deze printer?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr "Doe het!"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "Soort printerverbinding"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "Printernaam, beschrijving, locatie"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr "Printerfabrikant, model, aansturingsprogramma"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr "Printerfabrikant, model"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr "Stel deze printer in als standaardprinter"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr "Deze printer aan Star Office/OpenOffice.org toevoegen"
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr "Deze printer verwijderen uit Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr "Druk testpagina('s) af"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
msgstr "Weet hoe deze printer kan worden gebruikt"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "Printer verwijderen"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, c-format
-msgid "Removing old printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
msgstr "Bezig met verwijderen van oude printer \"%s\" ..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Standaard printer"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "De \"%s\"-printer is nu ingesteld als de standaardprinter."
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr "Bezig met toevoegen van printer aan Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-"De printer \"%s\" is niet succesvol aan Star Office/OpenOffice.org "
-"toegevoegd."
+"De printer \"%s\" is succesvol aan Star Office/OpenOffice.org toegevoegd."
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
"Het toevoegen van de printer \"%s\" aan Star Office/OpenOffice.org is "
"mislukt."
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr "Bezig met verwijderen van printer uit Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
"De printer \"%s\" is succesvol uit Star Office/OpenOffice.org verwijderd."
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
"Het verwijderen van de printer \"%s\" uit Star Office/OpenOffice.org is "
"mislukt."
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Weet u zeker dat u de printer \"%s\" wilt verwijderen?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr "Bezig met verwijderen van printer \"%s\" ..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
#: ../../proxy.pm_.c:78
msgid "Proxy configuration"
-msgstr "Configuratie van proxy"
+msgstr "Instellingen proxy"
#: ../../proxy.pm_.c:30
msgid ""
@@ -8727,7 +9145,7 @@ msgid ""
"Here, you'll be able to set up your http and ftp proxies\n"
"with or without login and password\n"
msgstr ""
-"Welkom bij de proxy-configuratie.\n"
+"Welkom bij de proxy-instellingen.\n"
"\n"
"Hier kunt u uw http en ftp proxy's opgeven, al dan niet\n"
"met loginnaam en wachtwoord\n"
@@ -8790,31 +9208,71 @@ msgstr "Voer wachtwoord opnieuw in"
#: ../../proxy.pm_.c:88
msgid "The passwords don't match. Try again!"
-msgstr "De wachtwoorden kloppen niet met elkaar. Probeert u het opnieuw!"
+msgstr "De wachtwoorden komen niet overeen. Probeert u het opnieuw!"
#: ../../raid.pm_.c:35
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Kan geen partitie toevoegen aan een _geformatteerde_ RAID md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Kan niet schrijven naar bestand %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid-fout!"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid-fout! (misschien ontbreken de raidtools?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Niet genoeg partities voor RAID-niveau %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Dit niveau moet met voorzichtigheid gebruikt worden. Het maakt uw systeem\n"
+"makkelijker te gebruiken maar erg gevoelig: het moet niet gebruikt worden "
+"indien de\n"
+"machine met andere computers of het internet verbonden is. Er worden\n"
+"geen wachtwoorden gebruikt."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+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 ""
+"Met dit veiligheidsniveau wordt het mogelijk dit systeem als server te "
+"gebruiken.\n"
+"De beveiliging is nu goed genoeg om de computer als server te gebruiken die\n"
+"verbindingen van vele clients accepteert. Merk op: als uw computer alleen "
+"een\n"
+"client op het Internet is, dan kunt u beter een lager niveau kiezen."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "Geavanceerde opties"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Opties"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Start het ALSA (Advanced Linux Sound Architecture) geluidssysteem"
@@ -8851,9 +9309,9 @@ msgid ""
msgstr ""
"cron is een standaard UNIX-programma dat door de gebruiker gespecificeerde "
"programma's start\n"
-"op periodiek geplande tijden. vixie cron voegt een aantal 'features' toe "
-"aande basis UNIX-cron,\n"
-"waaronder betere veiligheid en krachtigere configuratieopties."
+"op periodiek geplande tijden. vixie cron voegt een aantal extra's toe aan de "
+"basis UNIX-cron,\n"
+"waaronder betere veiligheid en krachtiger in te stellen opties."
#: ../../services.pm_.c:23
msgid ""
@@ -8875,7 +9333,7 @@ msgstr ""
"HardDrake draait als een hardware-sonde, en eventueel \n"
"configureert het nieuwe of veranderde hardware."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8912,10 +9370,10 @@ msgid ""
"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
"You should leave this enabled for most machines."
msgstr ""
-"Dit pakket laadt de geselecteerde toetsenbord-layout als ingesteld in\n"
+"Dit pakket laadt de geselecteerde toetsenbord-indeling als ingesteld in\n"
"/etc/sysconfig/keyboard. Dit kan geselecteerd worden via de kbdconfig "
"utility.\n"
-"U laat dit best aanstaan voor de meeste machines."
+"U kunt dit het best aan laten voor de meeste machines."
#: ../../services.pm_.c:38
msgid ""
@@ -8927,7 +9385,7 @@ msgstr ""
#: ../../services.pm_.c:40
msgid "Automatic detection and configuration of hardware at boot."
-msgstr "Automatisch vinden en configureren van hardware bij het opstarten"
+msgstr "Automatisch vinden en instellen van hardware bij het opstarten"
#: ../../services.pm_.c:41
msgid ""
@@ -8954,13 +9412,13 @@ msgstr ""
"Linux Virtual Server, gebruikt om een hoge-prestatie en hoge-\n"
"beschikbaarheid server te bouwen."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
msgstr ""
-"named (BIND) is een Domain Name Server (DNS) die wordt gebruikt om hostnamen "
-"naar IP-adressen om te zetten."
+"named (BIND) is een Domain Name Server (DNS) die wordt gebruikt om "
+"computernamen naar IP-adressen om te zetten."
#: ../../services.pm_.c:48
msgid ""
@@ -9020,7 +9478,7 @@ msgstr ""
"onder-\n"
"steunen. Het zal niet gestart worden tenzij het geconfigureerd is, dus het "
"is\n"
-"veilig om het geďnstalleerd te hebben op machines die het niet nodig hebben."
+"veilig om het geĂŻnstalleerd te hebben op machines die het niet nodig hebben."
#: ../../services.pm_.c:63
msgid ""
@@ -9033,7 +9491,7 @@ msgstr ""
"zoals NFS en NIS. De portmap-server moet draaien op machines die fungeren\n"
"als servers voor protocols die het RPC-mechanisme gebruiken."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -9046,7 +9504,7 @@ msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
msgstr ""
-"Bewaart en herstelt de systeem-entropy pool voor betere generatie\n"
+"Bewaart en herstelt de systeem-entropie pool voor betere generatie\n"
"van willekeurige cijfers."
#: ../../services.pm_.c:69
@@ -9054,7 +9512,7 @@ msgid ""
"Assign raw devices to block devices (such as hard drive\n"
"partitions), for the use of applications such as Oracle"
msgstr ""
-"Wijs rauwe apparaten toe aan blok-georiënteerde apparaten \n"
+"Wijs rauwe apparaten toe aan blok-georiĂŤnteerde apparaten \n"
"(zoals partities op een harde schijf), voor het gebruik van \n"
"applicaties zoals Oracle"
@@ -9134,7 +9592,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Bestanden delen"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "Systeem"
@@ -9185,7 +9643,7 @@ msgstr "Start"
#: ../../services.pm_.c:236
msgid "Stop"
-msgstr "Stoppen"
+msgstr "Stop"
#: ../../share/advertising/00-thanks.pl_.c:9
msgid "Thank you for choosing Mandrake Linux 8.2"
@@ -9264,6 +9722,7 @@ msgstr ""
"GNU gcc compiler naast de beste Open Source ontwikkelomgevingen"
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
msgstr "Mandrake Controlecentrum"
@@ -9272,7 +9731,7 @@ msgid ""
"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
"customizing and configuring your Mandrake system"
msgstr ""
-"Het Mandrake Linux 8.2 Controlecentrum is een alles-in-één-plek om uw "
+"Het Mandrake Linux 8.2 Controlecentrum is een alles-in-ĂŠĂŠn-plek om uw "
"Mandrake-systeem volledig aan te passen en te configureren"
#: ../../share/advertising/06-user.pl_.c:9
@@ -9375,7 +9834,7 @@ msgid ""
"offerings, please see the following web page:"
msgstr ""
"Voor meer informatie over MandrakeSoft's Professional Services en "
-"commerciële produkten, zie de volgende webpagina:"
+"commerciĂŤle produkten, zie de volgende webpagina:"
#: ../../share/advertising/13-Nvert.pl_.c:11
msgid "http://www.mandrakesoft.com/sales/contact"
@@ -9385,6 +9844,15 @@ msgstr "http://www.mandrakesoft.com/sales/contact"
msgid "Installing packages..."
msgstr "Bezig met installeren van pakketten..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Gelieve uit te loggen en daarna Ctrl-Alt-Backspace te gebruiken"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Gelieve opnieuw in te loggen op %s om de wijzigingen te activeren"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -9393,6 +9861,151 @@ msgstr ""
"Ik kan uw partitietabel niet lezen, ze is te corrupt voor mij :-(\n"
"Ik zal proberen door te gaan en de slechte partities te verwijderen"
+#: ../../standalone/drakTermServ_.c:189
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Mandrake Terminal Server Configuratie"
+
+#: ../../standalone/drakTermServ_.c:204
+msgid "Enable Server"
+msgstr "Activeer Server"
+
+#: ../../standalone/drakTermServ_.c:211
+msgid "Disable Server"
+msgstr "Deactiveer Server"
+
+#: ../../standalone/drakTermServ_.c:219
+msgid "Start Server"
+msgstr "Start Server"
+
+#: ../../standalone/drakTermServ_.c:226
+msgid "Stop Server"
+msgstr "Stop Server"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr "Etherboot Floppy/ISO"
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr "Net Boot Images"
+
+#: ../../standalone/drakTermServ_.c:240
+msgid "Add/Del Users"
+msgstr "Gebruikers toevoegen/verwijderen"
+
+#: ../../standalone/drakTermServ_.c:242
+msgid "Add/Del Clients"
+msgstr "Clienten toevoegen/verwijderen"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Help"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr "Boot Floppy"
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr "Boot ISO"
+
+#: ../../standalone/drakTermServ_.c:505
+#, fuzzy
+msgid "Build Whole Kernel -->"
+msgstr "Kernel maken -->"
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr "Dit kan enige minuten duren."
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr "Geen kernel geselecteerd!"
+
+#: ../../standalone/drakTermServ_.c:522
+#, fuzzy
+msgid "Build Single NIC -->"
+msgstr "Maak NIC -->"
+
+#: ../../standalone/drakTermServ_.c:533
+msgid "No nic selected!"
+msgstr "Geen nic geselecteerd!"
+
+#: ../../standalone/drakTermServ_.c:536
+#, fuzzy
+msgid "Build All Kernels -->"
+msgstr "Maak alle kernels -->"
+
+#: ../../standalone/drakTermServ_.c:550
+msgid "<-- Delete"
+msgstr "<-- Verwijderen"
+
+#: ../../standalone/drakTermServ_.c:557
+msgid "Delete All NBIs"
+msgstr "Verwijder alle NBI's"
+
+#: ../../standalone/drakTermServ_.c:619
+msgid "Add User -->"
+msgstr "Gebruiker Toevoegen -->"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr "<-- Verwijder Gebruiker"
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr "Client Toevoegen -->"
+
+#: ../../standalone/drakTermServ_.c:733
+msgid "<-- Del Client"
+msgstr "<-- Verwijder Client"
+
+#: ../../standalone/drakTermServ_.c:739
+msgid "dhcpd Config..."
+msgstr "dhcpd Configureren..."
+
+#: ../../standalone/drakTermServ_.c:886
+msgid "Write Config"
+msgstr "Schrijf configuratie weg"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Plaats een diskette in het station:"
+
+#: ../../standalone/drakTermServ_.c:948
+#, fuzzy
+msgid "Couldn't access the floppy!"
+msgstr "Kon de diskette niet vinden!"
+
+#: ../../standalone/drakTermServ_.c:950
+#, fuzzy
+msgid "Floppy can be removed now"
+msgstr "De diskette kan nu worden uitgenomen"
+
+#: ../../standalone/drakTermServ_.c:953
+msgid "No floppy drive available!"
+msgstr "Geen diskettestation beschikbaar!"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr "Etherboot ISO image is %s"
+
+#: ../../standalone/drakTermServ_.c:964
+#, fuzzy
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr "Er ging iets fout!"
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr "Er moet eerst een /etc/dhcpd.conf worden aangemaakt!"
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "Fout!"
@@ -9445,6 +10058,10 @@ msgstr ""
"Kiest u alstublieft voor elke stap of deze zich zal herhalen zoals bij uw "
"installatie, of dat deze handmatig zal zijn"
+#: ../../standalone/drakautoinst_.c:83
+msgid "Creating auto install floppy"
+msgstr "Bezig met aanmaken van auto-installatiediskette"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -9458,12 +10075,12 @@ msgstr ""
"De parameters van de auto-installatie zijn aanwezig in de afdelingen aan de "
"linkerkant"
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Gefeliciteerd!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9471,28 +10088,19 @@ msgstr ""
"De diskette is met succes aangemaakt.\n"
"U kunt nu uw installatie herhalen."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr "Auto-installatie"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr "Item toevoegen"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr "Het laatste item verwijderen"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
@@ -9502,7 +10110,7 @@ msgstr ""
" DrakBackup Rapport \n"
"\n"
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9514,19 +10122,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9538,63 +10134,86 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr "totale voortgang"
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr "Reservekopie maken van systeembestanden..."
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
msgstr "Harde schijf reservekopie..."
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
msgstr "Reservekopie gebruikersbestanden..."
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr "Voortgang reservekopie harde schijf..."
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
msgstr "Reservekopie andere bestanden..."
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, fuzzy, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
"bestandslijst via FTP verzonden: %s\n"
" "
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
+#, fuzzy
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
"\n"
-"(!) Er is een probleem opgetreden met de FTP-verbinding. Het is niet "
-"mogelijk om uw reservekopie-bestanden per FTP te verzenden.\n"
+" FTP verbindings probleem: het was niet mogelijk uw reservekopie via FTP te "
+"versturen.\n"
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr "(!) Er is een fout opgetreden tijdens het versturen van e-mail.\n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:914
+msgid " Error during mail sending. \n"
+msgstr "Fout tijdens versturen post.\n"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
msgstr "Bestandsselectie"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr "Selecteer de bestanden of mappen en klik op 'Toevoegen'"
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -9602,111 +10221,104 @@ msgstr ""
"\n"
"Gelieve alle opties te selecteren die u nodig heeft.\n"
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Deze opties kunnen een reservekopie maken van alle bestanden in uw /etc "
"map.\n"
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr "Reservekopie maken van uw systeembestanden ( /etc map )"
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-"Gebruik incrementele reservekopie (de oude reservekopieën niet vervangen)"
+"Gebruik incrementele reservekopie (de oude reservekopieĂŤn niet vervangen)"
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "Essentiële bestanden niet opnemen (passwd, group, fstab)"
+msgstr "EssentiĂŤle bestanden niet opnemen (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr "Met deze optie kunt u iedere versie van uw /etc herstellen."
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
msgstr ""
"Gelieve alle gebruikers te selecteren die u in uw reservekopie wilt opnemen."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr "Browser-cache niet opnemen"
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
-msgstr "Gebruik incrementele reservekopieën (vervang geen oude reservekopieën)"
+msgstr "Gebruik incrementele reservekopieĂŤn (vervang geen oude reservekopieĂŤn)"
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
msgstr "Verwijder geselecteerden"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr "Windows (FAT32) "
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr "Gebruikers"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
msgstr "Gebruik FTP-verbinding voor reservekopie"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
msgstr "Gelieve hostnaam of IP in te voeren."
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-"Gelieve de map op deze host \n"
-" om de reservekopie in op te slaan\n"
-" in te voeren."
+"Gelieve de map op deze computer aangeven\n"
+" om de reservekopie in op te slaan."
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
msgstr "Voer uw login in"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
msgstr "Voer uw wachtwoord in"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
msgstr "Onthoud dit wachtwoord"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "FTP-verbinding"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Beveiligde verbinding"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr "Gebruik CD/DVD-ROM voor reservekopie"
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
msgstr "Kies uw CD-ruimte"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
msgstr "Ga na of u CDRW-media gebruikt"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr "Gelieve na te gaan of u uw CDRW wilt wissen voor u verdergaat"
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
@@ -9714,7 +10326,7 @@ msgstr ""
"Ga na of u de installatie-opstartprocedure\n"
" wilt opnemen op uw CD."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -9722,16 +10334,21 @@ msgstr ""
"Voer het apparaatnaam van uw CD Writer in\n"
" Voorbeeld: 0,1,0"
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
msgstr "Gebruik tape voor backup"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr "Voer de apparaatnaam in om voor de reservekopie te gebruiken"
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Gelieve na te gaan of u uw CDRW wilt wissen voor u verdergaat"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -9739,51 +10356,57 @@ msgstr ""
"Voer de maximumruimte in die\n"
" Drakbackup mag gebruiken"
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
+#: ../../standalone/drakbackup_.c:1497
+#, fuzzy
+msgid "Please enter the directory to save to:"
msgstr "Voer de map voor opslaan in:"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
msgstr "Gebruik quota voor reservekopie-bestanden"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
msgstr "Netwerk"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
-msgstr "CDROM / DVDROM"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr "Harde schijf / NFS"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Type"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr "ieder uur"
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr "dagelijks"
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr "wekelijks"
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr "maandelijks"
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
msgstr "Gebruik daemon"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -9791,7 +10414,7 @@ msgstr ""
"Gelieve het tijdsinterval \n"
"tussen iedere backup te kiezen"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
@@ -9799,71 +10422,67 @@ msgstr ""
"Kies de media\n"
"voor de reservekopie."
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Harde schijf met daemon gebruiken"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "FTP met daemon gebruiken"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+#, fuzzy
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr "Let u op dat de cron daemon aanstaat in uw 'diensten'."
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr "Verstuur e-mailrapport na elke reservekopie naar:"
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "Wat"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "Waar"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "Wanneer"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
msgstr "Meer opties"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
msgstr "Drakbackup configuratie"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
msgstr "Bepaal waar u de reservekopie wilt maken"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr "op harde schijf"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr "over netwerk"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
msgstr "Kies waar u een reservekopie van wilt maken"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
msgstr "Reservekopie-systeem"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr "Reservekopie Gebruikers"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr "Handmatig gebruiker selecteren"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
@@ -9871,7 +10490,7 @@ msgstr ""
"\n"
"Reservekopie-bronnen: \n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
@@ -9879,7 +10498,7 @@ msgstr ""
"\n"
"- Systeembestanden:\n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
@@ -9887,7 +10506,7 @@ msgstr ""
"\n"
"- Gebruikersbestanden:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
@@ -9895,7 +10514,7 @@ msgstr ""
"\n"
"- Overige bestanden:\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
@@ -9904,16 +10523,45 @@ msgstr ""
"\n"
"- Pad voor opslaan op harde schijf: %s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Muis apparaat: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"- Computer voor opslaan via FTP: %s\n"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
"\n"
-"- Host voor opslaan via FTP: %s\n"
+"- Computer voor opslaan via FTP: %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -9922,7 +10570,7 @@ msgstr ""
"\t\t gebruikersnaam: %s\n"
"\t\t op pad: %s \n"
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
@@ -9930,49 +10578,63 @@ msgstr ""
"\n"
"- Opties:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr "\tSysteembestanden niet opnemen\n"
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
-msgstr "\tReservekopieën gebruiken tar en bzip2\n"
+msgstr "\tReservekopieĂŤn gebruiken tar en bzip2\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
-msgstr "\tReservekopieën gebruiken tar en gzip\n"
+msgstr "\tReservekopieĂŤn gebruiken tar en gzip\n"
# check if this is the right translation, unclear! -Reinout
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
"\n"
-"- Daemon (%s) opnemen: \n"
+"- Daemon (%s) invoegen: \n"
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
-msgstr "\t-harde schijf.\n"
+msgstr "\t-Harde schijf.\n"
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr "\t-Netwerk over FTP.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr "\t-Netwerk over SSH.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t-Netwerk over FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t-Netwerk over FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr "Geen configuratie, gelieve Wizard of Geavanceerd aan te klikken.\n"
+msgstr "Geen configuratie, gelieve Hulp of Geavanceerd aan te klikken.\n"
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
@@ -9980,142 +10642,145 @@ msgstr ""
"Lijst van te herstellen gegevens:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-"Lijst van gecorrumpeerde gegevens:\n"
+"Lijst van beschadigde gegevens:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
msgid "Please uncheck or remove it on next time."
msgstr "Gelieve het de volgende keer te deselecteren of te verwijderen"
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
-msgstr "Reservekopiebestanden zijn gecorrumpeerd"
+msgstr "Reservekopie bestanden zijn beschadigd"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
-msgstr " Al uw geselecteerde gegevens zijn"
+msgstr " Al uw geselecteerde gegevens zijn "
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
-msgstr " Succesvol hersteld op %s"
+msgstr " Succesvol hersteld op %s "
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
msgid " Restore Configuration "
-msgstr " Configuratie herstellen"
+msgstr " Instellingen herstellen "
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr "OK om de overige bestanden te herstellen"
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Te herstellen gebruikerslijst (alleen de meest recente datum per gebruiker "
"is van belang)"
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
msgstr "Reservekopie maken van systeembestanden voor:"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
msgid "please choose the date to restore"
msgstr "Gelieve de datum te kiezen om te herstellen"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
msgstr "Gebruik harde schijf voor reservekopie"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+msgid "Please enter the directory to save:"
+msgstr "Voer de map voor opslaan in:"
+
+#: ../../standalone/drakbackup_.c:2416
+msgid "FTP Connection"
+msgstr "FTP-verbinding"
+
+#: ../../standalone/drakbackup_.c:2424
+msgid "Secure Connection"
+msgstr "Beveiligde verbinding"
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
msgstr "Herstellen van harde schijf"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
-msgstr "Voer de map in waar reservekopieën opgeslagen worden"
+msgstr "Voer de map in waar reservekopieĂŤn opgeslagen worden"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
msgstr "Selecteer andere media om vanaf te herstellen"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
msgid "Other Media"
msgstr "Andere media"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
msgid "Restore system"
msgstr "Systeem herstellen"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
msgstr "Gebruikers herstellen"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
msgstr "Overige herstellen"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr "selecteer te herstellen pad (in plaats van / )"
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Voer nieuwe backup uit alvorens te herstellen (alleen voor incrementele "
-"reservekopieën)"
+"reservekopieĂŤn)"
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr "Verwijder gebruikersmappen alvorens te herstellen"
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
-msgstr "Alle reservekopieën herstellen"
+msgstr "Alle reservekopieĂŤn herstellen"
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
msgid "Custom Restore"
msgstr "Aangepast herstellen"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Help"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "Vorige"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "Opslaan"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
msgstr "Reservekopie maken"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
msgstr "Reservekopie herstellen"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "Volgende"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -10123,7 +10788,7 @@ msgstr ""
"Gelieve eerst een reservekopie te maken voordat u probeert te herstellen...\n"
" of ga na dat uw pad voor opslaan correct is."
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
@@ -10131,109 +10796,113 @@ msgid ""
msgstr ""
"Er trad een fout op tijdens \"sendmail\"\n"
" Uw melding is niet verstuurd.\n"
-" Gelieve sendmail te configureren."
+" Gelieve sendmail in te stellen."
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Lijst van te installeren pakketten"
+#: ../../standalone/drakbackup_.c:2933
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "De volgende pakketten zullen geĂŻnstalleerd worden"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
+#, fuzzy
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
"Er trad een fout op tijdens het versturen via FTP.\n"
" Gelieve uw FTP-configuratie te corrigeren."
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
msgstr "Selecteer de gegevens om te herstellen"
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
msgstr "Selecteer media voor de reservekopie"
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
msgstr "Selecteer de gegevens waarvan u een reservekopie wilt maken..."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-"Kan geen configuratiebestand vinden \n"
-"klikt u op Wizard of Geavanceerd."
+"Kan geen instellingen-bestand vinden \n"
+"klikt u op Hulp of Geavanceerd."
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr "In ontwikkeling ... nog even wachten."
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
msgid "Backup system files"
msgstr "Reservekopie maken van systeembestanden"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
msgid "Backup user files"
msgstr "Reservekopie maken van gebruikersbestanden"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
msgid "Backup other files"
msgstr "Reservekopie maken van overige bestanden"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr "Totale voortgang"
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr "bestanden worden per FTP verstuurd"
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
msgid "Sending files..."
msgstr "Bezig met versturen van bestanden..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr "Lijst van gegevens om op te nemen op CD-ROM."
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
msgid "Please enter the cd writer speed"
msgstr "Voer de snelheid van de CD-Writer in"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr "Gelieve uw CD Writer apparaatnaam in te voeren (Voorbeeld: 0,1,0)"
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
msgstr "Ga na of u de installatie-opstartprocedure wilt opnemen op uw CD."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
msgid "Backup Now from configuration file"
msgstr "Nu reservekopie maken vanaf configuratiebestand"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
msgid "View Backup Configuration."
msgstr "Backup-configuratie bekijken"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
msgid "Wizard Configuration"
-msgstr "Configuratie met wizard"
+msgstr "Configuratie met hulp"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
msgid "Advanced Configuration"
msgstr "Geavanceerde configuratie"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
msgstr "Nu reservekopie maken"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -10264,8 +10933,38 @@ msgid ""
" \n"
"\n"
msgstr ""
+"opties omschrijving:\n"
+"\n"
+" In deze stap zal Drakbackup u toestaan om :\n"
+"\n"
+" - De compressie modus:\n"
+" \n"
+" Als U bzip2 compressie selecteert, dan comprimeert\n"
+" U (tot 2-10%) beter dan gzip.\n"
+" Deze optie is daarentegen niet standaard aangezet\n"
+" daar deze compressie modus meer tijd nodig heeft\n"
+" (zo'n 1000% meer).\n"
+" \n"
+" - De vernieuwings modus:\n"
+"\n"
+" Deze optie zal uw reservekopie vernieuwen, maar is\n"
+" niet echt bruikbaar daar de reservekopie eerst\n"
+" gedecomprimeerd dient te worden alvorens deze\n"
+" vernieuwd kan worden.\n"
+" \n"
+" - De .backupignore modus:\n"
+"\n"
+" Zoals met cvs, Drakbackup zal alle referenties in\n"
+" .backupignore bestanden in elke map negeren.\n"
+" voorbeeld: \n"
+" /*> cat .backupignore*/\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
+"\n"
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10280,7 +10979,7 @@ msgstr ""
" in te stellen in /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -10320,8 +11019,49 @@ msgid ""
"\n"
"\n"
msgstr ""
+"opties omschrijving:\n"
+"\n"
+" - Reservekopie systeem bestanden:\n"
+" \n"
+"\tDeze optie staat U toe een reservekopie van de\n"
+"\t/etc map te maken, welke alle instellings\n"
+"\tbestanden bevat. Let aub wel op dat tijdens\n"
+"\thet terugzetten van de reservekopie deze\n"
+"\tbestanden niet worden overschreven:\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+" - Reservekopie gebruikers bestanden: \n"
+"\n"
+"\tDeze optie staat U toe alle gerbuikers te\n"
+"\tselecteren waar U een reservekopie van wilt maken.\n"
+"\tOm schijfruimte te beperken adviseer ik U\n"
+"\tniet de web browser's cache mee te nemen.\n"
+"\n"
+" - Reservekopie overige bestanden: \n"
+"\n"
+"\tDeze optie staat toe meer gegevens op te slaan.\n"
+"\tMet de andere reservekopie is het momenteel niet\n"
+"\tmogelijk een periodieke reservekopie uit te\n"
+"\tvoeren.\t\t\n"
+" \n"
+" - Periodieke ReservekopieĂŤn:\n"
+"\n"
+"\tDe periodieke reservekopie is de meest krachtige\n"
+"\toptie voor reservekopieĂŤn. Deze optie staat\n"
+"\ttoe alleen reservekopieĂŤn te maken van\n"
+"\tgewijzigde bestanden.\n"
+"\tIn dit geval kunt U een reservekopie\n"
+"\tterugplaatsen van een gespecificeerde datum.\n"
+"\tIndien U geen gebruikt maakt van deze optie\n"
+"\tworden oude reservekopieĂŤn gewoonweg eerst\n"
+"\tverwijderd alvorens de reservekopie uit te\n"
+"\tvoeren.\n"
+"\n"
+"\n"
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -10348,14 +11088,44 @@ msgid ""
"\n"
"\n"
msgstr ""
+"herstel omschrijving:\n"
+" \n"
+"Alleen de meest recente datum zal worden gebruikt, omdat met\n"
+"periodieke reservekopieĂŤn elke oude reservekopie stuk voor\n"
+"stuk moet worden hersteld.\n"
+"\n"
+"Dus indien U geen herstel voor een gebruiker wilt uitvoeren\n"
+"zult U al zijn bestanden moeten de-selecteren.\n"
+"\n"
+"Anders heeft u maar ĂŠĂŠn keus\n"
+"\n"
+" - Periodieke reservekopieĂŤn:\n"
+"\n"
+"\tDe periodieke reservekopie is de meest krachtige\n"
+"\toptie voor een reservekopie, deze optie stelt U in\n"
+"\tstaat alles de eerste keer op te slaan, en\n"
+"\tvervolgens alleen gewijzigde bestanden.\n"
+"\tDus U zult tijdens de herstel stap, de\n"
+"\tmogelijkheid hebben een specifieke datum te selecteren\n"
+"\tvoor herstel.\n"
+"\tIndien U deze optie niet selecteerd overschrijft U alle\n"
+"\toude reservekopieĂŤn voor elke nieuwe reservekopie.\n"
+"\n"
+"\n"
+"\n"
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10371,21 +11141,27 @@ msgid ""
" along with this program; if not, write to the Free Software\n"
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
+" Dit programma is gratis software; U mag het redistribueren en/of\n"
+" modificeren onder de regels van de GNU General Public License als\n"
+" geplubiceerd door the Free Software Foundation; Met versie 2, als\n"
+" ook (uw eigen optie) elke latere versie.\n"
"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
+" Dit programma is gedistribueert in de hoop dat het bruikbaar\n"
+" zal zijn, maar ZONDER ENIGE GARANTIE; ook zonder enige\n"
+" toegespeelde garantie van LEVERANCIER of GESCHIKTHEID VOOR EEN\n"
+" SPECIFIEK DOEL. Zie de GNU General Public License voor meer\n"
+" informatie.\n"
"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
+" U zou meegeleverd een kopie moeten krijgen van de GNU General\n"
+" Public License met dit programma; Indien dit niet het geval is,\n"
+" Schrijf dan een brief naar de :\n"
+" Free Software Foundation, Inc.\n"
+" 59 Temple Place - Suite 330\n"
+" Boston\n"
+" MA 02111-1307\n"
+" USA."
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -10427,7 +11203,7 @@ msgstr ""
"Omschrijving:\n"
"\n"
" Drakbackup dient om een reservekopie te maken van uw systeem.\n"
-" Gedurende de configuratie kunt u selecteren:\n"
+" Gedurende de instelling kunt u selecteren:\n"
"\t- Systeembestanden,\n"
"\t- Gebruikersbestanden,\n"
"\t- Overige bestanden.\n"
@@ -10446,10 +11222,10 @@ msgstr ""
" Drakbackup laat u uw systeem herstellen naar een\n"
" door de gebruiker te bepalen map.\n"
"\n"
-" Standaard zullen alle reservekopieën opgeslagen worden in uw\n"
+" Standaard zullen alle reservekopieĂŤn opgeslagen worden in uw\n"
" /var/lib/drakbackup map.\n"
"\n"
-" Configuratiebestand:\n"
+" Instellingen-bestand:\n"
"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
"\n"
"\n"
@@ -10463,7 +11239,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -10476,13 +11252,13 @@ msgstr ""
"beschrijving van opties:\n"
"\n"
"Weest u voorzichtig met het gebruik van FTP-reservekopie,\n"
-"omdat alleen reeds gemaakte reservekopieën naar de server\n"
+"omdat alleen reeds gemaakte reservekopieĂŤn naar de server\n"
"worden verzonden. Dus op dit moment dient u de reservekopie\n"
"op uw harde schijf te maken alvorens deze te verzenden naar\n"
"de server.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10506,7 +11282,7 @@ msgstr ""
"te betrachten en de reservekopiebestanden niet\n"
"handmatig te wijzigen.\n"
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -10547,7 +11323,7 @@ msgstr ""
"Omschrijving:\n"
"\n"
" Drakbackup dient om een reservekopie te maken van uw systeem.\n"
-" Gedurende de configuratie kunt u selecteren:\n"
+" Gedurende de instelling kunt u selecteren:\n"
"\t- Systeembestanden,\n"
"\t- Gebruikersbestanden,\n"
"\t- Overige bestanden.\n"
@@ -10566,10 +11342,10 @@ msgstr ""
" Drakbackup laat u uw systeem herstellen naar een\n"
" door de gebruiker te bepalen map.\n"
"\n"
-" Standaard zullen alle reservekopieën opgeslagen worden in uw\n"
+" Standaard zullen alle reservekopieĂŤn opgeslagen worden in uw\n"
" /var/lib/drakbackup map.\n"
"\n"
-" Configuratiebestand:\n"
+" Instellingen-bestand:\n"
"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
"\n"
"Herstellen-stap:\n"
@@ -10587,100 +11363,532 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "De installatie van %s is niet gelukt. De volgende fout werd gevonden:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+#, fuzzy
+msgid "Mandrake Bug Report Tool"
+msgstr "Mandrake Bugraportage Gereedschap"
+
+#: ../../standalone/drakbug_.c:50
+#, fuzzy
+msgid "First Time Wizard"
+msgstr "Eerste keer Wizard"
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr "Synchronizatie Gereedschap"
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Commandoregel-gereedschappen"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr "HardDrake"
+
+#: ../../standalone/drakbug_.c:54
+msgid "Mandrake Online"
+msgstr "Mandrake Online"
+
+#: ../../standalone/drakbug_.c:55
+msgid "Menudrake"
+msgstr "Menudrake"
+
+#: ../../standalone/drakbug_.c:56
+msgid "Msec"
+msgstr "Msec"
+
+#: ../../standalone/drakbug_.c:57
+msgid "Remote Control"
+msgstr "Beheer op afstand"
+
+#: ../../standalone/drakbug_.c:58
+msgid "Software Manager"
+msgstr "Softwarebeheer"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+#, fuzzy
+msgid "Windows Migration tool"
+msgstr "Windows Migratie Gereedschap"
+
+#: ../../standalone/drakbug_.c:61
+msgid "Userdrake"
+msgstr "Userdrake"
+
+#: ../../standalone/drakbug_.c:62
+msgid "Configuration Wizards"
+msgstr "Configuratie Wizards"
+
+#: ../../standalone/drakbug_.c:71
+msgid "Application:"
+msgstr "Applicatie:"
+
+#: ../../standalone/drakbug_.c:75
+msgid "Package: "
+msgstr "Pakket: "
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr "Kernel:"
+
+#: ../../standalone/drakbug_.c:83
+msgid "Release: "
+msgstr "Uitgave: "
+
+#: ../../standalone/drakbug_.c:87
+#, fuzzy
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+"\n"
+"\n"
+"Om een bugrapport te versturen, klikt u op de knop rapporteren.\n"
+"Hierdoor wordt een browservenster geopend naar https://www.bugzilla.com\n"
+" waar u een formulier vindt om in te vullen. De bovenstaande informatie zal "
+"worden \n"
+"verstuurd naar die server\n"
+"\n"
+
+#: ../../standalone/drakbug_.c:101
+msgid "Not installed"
+msgstr "Niet geĂŻnstalleerd"
+
+#: ../../standalone/drakbug_.c:110
+msgid "Report"
+msgstr "Rapporteren"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr "Bezig met verbinden naar Bugzilla Wizard..."
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Geen browser beschikbaar! Installeer a.u.b. een"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Netwerk-configuratie (%d adapters)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profiel: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Wis profiel..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Te verwijderen profiel:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Nieuw profiel..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Naam van het te creĂŤren profiel (het nieuwe profiel wordt als een kopie van "
+"het huidige aangemaakt) : "
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Computernaam:"
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Internet-toegang"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Soort:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Gateway:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Interface:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Status:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "Even geduld"
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Configureren van Internet-toegang..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "LAN configuratie"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Stuurprogramma"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Interface"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protocol"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Status"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Configureer Local Area Network..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "Klik hier om de hulp in te schakelen ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Hulp..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Toepassen"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Even geduld... bezig met toepassen van de configuratie"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Verbonden"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Niet verbonden"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Verbinding maken..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Verbinding neerleggen..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+"Waarschuwing: een andere internetverbinding is bespeurd, misschien gebruikt "
+"deze uw netwerk."
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"U heeft helemaal geen geconfigureerde interface.\n"
+"Configureer deze eerst door op 'Configureer' te klikken"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "LAN Configuratie"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Adapter %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Opstart-protocol"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Aangezet bij het opstarten"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP client"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "nu activeren"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "nu de-activeren"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Deze interface is nog niet geconfigureerd.\n"
+"Start de configuratie-hulp in het hoofdscherm."
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"U heeft helemaal geen internetverbinding.\n"
+"CreĂŤer er eerst ĂŠĂŠn door op 'Configureer' te klikken"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Internetverbinding configureren"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Internetverbinding configureren"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Soort verbinding: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parameters"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Gateway"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Ethernet-kaart"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP Client"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "gebruik: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Modulenaam"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Formaat"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "creĂŤren van opstartdiskette"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "standaard"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "DrakFloppy fout: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "kernel versie"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Algemeen"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Expert-afdeling"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrd optionele argumenten"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "module toevoegen"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "forceren"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "als dit nodig is"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "laat scsi modules weg"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "laat raid modules weg"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Verwijder een module"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Output"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Maak de diskette"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Zorg ervoor dat er een schijf aanwezig is in apparaat %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"Er is geen opslagmedium aanwezig in apparaat %s of deze is niet te "
+"beschrijven.\n"
+"Graag een ander medium plaatsen."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Kan geen nieuw proces beginnen: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Kan mkbootdisk niet netjes afsluiten: \n"
+"%s \n"
+"%s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
-msgstr "Zoek in geďnstalleerde lettertypen"
+msgstr "Zoek in geĂŻnstalleerde lettertypen"
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
-msgstr "Geďnstalleerde lettertypen deselecteren"
+msgstr "GeĂŻnstalleerde lettertypen deselecteren"
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr "alle lettertypen ontleden"
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
msgid "no fonts found"
msgstr "geen lettertypen gevonden."
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "klaar"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr "kan geen lettertypen vinden in uw aangekoppelde partities"
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr "Correcte lettertypen opnieuw selecteren"
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr "kan geen enkel lettertpype vinden.\n"
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
-msgstr "Zoek lettertypen in lijst 'geďnstalleerd'"
+msgstr "Zoek lettertypen in lijst 'geĂŻnstalleerd'"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
-msgstr "Kopiëren van lettertypen"
+msgstr "KopiĂŤren van lettertypen"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
msgid "True Type fonts installation"
msgstr "Installatie van True Type lettertypen"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr "Even geduld terwijl 'ttmkfdir' wordt uitgevoerd..."
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr "True Type installatie klaar"
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr "Lettertypen-conversie"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr "'type1inst' is bezig"
# right translation? What is meant here?
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr "Ghostscript verwijzingen"
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr "ttf-lettertype conversie"
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr "pfm-lettertype conversie"
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr "Tijdelijke bestanden onderdrukken"
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr "XFS herstarten"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr "Lettertype-bestanden onderdrukken"
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
msgid "xfs restart"
msgstr "xfs herstarten"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10695,107 +11903,107 @@ msgstr ""
"gevallen kunnen\n"
"nep-lettertypen uw X Server laten hangen."
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
msgid "Fonts Importation"
msgstr "Import van lettertypen"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr "Neem Windows-lettertypen"
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
-msgstr "Lettertypen deďnstalleren"
-
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Geavanceerde opties"
+msgstr "Lettertypen deĂŻnstalleren"
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
msgstr "Lettertypenlijst"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
msgid "Choose the applications that will support the fonts :"
msgstr "Kies de applicaties waarin de lettertypen beschikbaar zullen zijn:"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
msgstr "Generieke printers"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr "Selecteer het lettertypebestand of map en klik op 'Toevoegen'"
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
msgstr "Installatielijst"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr "klik hier als u er zeker van bent."
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr "hier zoniet."
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr "Alle gedeselecteerd"
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
msgid "Selected All"
msgstr "Alles geselecteerd"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
msgstr "Lijst verwijderen"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr "Initialen-tests"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
-msgstr "Lettertypen op uw systeem kopiëren"
+msgstr "Lettertypen op uw systeem kopiĂŤren"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr "Lettertypen installeren & converteren"
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
msgid "Post Install"
msgstr "Post-installatie"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
msgstr "Lettertypen op uw systeem verwijderen"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
msgid "Post Uninstall"
-msgstr "Post-deďnstallatie"
+msgstr "Post-deĂŻnstallatie"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Internetverbinding delen"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr "Helaas, wij ondersteunen alleen 2.4 kernels."
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Internetverbinding delen staat op dit moment aan"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10807,31 +12015,31 @@ msgstr ""
"\n"
"Wat wenst u te doen?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "uitschakelen"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "klaar"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "herconfigureren"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Bezig met servers uitzetten..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Internetverbinding delen staat op dit moment uit."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Internet Connectie Delen staat niet aan"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10843,19 +12051,19 @@ msgstr ""
"\n"
"Wat wenst u te doen?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "inschakelen"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Bezig met inschakelen van servers..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Internetverbinding delen staat op dit moment aan"
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10871,21 +12079,21 @@ msgstr ""
"Opmerking: u heeft een specifiek hiervoor bestemde netwerk-adapter nodig\n"
"om een Local Area Network (LAN) op te zetten."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interface %s (gebruikt module %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Interface %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Geen netwerk adapter op uw systeem!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10893,11 +12101,11 @@ msgstr ""
"Er is geen ethernet netwerkadapter op uw systeem gevonden. Gelieve het "
"hardware configuratieprogramma te draaien."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Netwerk Interface"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10906,14 +12114,14 @@ msgid ""
"\n"
"I am about to setup your Local Area Network with that adapter."
msgstr ""
-"Er is maar één geconfigureerde netwerkadapter op uw systeem:\n"
+"Er is maar ĂŠĂŠn geconfigureerde netwerkadapter op uw systeem:\n"
"\n"
"%s \n"
"\n"
"Ik sta op het punt om uw Local Area Network te koppelen aan\n"
"deze adapter."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -10921,11 +12129,11 @@ msgstr ""
"Kies alstublieft welke netwerkadapter verbinding zal maken met uw Local Area "
"Network."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr "Netwerk-interface reeds geconfigureerd"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10940,15 +12148,15 @@ msgstr ""
"\n"
"U kunt het ook handmatig doen, maar u moet dan wel weten wat u doet."
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr "Automatisch opnieuw configureren"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr "Toon huidige interface-configuratie"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10965,7 +12173,7 @@ msgstr ""
"IP attribution: %s\n"
"Stuurprogramma: %s"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
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 C-Class Network that "
@@ -10986,34 +12194,34 @@ msgstr ""
"en een DHCP-server voor u instellen.\n"
"\n"
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr "C-Class lokaal netwerk"
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr "(Deze) DHCP-server IP"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr "Interface en DHCP-server opnieuw configureren"
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Het lokale netwerk eindigde niet op '.0', procedure gestaakt"
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Potentieel LAN-adresconflict gevonden in de huidige configuratie \n"
"van %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Firewall configuratie gedetecteerd!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -11021,22 +12229,22 @@ msgstr ""
"Waarschuwing! Een bestaande firewall configuratie is gevonden. U kunt "
"misschien na de installatie een handmatige aanpassing nodig hebben."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Configureren..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Bezig met het configureren van scripts, installeren van software, starten "
"vanservers..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Problemen met installeren van pakket %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11046,27 +12254,27 @@ msgstr ""
"U kunt nu uw internetverbinding delen met andere gebruikers op uw Local Area "
"Network, met gebruikmaking van automatische netwerkconfiguratie (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
"De setup van Internetverbinding delen is al uitgevoerd.\n"
"Het staat op dit moment uit."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
"De setup van Internetverbinding delen is al uitgevoerd.\n"
"Het staat op dit moment aan."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Internetverbinding delen is tot op heden nooit geconfigureerd."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Configuratie van Internetverbinding delen"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11079,217 +12287,7 @@ msgstr ""
"\n"
"%s\n"
"\n"
-"Klik op Configureer om de instellingen-wizard in te schakelen."
-
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Netwerk-configuratie (%d adapters)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profiel: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Wis profiel..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Te verwijderen profiel:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Nieuw profiel..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Naam van het te creëren profiel (het nieuwe profiel wordt als een kopie van "
-"het huidige aangemaakt) : "
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Hostnaam:"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Internet-toegang"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Soort:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Interface:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Even geduld"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Configureren van Internet-toegang..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "LAN configuratie"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Stuurprogramma"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interface"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protocol"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Status"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Configureer Local Area Network..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Klik hier om de 'wizard' in te schakelen ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Wizard..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Toepassen"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Even geduld... bezig met toepassen van de configuratie"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Verbonden"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Niet verbonden"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Verbinding maken..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Verbinding neerleggen..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Waarschuwing: een andere internetverbinding is bespeurd, misschien gebruikt "
-"deze uw netwerk."
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"U heeft helemaal geen geconfigureerde interface.\n"
-"Configureer deze eerst door op 'Configureer' te klikken"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "LAN Configuratie"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adapter %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Opstart-protocol"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Aangezet bij het opstarten"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP client"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "nu activeren"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "nu de-activeren"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Deze interface is nog niet geconfigureerd.\n"
-"Start de configuratie-wizard in het hoofdscherm."
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"U heeft helemaal geen internetverbinding.\n"
-"Creëer er eerst één door op 'Configureer' te klikken"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Internetverbinding configureren"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Internetverbinding configureren"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Soort verbinding: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parameters"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernet-kaart"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP Client"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Selecteer een veiligheids-niveau"
+"Klik op Configureer om de instellingen-hulp in te schakelen."
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
@@ -11299,63 +12297,92 @@ msgstr "Controle-Centrum"
msgid "Choose the tool you want to use"
msgstr "Selecteer het programma dat u wenst te gebruiken"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\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 ""
+"XawTV is niet geĂŻnstalleerd!\n"
+"\n"
+"\n"
+"Indien U wel een TV kaart heeft, maar DrakX deze niet gedetecteerd\n"
+"heeft (geen module bttv in \"/etc/modules\") of xawtv is niet\n"
+"geĂŻnstalleerd, stuur dan het resultaat van \"lspcidrake -v -f\" naar\n"
+"\"install\\@mandrakesoft.com\" met als onderwerp \"undetected TV card\".\n"
+"\n"
+"\n"
+"U kunt het alsnog installeren door \"urpmi xawtv\" als root gebruiker\n"
+"uit te voeren op een console."
+
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
msgstr "Canada (kabel)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr "VS (ether)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
+msgstr "USA (uitzending)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr "VS (kabel)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr "VS (kabel-hrc)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr "China (ether)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
+msgstr "China (uitzending)"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr "Japan (ether)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
+msgstr "Japan (uitzending)"
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr "Japan (kabel)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
msgstr "Oost-Europa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+msgid "France [SECAM]"
+msgstr "Frankrijk [SECAM]"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
msgstr "Ierland"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
msgstr "West-Europa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
-msgstr "Australië"
+msgstr "AustraliĂŤ"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr "Nieuw-Zeeland"
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr "Zuid-Afrika"
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
-msgstr "Argentinië"
+msgstr "ArgentiniĂŤ"
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
@@ -11363,27 +12390,43 @@ msgstr ""
"Gelieve uw\n"
"TV-norm en land in te geven"
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr "TV norm :"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr "Gebied :"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr "Zoeken naar TV-kanalen is bezig..."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr "Zoeken naar TV-kanalen"
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+msgid "There was an error while scanning for TV channels"
+msgstr "Er was een fout tijdens het scannen naar TV kanalen"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr "XawTV is niet geĂŻnstalleerd!"
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr "Een goedendag verder!"
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr "Nu kunt U xawtv uitvoeren (vanuit X) !\n"
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
-msgstr ""
+msgstr "Geen TV kaart gedetecteerd!"
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -11394,6 +12437,14 @@ msgid ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+"Er was geen TV kaart gedetecteerd. Controlleer dat een door linux "
+"ondersteundeVideo/TV kaart correct aangesloten is.\n"
+"\n"
+"\n"
+"U kunt onze randapparatuur database bereiken op:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
@@ -11428,7 +12479,7 @@ msgid "The change is done, but to be effective you must logout"
msgstr ""
"De wijziging is gemaakt, maar u moet uitloggen voordat het effect heeft"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -11476,13 +12527,9 @@ msgstr "/_Opties"
msgid "/Options/Test"
msgstr "/Opties/Test"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Help"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
-msgstr "/Help/_Info..."
+msgstr "/Hulp/_Info..."
#: ../../standalone/logdrake_.c:118
msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
@@ -11540,7 +12587,7 @@ msgstr "Kalender"
msgid "Content of the file"
msgstr "Inhoud van het bestand"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr "waarschuwing via e-mail/SMS"
@@ -11549,11 +12596,11 @@ msgstr "waarschuwing via e-mail/SMS"
msgid "please wait, parsing file: %s"
msgstr "Even geduld, bezig met ontleden van bestand: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
msgstr "Configuratie van waarschuwing per e-mail/SMS"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
@@ -11563,67 +12610,98 @@ msgstr ""
"\n"
"Hier kunt u het waarschuwingssysteem instellen.\n"
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Domeinnaam"
#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
+#, fuzzy
+msgid "Ftp Server"
+msgstr "Stop Server"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Postfix post-server, Inn nieuws-server"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "Start Server"
#: ../../standalone/logdrake_.c:422
+#, fuzzy
+msgid "SSH Server"
+msgstr "NIS-server"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Diensten"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Printer Server"
+
+#: ../../standalone/logdrake_.c:431
msgid "service setting"
msgstr "instelling diensten"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-"U zult een waarschuwing ontvangen indien één van de geselecteerde diensten "
+"U zult een waarschuwing ontvangen indien ĂŠĂŠn van de geselecteerde diensten "
"niet meer draait"
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
msgstr "instelling processorbelasting"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
"U zult een waarschuwing ontvangen indien de processorbelasting hoger is dan "
"deze waarde"
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
msgstr "configuratie van waarschuwing"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr "Configureer de manier waarop het systeem u waarschuwt"
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Opslaan als..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Welk type muis heeft u?"
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
-msgstr "Geen seriële USB gevonden\n"
+msgstr "Geen seriĂŤle USB gevonden\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Derde knop emuleren?"
+#: ../../standalone/printerdrake_.c:49
+msgid "Reading printer data ..."
+msgstr "Bezig met lezen van printer-informatie..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "Bezig met het zoeken van apparaten..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -11644,11 +12722,12 @@ msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
+"Scannerdrake kon uw %s scanner niet detecteren.\n"
+"Selecteer het apparaat waar uw scanner op verbonden is."
#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
msgid "choose device"
-msgstr "Boot-apparaat"
+msgstr "kies apparaat"
#: ../../standalone/scannerdrake_.c:102
#, c-format
@@ -11668,6 +12747,23 @@ msgid ""
"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
"applications menu."
msgstr ""
+"Uw %s scanner is ingesteld.\n"
+"U kunt nu documenten scannen met ``XSane'' via Multimedia/Graphics in het "
+"applicatie menu."
+
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr "Bepaalde apparaten in de hardware klasse \"%s\" zijn verwijderd:\n"
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+"\n"
+"Bepaalde apparaten in de hardware klasse \"%s\" zijn toegevoegd:\n"
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
@@ -11800,7 +12896,7 @@ msgstr ""
"Denk alstublieft goed na over deze vragen, omdat de veiligheid \n"
"van uw computer op het spel staat. \n"
"\n"
-"Wanneer u op dit moment niet één van deze diensten draait,\n"
+"Wanneer u op dit moment niet ĂŠĂŠn van deze diensten draait,\n"
"blokkeer deze dan met de firewall. U kunt deze configuratie \n"
"altijd nog veranderen door dit programma opnieuw \n"
"te starten!"
@@ -11968,11 +13064,11 @@ msgstr "Niet opslaan"
#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
#: ../../tinyfirewall.pm_.c:206
msgid "Save & Quit"
-msgstr "Opslaan en beëindigen"
+msgstr "Opslaan en beĂŤindigen"
#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
msgid "Firewall Configuration Wizard"
-msgstr "Firewall configuratie-Wizard"
+msgstr "Firewall configuratie-Hulp"
#: ../../tinyfirewall.pm_.c:199
msgid "No (firewall this off from the internet)"
@@ -11985,7 +13081,7 @@ msgstr "Ja (dit met de firewall doorlaten)"
#: ../../tinyfirewall.pm_.c:232
msgid "Please Wait... Verifying installed packages"
msgstr ""
-"Bezig met nagaan van geďnstalleerde pakketten, even geduld alstublieft..."
+"Bezig met nagaan van geĂŻnstalleerde pakketten, even geduld alstublieft..."
#: ../../tinyfirewall.pm_.c:238
#, c-format
@@ -12083,10 +13179,6 @@ msgstr "Programma's om de configuratie van uw computer te vergemakkelijken"
msgid "Multimedia - Sound"
msgstr "Multimedia - Geluid"
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Hulpprogramma's"
-
#
#: ../../share/compssUsers:999
msgid "Documentation"
@@ -12135,7 +13227,7 @@ msgstr "Apache, Pro-ftpd"
#: ../../share/compssUsers:999
msgid "Tools to create and burn CD's"
-msgstr "Programma's om CD's mee te creëren en te branden"
+msgstr "Programma's om CD's mee te creĂŤren en te branden"
#: ../../share/compssUsers:999
msgid "Office Workstation"
@@ -12195,12 +13287,8 @@ msgstr ""
"schrijven, en om het Web mee door te bladeren"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Archivering, emulators, toezicht houden"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
-msgstr "Persoonlijke Financiën"
+msgstr "Persoonlijke FinanciĂŤn"
#: ../../share/compssUsers:999
msgid ""
@@ -12232,7 +13320,7 @@ msgstr "Editors, shells, bestandsbeheer, terminals"
#: ../../share/compssUsers:999
msgid "Programs to manage your finance, such as gnucash"
-msgstr "Programma's om uw financiën mee te beheren, zoals gnucash"
+msgstr "Programma's om uw financiĂŤn mee te beheren, zoals gnucash"
#: ../../share/compssUsers:999
msgid "Personal Information Management"
@@ -12247,18 +13335,1667 @@ msgstr "Multimedia - CD branden"
msgid "Scientific Workstation"
msgstr "Wetenschappelijk werkstation"
-#~ msgid "About"
-#~ msgstr "Info"
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "fsck is mislukt met afsluitcode %d of signaal %d"
+
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Identificatie grafische kaart: %s\n"
+
+#~ msgid "Choose options for server"
+#~ msgstr "Selecteer de opties voor de X-server"
+
+#~ msgid "Monitor not configured"
+#~ msgstr "Monitor niet geconfigureerd"
+
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Grafische kaart nog niet geconfigureerd"
+
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Resoluties nog niet gekozen"
+
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "probeer enkele parameters aan te passen"
+
+#~ msgid "An error occurred:"
+#~ msgstr "Er is een fout opgetreden:"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Verdwijnt binnen %d seconden"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Is dit de juiste instelling?"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr ""
+#~ "Er is een fout opgetreden, probeer een aantal parameters aan te passen"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86-server: %s"
+
+#~ msgid "Show all"
+#~ msgstr "Toon alles"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Bezig met het voorbereiden van de X-Window instellingen"
+
+#~ msgid "What do you want to do?"
+#~ msgstr "Wat wenst u te doen?"
+
+#~ msgid "Change Monitor"
+#~ msgstr "Verander Monitor"
+
+#~ msgid "Change Graphics card"
+#~ msgstr "Verander grafische kaart"
+
+#~ msgid "Change Server options"
+#~ msgstr "Verander Server-opties"
+
+#~ msgid "Change Resolution"
+#~ msgstr "Resolutie wijzigen"
-#~ msgid " Help "
-#~ msgstr " Help"
+#~ msgid "Show information"
+#~ msgstr "Informatie tonen"
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
+#~ msgid "Test again"
+#~ msgstr "Opnieuw testen"
+
+#~ msgid ""
+#~ "Your HP multi-function device was configured automatically to be able to "
+#~ "scan. Now you can scan from the command line with \"ptal-hp %s scan ..."
+#~ "\". Scanning via a graphical interface or from the GIMP is not supported "
+#~ "yet for your device. More information you will find in the \"/usr/share/"
+#~ "doc/hpoj-0.8/ptal-hp-scan.html\" file on your system. If you have an HP "
+#~ "LaserJet 1100 or 1200 you can only scan when you have the scanner option "
+#~ "installed.\n"
+#~ "\n"
+#~ "Do not use \"scannerdrake\" for this device!"
+#~ msgstr ""
+#~ "Uw HP multifunctioneel apparaat is automatisch geconfigureerd om te "
+#~ "kunnen scannen. U kunt nu scannen vanaf de commandoregel met \"ptal-hp %s "
+#~ "scan ...\". Scannen via een grafische interface of vanuit The GIMP is nog "
+#~ "niet ondersteund voor uw apparaat. U vindt meer informatie in het bestand "
+#~ "\"/usr/share/doc/hpoj-0.8/ptal-hp-scan.html\" op uw systeem. Als u een HP "
+#~ "LaserJet 1100 of 1200 heeft kunt u alleen scannen indien u de scanner-"
+#~ "optie geĂŻnstalleerd heeft.\n"
+#~ "\n"
+#~ "Gebruik voor dit apparaat geen \"scannerdrake\"!"
+
+#~ msgid "Use Hard Drive with daemon"
+#~ msgstr "Harde schijf met daemon gebruiken"
+
+#~ msgid "Use FTP with daemon"
+#~ msgstr "FTP met daemon gebruiken"
+
+#~ msgid "Package List to Install"
+#~ msgstr "Lijst van te installeren pakketten"
+
+#~ msgid "proftpd"
+#~ msgstr "proftpd"
+
+#~ msgid "sshd"
+#~ msgstr "sshd"
+
+#~ msgid "webmin"
+#~ msgstr "webmin"
+
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
+
+#~ msgid ""
+#~ "GNU/Linux is a multiuser system, and this means that each user can have "
+#~ "his\n"
+#~ "own preferences, his own files and so on. You can read the ``User "
+#~ "Guide''\n"
+#~ "to learn more. But unlike \"root\", which is the administrator, the "
+#~ "users\n"
+#~ "you will add here will not be entitled to change anything except their "
+#~ "own\n"
+#~ "files and their own configuration. You will have to create at least one\n"
+#~ "regular user for yourself. That account is where you should log in for\n"
+#~ "routine use. Although it is very practical to log in as \"root\" "
+#~ "everyday,\n"
+#~ "it may also be very dangerous! The slightest mistake could mean that "
+#~ "your\n"
+#~ "system would not work any more. If you make a serious mistake as a "
+#~ "regular\n"
+#~ "user, you may only lose some information, but not the entire system.\n"
+#~ "\n"
+#~ "First, you have to enter your real name. This is not mandatory, of "
+#~ "course\n"
+#~ "as you can actually enter whatever you want. DrakX will then take the "
+#~ "first\n"
+#~ "word you have entered in the box and will bring it over to the \"User\n"
+#~ "name\". This is the name this particular user will use to log onto the\n"
+#~ "system. You can change it. You then have to enter a password here. A\n"
+#~ "non-privileged (regular) user's password is not as crucial as \"root\"' "
+#~ "one\n"
+#~ "from a security point of view, but that is no reason to neglect it: "
+#~ "after\n"
+#~ "all, your files are at risk.\n"
+#~ "\n"
+#~ "If you click on \"Accept user\", you can then add as many as you want. "
+#~ "Add\n"
+#~ "a user for each one of your friends: your father or your sister, for\n"
+#~ "example. When you finish adding all the users you want, select \"Done\".\n"
+#~ "\n"
+#~ "Clicking the \"Advanced\" button allows you to change the default \"shell"
+#~ "\"\n"
+#~ "for that user (bash by default)."
+#~ msgstr ""
+#~ "GNU/Linux is een multi-gebruikerssysteem, dit betekent dat iedere "
+#~ "gebruiker \n"
+#~ "haar eigen voorkeuren, bestanden enzovoort kan hebben. U kunt de \n"
+#~ "''Gebruikershandleiding'' lezen om hierover meer te weten te komen. "
+#~ "Maar \n"
+#~ "in tegenstelling tot \"root\", de \"administrator\", zullen de gebruikers "
+#~ "die\n"
+#~ " u hier toevoegt geen recht hebben om iets te veranderen behalve hun "
+#~ "eigen \n"
+#~ "bestanden en hun eigen instellingen. U zult tenminste ĂŠĂŠn gebruiker "
+#~ "voor \n"
+#~ "uzelf aan moeten maken. Deze account is degene waar u voor dagelijks "
+#~ "gebruik \n"
+#~ "op zult inloggen. Alhoewel het erg praktisch is om iedere dag als \"root"
+#~ "\" \n"
+#~ "in te loggen, kan het ook erg gevaarlijk zijn! De kleinste vergissing "
+#~ "kan \n"
+#~ "ervoor zorgen dat uw hele systeem niet meer werkt. Wanneer u een \n"
+#~ "grote vergissing maakt als een reguliere gebruiker, zou u sommige "
+#~ "gegevens \n"
+#~ "kunnen verliezen, maar niet het hele systeem.\n"
+#~ "\n"
+#~ "Eerst voert u uw echte naam in. Dit is uiteraard niet verplicht - u "
+#~ "kunt \n"
+#~ "alles invoeren wat u wilt. DrakX neemt dan het eerste woord dat u in het "
+#~ "veld \n"
+#~ "hebt ingevuld en brengt het over naar het veld \"Gebruikersnaam\". Dit is "
+#~ "de \n"
+#~ "naam die deze afzonderlijke gebruiker krijgt om in te loggen op het "
+#~ "systeem. \n"
+#~ "U kunt het veranderen. Dan zal u hier een wachtwoord moeten invoeren. "
+#~ "Het \n"
+#~ "wachtwoord van een (reguliere) gebruiker zonder privileges is niet zo \n"
+#~ "cruciaal als dat van de \"root\"-gebruiker vanuit "
+#~ "veiligheidsperspectief, \n"
+#~ "maar dat is geen reden om het te verwaarlozen- tenslotte staan uw "
+#~ "bestanden \n"
+#~ "op het spel.\n"
+#~ "\n"
+#~ "Wanneer u klikt op \"Gebruiker aaanvaarden\", dan kunt u daarna zoveel \n"
+#~ "gebruikers toevoegen als u wilt. Voeg een gebruiker toe voor elk van uw \n"
+#~ "vrienden, uw vader of uw zus bijvoorbeeld. Als u klaar bent met het \n"
+#~ "toevoegen van alle gebruikers die u wenst, selecteer dan \"Klaar\".\n"
+#~ "\n"
+#~ "Klikken op de \"Geavanceerd\"-knop stelt u in staat om de standaard "
+#~ "\"shell\"\n"
+#~ "voor een gebruiker te veranderen (standaard is dit bash)."
+
+#~ msgid ""
+#~ "It is now time to specify which programs you wish to install on your\n"
+#~ "system. There are thousands of packages available for Mandrake Linux, "
+#~ "and\n"
+#~ "you are not supposed to know them all by heart.\n"
+#~ "\n"
+#~ "If you are performing a standard installation from a CD-ROM, you will "
+#~ "first\n"
+#~ "be asked to specify the CDs you currently have (in Expert mode only). "
+#~ "Check\n"
+#~ "the CD labels and highlight the boxes corresponding to the CDs you have\n"
+#~ "available for installation. Click \"OK\" when you are ready to continue.\n"
+#~ "\n"
+#~ "Packages are sorted in groups corresponding to a particular use of your\n"
+#~ "machine. The groups themselves are sorted into four sections:\n"
+#~ "\n"
+#~ " * \"Workstation\": if you plan to use your machine as a workstation, "
+#~ "select\n"
+#~ "one or more of the corresponding groups;\n"
+#~ "\n"
+#~ " * \"Development\": if your machine is to be used for programming, "
+#~ "choose\n"
+#~ "the desired group(s);\n"
+#~ "\n"
+#~ " * \"Server\": if your machine is intended to be a server, you will be "
+#~ "able\n"
+#~ "to select which of the most common services you wish to install on your\n"
+#~ "machine;\n"
+#~ "\n"
+#~ " * \"Graphical Environment\": finally, this is where you will choose "
+#~ "your\n"
+#~ "preferred graphical environment. At least one must be selected if you "
+#~ "want\n"
+#~ "to have a graphical workstation!\n"
+#~ "\n"
+#~ "Moving the mouse cursor over a group name will display a short "
+#~ "explanatory\n"
+#~ "text about that group. If you deselect all groups when performing a "
+#~ "regular\n"
+#~ "installation (by opposition to an upgrade), a dialog will pop up "
+#~ "proposing\n"
+#~ "different options for a minimal installation:\n"
+#~ "\n"
+#~ " * \"With X\": install the fewer packages possible to have a working\n"
+#~ "graphical desktop;\n"
+#~ "\n"
+#~ " * \"With basic documentation\": installs the base system plus basic\n"
+#~ "utilities and their documentation. This installation is suitable for\n"
+#~ "setting up a server;\n"
+#~ "\n"
+#~ " * \"Truly minimal install\": will install the strict minimum necessary "
+#~ "to\n"
+#~ "get a working Linux system, in command line only. This installation is\n"
+#~ "about 65Mb large.\n"
+#~ "\n"
+#~ "You can check the \"Individual package selection\" box, which is useful "
+#~ "if\n"
+#~ "you are familiar with the packages being offered or if you want to have\n"
+#~ "total control over what will be installed.\n"
+#~ "\n"
+#~ "If you started the installation in \"Upgrade\" mode, you can unselect "
+#~ "all\n"
+#~ "groups to avoid installing any new package. This is useful for repairing "
+#~ "or\n"
+#~ "updating an existing system."
+#~ msgstr ""
+#~ "Het is nu tijd om te bepalen welke programma's u op uw systeem\n"
+#~ "wenst te installeren. Er zijn duizenden pakketten beschikbaar voor "
+#~ "Mandrake\n"
+#~ "Linux, en er wordt niet van u verwacht dat u ze allemaal uit uw hoofd "
+#~ "kent.\n"
+#~ "\n"
+#~ "Indien u een standaard-installatie vanaf CD-ROM uitvoert, zal u eerst\n"
+#~ "gevraagd worden de CD's die u bij de hand heeft te specificeren (alleen\n"
+#~ "in Expert-modus). Ga de CD-etiketten na en selecteer de vakjes die\n"
+#~ "corresponderen met de CD's die u heeft voor de installatie. Klik op \"OK"
+#~ "\"\n"
+#~ "zodra u gereed bent om verder te gaan.\n"
+#~ "\n"
+#~ "Pakketten zijn samengebracht in groepen die corresponderen met een\n"
+#~ "bepaald gebruik van uw computer. De groepen zelf zijn ingedeeld in vier\n"
+#~ "categorieĂŤn:\n"
+#~ "\n"
+#~ "* \"Werkstation\": indien u van plan bent uw computer als werkstation te\n"
+#~ "gaan gebruiken, selecteer dan ĂŠĂŠn of meer van de corresponderende\n"
+#~ "groepen. \n"
+#~ "\n"
+#~ "* \"Ontwikkeling\": als de computer gebruikt gaat worden voor "
+#~ "programmeren,\n"
+#~ "kiest u de gewenste groep(en).\n"
+#~ "\n"
+#~ "* \"Server\": als de computer bestemd is voor server-doeleinden, dan\n"
+#~ "kunt u aangeven welke van de meest algemene diensten u op uw\n"
+#~ "computer geĂŻnstalleerd wilt zien.\n"
+#~ "\n"
+#~ "* \"Grafische Omgeving\": tot slot is dit waar u uw voorkeur voor een "
+#~ "grafische\n"
+#~ "omgeving kunt aangeven. Tenminste ĂŠĂŠn moet geselecteerd zijn als u een\n"
+#~ "grafisch werkstation wilt hebben!\n"
+#~ "\n"
+#~ "Bij het bewegen van de muispijl boven een groepnaam zal er een korte "
+#~ "verklarende\n"
+#~ "tekst over die groep getoond worden. Als u alle groepen deselecteert "
+#~ "tijdens het\n"
+#~ "uitvoeren van een reguliere installatie (in tegenstelling tot een "
+#~ "opwaardering), dan\n"
+#~ "zal een dialoogvenster verschijnen dat verscheidene opties voor een "
+#~ "minimale\n"
+#~ "installatie voorstelt:\n"
+#~ " * \"Met X\" Installeer zo min mogelijk pakketten met behoud van een "
+#~ "grafische\n"
+#~ "werkomgeving;\n"
+#~ " \n"
+#~ " * \"Met basis-documentatie\" installeert het basissysteem plus algemene\n"
+#~ "hulpprogramma's en hun documentatie. Deze installatie is geschikt om een "
+#~ "server\n"
+#~ "mee in te richten.\n"
+#~ "\n"
+#~ " * \"Werkelijk minimale installatie\" zal het absolute minimum "
+#~ "installeren dat nodig\n"
+#~ "is om een werkend Linux-systeem te verkrijgen, slechts met een "
+#~ "commandoregel.\n"
+#~ "Deze installatie is ongeveer 65MB groot.\n"
+#~ "\n"
+#~ "U kunt het \"Individuele pakketselectie\"-vakje selecteren, welke nuttig "
+#~ "is als\n"
+#~ "u bekend bent met de aangeboden pakketten of indien u totale controle "
+#~ "wenst\n"
+#~ "over wat er geĂŻnstalleerd zal worden.\n"
+#~ "\n"
+#~ "In het geval dat u de installatie in \"Opwaarderen\"-modus heeft gestart, "
+#~ "kunt u\n"
+#~ "alle groepen deselecteren om te voorkomen dat er nieuwe pakketten "
+#~ "geĂŻnstalleerd\n"
+#~ "worden. Dit is nuttig bij het repareren of het vernieuwen van een "
+#~ "bestaand systeem."
+
+#~ msgid ""
+#~ "The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it "
+#~ "by\n"
+#~ "booting from the CD-ROM, press the >>F1<< key at boot and type "
+#~ ">>rescue<<\n"
+#~ "at the prompt. But in case your computer cannot boot from the CD-ROM, "
+#~ "you\n"
+#~ "should come back to this step for help in at least two situations:\n"
+#~ "\n"
+#~ " * when installing the bootloader, DrakX will rewrite the boot sector "
+#~ "(MBR)\n"
+#~ "of your main disk (unless you are using another boot manager), to allow "
+#~ "you\n"
+#~ "to start up with either Windows or GNU/Linux (assuming you have Windows "
+#~ "in\n"
+#~ "your system). If you need to reinstall Windows, the Microsoft install\n"
+#~ "process will rewrite the boot sector, and then you will not be able to\n"
+#~ "start GNU/Linux!\n"
+#~ "\n"
+#~ " * if a problem arises and you cannot start up GNU/Linux from the hard "
+#~ "disk,\n"
+#~ "this floppy disk will be the only means of starting up GNU/Linux. It\n"
+#~ "contains a fair number of system tools for restoring a system, which has\n"
+#~ "crashed due to a power failure, an unfortunate typing error, a typo in a\n"
+#~ "password, or any other reason.\n"
+#~ "\n"
+#~ "When you click on this step, you will be asked to enter a disk inside "
+#~ "the\n"
+#~ "drive. The floppy disk you will insert must be empty or contain data "
+#~ "which\n"
+#~ "you do not need. You will not have to format it since DrakX will rewrite\n"
+#~ "the whole disk."
+#~ msgstr ""
+#~ "De Mandrake Linux CD-ROM heeft een ingebouwde reddings-modus. U kunt\n"
+#~ "er bij komen door op te starten van de CD-ROM, de \"F1\"-toets in te "
+#~ "drukken\n"
+#~ "tijdens het opstarten en \"rescue\" in te typen bij de aanwijzing. Maar "
+#~ "in het\n"
+#~ "geval dat uw computer niet kan opstarten van de CD-ROM, moet u "
+#~ "terugkomen\n"
+#~ "naar deze stap voor hulp in tenminste twee situaties:\n"
+#~ "\n"
+#~ " * wanneer de opstart-lader geĂŻnstalleerd wordt, zal DrakX de boot sector "
+#~ "(MBR)\n"
+#~ "van uw eerste harde schijf overschrijven (tenzij u een andere "
+#~ "opstartbeheerder\n"
+#~ "gebruikt) zodat u op kunt starten met ofwel Windows ofwel GNU/Linux "
+#~ "(ervan\n"
+#~ "uitgaand dat u Windows op uw systeem heeft). Indien u Windows opnieuw\n"
+#~ "moet installeren, zal het Microsoft installatieproces de boot sector "
+#~ "herschrijven,\n"
+#~ "en u zult dan niet meer in staat zijn GNU/Linux op te starten!\n"
+#~ "\n"
+#~ " * indien een probleem zich voordoet waardoor u GNU/Linux niet van de "
+#~ "harde\n"
+#~ "schijf kunt opstarten, zal deze diskette de enige manier zijn om GNU/"
+#~ "Linux\n"
+#~ "op te starten. Hij bevat een behoorlijk aantal systeemgereedschappen om\n"
+#~ "uw systeem in oude staat te herstellen wanneer het gecrashed is door een\n"
+#~ "stroomonderbreking, een ongelukkige typfout, een vergissing in een\n"
+#~ "wachtwoord, of wat voor reden dan ook.\n"
+#~ "\n"
+#~ "Wanneer u op deze stap klikt, wordt u gevraagd een diskette te plaatsen "
+#~ "in\n"
+#~ "het diskettestation. De diskette moet leeg zijn of geen gegevens bevatten "
+#~ "die\n"
+#~ "u nog nodig heeft. Het is niet nodig om hem te formatteren omdat DrakX "
+#~ "de\n"
+#~ "gehele diskette zal herschrijven."
+
+#~ msgid ""
+#~ "At this point, you need to choose 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"
+#~ "need to partition it. Basically, partitioning a hard drive consists of\n"
+#~ "logically dividing it to create space to install your new Mandrake Linux\n"
+#~ "system.\n"
+#~ "\n"
+#~ "Because the partitioning process' effects are usually irreversible,\n"
+#~ "partitioning can be intimidating and stressful if you are an "
+#~ "inexperienced\n"
+#~ "user. Fortunately, there is a wizard which simplifies this process. "
+#~ "Before\n"
+#~ "beginning, please consult the manual and take your time.\n"
+#~ "\n"
+#~ "If you are running the installation in Expert mode, you will enter\n"
+#~ "DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
+#~ "fine-tune your partitions. See the DiskDrake section in the ``User "
+#~ "Guide''.\n"
+#~ "From the installation interface, you can use the wizards as described "
+#~ "here\n"
+#~ "by clicking the dialog's \"Wizard\" button.\n"
+#~ "\n"
+#~ "If partitions have already been defined, either from a previous\n"
+#~ "installation or from another partitioning tool, simply select those to\n"
+#~ "install your Linux system.\n"
+#~ "\n"
+#~ "If partitions are not defined, you will need to create them using the\n"
+#~ "wizard. Depending on your hard drive configuration, several options are\n"
+#~ "available:\n"
+#~ "\n"
+#~ " * \"Use free space\": this option will simply lead to an automatic\n"
+#~ "partitioning of your blank drive(s). You will not be prompted further;\n"
+#~ "\n"
+#~ " * \"Use existing partition\": the wizard has detected one or more "
+#~ "existing\n"
+#~ "Linux partitions on your hard drive. If you want to use them, choose "
+#~ "this\n"
+#~ "option;\n"
+#~ "\n"
+#~ " * \"Use the free space on the Windows; partition\": if MicrosoftWindows "
+#~ "is\n"
+#~ "installed on your hard drive and takes all the space available on it, "
+#~ "you\n"
+#~ "have to create free space for Linux data. To do so, you can delete your\n"
+#~ "MicrosoftWindows partition and data (see ``Erase entire disk'' or "
+#~ "``Expert\n"
+#~ "mode'' solutions) or resize your MicrosoftWindows partition. Resizing "
+#~ "can\n"
+#~ "be performed without the loss of any data, provided you previously\n"
+#~ "defragment the Windows partition. Backing up your data won't hurt "
+#~ "either..\n"
+#~ "This solution is recommended if you want to use both Mandrake Linux and\n"
+#~ "MicrosoftWindows on the same computer.\n"
+#~ "\n"
+#~ " Before choosing this option, please understand that after this "
+#~ "procedure,\n"
+#~ "the size of your MicrosoftWindows partition will be smaller than at the\n"
+#~ "present time. You will have less free space under MicrosoftWindows to "
+#~ "store\n"
+#~ "your data or to install new software;\n"
+#~ "\n"
+#~ " * \"Erase entire disk\": if you want to delete all data and all "
+#~ "partitions\n"
+#~ "present on your hard drive and replace them with your new Mandrake Linux\n"
+#~ "system, choose this option. Be careful with this solution because you "
+#~ "will\n"
+#~ "not be able to revert your choice after you confirm;\n"
+#~ "\n"
+#~ " !! If you choose this option, all data on your disk will be lost. !!\n"
+#~ "\n"
+#~ " * \"Remove Windows\": this will simply erase everything on the drive "
+#~ "and\n"
+#~ "begin fresh, partitioning everything from scratch. All data on your disk\n"
+#~ "will be lost;\n"
+#~ "\n"
+#~ " !! If you choose this option, all data on your disk will be lost. !!\n"
+#~ "\n"
+#~ " * \"Expert mode\": choose this option if you want to manually partition\n"
+#~ "your hard drive. Be careful it is a powerful but dangerous choice. You "
+#~ "can\n"
+#~ "very easily lose all your data. Hence, do not choose this unless you "
+#~ "know\n"
+#~ "what you are doing."
+#~ msgstr ""
+#~ "Op dit punt moet u kiezen waar op uw harde schijf u uw Mandrake Linux\n"
+#~ "besturingssysteem wilt installeren. Als uw harde schijf leeg is of als "
+#~ "een\n"
+#~ "ander besturingssysteem alle beschikbare ruimte inneemt, dan zult u\n"
+#~ "de harde schijf moeten partitioneren. Partitioneren houdt in dat u uw "
+#~ "harde\n"
+#~ "schijf in logische stukken onderverdeelt om ruimte te creĂŤren voor uw "
+#~ "nieuwe\n"
+#~ "Mandrake Linux besturingssysteem.\n"
+#~ "\n"
+#~ "Omdat de effecten van het partitioneringsproces over het algemeen niet\n"
+#~ "terug te draaien zijn, kan partitioneren intimiderend en spannend zijn "
+#~ "voor\n"
+#~ "een onervaren gebruiker. Gelukkig is er een hulp die dit proces\n"
+#~ "vereenvoudigt. Raadpleeg de handleiding voordat u begint en neem de\n"
+#~ "tijd.\n"
+#~ "\n"
+#~ "Indien u de installatie in expert-modus draait, komt u terecht in "
+#~ "DiskDrake,\n"
+#~ "het partitioneringsprogramma van Mandrake Linux, dat u in staat stelt\n"
+#~ "om uw partities precies af te stellen. Zie het hoofdstuk over DiskDrake\n"
+#~ "in de handleiding. Voor de installatie-interace kunt u de hulpen "
+#~ "gebruiken\n"
+#~ "die hier beschreven zijn door op de \"Hulp\"-knop van het dialoogvenster\n"
+#~ "te klikken.\n"
+#~ "\n"
+#~ "Indien er reeds partities gedefinieerd zijn, hetzij van een vorige "
+#~ "installatie\n"
+#~ "hetzij door een ander partitioneringsprogramma, dan kunt u deze\n"
+#~ "eenvoudigweg selecteren om uw Linux-systeem op te installeren.\n"
+#~ "\n"
+#~ "Indien er geen partities gedefinieerd zijn, zult u ze moeten aanmaken "
+#~ "met\n"
+#~ "de hulp. Afhankelijk van de configuratie van uw harde schijf, zijn er\n"
+#~ "verscheidene opties beschikbaar:\n"
+#~ "\n"
+#~ " * \"Gebruik vrije ruimte\": deze optie zal leiden tot het automatisch\n"
+#~ "partitioneren van uw lege schijf/schijven. Er worden u verder geen "
+#~ "vragen\n"
+#~ "gesteld.\n"
+#~ "\n"
+#~ " * \"Gebruik bestaande partitie\": de hulp heeft ĂŠĂŠn of meer bestaande\n"
+#~ "Linux-partities op uw harde schijf gevonden. Indien u deze wilt "
+#~ "gebruiken,\n"
+#~ "kiest u deze optie.\n"
+#~ "\n"
+#~ " * \"Gebruik vrije ruime op de Windows-partitie\": indien Microsoft "
+#~ "Windows\n"
+#~ "op uw harde schijf is geĂŻnstalleerd en alle beschikbare ruimte in beslag "
+#~ "neemt,\n"
+#~ "dient u vrije ruimte te creĂŤren voor Linux-gegevens. Om dat te doen, kunt "
+#~ "u uw\n"
+#~ "Microsoft Windows-partitie en -gegevens wissen (zie \"Wis gehele schijf"
+#~ "\"\n"
+#~ "of \"Expert-modus\"-oplossingen) om uw Microsoft Windows-partitie te\n"
+#~ "verkleinen. Het aanpassen van de grootte kan bewerkstelligd worden "
+#~ "zonder\n"
+#~ "verlies van enige gegevens. Deze oplossing is aanbevolen indien u zowel\n"
+#~ "Mandrake Linux en Microsoft Windows op dezelfde computer wilt gebruiken.\n"
+#~ "\n"
+#~ " Laat het goed tot u doordringen, voordat u deze optie kiest, dat uw\n"
+#~ "Microsoft Windows partitie na afloop van deze procedure minder groot\n"
+#~ "zal zijn dan hij nu is. U zult minder vrije ruimte hebben onder\n"
+#~ "Microsoft Windows om uw gegevens op te slaan of om nieuwe software te\n"
+#~ "installeren.\n"
+#~ "\n"
+#~ " * \"Gehele schijf wissen\": indien u alle gegevens en alle partities op "
+#~ "uw\n"
+#~ "harde schijf wilt verwijderen en vervangen door uw nieuwe Mandrake "
+#~ "Linux-\n"
+#~ "systeem, kiest u deze optie. Weest u voorzichtig met deze oplossing omdat "
+#~ "u\n"
+#~ "na bevestiging deze keuze niet meer ongedaan kunt maken.\n"
+#~ "\n"
+#~ " !! Als u deze optie kiest, zullen alle gegevens op uw schijf verloren "
+#~ "gaan. !!\n"
+#~ "\n"
+#~ " * \"Verwijder Windows\": dit wist simpelweg alles op de schijf en begint "
+#~ "van\n"
+#~ "voren af aan met partitioneren. Alle gegevens op uw schijf zullen "
+#~ "verloren\n"
+#~ "gaan.\n"
+#~ "\n"
+#~ " !! Als u deze optie kiest, zullen alle gegevens op uw schijf verloren "
+#~ "gaan. !!\n"
+#~ "\n"
+#~ " * \"Expert-modus\": kies deze optie indien u handmatig uw harde schijf "
+#~ "wenst\n"
+#~ "te partitioneren. Weest u voorzichtig - het is een krachtige maar "
+#~ "riskante keuze.\n"
+#~ "U kunt erg gemakkelijk al uw gegevens kwijtraken. Kiest u derhalve niet "
+#~ "hiervoor\n"
+#~ "tenzij u weet wat u doet."
+
+#~ msgid ""
+#~ "There you are. Installation is now complete and your GNU/Linux system is\n"
+#~ "ready to use. Just click \"OK\" to reboot the system. You can start\n"
+#~ "GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
+#~ "soon as the computer has booted up again.\n"
+#~ "\n"
+#~ "The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+#~ "\n"
+#~ " * \"generate auto-install floppy\": to create an installation floppy "
+#~ "disk\n"
+#~ "which will automatically perform a whole installation without the help "
+#~ "of\n"
+#~ "an operator, similar to the installation you just configured.\n"
+#~ "\n"
+#~ " Note that two different options are available after clicking the "
+#~ "button:\n"
+#~ "\n"
+#~ " * \"Replay\". This is a partially automated installation as the\n"
+#~ "partitioning step (and only this one) remains interactive;\n"
+#~ "\n"
+#~ " * \"Automated\". Fully automated installation: the hard disk is "
+#~ "completely\n"
+#~ "rewritten, all data is lost.\n"
+#~ "\n"
+#~ " This feature is very handy when installing a great number of similar\n"
+#~ "machines. See the Auto install section on our web site;\n"
+#~ "\n"
+#~ " * \"Save packages selection\"(*): saves the package selection as done\n"
+#~ "previously. Then, when doing another installation, insert the floppy "
+#~ "inside\n"
+#~ "the drive and run the installation going to the help screen by pressing "
+#~ "on\n"
+#~ "the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
+#~ "\n"
+#~ "(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
+#~ "\"mformat a:\")"
+#~ msgstr ""
+#~ "Alstublieft. De installatieprocedure is voltooid en uw GNU/Linux-systeem\n"
+#~ "is klaar voor gebruik. Klik gewoon op \"OK\" om uw computer opnieuw te\n"
+#~ "starten. Indien u een meervoudig opstartsysteem gebruikt, kunt u GNU/"
+#~ "Linux\n"
+#~ "of Windows opstarten, welke u prefereert, zodra de computer de\n"
+#~ "zelftestprocedure heeft doorlopen.\n"
+#~ "\n"
+#~ "De \"Geavanceerd\"-knop (alleen in Expert-modus) toont twee knoppen meer\n"
+#~ "voor:\n"
+#~ "\n"
+#~ " * \"auto-installatiediskette aanmaken\": om een installatiediskette te\n"
+#~ "creĂŤren weke de gehele installatie automatisch zal uitvoeren zonder hulp\n"
+#~ "van een beheerder, gelijkend op de installatie die u zonet heeft\n"
+#~ "geconfigureerd.\n"
+#~ "\n"
+#~ "Merk op dat er twee verschillende opties zijn na het klikken van deze "
+#~ "knop:\n"
+#~ "\n"
+#~ " * \"Afspelen\". Dit is een gedeeltelijk geautomatiseerde installatie, "
+#~ "omdat\n"
+#~ "de partitioneringsstap (alleen deze) interactief blijft.\n"
+#~ "\n"
+#~ " * \"Geautomatiseerd\". Volledig geautomatiseerde installatie: de "
+#~ "harde\n"
+#~ "schijf wordt volledig overschreven en alle gegevens erop raken verloren.\n"
+#~ "\n"
+#~ " Deze mogelijkheid is erg handig wanneer u een grote hoeveelheid\n"
+#~ "soortgelijke computers installeert. Zie ook de Auto-installatie afdeling "
+#~ "op\n"
+#~ "onze website.\n"
+#~ "\n"
+#~ " * \"Pakketselectie opslaan\"(*) : slaat de pakketselectie op zoals u "
+#~ "hem\n"
+#~ "eerder heeft gemaakt. Vervolgens, wanneer u een andere installatie\n"
+#~ "uitvoert, plaatst u de diskette in het diskettestation en draait u het\n"
+#~ "installatieprogramma waarna u naar het helpscherm gaat door op de\n"
+#~ "[F1]-toets te drukken, en door ''linux defcfg=\"floppy\" '' in te geven.\n"
+#~ "\n"
+#~ "(*) U heeft een FAT-geformatteerde dskette nodig (om er ĂŠĂŠn onder\n"
+#~ "GNU/Linux te creĂŤren, typt u \"mformat a:\")"
#~ msgid ""
-#~ "Can't access kernel modules corresponding to your kernel (file %s is "
-#~ "missing)"
+#~ "At this point, you need to choose which partition(s) will be used for "
+#~ "the\n"
+#~ "installation of your Mandrake Linux system. If partitions have already "
+#~ "been\n"
+#~ "defined, either from a previous installation of GNU/Linux or from "
+#~ "another\n"
+#~ "partitioning tool, you can use existing partitions. Otherwise, hard "
+#~ "drive\n"
+#~ "partitions must be defined.\n"
+#~ "\n"
+#~ "To create partitions, you must first select a hard drive. You can select\n"
+#~ "the disk for partitioning by clicking on ``hda'' for the first IDE "
+#~ "drive,\n"
+#~ "``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+#~ "\n"
+#~ "To partition the selected hard drive, you can use these options:\n"
+#~ "\n"
+#~ " * \"Clear all\": this option deletes all partitions on the selected "
+#~ "hard\n"
+#~ "drive;\n"
+#~ "\n"
+#~ " * \"Auto allocate\": this option enables to automatically create \"Ext2"
+#~ "\"\n"
+#~ "and swap partitions in free space of your hard drive;\n"
+#~ "\n"
+#~ " * \"More\": gives access to additional features:\n"
+#~ "\n"
+#~ " * \"Save partition table\": saves the partition table to a floppy. "
+#~ "Useful\n"
+#~ "for later partition-table recovery if necessary. It is strongly "
+#~ "recommended\n"
+#~ "to perform this step;\n"
+#~ "\n"
+#~ " * \"Restore partition table\": allows to restore a previously saved\n"
+#~ "partition table from floppy disk;\n"
+#~ "\n"
+#~ " * \"Rescue partition table\": if your partition table is damaged, you "
+#~ "can\n"
+#~ "try to recover it using this option. Please be careful and remember that "
+#~ "it\n"
+#~ "can fail;\n"
+#~ "\n"
+#~ " * \"Reload partition table\": discards all changes and loads your "
+#~ "initial\n"
+#~ "partition table;\n"
+#~ "\n"
+#~ " * \"Removable media automounting\": unchecking this option will force "
+#~ "users\n"
+#~ "to manually mount and unmount removable medias such as floppies and\n"
+#~ "CD-ROMs.\n"
+#~ "\n"
+#~ " * \"Wizard\": use this option if you wish to use a wizard to partition "
+#~ "your\n"
+#~ "hard drive. This is recommended if you do not have a good knowledge of\n"
+#~ "partitioning;\n"
+#~ "\n"
+#~ " * \"Undo\": use this option to cancel your changes;\n"
+#~ "\n"
+#~ " * \"Toggle to normal/expert mode\": allows additional actions on "
+#~ "partitions\n"
+#~ "(type, options, format) and gives more information;\n"
+#~ "\n"
+#~ " * \"Done\": when you are finished partitioning your hard drive, this "
+#~ "will\n"
+#~ "save your changes back to disk.\n"
+#~ "\n"
+#~ "Note: you can reach any option using the keyboard. Navigate through the\n"
+#~ "partitions using [Tab] and [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 filesystem 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 ""
-#~ "Kan de kernel-modules behorend bij uw kernel niet benaderen (bestand %s \n"
-#~ "is afwezig)"
+#~ "Op dit punt moet u kiezen welke partitie(s) gebruikt zullen worden voor\n"
+#~ "de installatie van uw Mandrake Linux systeem. Indien er reeds partities\n"
+#~ "gedefinieerd zijn, van een vorige GNU/Linux installatie of door een\n"
+#~ "ander partitioneringsprogramma, kunt u bestaande partities gebruiken.\n"
+#~ "In andere gevallen moeten er harde schijf-partities gedefinieerd worden.\n"
+#~ "\n"
+#~ "Om partities te creĂŤren, dient u eerst een harde schijf te kiezen. U kunt "
+#~ "de\n"
+#~ "te partitioneren schijf selecteren door op \"hda\" te klikken voor de "
+#~ "eerste\n"
+#~ "IDE-schijf, \"hdb\" voor de tweede, \"sda\" voor de eerste SCSI-schijf\n"
+#~ "enzovoort.\n"
+#~ "\n"
+#~ "Om de geselecteerde harde schijf te partitioneren, kunt u deze opties\n"
+#~ "gebruiken:\n"
+#~ "\n"
+#~ " * \"Alles wissen\": deze optie verwijdert alle partities op de "
+#~ "geselecteerde\n"
+#~ "harde schijf.\n"
+#~ "\n"
+#~ " * \"Automatisch toewijzen\": deze optie creĂŤert automatisch Ext2- en "
+#~ "swap-\n"
+#~ "partities in de vrije ruimte op uw harde schijf.\n"
+#~ "\n"
+#~ " * \"Meer\": geeft toegang tot extra opties:\n"
+#~ "\n"
+#~ " * \"Partitietabel opslaan\": slaat de partitietabel op op een "
+#~ "diskette. Nuttig om\n"
+#~ "later zonodig de partitietabel te herstellen. Het is sterk aanbevolen "
+#~ "deze stap uit\n"
+#~ "te voeren.\n"
+#~ " * \"Partitietabl herstellen\": deze optie stelt u in staat om een "
+#~ "eerder opgeslagen\n"
+#~ "partitietabel van diskette te herstellen.\n"
+#~ "\n"
+#~ " * \"Partitietabel redden\": indien uw partitietabel is beschadigd, "
+#~ "kunt u deze\n"
+#~ "trachten te herstellen met deze optie. Weest u voorzichtig en onthoud dat "
+#~ "dit\n"
+#~ "kan mislukken.\n"
+#~ "\n"
+#~ " * \"Partitietabel herladen\": gooit alle veranderingen weg en laadt "
+#~ "de\n"
+#~ "partitietabel waarmee u begon\n"
+#~ "\n"
+#~ " * \"Auto-koppeling verwisselbare media\": het deselecteren van deze "
+#~ "optie\n"
+#~ "dwingt gebruikers om handmatig verwisselbare media zoals diskettes en\n"
+#~ "CD-ROMs te koppelen en te ontkoppelen.\n"
+#~ "\n"
+#~ " * \"Hulp\": gebruik deze optie indien u een hulp wenst te gebruiken om\n"
+#~ "uw harde schijf mee te partitioneren. Dit is aanbevolen als u geen brede "
+#~ "kennis\n"
+#~ "heeft over partitioneren.\n"
+#~ "\n"
+#~ " * \"Ongedaan maken\": gebruik deze optie om uw wijzigingen te "
+#~ "annuleren.\n"
+#~ "\n"
+#~ " * \"Schakel naar normale / expert modus\": laat extra handelingen toe "
+#~ "op\n"
+#~ "partities (Type, opties, formatteren) en geeft meer informatie.\n"
+#~ "\n"
+#~ " * \"Klaar\": wanneer u klaar bent met het partitioneren van uw harde "
+#~ "schijf, zal dit\n"
+#~ "de wijzigingen wegschrijven naar schijf.\n"
+#~ "\n"
+#~ "Merk op: u kunt iedere optie met behulp van het toetsenbord bereiken. "
+#~ "Navigeer door\n"
+#~ "de partities met behulp van [Tab] en [Omhoog/Omlaag] pijlen.\n"
+#~ "\n"
+#~ "Wanneer een partitie is geselecteerd, kunt u deze toetscombinaties "
+#~ "gebruiken:\n"
+#~ "\n"
+#~ " * Ctrl+c om een nieuwe partitie te creĂŤren (als een lege ruimte is "
+#~ "geselecteerd);\n"
+#~ "\n"
+#~ " * Ctrl+d om een partitie te verwijderen;\n"
+#~ "\n"
+#~ " * Ctrl+m om het koppelpunt in te stellen.\n"
+#~ "\n"
+#~ "Voor meer informatie over de verschillende types bestandssystemen die er "
+#~ "zijn,\n"
+#~ "leest u het hoofdstuk 'ext2fs' van de ``Referentie Handleiding''.\n"
+#~ "\n"
+#~ "In het geval dat u op een PPC computer aan het installeren bent, zult u "
+#~ "een kleine\n"
+#~ "HFS \"bootstrap\"-partitie van tenminste 1MB willen creĂŤren welke "
+#~ "gebruikt zal\n"
+#~ "worden door de yaboot opstartlader. Indien u liever de partitie wat "
+#~ "groter maakt,\n"
+#~ "zeg 50MB, dan vindt u het misschien een nuttige plek om een reserve "
+#~ "kernel-\n"
+#~ "en ramdisk beeldbestand in op te slaan voor opstart-noodgevallen."
+
+#~ msgid ""
+#~ "DrakX now needs to know if you want to perform a default (\"Recommended"
+#~ "\")\n"
+#~ "installation or if you want to have greater control (\"Expert\"). You "
+#~ "can\n"
+#~ "also choose to do a new install or an upgrade of an existing Mandrake "
+#~ "Linux\n"
+#~ "system:\n"
+#~ "\n"
+#~ " * \"Install\": completely wipes out the old system. In fact, depending "
+#~ "on\n"
+#~ "what currently holds your machine, you will be able to keep some old "
+#~ "(Linux\n"
+#~ "or other) partitions unchanged;\n"
+#~ "\n"
+#~ " * \"Upgrade\": this installation class allows to simply update the "
+#~ "packages\n"
+#~ "currently installed on your Mandrake Linux system. It keeps the current\n"
+#~ "partitions of your hard drives as well as user configurations. All other\n"
+#~ "configuration steps remain available with respect to plain installation;\n"
+#~ "\n"
+#~ " * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
+#~ "existing Mandrake Linux system while keeping all system configurations\n"
+#~ "unchanged. Adding new packages to the current installation is also\n"
+#~ "possible.\n"
+#~ "\n"
+#~ "Upgrades should work fine for Mandrake Linux systems starting from \"8.1"
+#~ "\"\n"
+#~ "release.\n"
+#~ "\n"
+#~ "Depending on your knowledge of GNU/Linux, select one of the following\n"
+#~ "choices:\n"
+#~ "\n"
+#~ " * Recommended: choose this if you have never installed a GNU/Linux\n"
+#~ "operating system. The installation will be very easy and you will only "
+#~ "be\n"
+#~ "asked a few questions;\n"
+#~ "\n"
+#~ " * Expert: if you have a good knowledge of GNU/Linux, you can choose "
+#~ "this\n"
+#~ "installation class. The expert installation will allow you to perform a\n"
+#~ "highly-customized installation. Answering some of the questions can be\n"
+#~ "difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
+#~ "choose this unless you know what you are doing."
+#~ msgstr ""
+#~ "DrakX moet nu weten of u een standaard (\"Aanbevolen\") installatie wilt\n"
+#~ "uitvoeren, of meer controle wilt kunnen uitoefenen (\"Expert\"). U heeft "
+#~ "verder\n"
+#~ "de keus tussen het uitvoeren van een nieuwe installatie en het "
+#~ "opwaarderen\n"
+#~ "van een reeds aanwezig Mandrake Linux systeem:\n"
+#~ " * \"Installeren\" Wist het vorige systeem volledig. Echter, afhankelijk "
+#~ "van hoe\n"
+#~ "uw computer momenteel is ingesteld, is het mogelijk om oude (Linux- of "
+#~ "andere)\n"
+#~ "partities onveranderd te behouden.\n"
+#~ "\n"
+#~ " * \"Opwaarderen\" De installatieklasse laat u eenvoudigweg de pakketten\n"
+#~ "vernieuwen die nu op uw Mandrake Linux-systeem geĂŻnstalleerd zijn. Het\n"
+#~ "behoudt de huidige partities van uw harde schijven zowel als de\n"
+#~ "gebruikersconfiguraties. Alle andere configuratiestappen van een gewone\n"
+#~ "installatie zullen beschikbaar blijven.\n"
+#~ "\n"
+#~ " * \"Alleen pakketten opwaarderen\" Deze gloednieuwe installatieklasse\n"
+#~ "laat u een bestaand Mandrake Linux-systeem opwaarderen met behoud\n"
+#~ "van de gehele systeemconfiguratie. Het is mogelijk om nieuwe pakketten\n"
+#~ "toe te voegen aan de huidige installatie.\n"
+#~ "\n"
+#~ "Opwaarderen zou goed moeten gaan voor Mandrake Linux-systemen\n"
+#~ "vanaf versie 8.1.\n"
+#~ "\n"
+#~ "Kies, afhankelijk van uw kennis van GNU/Linux, ĂŠĂŠn van de volgende\n"
+#~ "mogelijkheden:\n"
+#~ "\n"
+#~ " * Aanbevolen: kies dit als u nog nooit een GNU/Linux besturingssysteem "
+#~ "hebt\n"
+#~ "geĂŻnstalleerd. De installatie zal erg gemakkelijk verlopen en er zullen "
+#~ "u\n"
+#~ "slechts enkele vragen gesteld worden.\n"
+#~ "\n"
+#~ " * Expert: als u een goede kennis bezit van GNU/Linux kunt u deze\n"
+#~ "installatieklasse kiezen. De expert-installatie staat u toe een in hoge "
+#~ "mate\n"
+#~ "aangepaste installatie uit te voeren. Het beantwoorden van sommige "
+#~ "vragen\n"
+#~ "kan moeilijk zijn als u geen goede kennis van GNU/Linux bezit, dus kies "
+#~ "dit\n"
+#~ "niet tenzij u weet wat u doet."
+
+#~ msgid ""
+#~ "This is the most crucial decision point for the security of your GNU/"
+#~ "Linux\n"
+#~ "system: you have to enter the \"root\" password. \"root\" is the system\n"
+#~ "administrator and is the only one authorized to make updates, add users,\n"
+#~ "change the overall system configuration, and so on. In short, \"root\" "
+#~ "can\n"
+#~ "do everything! That is why you must choose a password that is difficult "
+#~ "to\n"
+#~ "guess DrakX will tell you if it is too easy. As you can see, you can "
+#~ "choose\n"
+#~ "not to enter a password, but we strongly advise you against this if only\n"
+#~ "for one reason: do not think that because you booted GNU/Linux that your\n"
+#~ "other operating systems are safe from mistakes. Since \"root\" can "
+#~ "overcome\n"
+#~ "all limitations and unintentionally erase all data on partitions by\n"
+#~ "carelessly accessing the partitions themselves, it is important for it "
+#~ "to\n"
+#~ "be difficult to become \"root\".\n"
+#~ "\n"
+#~ "The password should be a mixture of alphanumeric characters and at least "
+#~ "8\n"
+#~ "characters long. Never write down the \"root\" password it makes it too\n"
+#~ "easy to compromise a system.\n"
+#~ "\n"
+#~ "However, please do not make the password too long or complicated because\n"
+#~ "you must be able to remember it without too much effort.\n"
+#~ "\n"
+#~ "The password will not be displayed on screen as you type it in. Hence, "
+#~ "you\n"
+#~ "will have to type the password twice to reduce the chance of a typing\n"
+#~ "error. If you do happen to make the same typing error twice, this\n"
+#~ "``incorrect'' password will have to be used the first time you connect.\n"
+#~ "\n"
+#~ "In Expert mode, you will be asked if you will be connecting to an\n"
+#~ "authentication server, like NIS or LDAP.\n"
+#~ "\n"
+#~ "If your network uses the LDAP (or NIS) protocol for authentication, "
+#~ "select\n"
+#~ "\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
+#~ "network administrator.\n"
+#~ "\n"
+#~ "If your computer is not connected to any administrated network, you will\n"
+#~ "want to choose \"Local files\" for authentication."
+#~ msgstr ""
+#~ "Dit is de meest cruciale beslissing voor de beveiliging van uw GNU/Linux\n"
+#~ "systeem: u moet het \"root\"-wachtwoord invoeren. \"root\" is de "
+#~ "systeem-\n"
+#~ "beheerder en is de enige die geautoriseerd is om updates uit te voeren,\n"
+#~ "gebruikers toe te voegen, de algehele systeemconfiguratie te wijzigen,\n"
+#~ "enzovoort. Kortom, \"root\" kan alles doen! Daarom dient u een lastig\n"
+#~ "te raden wachtwoord te kiezen - DrakX vertelt het u als het te makkelijk\n"
+#~ "is. Zoals u kunt zien kunt u ervoor kiezen geen wachtwoord in te vullen,\n"
+#~ "maar dit raden wij sterk af al was het maar om deze ene reden: denk\n"
+#~ "niet dat alleen omdat u GNU/Linux opgestart heeft, uw andere\n"
+#~ "besturingssystemen niet aangetast kunnen worden door vergissingen.\n"
+#~ "Omdat \"root\" alle beperkingen kan overschrijden en onbedoeld alle\n"
+#~ "gegevens op partities kan wissen door achteloos deze partities te\n"
+#~ "benaderen, is het belangrijk dat het lastig is om \"root\" te worden.\n"
+#~ "\n"
+#~ "Het wachtwoord zou een mix van alfanumerieke karakters moeten zijn en\n"
+#~ "tenminste 8 karakters lang. Schrijf nooit het \"root\"-wachtwoord op - "
+#~ "dat\n"
+#~ "maakt het te makkelijk om een systeem te compromitteren.\n"
+#~ "\n"
+#~ "Aan de andere kant, maak ook het wachtwoord niet te lang of "
+#~ "gecompliceerd\n"
+#~ "omdat u het moet kunnen onthouden zonder al te veel moeite. \n"
+#~ "\n"
+#~ "Het wachtwoord zal niet op het scherm getoond worden wanneer u het\n"
+#~ "intypt. Vandaar dat u het wachtwoord tweemaal moet intypen om de kans\n"
+#~ "te verminderen dat u een typfout maakt. Indien u toevallig dezelfde "
+#~ "typfout\n"
+#~ "twee keer maakt, dan zal dit \"incorrecte\" wachtwoord gebruikt moeten\n"
+#~ "worden bij de eerste keer dat u verbinding maakt.\n"
+#~ "\n"
+#~ "In expert-modus wordt u gevraagd of u verbinding gaat maken met een\n"
+#~ "authenticatie-server zoals NIS of LDAP.\n"
+#~ "\n"
+#~ "Indien uw netwerk het LDAP (of NIS) protocol gebruikt voor "
+#~ "authenticatie,\n"
+#~ "selecteer dan \"LDAP\" (of NIS). In het geval dat u dit niet weet, "
+#~ "raadpleeg\n"
+#~ "dan uw netwerkbeheerder.\n"
+#~ "\n"
+#~ "Indien uw computer niet verbonden is aan een beheerd netwerk, zult u\n"
+#~ "willen kiezen voor \"Lokale bestanden\" als wijze van authenticatie."
+
+#~ msgid ""
+#~ "LILO and grub are GNU/Linux bootloaders. This stage, normally, is "
+#~ "totally\n"
+#~ "automated. In fact, DrakX analyzes the disk boot sector and acts\n"
+#~ "accordingly, depending on what it finds here:\n"
+#~ "\n"
+#~ " * if a Windows boot sector is found, it will replace it with a grub/"
+#~ "LILO\n"
+#~ "boot sector. Hence, you will be able to load either GNU/Linux or another\n"
+#~ "OS;\n"
+#~ "\n"
+#~ " * if a grub or LILO boot sector is found, it will replace it with a new\n"
+#~ "one.\n"
+#~ "\n"
+#~ "If in doubt, DrakX will display a dialog with various options.\n"
+#~ "\n"
+#~ " * \"Bootloader to use\": you have three choices:\n"
+#~ "\n"
+#~ " * \"GRUB\": if you prefer grub (text menu).\n"
+#~ "\n"
+#~ " * \"LILO with graphical menu\": if you prefer LILO with its "
+#~ "graphical\n"
+#~ "interface.\n"
+#~ "\n"
+#~ " * \"LILO with text menu\": if you prefer LILO with its text menu "
+#~ "interface.\n"
+#~ "\n"
+#~ " * \"Boot device\": in most cases, you will not change the default\n"
+#~ "(\"/dev/hda\"), but if you prefer, the bootloader can be installed on "
+#~ "the\n"
+#~ "second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0"
+#~ "\");\n"
+#~ "\n"
+#~ " * \"Delay before booting the default image\": when rebooting the "
+#~ "computer,\n"
+#~ "this is the delay granted to the user to choose in the bootloader menu,\n"
+#~ "another boot entry than the default one.\n"
+#~ "\n"
+#~ "!! Beware that if you choose not to install a bootloader (by selecting\n"
+#~ "\"Cancel\" here), you must ensure that you have a way to boot your "
+#~ "Mandrake\n"
+#~ "Linux system! Also, be sure you know what you do before changing any of "
+#~ "the\n"
+#~ "options. !!\n"
+#~ "\n"
+#~ "Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
+#~ "options, which are reserved to the expert user.\n"
+#~ "\n"
+#~ "After you have configured the general bootloader parameters, the list of\n"
+#~ "boot options which will be available at boot time will be displayed.\n"
+#~ "\n"
+#~ "If there is another operating system installed on your machine, it will\n"
+#~ "automatically be added to the boot menu. Here, you can choose to fine-"
+#~ "tune\n"
+#~ "the existing options. Select an entry and click \"Modify\" to modify or\n"
+#~ "remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
+#~ "installation step."
+#~ msgstr ""
+#~ "LILO en GRUB zijn opstartladers voor GNU/Linux. Normaal gesproken\n"
+#~ "is deze fase volledig geautomatiseerd. In feite analyseert DrakX de\n"
+#~ "bootsector van de schijf en handelt al naar gelang hetgeen hier\n"
+#~ "gevonden wordt:\n"
+#~ "\n"
+#~ " * als een Windows bootsector gevonden is, zal deze vervangen\n"
+#~ "worden door een GRUB/LILO bootsector. Dientengevolgde zult u\n"
+#~ "ofwel GNU/Linux kunnen opstarten ofwel een ander besturingssysteem;\n"
+#~ "\n"
+#~ " * als een GRUB- of LILO bootsector gevonden is zal deze vervangen\n"
+#~ "worden door een nieuwe;\n"
+#~ "\n"
+#~ "In het geval dat er onzekerheid is, zal DrakX een dialoogvenster\n"
+#~ "weergeven met diversie opties.\n"
+#~ "\n"
+#~ " * \"Te gebruiken opstartlader\": u heeft drie keuzes:\n"
+#~ "\n"
+#~ " * \"GRUB\": indien u GRUB prefereert (tekstmenu).\n"
+#~ "\n"
+#~ " * \"LILO met grafisch menu\" indien u LILO met grafische interface\n"
+#~ "prefereert.\n"
+#~ "\n"
+#~ " * \"LILO met tekstmenu\": indien u LILO met tekstmenu-interface\n"
+#~ "prefereert.\n"
+#~ "\n"
+#~ " * \"Opstartapparaat\": in de meeste gevallen zult u de standaardkeuze\n"
+#~ "(\"/dev/hda\") niet veranderen, maar als u dat prefereert kan de\n"
+#~ "opstartlader op de tweede harde schijf (\"/dev/hdb\") geĂŻnstalleerd\n"
+#~ "worden, of zelfs op een diskette (\"/dev/fd0\").\n"
+#~ "\n"
+#~ " * \"Periode voordat standaard beeldbestand opgestard wordt\":\n"
+#~ "wanneer de computer opnieuw wordt opgestart, is dit de periode\n"
+#~ "die de gebruiker heeft om een ander item te kiezen uit het opstartmenu\n"
+#~ "voordat de standaardoptie gekozen wordt.\n"
+#~ "\n"
+#~ "!! Let op dat indien u geen opstartlader installeert (door hier "
+#~ "\"Annuleren\"\n"
+#~ "te kiezen) u ervoor moet zorgen dat u een manier heeft om uw Mandrake\n"
+#~ "Linux-systeem op te starten! Zorg er tevens voor dat u weet wat u doet\n"
+#~ "wanneer u ĂŠĂŠn van de opties wijzigt. !!\n"
+#~ "\n"
+#~ "Onder de \"Geavanceerd\"-knop in dit dialoogvenster zitten veel\n"
+#~ "geavanceerde opties, waar alleen een gevorderde gebruiker iets\n"
+#~ "aan heeft.\n"
+#~ "\n"
+#~ "Nadat u de algemene opstartlader-parameters heeft geconfigureerd,\n"
+#~ "wordt u de lijst van opstartopties getoond die beschikbaar zullen zijn\n"
+#~ "bij het opstarten.\n"
+#~ "\n"
+#~ "Als er een ander besturingssysteem op uw computer geĂŻnstalleerd is, zal\n"
+#~ "het automatisch aan het opstartmenu worden toegevoegd. U kunt hier de\n"
+#~ "bestaande opties fijn afregelen. Selecteer een item en klik op \"Wijzigen"
+#~ "\"\n"
+#~ "om hem te wijzigen of te verwijderen; \"Toevoegen\" creĂŤert een nieuw\n"
+#~ "item en \"Klaar\" gaat door naar de volgende installatiestap."
+
+#~ msgid ""
+#~ "Here, we select a printing system for your computer. Other OSs may offer\n"
+#~ "you one, but Mandrake Linux offers three.\n"
+#~ "\n"
+#~ " * \"pdq\" which means ``print, don't queue'', is the choice if you have "
+#~ "a\n"
+#~ "direct connection to your printer and you want to be able to panic out "
+#~ "of\n"
+#~ "printer jams, and you do not have networked printers. It will handle "
+#~ "only\n"
+#~ "very simple network cases and is somewhat slow for networks. Pick \"pdq"
+#~ "\"\n"
+#~ "if this is your maiden voyage to GNU/Linux. You can change your choices\n"
+#~ "after installation by running PrinterDrake from the Mandrake Control "
+#~ "Center\n"
+#~ "and clicking the expert button.\n"
+#~ "\n"
+#~ " * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
+#~ "your\n"
+#~ "local printer and also halfway-around the planet. It is simple and can "
+#~ "act\n"
+#~ "as a server or a client for the ancient \"lpd\" printing system. Hence, "
+#~ "it\n"
+#~ "is compatible with the systems that went before. It can do many tricks, "
+#~ "but\n"
+#~ "the basic setup is almost as easy as \"pdq\". If you need this to "
+#~ "emulate\n"
+#~ "an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+#~ "graphical front-ends for printing or choosing printer options.\n"
+#~ "\n"
+#~ " * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+#~ "approximately the same things the others can do, but it will print to\n"
+#~ "printers mounted on a Novell Network, because it supports the IPX "
+#~ "protocol,\n"
+#~ "and it can print directly to shell commands. If you have need of Novell "
+#~ "or\n"
+#~ "printing to commands without using a separate pipe construct, use lprNG.\n"
+#~ "Otherwise, CUPS is preferable as it is simpler and better at working "
+#~ "over\n"
+#~ "networks."
+#~ msgstr ""
+#~ "Hier selecteren we een printsysteem voor uw computer. Andere\n"
+#~ "besturingssystemen geven u er wellicht maar ĂŠĂŠn, maar Mandrake\n"
+#~ "heeft er drie.\n"
+#~ "\n"
+#~ " * \"pdq\" - hetgeen betekent \"print, don't queue\", is de keuze indien\n"
+#~ "u een directe verbinding tussen uw computer en uw printer heeft en u\n"
+#~ "in staat wilt zijn om printtaken snel te stoppen in het geval van\n"
+#~ "papierstoringen en u niet beschikt over netwerkprinters. Het kan\n"
+#~ "alleen omgaan met erg simpele netwerkprinttaken en is enigszins\n"
+#~ "langzaam wanneer gebruikt in een netwerk. Kies \"pdq\" indien\n"
+#~ "dit uw eerste kennismaking met GNU/Linux is. U kunt uw keuze\n"
+#~ "achteraf nog wijzigen door PrinterDrake te draaien vanuit het\n"
+#~ "Mandrake Controlecentrum op de expert-knop te klikken.\n"
+#~ "\n"
+#~ " * \"CUPS\"``Common Unix Printing System'' is uitstekend geschikt\n"
+#~ "om naar uw lokale printer af te drukken maar ook naar de andere kant\n"
+#~ "van de planeet. Het is eenvoudig en kan dienstdoen als een server of\n"
+#~ "een client voor het antieke \"lpd\" printsysteem, zodat het compatibel\n"
+#~ "is met voorgaande systemen. Het kent vele kunstjes, maar een\n"
+#~ "basisinstallatie is bijna net zo eenvoudig als \"pdq\". Indien u dit "
+#~ "nodig\n"
+#~ "heeft om een \"lpd\"-server te emuleren, dient u de \"cups-lpd\"-daemon\n"
+#~ "in te schakelen. CUPS heeft grafische schillen voor het afdrukken of\n"
+#~ "het kiezen van printeropties.\n"
+#~ "\n"
+#~ " * \"lprNG\"``line printer daemon New Generation''. Dit systeem kan\n"
+#~ "ongeveer hetzelfde als de anderen, maar het kan ook afdrukken naar\n"
+#~ "printers gekoppeld aan een Novell Netwerk, omdat het het IPX-protocol\n"
+#~ "ondersteunt. Verder kan het direct afdrukken naar shell-opdrachten.\n"
+#~ "Indien u Novell nodig heeft of het afdrukken naar opdrachten zonder\n"
+#~ "een afzonderlijk pijplijn-construct, gebruik dan lprNG. In andere "
+#~ "gevallen\n"
+#~ "verdient CUPS de voorkeur omdat het eenvoudiger is en beter werkt\n"
+#~ "in netwerkverband."
+
+#~ msgid ""
+#~ "DrakX now detects any IDE device present in your computer. It will also\n"
+#~ "scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+#~ "found, DrakX will automatically install the appropriate driver.\n"
+#~ "\n"
+#~ "Because hardware detection does not always detect a piece of hardware,\n"
+#~ "DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes"
+#~ "\"\n"
+#~ "if you know that there is a SCSI card installed in your machine. You "
+#~ "will\n"
+#~ "be presented a list of SCSI cards to choose from. Click \"No\" if you "
+#~ "have\n"
+#~ "no SCSI hardware. If you are unsure, you can check the list of hardware\n"
+#~ "detected in your machine by selecting \"See hardware info\" and clicking\n"
+#~ "\"OK\". Examine the list of hardware and then click on the \"OK\" button "
+#~ "to\n"
+#~ "return to the SCSI interface question.\n"
+#~ "\n"
+#~ "If you have to manually specify your adapter, DrakX will ask if you want "
+#~ "to\n"
+#~ "specify options for it. You should allow DrakX to probe the hardware for\n"
+#~ "the card-specific options which the hardware needs to initialize. This\n"
+#~ "usually works well.\n"
+#~ "\n"
+#~ "If DrakX is not able to probe for the options which need to be passed, "
+#~ "you\n"
+#~ "will need to provide options to the driver manually. Please review the\n"
+#~ "``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
+#~ "Hardware'' section) for hints on retrieving the parameters required from\n"
+#~ "hardware documentation, from the manufacturer's web site (if you have\n"
+#~ "Internet access) or from MicrosoftWindows (if you used this hardware "
+#~ "with\n"
+#~ "Windows on your system)."
+#~ msgstr ""
+#~ "DrakX is nu bezig met het bespeuren van IDE-apparaten die in uw\n"
+#~ "computer aanwezig zijn. Het zal tevens zoeken naar ĂŠĂŠn of meer PCI\n"
+#~ "SCSI-kaart(en) in uw systeem. Als een SCSI-kaart gevonden is, zal\n"
+#~ "DrakX automatisch he geschikte stuurprogramma installeren.\n"
+#~ "\n"
+#~ "Omdat hardware-bespeuring niet altijd een stuk hardware bespeurt, zal\n"
+#~ "DrakX u vragen om te bevestigen dat er een PCI SCSI-kaart aanwezig is.\n"
+#~ "Klik op \"Ja\" indien u weet dat er een SCSI-kaart in uw machine is\n"
+#~ "geĂŻnstalleerd. U krijgt een lijst van SCSI-kaarten te zien waaruit u "
+#~ "kunt\n"
+#~ "kiezen. Klik op \"Nee\" indien u geen SCSI-hardware heeft. In het geval\n"
+#~ "dat u niet zeker bent dan kunt u de lijst van bespeurde hardware in uw\n"
+#~ "computer nagaan door \"Bekijk hardware-info\" te selecteren en op \"OK\"\n"
+#~ "te klikken. Bekijk de lijst van hardware en klik vervolgens op de \"OK"
+#~ "\"-\n"
+#~ "knop om terug te gaan naar de SCSI-interface vraag.\n"
+#~ "\n"
+#~ "Indien u uw adapter handmatig moet aangeven zal DrakX vragen of u\n"
+#~ "er opties voor wilt specificeren. U kunt het beste DrakX toestaan om\n"
+#~ "de hardware te onderzoeken om na te gaan of er kaart-specifieke opties\n"
+#~ "nodig zijn om de hardware te initialiseren. Dit werkt normaal gesproken\n"
+#~ "goed.\n"
+#~ "\n"
+#~ "Als DrakX niet in staat is om te onderzoeken welke opties doorgegeven\n"
+#~ "moeten worden, zult u handmatig het stuurprogramma van opties moeten\n"
+#~ "voorzien. Gelieve de \"Gebruikershandleiding\" (hoofdstuk 3, paragraaf\n"
+#~ "\"Het verzamelen van informatie over uw hardware\") na te lezen voor\n"
+#~ "tips over hoe u de benodigde parameters uit de documentatie van uw\n"
+#~ "hardware haalt, of van de webpagina van de fabrikant (als u \n"
+#~ "internettoegang heeft), of uit Microsoft Windows (als u deze hardware\n"
+#~ "met Windows heeft gebruikt op uw systeem)."
+
+#~ msgid ""
+#~ "You can add additional entries for yaboot, either for other operating\n"
+#~ "systems, 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 simply the name you will have to type at the yaboot "
+#~ "prompt\n"
+#~ "to select this boot option;\n"
+#~ "\n"
+#~ " * Image: this would be the name of the kernel to boot. Typically, "
+#~ "vmlinux\n"
+#~ "or a variation of vmlinux with an extension;\n"
+#~ "\n"
+#~ " * Root: the \"root\" device or ``/'' for your Linux installation;\n"
+#~ "\n"
+#~ " * Append: on Apple hardware, the kernel append option is used quite "
+#~ "often\n"
+#~ "to assist in initializing video hardware, or to enable keyboard mouse\n"
+#~ "button emulation for the often lacking 2nd and 3rd mouse buttons on a "
+#~ "stock\n"
+#~ "Apple mouse. The following are some examples:\n"
+#~ "\n"
+#~ " video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+#~ "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 4,096 bytes. If "
+#~ "you\n"
+#~ "need to allocate a large ramdisk, this option can be used;\n"
+#~ "\n"
+#~ " * Read-write: normally the \"root\" partition is initially brought up "
+#~ "in\n"
+#~ "read-only, to allow a file system check before the system becomes "
+#~ "``live''.\n"
+#~ "Here, you can override 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 just pressing ENTER at the yaboot prompt. This entry will\n"
+#~ "also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
+#~ "selections."
+#~ msgstr ""
+#~ "U kent extra parameters toevoegen voor yaboot, voor andere\n"
+#~ "besturingssystemen, alternatieve kernels of voor een nood opstart\n"
+#~ "bestand.\n"
+#~ "\n"
+#~ "Voor andere besturingssystemen bestaan de parameters uit een\n"
+#~ "naam (label) en een hoofd partitie (root partitie).\n"
+#~ "\n"
+#~ "Voor Linux zijn er nog enkelle extra opties:\n"
+#~ "\n"
+#~ " * Label: Dit is simpelweg de naam die U moet invoeren op de yaboot\n"
+#~ " prompt om deze opstart optie te selecteren;\n"
+#~ "\n"
+#~ " * Image: dit is de naam van de kernel, gebruikelijk is vmlinux of een\n"
+#~ " variatie van vmlinux-met-een-extensie;\n"
+#~ "\n"
+#~ " * Root: het hoofd apparaat (root) voor uw Linux installatie;\n"
+#~ "\n"
+#~ " * Append: op Apple apparaten wordt de kernel-append optie veel\n"
+#~ " gebruikt om te assisteren bij het ingebruik nemen "
+#~ "van\n"
+#~ " de video apparatuur, of om het toetsenbord en muis "
+#~ "te\n"
+#~ " activeren ivm de ontbrekende 2e en 3e muisknop op "
+#~ "een\n"
+#~ " standaard apple muis. Dit zijn wat voorbeelden:\n"
+#~ "\n"
+#~ " video=aty128fb:vmode:17,cmode:32,mclk:71 "
+#~ "adb_buttons=\n"
+#~ " 103,111 hda=autotune\n"
+#~ "\n"
+#~ " video=atyfb:vmode=12,cmode=24 adb_buttons=103,111\n"
+#~ "\n"
+#~ " * Initrd: deze optie kan voor twee doelen gebruikt worden, het kunnen\n"
+#~ " laden van initiele modulen voordat het opstart apparaat\n"
+#~ " bereikbaar is, of om een geheugen schijf te laden voor "
+#~ "een\n"
+#~ " nood opstart situatie;\n"
+#~ "\n"
+#~ " * Initrd-size: de standaard geheugen schijf grootte is 4MB, indien U\n"
+#~ " een grotere geheugenschijf wilt laden, kunt U met "
+#~ "deze\n"
+#~ " optie de grootte instellen;\n"
+#~ "\n"
+#~ " * Read-write: normaal gesproken wordt de hoofd(root) partitie tijdens\n"
+#~ " opstarten alleen-lezen geladen om een controlle "
+#~ "te\n"
+#~ " kunnen uitvoeren alvorens \"live\" te gaan.\n"
+#~ " Hier kunt U deze optie met de hand instellen;\n"
+#~ "\n"
+#~ " * NoVideo: indien het Apple video apparaat exceptioneel veel\n"
+#~ " problemen geeft, kunt U hiermee opstarten in een\n"
+#~ " zogenaamde \"novideo\" modus met standaard\n"
+#~ " framebuffer ondersteuning;\n"
+#~ "\n"
+#~ " * Default: selecteerd deze selectie als de standaard selectie,\n"
+#~ " deze selectie zal op de yaboot prompt dan standaard\n"
+#~ " verkozen zijn wanneer U op ENTER drukt. Deze selectie\n"
+#~ " zal ook met een \"*\" herkenbaar zijn als U op de TAB\n"
+#~ " toets drukt op de yaboot-prompt."
+
+#~ msgid ""
+#~ "Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to "
+#~ "boot\n"
+#~ "either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
+#~ "these other operating systems are correctly detected and installed. If "
+#~ "this\n"
+#~ "is not the case, you can add an entry by hand in this screen. Be careful "
+#~ "to\n"
+#~ "choose the correct parameters.\n"
+#~ "\n"
+#~ "Yaboot's main options are:\n"
+#~ "\n"
+#~ " * Init Message: a simple text message displayed before the boot prompt;\n"
+#~ "\n"
+#~ " * Boot Device: indicates where you want to place the information "
+#~ "required\n"
+#~ "to boot to GNU/Linux. Generally, you set up a bootstrap partition "
+#~ "earlier\n"
+#~ "to hold this information;\n"
+#~ "\n"
+#~ " * Open Firmware Delay: unlike LILO, there are two delays available with\n"
+#~ "yaboot. The first delay is measured in seconds and at this point, you "
+#~ "can\n"
+#~ "choose between CD, OF boot, MacOS or Linux;\n"
+#~ "\n"
+#~ " * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
+#~ "After selecting Linux, you will have this delay in 0.1 second before "
+#~ "your\n"
+#~ "default kernel description is selected;\n"
+#~ "\n"
+#~ " * Enable CD Boot?: checking this option allows you to choose ``C'' for "
+#~ "CD\n"
+#~ "at the first boot prompt;\n"
+#~ "\n"
+#~ " * Enable OF Boot?: checking this option allows you to choose ``N'' for "
+#~ "Open\n"
+#~ "Firmware at the first boot prompt;\n"
+#~ "\n"
+#~ " * Default OS: you can select which OS will boot by default when the "
+#~ "Open\n"
+#~ "Firmware Delay expires."
+#~ msgstr ""
+#~ "Yaboot is een zogenaamde bootloader (opstart selector) voor moderne\n"
+#~ "MacIntosh apparatuur. Het kan GNU/Linux, MacOS of MacOSX opstarten\n"
+#~ "indien aanwezig op uw computer. Normaal gesproken worden deze\n"
+#~ "besturingssystemen automatisch gedetecteerd en ingesteld. Als dit niet "
+#~ "het\n"
+#~ "geval is, dan kunt U hier handmatig deze toegangen toevoegen. Kijk uit\n"
+#~ "om de correcte parameters te selecteren.\n"
+#~ "\n"
+#~ "Yaboots hoofd opties zijn:\n"
+#~ "\n"
+#~ " * Init Message: een eenvoudig tekst bericht getoond voor de bootprompt\n"
+#~ " (opstart regel);\n"
+#~ "\n"
+#~ " * Boot Device: indiceert waar U de benodigde informatie om GNU/Linux\n"
+#~ " op te starten wilt plaatsen. Normaal "
+#~ "gesproken stelt U\n"
+#~ " eerder in waar U deze informatie wilt "
+#~ "plaatsen;\n"
+#~ " * Open Firmware Delay: Anders dan LILO zijn er twee vertragingen\n"
+#~ " beschikbaar met yaboot. De "
+#~ "eerste vertraging\n"
+#~ " wordt in seconden ingesteld "
+#~ "en op dit punt kunt\n"
+#~ " U kiezen uit CD, OF opstart, "
+#~ "MacOS of Linux;\n"
+#~ "\n"
+#~ " * Kernel Boot Timeout: deze pauze komt overeen met de boot delay van\n"
+#~ " LILO. Na het selecteren van "
+#~ "Linux heeft U een\n"
+#~ " tijd van 0,1 seconden voordat "
+#~ "uw standaard\n"
+#~ " kernel wordt geselecteerd;\n"
+#~ "\n"
+#~ " * Enable CD Boot?: het instellen van deze optie staat U toe op te "
+#~ "starten\n"
+#~ " met \"C\" voor CD op de opstart "
+#~ "prompt;\n"
+#~ "\n"
+#~ " * Enable OF Boot?: het instellen van deze optie staat U toe om \"N\" "
+#~ "voor\n"
+#~ " Open Firmware start te selecteren op "
+#~ "de bootprompt;\n"
+#~ "\n"
+#~ " * Default OS: hier kunt U selecteren welk besturingssysteem automatisch\n"
+#~ " wordt gestart na de Open Firmware vertraging."
+
+#~ msgid ""
+#~ "Here are presented various parameters concerning your machine. Depending "
+#~ "on\n"
+#~ "your installed hardware, you may or not, see the following entries:\n"
+#~ "\n"
+#~ " * \"Mouse\": check the current mouse configuration and click on the "
+#~ "button\n"
+#~ "to change it if necessary;\n"
+#~ "\n"
+#~ " * \"Keyboard\": check the current keyboard map configuration and click "
+#~ "on\n"
+#~ "the button to change that if necessary;\n"
+#~ "\n"
+#~ " * \"Timezone\": DrakX, by default, guesses your time zone from the "
+#~ "language\n"
+#~ "you have chosen. But here again, as for the choice of a keyboard, you "
+#~ "may\n"
+#~ "not be in the country for which the chosen language should correspond.\n"
+#~ "Hence, you may need to click on the \"Timezone\" button in order to\n"
+#~ "configure the clock according to the time zone you are in;\n"
+#~ "\n"
+#~ " * \"Printer\": clicking on the \"No Printer\" button will open the "
+#~ "printer\n"
+#~ "configuration wizard;\n"
+#~ "\n"
+#~ " * \"Sound card\": if a sound card is detected on your system, it is\n"
+#~ "displayed here. No modification possible at installation time;\n"
+#~ "\n"
+#~ " * \"TV card\": if a TV card is detected on your system, it is displayed\n"
+#~ "here. No modification possible at installation time;\n"
+#~ "\n"
+#~ " * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
+#~ "displayed here. You can click on the button to change the parameters\n"
+#~ "associated with it."
+#~ msgstr ""
+#~ "Hier ziet u verscheidene paramaters die betrekking hebben op uw "
+#~ "computer.\n"
+#~ "Afhankelijk van welke hardware u heeft, kunt u al dan niet (zie "
+#~ "hieronder):\n"
+#~ "\n"
+#~ " * \"Muis\": de huidige muisconfiguratie nagaan en zonodig op deze knop "
+#~ "klikken\n"
+#~ "om hem aan te passen.\n"
+#~ "\n"
+#~ " * \"Toetsenbord\": de huidige toetsenbordindeling nagaan en zonodig op "
+#~ "deze\n"
+#~ "knop klikken om hem aan te passen.\n"
+#~ "\n"
+#~ " * \"Tijdzone\": Normaal gesproken raadt DrakX uw tijdzone aan de hand "
+#~ "van de\n"
+#~ "taal die u gekozen heeft. Maar hier, net zoals bij de keuze voor een "
+#~ "toetsenbord,\n"
+#~ "hoeft u zich niet in het land te bevinden dat correspondeert met de "
+#~ "gekozen taal.\n"
+#~ "Daarom is het mogelijk dat u op de \"Tijdzone\"-knop moet klikken om de "
+#~ "klok in\n"
+#~ "te stellen aan de hand van de tijdzone waarin u zich bevindt.\n"
+#~ "\n"
+#~ " * \"Printer\": klikken op de \"Geen printer\"-knop zal de "
+#~ "printerconfiguratie-hulp\n"
+#~ "openen.\n"
+#~ "\n"
+#~ " * \"Geluidskaart\": indien een geluidskaart bespeurd is op uw systeem, "
+#~ "wordt dat\n"
+#~ "hier weergegeven. Het is niet mogelijk dit aan te passen gedurende de "
+#~ "installatie.\n"
+#~ "\n"
+#~ " * \"TV-kaart\": indien een TV-kaart bespeurd is op uw systeem, wordt dat "
+#~ "hier\n"
+#~ "weergegeven. Het is niet mogelijk dit aan te passen gedurende de "
+#~ "installatie.\n"
+#~ "\n"
+#~ "* \"ISDN-kaart\": indien een ISDN-kaart bespeurd is op uw systeem, wordt "
+#~ "dat\n"
+#~ "hier weergegeven. U kunt op de knop klikken om de parameters aan te "
+#~ "passen\n"
+#~ "die erbij horen."
+
+#~ msgid "Setting security level"
+#~ msgstr "Selecteer een veiligheids-niveau"
+
+#~ msgid "Graphics card"
+#~ msgstr "Grafische kaart"
+
+#~ msgid "Select a graphics card"
+#~ msgstr "Selecteer een grafische kaart"
+
+#~ msgid "Choose a X driver"
+#~ msgstr "Kiest u een X-stuurprogramma"
+
+#~ msgid "X driver"
+#~ msgstr "X-stuurprogramma"
+
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr ""
+#~ "Waarschuwing: door deze grafische kaart te testen, kan uw computer "
+#~ "vastlopen"
+
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Standaard VGA, 640x480 aan 60 Hz"
+
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 aan 56 Hz"
+
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514 Compatibel, 1024x768 aan 87 Hz interlaced (geen 800x600)"
+
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 aan 87 Hz interlaced, 800x600 aan 56 Hz"
+
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Extended Super VGA, 800x600 aan 60 Hz, 640x480 aan 72 Hz"
+
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Non-Interlaced SVGA, 1024x768 aan 60 Hz, 800x600 aan 72 Hz"
+
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "High Frequency SVGA, 1024x768 aan 70 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Multi-frequency in staat om 1280x1024 aan 60 Hz weer te geven"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Multi-frequency in staat om 1280x1024 aan 74 Hz weer te geven"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Multi-frequency in staat om 1280x1024 aan 76 Hz weer te geven"
+
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Multi-frequency in staat om 1600x1200 aan 70 Hz weer te geven"
+
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Multi-frequency in staat om 1600x1200 aan 76 Hz weer te geven"
+
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr ""
+#~ "De totale grootte voor de geselecteerde groepen is ongeveer %d MB.\n"
+
+#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
+#~ msgstr ""
+#~ "Als u minder dan deze grootte wenst te installeren,\n"
+#~ "selectere dan het percentage pakketten dat u wenst te installeren.\n"
+#~ "\n"
+#~ "Een laag percentage zal enkel de belangrijkste pakketten installeren;\n"
+#~ "een percentage van 100%% zal alle geselecteerde pakketten installeren."
+
+#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
+#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
+#~ msgstr ""
+#~ "U heeft schijfruimte voor slechts %d%% van deze pakketten.\n"
+#~ "\n"
+#~ "Als u minder wenst te installeren,\n"
+#~ "selecteer dan het percentage pakketten dat u wenst te installeren.\n"
+#~ "Een laag percentage zal enkel de belangrijkste pakketten installeren;\n"
+#~ "een percentage van %d%% zal alle geselecteerde pakketten installeren."
+
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Het is mogelijk preciezer te kiezen in de volgende stap."
+
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Percentage pakketten om te installeren"
+
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Kies een veiligheids-niveau"
diff --git a/perl-install/share/po/no.po b/perl-install/share/po/no.po
index 3ce730de3..e17b72bc9 100644
--- a/perl-install/share/po/no.po
+++ b/perl-install/share/po/no.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-07-29 13:11+0200\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
"PO-Revision-Date: 2002-03-10 11:04GMT\n"
"Last-Translator: Terje Bjerkelia <terje@bjerkelia.com>\n"
"Language-Team: Norsk\n"
@@ -175,7 +175,7 @@ msgstr "Velg en monitor"
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:978
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
msgid "Custom"
msgstr "Skreddersydd"
@@ -261,14 +261,14 @@ msgstr "Velg opplřsning og fargedybde"
msgid "Graphics card: %s"
msgstr "Grafikk-kort: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1019
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
-#: ../../install_steps_interactive.pm_.c:570 ../../interactive.pm_.c:142
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
-#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:726
-#: ../../my_gtk.pm_.c:729 ../../my_gtk.pm_.c:1058
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1610
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
@@ -277,7 +277,7 @@ msgstr "Grafikk-kort: %s"
#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
-#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:598
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
#: ../../standalone/tinyfirewall_.c:65
msgid "Cancel"
@@ -288,8 +288,8 @@ msgstr "Avbryt"
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
-#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:725
-#: ../../my_gtk.pm_.c:1058 ../../my_gtk.pm_.c:1080
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
@@ -456,16 +456,16 @@ msgstr "Skjermmodus"
msgid "Delay before booting default image"
msgstr "Forsinkelse fřr oppstart av standard bilde"
-#: ../../any.pm_.c:179 ../../any.pm_.c:799
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1103 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Passord"
-#: ../../any.pm_.c:180 ../../any.pm_.c:800
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Passord (igjen)"
@@ -500,14 +500,14 @@ msgid ""
msgstr ""
"Opsjon ``Begrense kommandolinje-opsjoner'' kan ikke brukes uten et passord"
-#: ../../any.pm_.c:193 ../../any.pm_.c:775
-#: ../../diskdrake/interactive.pm_.c:1165
-#: ../../install_steps_interactive.pm_.c:1098
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Vennligst prřv igjen"
-#: ../../any.pm_.c:193 ../../any.pm_.c:775
-#: ../../install_steps_interactive.pm_.c:1098
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Passordene stemmer ikke overens"
@@ -563,7 +563,7 @@ msgstr ""
msgid "Add"
msgstr "Legg til"
-#: ../../any.pm_.c:266 ../../any.pm_.c:787 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
#: ../../interactive/http.pm_.c:153
msgid "Done"
@@ -601,7 +601,7 @@ msgstr "Bilde"
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:297 ../../any.pm_.c:326
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Tilfřye"
@@ -621,83 +621,83 @@ msgstr "Tabell"
msgid "Unsafe"
msgstr "Usikker"
-#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:325
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Etikett"
-#: ../../any.pm_.c:319 ../../any.pm_.c:330 ../../harddrake/bttv.pm_.c:184
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Standard"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:326
msgid "Initrd-size"
msgstr "Initrdstřrrelse"
-#: ../../any.pm_.c:329
+#: ../../any.pm_.c:328
msgid "NoVideo"
msgstr "Ingen video"
-#: ../../any.pm_.c:337
+#: ../../any.pm_.c:336
msgid "Remove entry"
msgstr "Fjern inngang"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:339
msgid "Empty label not allowed"
msgstr "Tom etikett er ikke tillatt"
-#: ../../any.pm_.c:341
+#: ../../any.pm_.c:340
msgid "You must specify a kernel image"
msgstr "Du mĺ velge ett kjernebilde"
-#: ../../any.pm_.c:341
+#: ../../any.pm_.c:340
msgid "You must specify a root partition"
msgstr "Du mĺ ha en rotpartisjon"
-#: ../../any.pm_.c:342
+#: ../../any.pm_.c:341
msgid "This label is already used"
msgstr "Denne etiketten er allerede i bruk"
-#: ../../any.pm_.c:671
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Fant %s %s grensesnitt"
-#: ../../any.pm_.c:672
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Har du enda ett?"
-#: ../../any.pm_.c:673
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Har du noen %s grensesnitt?"
-#: ../../any.pm_.c:675 ../../any.pm_.c:834 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1057
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Nei"
-#: ../../any.pm_.c:675 ../../any.pm_.c:833 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1057
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Ja"
-#: ../../any.pm_.c:676
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Se maskinvareinfo"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:692
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Installerer driver for %s kort %s"
-#: ../../any.pm_.c:693
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
-#: ../../any.pm_.c:702
+#: ../../any.pm_.c:697
#, fuzzy, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -706,7 +706,7 @@ msgstr ""
"Du kan nĺ gi modul %s de opsjoner du fřler for.\n"
"Merk at addresser břr gis med 0x prefikset som i '0x123'"
-#: ../../any.pm_.c:708
+#: ../../any.pm_.c:703
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -717,17 +717,17 @@ msgstr ""
"Opsjonene er i format ``navn=verdi navn2=verdi2 ...''.\n"
"F.eks., ``io=0x300 irq=7''"
-#: ../../any.pm_.c:710
+#: ../../any.pm_.c:705
msgid "Module options:"
msgstr "Modulopsjoner:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Hvilken %s driver skal jeg prřve?"
-#: ../../any.pm_.c:731
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -746,15 +746,15 @@ msgstr ""
"burde\n"
"ikke forĺrsake noen skader."
-#: ../../any.pm_.c:735
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Automatisk sondering"
-#: ../../any.pm_.c:735
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Spesifiser opsjoner"
-#: ../../any.pm_.c:747
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -763,54 +763,54 @@ msgstr ""
"Lasting av modul %s feilet.\n"
"Řnsker du ĺ prřve igjen med andre parametere?"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "tilgang til X-programmer"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "tilgang til rpmverktřy"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "tilgang til \"su\""
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "tilgang til administrative filer"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(allerede lagt til %s)"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Dette passordet er for enkelt"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Vennligst oppgi et brukernavn"
-#: ../../any.pm_.c:778
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Brukernavnet kan kun inneholde smĺ bokstaver, tall, `-' og `_'"
-#: ../../any.pm_.c:779
+#: ../../any.pm_.c:774
#, fuzzy
msgid "The user name is too long"
msgstr "Denne brukeren er allerede lagt til"
-#: ../../any.pm_.c:780
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Denne brukeren er allerede lagt til"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Legg til bruker"
-#: ../../any.pm_.c:785
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -819,32 +819,32 @@ msgstr ""
"Entre en bruker\n"
"%s"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Godta bruker"
-#: ../../any.pm_.c:797
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Virkelig navn"
-#: ../../any.pm_.c:798 ../../printerdrake.pm_.c:731
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Brukernavn"
-#: ../../any.pm_.c:801
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Skall"
-#: ../../any.pm_.c:803
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Ikon"
-#: ../../any.pm_.c:830
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Autoinnlogging"
-#: ../../any.pm_.c:831
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -853,54 +853,54 @@ msgstr ""
"oppstart.\n"
"Vil du bruke denne tjenesten?"
-#: ../../any.pm_.c:835
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Velg standard bruker:"
-#: ../../any.pm_.c:836
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Velg vindushĺndtereren som skal kjřres:"
-#: ../../any.pm_.c:851
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Vennligst velg sprĺk som skal brukes."
-#: ../../any.pm_.c:853
+#: ../../any.pm_.c:848
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "Du kan velge andre sprĺk som vil vćre tilgjengelige etter installasjon"
-#: ../../any.pm_.c:867 ../../install_steps_interactive.pm_.c:702
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Alle"
-#: ../../any.pm_.c:978
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Tillat alle brukere"
-#: ../../any.pm_.c:978
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "Ingen deling"
-#: ../../any.pm_.c:988 ../../network/smbnfs.pm_.c:47
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Pakken %s mĺ installeres. Vil du installere den?"
-#: ../../any.pm_.c:991
+#: ../../any.pm_.c:986
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Du kan eksportere med NFS eller Samba. Hvilken av dem řnsker du"
-#: ../../any.pm_.c:999 ../../network/smbnfs.pm_.c:51
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Obligatorisk pakke %s mangler"
-#: ../../any.pm_.c:1005
+#: ../../any.pm_.c:1000
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -909,11 +909,11 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1019
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr "Start userdrake"
-#: ../../any.pm_.c:1021
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -921,31 +921,31 @@ msgstr ""
"per-user deling bruker gruppen \"fileshare\". \n"
"Du kan bruke userdrake til ĺ legge til en bruker i denne gruppen."
-#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:39
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Velkommen til Crackers"
-#: ../../any.pm_.c:1072 ../../security/msec.pm_.c:40
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Dĺrlig"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:41
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Standard"
-#: ../../any.pm_.c:1074 ../../security/msec.pm_.c:42
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Hřy"
-#: ../../any.pm_.c:1075 ../../security/msec.pm_.c:43
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
msgstr "Hřyere"
-#: ../../any.pm_.c:1076 ../../security/msec.pm_.c:44
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoid"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1074
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"
@@ -955,7 +955,7 @@ msgstr ""
"bruke, men mer utsatt: det mĺ ikke brukes pĺ en maskin koblet til andre\n"
"eller til Internett. Det er ingen adgang med passord."
-#: ../../any.pm_.c:1082 ../../security/msec.pm_.c:51
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -963,7 +963,7 @@ msgstr ""
"Passord er nĺ aktivert, men bruk som nettverksmaskin er fortsatt ikke "
"anbefalt."
-#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:52
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -971,7 +971,7 @@ msgstr ""
"Dette er standard sikkerhet anbefalt for en maskin som vil bli brukt til "
"tilkobling mot Internett som klient."
-#: ../../any.pm_.c:1084 ../../security/msec.pm_.c:53
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -979,7 +979,7 @@ msgstr ""
"Det er allerede noen restriksjoner, og flere automatiske kontroller kjřres "
"hver natt."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1080
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -993,7 +993,7 @@ msgstr ""
"oppkoblinger fra mange klienter. Merk: Hvis maskinen din kun er en klient pĺ "
"Internett burde du velge et lavere nivĺ."
-#: ../../any.pm_.c:1088 ../../security/msec.pm_.c:57
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1001,21 +1001,21 @@ msgstr ""
"Basert pĺ forrige nivĺ, men nĺ er systemet fullstendig stengt.\n"
"Sikkerhetsfunksjonene er nĺ pĺ maksimum."
-#: ../../any.pm_.c:1098 ../../security/msec.pm_.c:68
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Sikkerhetsnivĺ"
-#: ../../any.pm_.c:1100 ../../security/msec.pm_.c:70
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Bruk libsafe for tjenere"
-#: ../../any.pm_.c:1101 ../../security/msec.pm_.c:71
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Ett bibliotek som beskytter mot buffer overflow og strengformateringsangrep."
-#: ../../any.pm_.c:1102 ../../security/msec.pm_.c:72
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
msgid "Security Administrator (login or email)"
msgstr ""
@@ -1149,7 +1149,7 @@ msgstr ""
"Klikk pĺ Konfigurer for ĺ starte oppsett-hjelperen."
#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
-#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:592
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Konfigurer"
@@ -1170,7 +1170,7 @@ msgstr "Nei, jeg vil ikke ha autologin"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ja, jeg vil ha autologin med denne (bruker; skrivebord)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
@@ -1280,8 +1280,8 @@ msgstr "USA"
msgid "Please make a backup of your data first"
msgstr "Vennligst ta sikkerhetskopi av din data fřrst"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:909
-#: ../../diskdrake/interactive.pm_.c:918 ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Les nřye!"
@@ -1296,9 +1296,10 @@ msgstr ""
"ved begynnelsen av disken"
#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
-#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:364 ../../interactive/http.pm_.c:119
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Feil"
@@ -1356,7 +1357,7 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Veksel"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1080
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Tom"
@@ -1375,7 +1376,7 @@ msgid "Create"
msgstr "Opprett"
#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:509 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Type"
@@ -1393,7 +1394,7 @@ msgstr "Slett"
msgid "Use ``Unmount'' first"
msgstr "Bruk ``Demonter'' fřrst"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:501
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1526,8 +1527,8 @@ msgstr "Prřver ĺ redde partisjonstabell"
msgid "Detailed information"
msgstr "Detaljert informasjon"
-#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:546
-#: ../../diskdrake/interactive.pm_.c:573 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Monteringspunkt"
@@ -1537,11 +1538,11 @@ msgstr "Monteringspunkt"
msgid "Options"
msgstr "Valg"
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Endre střrrelse"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:693
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Flytt"
@@ -1589,17 +1590,17 @@ msgstr "Opprette en ny partisjon"
msgid "Start sector: "
msgstr "Start sektor: "
-#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:791
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Střrrelse i MB: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:792
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Filsystemtype: "
#: ../../diskdrake/interactive.pm_.c:434
-#: ../../diskdrake/interactive.pm_.c:1064
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Monteringspunkt: "
@@ -1607,33 +1608,40 @@ msgstr "Monteringspunkt: "
msgid "Preference: "
msgstr "Valg: "
-#: ../../diskdrake/interactive.pm_.c:482
+#: ../../diskdrake/interactive.pm_.c:463
+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/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "Fjern loopbackfilen?"
-#: ../../diskdrake/interactive.pm_.c:507
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Endre partisjonstype"
-#: ../../diskdrake/interactive.pm_.c:508 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Hvilket filsystem řnsker du?"
-#: ../../diskdrake/interactive.pm_.c:514
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Bytter fra ext2 til ext3"
-#: ../../diskdrake/interactive.pm_.c:544
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Hvor vil du montere loopback-filen %s?"
-#: ../../diskdrake/interactive.pm_.c:545 ../../diskdrake/interactive.pm_.c:572
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Hvor vil du montere %s enheten?"
-#: ../../diskdrake/interactive.pm_.c:551
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1641,132 +1649,132 @@ msgstr ""
"Kan ikke fjerne monteringspunkt da denne partisjonen blir brukt til\n"
"loopback. Fjern loopback fřrst"
-#: ../../diskdrake/interactive.pm_.c:596
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Beregner fat filsystemgrense"
-#: ../../diskdrake/interactive.pm_.c:596 ../../diskdrake/interactive.pm_.c:655
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Endrer střrrelse"
-#: ../../diskdrake/interactive.pm_.c:628
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Denne partisjonen kan ikke střrrelsen forandres pĺ"
-#: ../../diskdrake/interactive.pm_.c:633
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Alle data pĺ denne partisjonen burde sikkerhetskopieres"
-#: ../../diskdrake/interactive.pm_.c:635
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Etter endring av střrrelse for partisjon %s, vil alle data pĺ denne\n"
"partisjonen vil gĺ tapt"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Velg den nye střrrelsen"
-#: ../../diskdrake/interactive.pm_.c:641
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Ny střrrelse i MB: "
-#: ../../diskdrake/interactive.pm_.c:694
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Hvilken disk vil du flytte til?"
-#: ../../diskdrake/interactive.pm_.c:695
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:696
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Hvilken sektor vil du flytte til?"
-#: ../../diskdrake/interactive.pm_.c:699
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Flytter"
-#: ../../diskdrake/interactive.pm_.c:699
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Flytter partisjon..."
-#: ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Velg en eksisterende RAID for ĺ legge til"
-#: ../../diskdrake/interactive.pm_.c:717 ../../diskdrake/interactive.pm_.c:734
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "ny"
-#: ../../diskdrake/interactive.pm_.c:732
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Velg en eksisterende LVM for ĺ legge til"
-#: ../../diskdrake/interactive.pm_.c:737
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "LVM navn?"
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Denne partisjonen kan ikke brukes for loopback"
-#: ../../diskdrake/interactive.pm_.c:789
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Loopback filnavn: "
-#: ../../diskdrake/interactive.pm_.c:795
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Gi ett filnavn"
-#: ../../diskdrake/interactive.pm_.c:798
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Filen blir allerede brukt av en annen loopback, velg en annen"
-#: ../../diskdrake/interactive.pm_.c:799
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Filen eksisterer allerede. Bruke denne?"
-#: ../../diskdrake/interactive.pm_.c:822
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Monteringsvalg:"
-#: ../../diskdrake/interactive.pm_.c:829
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Diverse"
-#: ../../diskdrake/interactive.pm_.c:892 ../../standalone/drakfloppy_.c:104
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "enhet"
-#: ../../diskdrake/interactive.pm_.c:893
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "nivĺ"
-#: ../../diskdrake/interactive.pm_.c:894
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "skivestřrrelse"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Vćr forsiktig: denne operasjonen er farlig."
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Hva slags type partisjonering?"
-#: ../../diskdrake/interactive.pm_.c:940
+#: ../../diskdrake/interactive.pm_.c:953
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr "Pakken %s mĺ installeres. Vil du installere den?"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1778,7 +1786,7 @@ msgstr ""
"Enten bruker du LILO og denne ikke virker, eller du bruker ikke LILO og du "
"trenger ikke /boot"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1791,7 +1799,7 @@ msgstr ""
"Hvis du skal bruke oppstartshĺndtereren LILO, vćr nřye med ĺ legge til en\n"
"/boot partisjon"
-#: ../../diskdrake/interactive.pm_.c:964
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1801,46 +1809,46 @@ msgstr ""
"Ingen oppstartslaster kan hĺndtere dette uten en /boot partisjon.\n"
"Sĺ vćr nřye med ĺ legge til en /boot partisjon"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Partisjonstabellen pĺ disk %s blir nĺ skrevet til disk!"
-#: ../../diskdrake/interactive.pm_.c:988
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Du mĺ starte maskinen pĺ nytt for at modifiseringene skal tre i kraft"
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Etter formatering av partisjon %s vil alle data pĺ denne partisjonen\n"
"gĺ tapt"
-#: ../../diskdrake/interactive.pm_.c:1001
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Formatering"
-#: ../../diskdrake/interactive.pm_.c:1002
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formaterer loopback-fil %s"
-#: ../../diskdrake/interactive.pm_.c:1003
-#: ../../install_steps_interactive.pm_.c:474
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Formaterer partisjon %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Gjem filer"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Flytt filer til en ny partisjon"
-#: ../../diskdrake/interactive.pm_.c:1015
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -1849,83 +1857,83 @@ msgstr ""
"Katalogen %s inneholder allerede noe data\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1026
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "Flytt filer til en ny partisjon"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Kopierer %s"
-#: ../../diskdrake/interactive.pm_.c:1034
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Fjerner %s"
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "partisjon %s er nĺ kjent som %s"
-#: ../../diskdrake/interactive.pm_.c:1065
-#: ../../diskdrake/interactive.pm_.c:1124
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Enhet: "
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS diskbokstav: %s (bare en gjetning)\n"
-#: ../../diskdrake/interactive.pm_.c:1070
-#: ../../diskdrake/interactive.pm_.c:1078
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Type: "
-#: ../../diskdrake/interactive.pm_.c:1074
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Navn: "
-#: ../../diskdrake/interactive.pm_.c:1082
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Start: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Střrrelse: %s"
-#: ../../diskdrake/interactive.pm_.c:1085
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sektorer"
-#: ../../diskdrake/interactive.pm_.c:1087
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Sylinder %d til %d\n"
-#: ../../diskdrake/interactive.pm_.c:1088
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Formatert\n"
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Ikke formatert\n"
-#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Montert\n"
-#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -1934,7 +1942,7 @@ msgstr ""
"Loopback-fil(er): \n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -1942,27 +1950,27 @@ msgstr ""
"Partisjon startet opp som standard\n"
" (for MS-DOS oppstart, ikke for lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Nivĺ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Skivestřrrelse %s\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-disker %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback filnavn: %s"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -1975,7 +1983,7 @@ msgstr ""
"driverpartisjon, du břr nok\n"
"la den vćre i fred.\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -1987,62 +1995,62 @@ msgstr ""
"partisjonen er for ĺ\n"
"dual-boote ditt system.\n"
-#: ../../diskdrake/interactive.pm_.c:1125
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Střrrelse: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1126
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometri: %s sylindere, %s hoder, %s sektorer\n"
-#: ../../diskdrake/interactive.pm_.c:1127
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1128
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-disker %s\n"
-#: ../../diskdrake/interactive.pm_.c:1129
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Type partisjonstabell: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1143
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "pĺ buss %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Valg: %s"
-#: ../../diskdrake/interactive.pm_.c:1160
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "Filsystemkrypteringsnřkkel"
-#: ../../diskdrake/interactive.pm_.c:1161
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "Velg din filsystemkrypteringsnřkkel"
-#: ../../diskdrake/interactive.pm_.c:1164
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Denne krypteringsnřkkelen er for enkel (mĺ vćre minst %d tegn lang)"
-#: ../../diskdrake/interactive.pm_.c:1165
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "Krypteringsnřkkelene stemmer ikke overens"
-#: ../../diskdrake/interactive.pm_.c:1168
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "Krypteringsnřkkel"
-#: ../../diskdrake/interactive.pm_.c:1169
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "Krypteringsnřkkel (igjen)"
@@ -2104,17 +2112,12 @@ msgstr "%s formatering av %s mislykket"
msgid "I don't know how to format %s in type %s"
msgstr "Jeg vet ikke hvordan formatere %s i type %s"
-#: ../../fs.pm_.c:686 ../../fs.pm_.c:715 ../../fs.pm_.c:721
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "montere partisjon %s i katalog %s gikk ikke"
-#: ../../fs.pm_.c:706
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck avsluttet med feilkode %d eller signal %d"
-
-#: ../../fs.pm_.c:736 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "feil ved demontering av %s: %s"
@@ -3858,7 +3861,7 @@ msgstr ""
"Klikk pĺ \"Avbryt\" for ĺ avbryte denne operasjonen uten ĺ miste data og\n"
"partisjoner pĺ denne harddisken."
-#: ../../install2.pm_.c:115
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3869,7 +3872,7 @@ msgstr ""
"dette betyr vanligvis at oppstartsdisketten din ikke er i synk med "
"installasjonsmediet (vennligst opprett en nyere diskett)"
-#: ../../install2.pm_.c:170
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr "Du mĺ ogsĺ formatere %s"
@@ -3919,7 +3922,7 @@ msgstr ""
"For ĺ bruke dette valget av pakker, start installasjonen med'linux "
"defcfg=floppy'"
-#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:769
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Feil ved lesing av fil %s"
@@ -3961,55 +3964,55 @@ msgstr ""
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Du mĺ ha en FAT-parisjonen montert under /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Bruk ledig plass"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Ikke nok plass til ĺ allokere en ny partisjon"
-#: ../../install_interactive.pm_.c:100
+#: ../../install_interactive.pm_.c:101
msgid "Use existing partitions"
msgstr "Bruk eksisterende partisjon"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Det finnes ingen eksisterende partisjon som kan brukes"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Bruk Windows partisjonen for loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Hvilken partisjon vil du bruke for Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Velg střrrelsene"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Root-partisjonsstřrrelse i MB: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Veksel-partisjonsstřrrelse i MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Bruk den ledige plassen pĺ Windows partisjonen"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Hvilken partisjonstype řnsker du ĺ forandre střrrelse pĺ?"
-#: ../../install_interactive.pm_.c:130
+#: ../../install_interactive.pm_.c:131
msgid "Resizing Windows partition"
msgstr "Beregner Windows filsystemgrense"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4018,7 +4021,7 @@ msgstr ""
"Střrrelsesendreren for FAT greide ikke ĺ hĺndtere din partisjon, \n"
"fřlgende feil oppsto: %s"
-#: ../../install_interactive.pm_.c:136
+#: ../../install_interactive.pm_.c:137
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
@@ -4026,7 +4029,7 @@ msgid ""
msgstr ""
"Windows-partisjonen din er for fragmentert, vennligst kjřr ``defrag'' fřrst"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -4046,21 +4049,21 @@ msgstr ""
"data.\n"
"Nĺr du er sikker, trykk Ok."
-#: ../../install_interactive.pm_.c:147
+#: ../../install_interactive.pm_.c:148
msgid "Which size do you want to keep for Windows on"
msgstr "Hvilken střrrelse řnsker du ĺ beholde vinduer pĺ?"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "partisjon %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Krymping/forstřrring av FAT feilet: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
@@ -4068,32 +4071,32 @@ msgstr ""
"Det finnes ingen FAT partisjon ĺ forandre střrrelsen pĺ eller ĺ bruke som "
"loopback (ikke nok plass igjen)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Slette hele disken"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Fjern Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Du har mer enn en harddisk, hvilken řnsker du ĺ installere linux pĺ?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "ALLE eksisterende partisjoner og deres data vil vćre tapt pĺ disk %s"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Egendefinert diskpartisjonering"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Bruk fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4102,11 +4105,11 @@ msgstr ""
"Du kan nĺ partisjonere %s.\n"
"Nĺr du er ferdig ikke glem ĺ lagre med `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Du har ikke nok ledig plass pĺ Windows partisjonen din"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Jeg kan ikke finne noe rom for installering"
@@ -4114,16 +4117,16 @@ msgstr "Jeg kan ikke finne noe rom for installering"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX partisjonsveiviseren fant fřlgende lřsninger:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Partisjonering feilet: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Henter opp nettverket"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Tar ned nettverket"
@@ -4188,15 +4191,15 @@ msgstr "Installeringsklasse"
msgid "Please choose one of the following classes of installation:"
msgstr "Vennligst velg en av fřlgende installasjonsklasser:"
-#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:688
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Valg pakkegruppe"
-#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:703
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Individuelt pakkevalg"
-#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:627
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Total střrrelse: %d / %d MB"
@@ -4268,8 +4271,8 @@ msgstr "Du kan ikke fjerne denne pakken. Den mĺ oppgraderes"
msgid "Show automatically selected packages"
msgstr "Vis automatisk valgte pakker"
-#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:254
-#: ../../install_steps_interactive.pm_.c:258
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Installer"
@@ -4286,11 +4289,11 @@ msgstr "Oppdaterer pakkevalg"
msgid "Minimal install"
msgstr "Minimal installasjon"
-#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:532
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Velg pakkene du řnsker ĺ installere"
-#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Installerer"
@@ -4317,17 +4320,17 @@ msgid "Installing package %s"
msgstr "Installerer pakke %s"
#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:794
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Godta"
#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:794
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Nekte"
-#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:795
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4343,16 +4346,16 @@ msgstr ""
"Hvis du ikke har den trykk Avbryt for ĺ unngĺ installasjon fra denne CD'en."
#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
-#: ../../install_steps_interactive.pm_.c:807
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Fortsette uansett?"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:807
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Det var en feil ved endring av pakkenes rekkefřlge:"
-#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Det var en feil ved installering av pakkene:"
@@ -4671,7 +4674,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:213
-#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Tastatur"
@@ -4688,86 +4691,86 @@ msgstr "Her er den komplette lista over tilgjengelige tastatur"
msgid "Which installation class do you want?"
msgstr "Hvilken installasjonsklasse řnsker du?"
-#: ../../install_steps_interactive.pm_.c:234
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Installer/Oppdater"
-#: ../../install_steps_interactive.pm_.c:234
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Er dette en installering eller en oppdatering?"
-#: ../../install_steps_interactive.pm_.c:243
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Anbefalt"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:249
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Ekspert"
-#: ../../install_steps_interactive.pm_.c:254
-#: ../../install_steps_interactive.pm_.c:258
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "Oppgrader"
-#: ../../install_steps_interactive.pm_.c:254
-#: ../../install_steps_interactive.pm_.c:258
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "Oppgrader kun pakker"
-#: ../../install_steps_interactive.pm_.c:274
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Vennligst velg din musetype."
-#: ../../install_steps_interactive.pm_.c:280 ../../standalone/mousedrake_.c:85
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Port mus"
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:86
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Vennligst velg hvilken serieport musen din koblet til."
-#: ../../install_steps_interactive.pm_.c:289
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Emulering knapper"
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Emulering 2 knapper"
-#: ../../install_steps_interactive.pm_.c:292
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Emulering 3 knapper"
-#: ../../install_steps_interactive.pm_.c:313
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Konfigurerer PCMCIA kort..."
-#: ../../install_steps_interactive.pm_.c:313
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:320
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Konfigurerer IDE"
-#: ../../install_steps_interactive.pm_.c:320
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:335
+#: ../../install_steps_interactive.pm_.c:337
msgid "No partition available"
msgstr "ingen tilgjengelige partisjoner"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Skanner partisjoner for ĺ finne monteringspunkter"
-#: ../../install_steps_interactive.pm_.c:346
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Velg monteringspunktene"
-#: ../../install_steps_interactive.pm_.c:365
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -4784,7 +4787,7 @@ msgstr ""
"\n"
"Vil du miste alle partisjonene?\n"
-#: ../../install_steps_interactive.pm_.c:378
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4792,7 +4795,7 @@ msgstr ""
"DiskDrake klarte ikke ĺ lese partisjonstabellen korrekt.\n"
"Fortsett pĺ eget ansvar!"
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -4800,64 +4803,71 @@ msgstr ""
"Det er ikke plass for 1 MB bootstrap! Installasjonen vil fortsette, but for "
"ĺboote systemet ditt, mĺ du lage en bootstrap partisjon i DiskDrake"
-#: ../../install_steps_interactive.pm_.c:404
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr "Ingen rotpartisjon funnet for oppgradering"
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Rotpartisjon"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Hva er rotpartisjonen (/) pĺ ditt system?"
-#: ../../install_steps_interactive.pm_.c:420
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Du mĺ starte maskinen pĺ nytt for at modifiseringene skal tre i kraft"
-#: ../../install_steps_interactive.pm_.c:444
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Velg partisjonene du řnsker ĺ partisjonere"
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Sjekke fo rdĺrlige clustere?"
-#: ../../install_steps_interactive.pm_.c:471
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Formaterer partisjoner"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Lager of formaterer fila %s"
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Det er ikke nok SWAP til ĺ fullfřre installasjonen, vennligst legg til litt "
"mer"
-#: ../../install_steps_interactive.pm_.c:483
+#: ../../install_steps_interactive.pm_.c:490
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Sřker etter tilgjengelige pakker"
-#: ../../install_steps_interactive.pm_.c:484
+#: ../../install_steps_interactive.pm_.c:491
msgid "Looking for available packages..."
msgstr "Sřker etter tilgjengelige pakker"
-#: ../../install_steps_interactive.pm_.c:488
+#: ../../install_steps_interactive.pm_.c:495
msgid "Finding packages to upgrade..."
msgstr "Finner pakker som skal oppgraderes"
-#: ../../install_steps_interactive.pm_.c:491
+#: ../../install_steps_interactive.pm_.c:498
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "Du kan ikke fjerne denne pakken, den er allerede installert"
-#: ../../install_steps_interactive.pm_.c:509
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -4866,7 +4876,7 @@ msgstr ""
"Ditt system har ikke nok plass igjen for installasjon eller oppgradering (%d "
"> %d)"
-#: ../../install_steps_interactive.pm_.c:544
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -4874,35 +4884,35 @@ msgstr ""
"Vennligst velg lagre eller hente pakkevalg pĺ diskett.\n"
"Formatet er det samme som for auto_install genererte disketter."
-#: ../../install_steps_interactive.pm_.c:547
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Hent fra diskett"
-#: ../../install_steps_interactive.pm_.c:549
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Henter fra disketten"
-#: ../../install_steps_interactive.pm_.c:549
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Pakkevalg"
-#: ../../install_steps_interactive.pm_.c:554
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "Sett inn en diskett med pakkevalget"
-#: ../../install_steps_interactive.pm_.c:566
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Lagre pĺ diskett"
-#: ../../install_steps_interactive.pm_.c:640
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Valgt střrrelse er střrre enn tilgjengelig plass"
-#: ../../install_steps_interactive.pm_.c:654
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr "Type av installasjon"
-#: ../../install_steps_interactive.pm_.c:655
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -4910,19 +4920,19 @@ msgstr ""
"Du har ikke valgt noen pakkegrupper.\n"
"Vennligst velg den minimale installasjonen du řnsker:"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "Med X"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr "Med grunnleggende dokumentasjon (anbefalt!)"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr "Virkelig minimal installasjon (uten urpmi)"
-#: ../../install_steps_interactive.pm_.c:745
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4932,16 +4942,16 @@ msgstr ""
"Hvis du ikke har noen av disse CDene, klikk Avbryt.\n"
"Hvis bare noen av CDene mangler, fjern disse, klikk sĺ Ok."
-#: ../../install_steps_interactive.pm_.c:750
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROMen ved navnet \"%s\""
-#: ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Forbereder installasjon"
-#: ../../install_steps_interactive.pm_.c:779
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4950,21 +4960,21 @@ msgstr ""
"Installerer pakke %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:825
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Konfigurasjon postinstallering"
-#: ../../install_steps_interactive.pm_.c:831
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Sett inn en oppstartsdiskett i stasjon %s"
-#: ../../install_steps_interactive.pm_.c:837
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Sett inn oppdater moduler disketten i stasjon %s"
-#: ../../install_steps_interactive.pm_.c:857
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5038,7 +5048,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:896
+#: ../../install_steps_interactive.pm_.c:903
#, fuzzy
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -5058,178 +5068,178 @@ msgstr ""
"\n"
"Řnsker du ĺ installere oppdateringene?"
-#: ../../install_steps_interactive.pm_.c:911
+#: ../../install_steps_interactive.pm_.c:918
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Kontakter Mandrake Linux web-sted for ĺ fĺ en liste over tilgjengelige speil"
-#: ../../install_steps_interactive.pm_.c:916
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Velg et speil som pakkene kan hentes fra"
-#: ../../install_steps_interactive.pm_.c:925
+#: ../../install_steps_interactive.pm_.c:932
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Kontakter speilet for ĺ fĺ en liste over tilgjengelige pakker"
-#: ../../install_steps_interactive.pm_.c:952
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Hva er din tidsone?"
-#: ../../install_steps_interactive.pm_.c:957
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Maskinvareklokken din satt til GMT"
-#: ../../install_steps_interactive.pm_.c:958
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatisk tidssynkronisering (ved hjelp av NTP)"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "NTP-tjener"
-#: ../../install_steps_interactive.pm_.c:999
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1006
+#: ../../install_steps_interactive.pm_.c:1014
msgid "Remote CUPS server"
msgstr "Fjern-CUPS tjener"
-#: ../../install_steps_interactive.pm_.c:1000
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Ingen skriver"
-#: ../../install_steps_interactive.pm_.c:1017
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
msgstr "Har du et ISA lydkort?"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Kjřr \"sndconfig\" etter installasjonen for ĺ konfigurere lydkortet ditt"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Lydkort ikke oppdaget. Prřv \"harddrake\" etter installasjonen"
-#: ../../install_steps_interactive.pm_.c:1026 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Oppsummering"
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Mus"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Tidssone"
-#: ../../install_steps_interactive.pm_.c:1032 ../../printerdrake.pm_.c:2347
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Skriver"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "ISDN-kort"
-#: ../../install_steps_interactive.pm_.c:1037
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Lydkort"
-#: ../../install_steps_interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV-kort"
-#: ../../install_steps_interactive.pm_.c:1081
-#: ../../install_steps_interactive.pm_.c:1106
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1082
-#: ../../install_steps_interactive.pm_.c:1106
-#: ../../install_steps_interactive.pm_.c:1119
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1106
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
#, fuzzy
msgid "Windows PDC"
msgstr "Fjern Windows(TM)"
-#: ../../install_steps_interactive.pm_.c:1084
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Lokale filer"
-#: ../../install_steps_interactive.pm_.c:1093
-#: ../../install_steps_interactive.pm_.c:1094 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Sett root-passord"
-#: ../../install_steps_interactive.pm_.c:1095
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Intet passord"
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Dette passordet er for enkelt (mĺ vćre minst %d tegn langt)"
-#: ../../install_steps_interactive.pm_.c:1106 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autentifikasjon"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "Autentisering LDAP"
-#: ../../install_steps_interactive.pm_.c:1115
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "LDAP grunnleggende dn"
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "LDAP-tjener"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "Autentisering NIS"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS-domene"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS-tjener"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1138
#, fuzzy
msgid "Authentication Windows PDC"
msgstr "Autentisering LDAP"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1139
#, fuzzy
msgid "Windows Domain"
msgstr "NIS-domene"
-#: ../../install_steps_interactive.pm_.c:1133
+#: ../../install_steps_interactive.pm_.c:1140
#, fuzzy
msgid "PDC Server Name"
msgstr "NTP-tjener"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1142
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
"add and reboot the server"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1169
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -5260,19 +5270,19 @@ msgstr ""
"en diskett\n"
"i den fřrste stasjonen og trykk \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1185
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Fřrste diskettstasjon"
-#: ../../install_steps_interactive.pm_.c:1186
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Andre diskettstasjon"
-#: ../../install_steps_interactive.pm_.c:1187 ../../printerdrake.pm_.c:1896
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Dropp"
-#: ../../install_steps_interactive.pm_.c:1192
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5300,7 +5310,7 @@ msgstr ""
"ditt?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1198
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5314,28 +5324,28 @@ msgstr ""
"det ĺ lage en oppstartsdiskett pĺ en 1,44 Mb diskett vil\n"
"antageligvis ikke gĺ, dan XFS trenger en veldig stor driver)."
-#: ../../install_steps_interactive.pm_.c:1206
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Beklager, ingen diskettstasjon tilgjengelig"
-#: ../../install_steps_interactive.pm_.c:1210
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Velg diskettstasjonen du řnsker ĺ bruke for ĺ lage oppstartsdisketten"
-#: ../../install_steps_interactive.pm_.c:1214
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
msgstr "Sett inn en diskett i %s"
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1224
msgid "Creating bootdisk..."
msgstr "Oppretter oppstartdiskett"
-#: ../../install_steps_interactive.pm_.c:1224
+#: ../../install_steps_interactive.pm_.c:1231
msgid "Preparing bootloader..."
msgstr "Klargjřr oppstartslaster"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5347,11 +5357,11 @@ msgstr ""
"Installasjonen vil fortsette, men du mĺ\n"
"bruke BootX for ĺ starte din maskin."
-#: ../../install_steps_interactive.pm_.c:1241
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Řnsker du ĺ bruke aboot?"
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5359,15 +5369,15 @@ msgstr ""
"Feil ved installasjon av aboot, \n"
"prřve ĺ installere selv om det řdelegger den fřrste partisjonen?"
-#: ../../install_steps_interactive.pm_.c:1251
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Installer oppstartslaster"
-#: ../../install_steps_interactive.pm_.c:1257
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Installasjon av oppstartslaster mislykket. Fřlgende feil oppsto:"
-#: ../../install_steps_interactive.pm_.c:1265
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5384,17 +5394,17 @@ msgstr ""
" Skriv sĺ: shut-down\n"
"Ved din neste oppstart burde du se oppstartslasteren."
-#: ../../install_steps_interactive.pm_.c:1299
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Sett inn en tom diskett i stasjon %s"
-#: ../../install_steps_interactive.pm_.c:1303
+#: ../../install_steps_interactive.pm_.c:1310
msgid "Creating auto install floppy..."
msgstr "Oppretter diskett for autoinstallasjon"
-#: ../../install_steps_interactive.pm_.c:1314
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5404,7 +5414,8 @@ msgstr ""
"\n"
"Řnsker du virkelig ĺ avslutte nĺ?"
-#: ../../install_steps_interactive.pm_.c:1325
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5436,11 +5447,16 @@ msgstr ""
"Informasjon om konfigurering av systemet ditt finnes i post\n"
"install-kapittelet i Official Mandrake Linux User's Guide."
-#: ../../install_steps_interactive.pm_.c:1342
+#: ../../install_steps_interactive.pm_.c:1345
+#, fuzzy
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakesoft.com/sales/contact"
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Oppretter diskett for autoinstallasjon"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5454,15 +5470,15 @@ msgstr ""
"\n"
"Du kanskje řnske ĺ kjřre installasjonen omigjen.\n"
-#: ../../install_steps_interactive.pm_.c:1349
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automatisert"
-#: ../../install_steps_interactive.pm_.c:1349
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Gjřr igjen"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Lagre pakkevalg"
@@ -5566,323 +5582,323 @@ msgstr ""
msgid "Re-submit"
msgstr "Re-submit"
-#: ../../keyboard.pm_.c:197 ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Tsjekkisk (QWERTZ)"
-#: ../../keyboard.pm_.c:198 ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Tysk"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:200 ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Spansk"
-#: ../../keyboard.pm_.c:201 ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finsk"
-#: ../../keyboard.pm_.c:202 ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Fransk"
-#: ../../keyboard.pm_.c:203 ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norsk"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Polsk"
-#: ../../keyboard.pm_.c:205 ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Russisk"
-#: ../../keyboard.pm_.c:207 ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Svensk"
-#: ../../keyboard.pm_.c:208 ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "UK-tastatur"
-#: ../../keyboard.pm_.c:209 ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "US-tastatur"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Albansk"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armensk (gammel)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armensk (skrivemaskin)"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armensk (phonétic)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidjansk (latin)"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgisk"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr "Bulgarsk (phonetic)"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "Bulgarsk (BDS)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brasiliansk (ABNT-2)"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Belarusian"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Sveisisk (tysk oppsett)"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Sveisisk (fransk oppsett)"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Tsjekkisk (QWERTY)"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Tysk (ingen dřde taster)"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Dansk"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norsk)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Svensk)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estlandsk"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgisk (\"Russisk\" oppsett)"
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgisk (\"Latinsk\" oppsett)"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Gresk"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Ungarsk"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Kroatisk"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Israelsk"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Israelsk (Phonetic)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iransk"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islansk"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Italiensk"
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Japansk 106 taster"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Koreansk tastatur"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latinamerikansk"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Liauisk AZERTY (gammel)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Liauisk AZERTY (ny)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litauisk \"nummer-rekke\" QWERTY"
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litauisk \"phonétic\" QWERTY"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "Lotvisk"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Makedonsk"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Hollansk"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Polsk (qwerty oppsett)"
-#: ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Polsk (qwertz oppsett)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugisisk"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Canadisk (Quebec)"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Romansk (qwertz)"
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Romansk (qwerty)"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Russisk (Yawerty)"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slovensk"
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovakisk (QWERTZ)"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovakisk (QWERTY)"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "Serbisk (cyrillic)"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr "Tamilsk"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thai-tastatur"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Tajik-tastatur"
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Tyrkisk (tradisjonell \"F\" modell)"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Tyrkisk (moderne \"Q\" modell)"
-#: ../../keyboard.pm_.c:288
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukrainsk"
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US-tastatur (internasjonal)"
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamesisk \"nummer-rekke\" QWERTY"
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Jugoslavisk (latin)"
-#: ../../keyboard.pm_.c:301
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr "Hřyre Alt tast"
-#: ../../keyboard.pm_.c:302
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr "Begge Shift taster samtidig"
-#: ../../keyboard.pm_.c:303
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr "Control og Shift taster samtidig"
-#: ../../keyboard.pm_.c:304
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr "CapsLock tast"
-#: ../../keyboard.pm_.c:305
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr "Ctrl og Alt taster samtidig"
-#: ../../keyboard.pm_.c:306
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr "Alt og Shift taster samtidig"
-#: ../../keyboard.pm_.c:307
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr "\" Menu\" tast"
-#: ../../keyboard.pm_.c:308
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr "Venstre \"Windows\" tast"
-#: ../../keyboard.pm_.c:309
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr "Hřyre \"Windows\" tast"
@@ -6026,51 +6042,51 @@ msgstr "ingen"
msgid "No mouse"
msgstr "Ingen mus"
-#: ../../mouse.pm_.c:440
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Vennligst test musen."
-#: ../../mouse.pm_.c:441
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "For ĺ aktivere musen,"
-#: ../../mouse.pm_.c:442
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "BEVEG HJULET DITT!"
-#: ../../my_gtk.pm_.c:690
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:725
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Avslutt"
-#: ../../my_gtk.pm_.c:725 ../../printerdrake.pm_.c:1612
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Neste ->"
-#: ../../my_gtk.pm_.c:726 ../../printerdrake.pm_.c:1610
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Forrige"
-#: ../../my_gtk.pm_.c:1058
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Er dette riktig?"
-#: ../../my_gtk.pm_.c:1122 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
msgid "Info"
msgstr "Info"
-#: ../../my_gtk.pm_.c:1143
+#: ../../my_gtk.pm_.c:1141
msgid "Expand Tree"
msgstr "Utvid tre"
-#: ../../my_gtk.pm_.c:1144
+#: ../../my_gtk.pm_.c:1142
msgid "Collapse Tree"
msgstr "Trekk sammen tre"
-#: ../../my_gtk.pm_.c:1145
+#: ../../my_gtk.pm_.c:1143
msgid "Toggle between flat and group sorted"
msgstr "Skift mellom flat og gruppesortert"
@@ -6120,7 +6136,7 @@ msgstr ""
"Ikke noe ethernet nettverksadapter har blitt oppdaget i systemet ditt.\n"
"Jeg kan ikke sette opp denne tilkoblingstypen."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:248
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Velg nettverksgrensesnitt"
@@ -6156,10 +6172,10 @@ msgid "Host name"
msgstr "Vertsnavn"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:179
-#: ../../network/netconnect.pm_.c:206 ../../network/netconnect.pm_.c:229
-#: ../../network/netconnect.pm_.c:237
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Nettverkskonfigurasjonveiviser"
@@ -6346,7 +6362,7 @@ msgstr "Fřrste DNS-tjener (valgfri)"
msgid "Second DNS Server (optional)"
msgstr "Andre DNS-tjener (valgfri)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6354,7 +6370,7 @@ msgstr ""
"\n"
"Du kan koble ned eller rekonfigurere tilkoblingen din."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6362,11 +6378,11 @@ msgstr ""
"\n"
"Du kan rekonfigurere tilkoblingen din."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Du er for řyeblikket koblet opp mot Internett"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6374,32 +6390,32 @@ msgstr ""
"\n"
"Du kan koble opp mot Internett eller rekonfigurere tilkoblingen din."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Du er for řyeblikket ikke koblet opp mot Internett."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Koble til"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Koble fra"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr "Konfigurer tilkoblingen"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Internett tilkobling & konfigurasjon"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Vi skal nĺ konfigurere din %s tilkobling."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6418,12 +6434,12 @@ msgstr ""
"\n"
"Trykk OK for ĺ begynne."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:256
-#: ../../network/netconnect.pm_.c:276 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Nettverkskonfigurasjon"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6435,7 +6451,7 @@ msgstr ""
"Trykk OK for ĺ beholde din eksisterende konfigurasjon, eller avbryt for ĺ "
"rekonfigurere din internett og nettverkskonfigurasjon.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -6448,72 +6464,72 @@ msgstr ""
"Hvis du ikke řnsker ĺ bruke automatisk oppdagelse, fjern krysset\n"
"i boksen.\n"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Velg profilen som skal konfigureres"
-#: ../../network/netconnect.pm_.c:172
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Bruk automatisk detektering"
-#: ../../network/netconnect.pm_.c:173 ../../printerdrake.pm_.c:2541
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
#: ../../standalone/drakfloppy_.c:146
msgid "Expert Mode"
msgstr "Ekspertmodus"
-#: ../../network/netconnect.pm_.c:179 ../../printerdrake.pm_.c:145
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Finner enheter..."
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Normal modemtilkobling"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "oppdaget pĺ port %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN-tilkobling"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "oppdaget %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "ADSL oppkobling"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "oppdaget pĺ grensesnitt %s"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Kabeltilkobling"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "Kabeltilkobling detektert"
-#: ../../network/netconnect.pm_.c:194 ../../network/netconnect.pm_.c:203
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "Lokalt nettverksoppkobling"
-#: ../../network/netconnect.pm_.c:194 ../../network/netconnect.pm_.c:203
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "oppdaget ethernettkort"
-#: ../../network/netconnect.pm_.c:206
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Velg oppkoblingen du řnsker ĺ konfigurere"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6523,23 +6539,23 @@ msgstr ""
"Venligst velg den du řnsker ĺ bruker.\n"
"\n"
-#: ../../network/netconnect.pm_.c:231
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Internett tilkobling"
-#: ../../network/netconnect.pm_.c:237
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Řnsker du ĺ starte tilkoblingen din ved oppstart?"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Nettverkskonfigurasjon"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr "Nettverket mĺ startes pĺ nytt"
-#: ../../network/netconnect.pm_.c:256
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6550,7 +6566,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6560,7 +6576,7 @@ msgstr ""
"\n"
"Konfigurasjonen vil nĺ bli aktivert.\n"
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6568,7 +6584,7 @@ msgstr ""
"Etter at det er ferding, anbefaler vi at du restarter X\n"
"slik at du unngĺr problemer med at vertsnavnet forandres."
-#: ../../network/netconnect.pm_.c:271
+#: ../../network/netconnect.pm_.c:270
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -6808,16 +6824,16 @@ msgstr ""
"Den eneste lřsningen er ĺ flytte primćrpartisjonene dine for ĺ ha hullet ved "
"siden av de utvidede partisjonene"
-#: ../../partition_table.pm_.c:776
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Gjenoppretting fra fil %s mislykket: %s"
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Dĺrlig sikkerhetskopi-fil"
-#: ../../partition_table.pm_.c:800
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Feil ved skriving til fil %s"
@@ -7095,16 +7111,12 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Automatisk CUPS konfigurasjon"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Test porter"
-
-#: ../../printerdrake.pm_.c:163 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr "Legg til en ny skriver"
-#: ../../printerdrake.pm_.c:164
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7126,13 +7138,13 @@ msgstr ""
"deg tilgang til alle tilgjengelige skriverdrivere, drivervalg og skriver "
"tilkoblinger."
-#: ../../printerdrake.pm_.c:172 ../../printerdrake.pm_.c:199
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Lokal skriver"
-#: ../../printerdrake.pm_.c:173
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7164,11 +7176,11 @@ msgstr ""
"Bruk \"ekspertmodus\" til printerdrake nĺr du řnsker ĺ sette opp utskrift pĺ "
"en fjernskriver og printerdrake ikke lister den automatisk."
-#: ../../printerdrake.pm_.c:182
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr "Finn skrivere automatisk"
-#: ../../printerdrake.pm_.c:200
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7191,11 +7203,11 @@ msgstr ""
"vis du řnsker ĺ gjřre om standard valg (papir, utskriftkvalitet, .....), "
"velg \"Skriver\" i \"Hardware\" delen av Mandrake Control Center."
-#: ../../printerdrake.pm_.c:219
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr "Automatisk detektering av skrivere"
-#: ../../printerdrake.pm_.c:220
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7205,15 +7217,19 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:223 ../../printerdrake.pm_.c:225
-#: ../../printerdrake.pm_.c:226
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "Utfřr automatisk detektering"
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr "Sett opp skriver manuellt"
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Test porter"
+
#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
@@ -8504,7 +8520,7 @@ msgstr "mkraid mislykket (kanskje raidtool mangler?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ikke nok partisjoner for RAID nivĺ %d\n"
-#: ../../security/msec.pm_.c:48
+#: ../../security/msec.pm_.c:144
#, fuzzy
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
@@ -8516,7 +8532,7 @@ msgstr ""
"bruke, men mer utsatt: det mĺ ikke brukes pĺ en maskin koblet til andre\n"
"eller til Internett. Det er ingen adgang med passord."
-#: ../../security/msec.pm_.c:54
+#: ../../security/msec.pm_.c:150
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -8531,11 +8547,16 @@ msgstr ""
"oppkoblinger fra mange klienter. Merk: Hvis maskinen din kun er en klient pĺ "
"Internett burde du velge et lavere nivĺ."
-#: ../../security/msec.pm_.c:73 ../../standalone/drakfont_.c:680
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
#, fuzzy
msgid "Advanced Options"
msgstr "LAN-konfigurasjon"
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Valg"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Start ALSA (Advanced Linux Sound Architecture) lydsystem"
@@ -9058,11 +9079,11 @@ msgstr "http://www.mandrakesoft.com/sales/contact"
msgid "Installing packages..."
msgstr "Installerer pakke..."
-#: ../../standalone/XFdrake_.c:129
+#: ../../standalone/XFdrake_.c:131
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Vennligst logg ut og bruk sĺ Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:133
+#: ../../standalone/XFdrake_.c:135
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Vennligst logg inn i %s pĺ nytt for ĺ aktivere endringene"
@@ -9293,12 +9314,12 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:548
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Gratulerer!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9306,15 +9327,15 @@ msgstr ""
"Disketten har blitt generert.\n"
"Du kan nĺ gjennomfřre installasjonen pĺ nytt."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr "Autoinstallering"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr "Legg til en enhet"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr "Fjern siste enhet"
@@ -9368,10 +9389,11 @@ msgstr ""
msgid "Backup Other files..."
msgstr "Dĺrlig sikkerhetskopi-fil"
-#: ../../standalone/drakbackup_.c:871
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#, c-format
msgid ""
"\n"
-"Drakbackup activities via $daemon_media:\n"
+"Drakbackup activities via %s:\n"
"\n"
msgstr ""
@@ -9389,13 +9411,6 @@ msgid ""
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:895
-msgid ""
-"\n"
-"Drakbackup activities via $net_proto:\n"
-"\n"
-msgstr ""
-
#: ../../standalone/drakbackup_.c:900
msgid ""
"\n"
@@ -9756,10 +9771,6 @@ msgstr ""
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1981
-msgid "\n"
-msgstr ""
-
#: ../../standalone/drakbackup_.c:1983
#, c-format
msgid ""
@@ -10466,8 +10477,9 @@ msgid "connecting to Bugzilla wizard ..."
msgstr ""
#: ../../standalone/drakbug_.c:129
-msgid "No browser available please! Please install one"
-msgstr ""
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Skjermbilder vil vćre tilgjengelig etter installasjon i %s"
#: ../../standalone/drakconnect_.c:80
#, c-format
@@ -10988,19 +11000,19 @@ msgstr "Ikke noe nettverksadapter i systemet ditt!"
msgid "Post Uninstall"
msgstr "Avslutt installering"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Deling av Internett tilkobling"
-#: ../../standalone/drakgw_.c:122
+#: ../../standalone/drakgw_.c:123
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Deling av Internett tilkobling er slĺtt pĺ"
-#: ../../standalone/drakgw_.c:135
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -11012,31 +11024,31 @@ msgstr ""
"\n"
"Hva vil du gjřre?"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "slĺ av"
-#: ../../standalone/drakgw_.c:139 ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "avvis"
-#: ../../standalone/drakgw_.c:139 ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "Konfigurer pĺ nytt"
-#: ../../standalone/drakgw_.c:142
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Slĺr av tjenere..."
-#: ../../standalone/drakgw_.c:150
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Deling av Internett tilkobling er slĺtt av"
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Deling av Internett tilkobling er slĺtt av"
-#: ../../standalone/drakgw_.c:160
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -11048,19 +11060,19 @@ msgstr ""
"\n"
"Hva vil du gjřre?"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "slĺ pĺ"
-#: ../../standalone/drakgw_.c:171
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Slĺr pĺ tjenere..."
-#: ../../standalone/drakgw_.c:176
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Deling av Internett tilkobling er nĺ slĺtt pĺ."
-#: ../../standalone/drakgw_.c:197
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -11077,21 +11089,21 @@ msgstr ""
"Merk: du trenger et dedikert nettverksadapter for ĺ sette opp et lokalt "
"nettverk (LAN)."
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Grensesnitt %s (bruker modul %s)"
-#: ../../standalone/drakgw_.c:224
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Grensesnitt %s"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Ikke noe nettverksadapter i systemet ditt!"
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -11099,11 +11111,11 @@ msgstr ""
"Ikke noe ethernet nettverksadapter har blitt oppdaget i systemet ditt. "
"Vennligst kjřr verktřyet for maskinvarekonfigurasjon."
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Nettverksgrensesnitt"
-#: ../../standalone/drakgw_.c:240
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11118,7 +11130,7 @@ msgstr ""
"\n"
"Jeg er i ferd med ĺ sette opp ditt lokale nettverk (LAN) med dette adapteret."
-#: ../../standalone/drakgw_.c:249
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -11126,12 +11138,12 @@ msgstr ""
"Vennligst velg hvilket nettverksadapter som skal kobles til ditt lokale "
"nettverk (LAN)."
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "Monitor er ikke konfigurert"
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11141,17 +11153,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Konfigurasjon av automatiske skritt"
-#: ../../standalone/drakgw_.c:274
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "Modifiser skriverkonfigurasjon"
-#: ../../standalone/drakgw_.c:276
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11162,7 +11174,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:288
+#: ../../standalone/drakgw_.c:289
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 C-Class Network that "
@@ -11174,33 +11186,33 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "CUPS tjener IP"
-#: ../../standalone/drakgw_.c:295
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:302
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:313
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Mulig LAN-adresse konflikt funnet i konfigurasjonen til %s!\n"
-#: ../../standalone/drakgw_.c:321
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Brannmurkonfigurasjon oppdaget!"
-#: ../../standalone/drakgw_.c:322
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -11208,20 +11220,20 @@ msgstr ""
"Advarsel! En eksisterende brannmurkonfigurasjon har blitt oppdaget. Du "
"trenger muligens ĺ konfigurere noe manuelt etter installasjon."
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Konfigurerer..."
-#: ../../standalone/drakgw_.c:330
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Konfigurerer script, installerer programvare, starter tjenere..."
-#: ../../standalone/drakgw_.c:366
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Problemer ved installering av pakke %s"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11231,23 +11243,23 @@ msgstr ""
"Du kan nĺ dele Internett-tilkobling med andre maskiner pĺ ditt lokale "
"nettverk ved ĺ bruke automatisk nettverkskonfigurasjon (DHCP)."
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "Oppsett har allerede blitt gjort, men er for řyeblikket slĺtt av."
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Oppsett har allerede blitt gjort, og er for řyeblikket slĺtt pĺ."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Deling av Internett tilkobling har aldri blitt konfigurert."
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Internett deling av tilkobling konfigurasjon"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11388,11 +11400,11 @@ msgstr ""
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
-#: ../../standalone/drakxtv_.c:151
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:152
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -11645,15 +11657,15 @@ msgstr ""
msgid "Save as.."
msgstr "Lagre Som..."
-#: ../../standalone/mousedrake_.c:69
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Vennligst velg din musetype."
-#: ../../standalone/mousedrake_.c:79
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "ingen serie_usb funnet\n"
-#: ../../standalone/mousedrake_.c:83
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Emulere tredje knapp?"
@@ -12275,6 +12287,9 @@ msgstr "Multimedia - CD-brenning"
msgid "Scientific Workstation"
msgstr "Vitenskaplig arbeidsstasjon"
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "fsck avsluttet med feilkode %d eller signal %d"
+
#~ msgid "Graphics card identification: %s\n"
#~ msgstr "Grafikk-kort identifisering: %s\n"
@@ -12339,26 +12354,6 @@ msgstr "Vitenskaplig arbeidsstasjon"
#~ msgid "Test again"
#~ msgstr "Test igjen"
-#, fuzzy
-#~ msgid "Use Hard Drive with daemon"
-#~ msgstr "Oppdaging av harddisk"
-
-#, fuzzy
-#~ msgid "Use FTP with daemon"
-#~ msgstr "Brukernavn"
-
-#, fuzzy
-#~ msgid "Package List to Install"
-#~ msgstr "Velg pakker for installering"
-
-#, fuzzy
-#~ msgid "proftpd"
-#~ msgstr "Apache og Pro-ftpd"
-
-#, fuzzy
-#~ msgid "xinetd"
-#~ msgstr "Avslutt"
-
#~ msgid "Setting security level"
#~ msgstr "Setter sikkerhetsnivĺ"
diff --git a/perl-install/share/po/pt_BR.po b/perl-install/share/po/pt_BR.po
index ec0a82624..4ad0b9498 100644
--- a/perl-install/share/po/pt_BR.po
+++ b/perl-install/share/po/pt_BR.po
@@ -1,38 +1,69 @@
-# DRAKX PT_BR PO FILE.
-# Copyright (C) 2000 MandrakeSoft
-# Andrei Bosco Bezerra Torres <andreibt@uol.com.br>, 1999-2000
+# DRAKBOOTDISK PT_BR PO FILE
+# Copyright (C) YEAR Free Software Foundation, Inc.
+# ANDREI BOSCO BEZERRA TORRES <ANDREIBT@UOL.COM.BR>, 2000.
# Bruno Dorfman Buys <brunobuys@zipmail.com.br>, 2002
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-02-20 23:55GMT -2\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2002-02-14 00:06GMT\n"
"Last-Translator: Bruno Dorfman Buys <brunobuys@zipmail.com.br>\n"
-"Language-Team: Portugues\n"
+"Language-Team: Portuguęs <pt@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 0.9.5\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Configurar todas as cabeças independentemente"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Usar extensăo Xinerama"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Configurar apenas placa \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB ou mais"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Escolha um servidor X"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "Servidor X"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Configuraçăo multi-cabeça"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -40,43 +71,44 @@ msgstr ""
"Seu sistema suporta configuraçăo de cabeça múltipla.\n"
"O que vocę quer fazer?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Placa Gráfica"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Selecione o tamanho da memória de sua placa gráfica"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Selecione uma placa gráfica"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "Configuraçăo do XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Escolha um servidor X"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Qual configuraçăo do XFree vocę quer ter?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "Servidor X"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Configurar todas as cabeças independentemente"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Escolha um servidor X"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Usar extensăo Xinerama"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "Servidor X"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Configurar apenas placa \"%s\" (%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Qual configuraçăo do XFree vocę quer ter?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s com aceleraçăo hardware 3D"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -85,32 +117,17 @@ msgstr ""
"Seu placa suporta aceleraçăo hardware 3D mas apenas com o XFree %s.\n"
"Sua placa é suportada pelo XFree %s que pode ter melhor suporte 2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Sua placa suporta aceleraçăo hardware 3D com o XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s com aceleraçăo hardware 3D"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Seu placa suporta aceleraçăo hardware 3D com o XFree %s,\n"
-"NOTE QUE O SUPORTE É EXPERIMENTAL E PODE TRAVAR O SEU COMPUTADOR."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s com aceleraçăo hardware 3D EXPERIMENTAL"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -121,31 +138,58 @@ msgstr ""
"NOTE QUE O SUPORTE É EXPERIMENTAL E PODE TRAVAR O SEU COMPUTADOR.\n"
"Sua placa é suportada pelo XFree %s que pode ter melhor suporte 2D."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Seu placa suporta aceleraçăo hardware 3D com o XFree %s,\n"
+"NOTE QUE O SUPORTE É EXPERIMENTAL E PODE TRAVAR O SEU COMPUTADOR."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installation display driver)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Configuraçăo do XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Selecione o tamanho da memória de sua placa gráfica"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Escolha as opçőes do server"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Manter alteraçőes?\n"
+"A configuraçăo atual é:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Escolha um monitor"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Personalizada"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Genérico"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Desfazer"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -168,511 +212,325 @@ msgstr ""
"monitor.\n"
" Se tiver dúvida, escolha características conservadoras."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Taxa de atualizaçăo horizontal"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Taxa de atualizaçăo vertical"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor năo configurado"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Placa gráfica ainda năo configurado"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Resoluçőes ainda năo escolhidas"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Vocę quer testar a configuraçăo?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Atençăo: testar essa placa gráfica pode travar o seu computador"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Testar configuraçăo"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 cores (8 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"tente mudar alguns parâmetros"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 mil cores (15 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Ocorreu um erro:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 mil cores (16 bits)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Saindo em %d segundos"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 milhőes de cores (24 bits)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "É essa a configuraçăo correta?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 bilhőes de cores (32 bits)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Ocorreu um erro, tente mudar alguns parâmetros"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Resoluçőes"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Resoluçăo"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Escolha a resoluçăo e número de cores"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Placa Gráfica: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Server XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Mais"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Cancelar"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Modo Avançado"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Mostrar tudo"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Vocę quer testar a configuraçăo?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Resoluçőes"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Testar configuraçăo"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Estilo do teclado: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Tipo do Mouse: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Dispositivo do mouse: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Sincronizaçăo Horizontal do Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Atualizaçăo Vertical do Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Placa Gráfica: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Identificaçăo de Placa Gráfica: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Memória gráfica: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Número de cores: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Resoluçăo: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Server XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Driver XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Preparando configuraçăo X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "O que vocę quer fazer?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Mudar Monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Mudar Placa Gráfica"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Mudar opçőes do Server"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Mudar Resoluçăo"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Mostrar informaçăo"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Testar de novo"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Sair"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Manter alteraçőes?\n"
-"A configuraçăo atual é:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X ao iniciar"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Eu posso fazer seu computador automaticamento iniciar no X após a\n"
"a inicializaçăo. Vocę gostaria de iniciar o X quando reiniciar?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Favor relogar em %s para ativar as mudanças"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr ""
-"Favor fazer um log out (sair) e entăo usar as teclas Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 cores (8 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mil cores (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mil cores (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milhőes de cores (24 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 bilhőes de cores (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB ou mais"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "VGA Padrăo, 640x480 a 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 a 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Compatível com 8514, 1024x768 a 87 Hz entrelaçado (sem 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 a 87 Hz entrelaçado, 800x600 a 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Super VGA Extendido, 800x600 a 60 Hz, 640x480 a 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "SVGA Năo-entrelaçado, 1024x768 a 60 Hz, 800x600 a 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "SVGA de Alta Frequęncia, 1024x768 a 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frequęncia que pode fazer 1280x1024 a 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frequęncia que pode fazer 1280x1024 a 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frequęncia que pode fazer 1280x1024 a 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor que pode fazer 1600x1200 a 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor que pode fazer 1600x1200 a 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Primeiro setor da partiçăo de boot"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Primeiro setor do drive (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "Instalaçăo do SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Onde vocę quer instalar o gerenciador de inicializaçăo?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "Instalaçăo do LILO/grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO com menu de texto"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO com menu gráfico"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Inicializaçăo pelo DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Principais opçőes do gerenciador de inicializaçăo"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Gerenciador de inicializaçăo a ser usado"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Instalaçăo do gerenciador de inicializaçăo"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Dispositivo de boot"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (năo funciona em BIOS antigas)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Compacto"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "Compacto"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Modo de Vídeo"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Tempo antes de entrar na imagem padrăo"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Senha"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Senha (de novo)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Restringir opçőes da linha de comando"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "restrito"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Limpar /tmp a cada inicializaçăo"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Especifique o tamanho da RAM se necessário (%d MB encontrados)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Permitir vários perfis"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Dar o tamanha da RAM em Mb"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Opçăo ``Restringir opçőes da linha de comando'' năo tem uso sem senha"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Favor tentar novamente"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "As senhas năo conferem"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Mensagem Inicial"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Delay do firmware aberto"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Tempo de espera do boot do kernel"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Permitir CD Boot?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Permitir OF Boot?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "SO padrăo?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -681,83 +539,83 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Aqui estăo as entradas diferentes.\n"
"Vocę pode adicionar mais ou modificar as existentes."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Adicionar"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Pronto"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Modificar"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Qual tipo de entrada vocę quer adicionar"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Outros SO (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Outros SO (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Outros SO (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Image"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Append"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Read-write"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Table"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Unsafe"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Rótulo"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Default"
@@ -789,53 +647,75 @@ msgstr "Vocę deve especificar uma partiçăo root"
msgid "This label is already used"
msgstr "Esse rótulo já está sendo utilizado"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Interfaces %s %s encontradas"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Vocę tem alguma outra?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Vocę tem alguma interface %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Năo"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Sim"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Ver informaçăo do hardware"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instalando driver para placa %s %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(módulo %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Agora vocę pode prover as opçőes para o módulo %s.\n"
+"As opçőes estăo no formato ``nome=valor nome2=valor2 ...''\n"
+"Para instância, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Opçőes do módulo:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Qual driver %s eu deveria tentar?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -852,37 +732,15 @@ msgstr ""
"máquina as informaçőes que ele precisa? Ocasionalmente, isso poderá travar\n"
"o computador, mas năo deve causar nenhum dano."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Auto detectar"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Especificar opçőes"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Agora vocę pode prover as opçőes para o módulo %s.\n"
-"As opçőes estăo no formato ``nome=valor nome2=valor2 ...''\n"
-"Para instância, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Opçőes do módulo:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -891,50 +749,55 @@ msgstr ""
"Falha carregando módulo %s.\n"
"Vocę quer tentar novamente com outros parâmentros?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "Acesso a programas X"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "Acesso a ferramentas rpm"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "Permitir \"su\""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "Acesso a arquivos administrativos"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(já adicionado %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Essa senha é muito simples"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Favor dar um nome de usuário"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"O nome do usuário deve conter apenas letras minúsculas, números `-' e `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Esse usuário já foi adicionado"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Esse usuário já foi adicionado"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Adicionar usuário"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -943,32 +806,32 @@ msgstr ""
"Entre com o usuário\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Aceitar usuário"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Nome real"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Nome do usuário"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Ícone"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -976,88 +839,68 @@ msgstr ""
"Eu posso configurar o seu computador para automaticamente logar um usuário.\n"
"Se vocę năo quiser utilisar esta funçăo, clique em \"Cancelar\"."
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Escolha o usuário:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Escolha o gerenciador de janelas para ele:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Favor escolher o idioma a ser utilizado."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr ""
"Vocę pode escolher outros idiomas que estarăo disponíveis após a instalaçăo"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Tudo"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Permite todos os usuários"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Personalizada"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "Sem compartilhamento"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "O pacote %s precisa ser instalado. Vocę deseja instalá-lo?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Vocę pode exportar usando SAMBA ou NFS. Qual deles vocę quer"
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Pacote obrigatório %s faltando"
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Cancelar"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr "Carregar Userdrake"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -1065,32 +908,32 @@ msgstr ""
"O compartilhamento por usuário usa o grupo \"fileshare\".\n"
"Vocę pode usar o userdrake para adicionar um usuário neste grupo."
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Bem-vindo ŕ Crackers"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Pobre"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Padrăo"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Alto"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Alto"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranóico"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1102,7 +945,7 @@ msgstr ""
"outros\n"
"ou ŕ internet. Năo existe acesso por senha."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1110,7 +953,7 @@ msgstr ""
"As senhas agora estăo ativadas, mas o uso como computador de rede ainda năo "
"é recomendado."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1120,20 +963,21 @@ msgstr ""
"para se conectar ŕ Internet como um cliente. Agora existe checagens de "
"segurança. "
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Com esse nível de segurança, o uso desse sistema como um servidor se tornou "
"possível.\n"
@@ -1141,40 +985,40 @@ msgstr ""
"servidor\n"
"que aceita conexăo de muitos clientes. "
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Baseado no nível anterior, mas agora o sistema está totalmente fechado.\n"
"As características de segurança estăo no máximo."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Escolha nível de segurança"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Nível de segurança"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Use lbsafe para servidores"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Uma livraria que defende contra ataques de buffer overflow e strings de "
"format"
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1199,54 +1043,54 @@ 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_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Bem-vindo ao GRUB o selecionador de sistema operacional!"
#. -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_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use as teclas %c e %c para selecionar a entrada que quiser."
#. -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_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Pressione entrar para entrar no SO selecionado, 'e' para editar os"
#. -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_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "comandos antes da inicializacao, ou 'c' para linha de comando."
#. -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_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr ""
"A inicializacao da entrada selecionada ocorrera automaticamente em %d "
"segundos."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "sem espaco suficiente em /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Menu Iniciar"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Vocę năo pode instalar o carregador de boot em uma %s partiçăo\n"
@@ -1259,15 +1103,19 @@ msgstr "ajuda ainda năo implementada.\n"
msgid "Boot Style Configuration"
msgstr "Configuraçăo do estilo de inicializaçăo"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
-msgstr "/_Arquivos"
+msgstr "/_Arquivo"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Arquivo/Sai_r"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>R"
@@ -1302,14 +1150,14 @@ msgstr "Modo yaboot"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Vocę está utilizando o %s como gerenciador de inicializaçăo.\n"
"Clique em Configurar para abrir o auxiliar de configuraçăo."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Configurar"
@@ -1319,7 +1167,7 @@ msgid "System mode"
msgstr "Modo do sistema"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Executar o sistema X-Window na inicializaçăo"
#: ../../bootlook.pm_.c:148
@@ -1330,14 +1178,16 @@ msgstr "Năo, eu năo quero autologin"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Sim, eu quero autologin com esse (usuário, desktop)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "OK"
@@ -1385,7 +1235,7 @@ msgstr "Năo posso fazer screenshots antes de particionar"
msgid "Screenshots will be available after install in %s"
msgstr "Screenshots estarăo disponíveis depois da instalaçăo em %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "França"
@@ -1393,7 +1243,7 @@ msgstr "França"
msgid "Costa Rica"
msgstr "Costa Rica"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Bélgica"
@@ -1417,11 +1267,12 @@ msgstr "Noruega"
msgid "Sweden"
msgstr "Suécia"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Holanda"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "Itália"
@@ -1429,7 +1280,7 @@ msgstr "Itália"
msgid "Austria"
msgstr "Áustria"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "Estados Unidos"
@@ -1437,8 +1288,8 @@ msgstr "Estados Unidos"
msgid "Please make a backup of your data first"
msgstr "Favor primeiro fazer um backup de seus dados"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Ler com atençăo!"
@@ -1452,11 +1303,12 @@ msgstr ""
"é suficiente)\n"
"no início do disco"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Erro"
@@ -1464,11 +1316,11 @@ msgstr "Erro"
msgid "Wizard"
msgstr "Ajudante"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Escolher açăo"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1480,77 +1332,77 @@ msgstr ""
"Eu sugiro vocę a primeiro redimensionar a partiçăo\n"
"(clique nela, depois clique em \"Redimensinar\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Favor clicar em uma partiçăo"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Detalhes"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "Journalised FS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Vazio"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Outro"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Tipos de sistema de arquivo:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Criar"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tipo"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Use ``%s'' ao invés"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Deletar"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Use ``Desmontar'' primeiro"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1558,67 +1410,72 @@ msgstr ""
"Após alterar o tipo da partiçăo %s, todos os dados desta partiçăo serăo "
"perdidos"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Escolher partiçăo"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Escolher outra partiçăo"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Sair"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Mudar para modo expert"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Mudar para modo normal"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Desfazer"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Continuar mesmo assim?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Sair sem salvar"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Sair sem gravar na tabela de partiçăo?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "Vocę quer salvar as modificaçőes /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Auto alocar"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Limpar tudo"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Mais"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "Informaçăo de discos rigidos"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Todas as partiçőes primárias estăo sendo usadas"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Eu năo posso adicionar mais nenhuma partiçăo"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1626,31 +1483,31 @@ msgstr ""
"Para ter mais partiçőes, favor deletar uma para poder criar uma partiçăo "
"extendida"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "Gravar tabela de partiçăo"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "Restaurar tabela de partiçăo"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Recuperar tabela de partiçăo"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "Recuperar tabela de partiçăo"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "Auto-montagem da mídia removível"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Selecione arquivo"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1658,11 +1515,11 @@ msgstr ""
"O backup da tabela de partiçăo năo tem o mesmo tamanho\n"
"Ainda continuar?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Aviso"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1670,122 +1527,129 @@ msgstr ""
"Insira um disquete no drive\n"
"Todos os dados no disquete serăo perdidos"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Tentando resgatar tabela de partiçăo"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Mostrar informaçăo detalhada"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Ponto de Montagem"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opçőes"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Redimensionar"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Mover"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formatar"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Montar"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Adicionar ao RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Adicionar ao LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Desmontar"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Remover do RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Remover do LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Modificar RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Usar para loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Criar uma nova partiçăo"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Setor inicial: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Tamanho em MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Tipo do Sistema de Arquivos: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Ponto de montagem: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Preferęncia: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+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/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "Remove o arquivo de loopback?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Mudar tipo de partiçăo"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Qual sistema de arquivos vocę quer?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Mudando de ext2 para ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Onde vocę quer montar o arquivo loopback %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Onde vocę quer montar o dispositivo %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1793,126 +1657,131 @@ msgstr ""
"Năo posso desmacar o ponto de montagem enquanto a partiçăo for\n"
"usada para loop back. Remova o loopback primeiro"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Computando limites do sistema de arquivo fat"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Redimensionando"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Esta partiçăo năo é redimensionável"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Vocę deveria fazer backup de todos os dados desta partiçăo"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Após redimensionar a particăo %s, todos os dados da partiçăo serăo perdidos"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Escolha o novo tamanho"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Novo tamanho em MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Qual disco vocę quer mover?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Setor"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Qual setor vocę quer mover?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Movendo"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Movendo partiçăo..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Escolha um RAID existente para adicionar"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "novo"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Escolha um LVM existente para adicionar"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "Nome LVM?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Essa partiçăo năo pode ser usada para loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Nome do arquivo loopback: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Dę um nome de arquivo"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Arquivo já utilizado por outro loopback, escolha outro"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Arquivo já existe. Utilizá-lo?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Opçőes de montagem"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Vários"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
-msgstr "dispositivo"
+msgstr "dispositivos"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "nível"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "tamanho do bloco"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Tenha cuidade: essa operaçăo é perigosa."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Qual tipo de particionamento?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "O pacote %s precisa ser instalado. Vocę deseja instalá-lo?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1924,7 +1793,7 @@ msgstr ""
"Ou vocę usa LILO e ele năo funcionará, ou vocę năo usará LILO e vocę năo "
"precisará de /boot"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1937,7 +1806,7 @@ msgstr ""
"Se vocę quer usar o gerenciador de inicializaçăo LILO, năo esqueça "
"deadicionar uma partiçăo /boot."
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1947,130 +1816,130 @@ msgstr ""
"O gerenciador de inicializaçăo năo consegue acessá-lo sem uma\n"
"partiçăo /boot. Entăo năo esqueça de adicioná-la"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "A tabela de partiçăo do drive %s está para ser gravada no disco!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Vocę precisará reiniciar antes que as modificaçőes tenham efeito"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Após formatar a partiçăo %s, todos os dados desta partiçăo serăo perdidos"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Formatando"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatando arquivo loopback %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Formatando partiçăo %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Esconder arquivos"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Mover arquivos para nova partiçăo"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"Diretório %s já contém alguns dados\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "Movendo arquivos para a nova partiçăo"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Copiando %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Removing %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "Partiçăo %s agora chama-se %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Dispositivo: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Letra do drive no DOS: %s (apena um palpite)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Tipo: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Nome: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Iniciar: setor: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Tamanho: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s setores"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cilindro %d ao cilindro %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Formatado\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Năo formatado\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Montado\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2079,7 +1948,7 @@ msgstr ""
"Loopback file(s):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2087,27 +1956,27 @@ msgstr ""
"Partiçăo de inicializaçăo padrăo\n"
" (para inicializaçăo do MS-DOS, năo para o lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Nível %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Tamanho do bloco %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "Discos RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Nome do arquivo loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2119,7 +1988,7 @@ msgstr ""
"partiçăo Driver, vocę provavelmente\n"
"năo deveria mexer nela.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2131,62 +2000,62 @@ msgstr ""
"Bootstrap é para o\n"
"boot-duplo do seu sistema.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Tamanho: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometria: %s cilindros, %s cabeças, %s setores\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Informaçăo: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "Discos LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tipo da tabela de partiçăo: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "no barramento %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Opçőes: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "Chave criptográfica do sistema de arquivos"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "Escolha a sua chave criptográfica do sistema de arquivos"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Essa chave é muito simples (deve ter ao menos %d caracteres)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "As chaves criptográficas năo conferem"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "Chave criptográfica"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "Chave criptográfica (de novo)"
@@ -2195,35 +2064,65 @@ msgid "Change type"
msgstr "Mudar tipo"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Favor clicar em uma mídia"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Autenticaçăo?"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Internet"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Nome do usuário"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Nome do usuário"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "Domínio NIS"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "Servidores de busca"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formataçăo de %s falhou"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Eu năo sei como formatar %s no tipo %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck falhou sem código de saída %d ou sinal %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "erro desmontando %s: %s"
@@ -2240,70 +2139,324 @@ msgstr ""
msgid "server"
msgstr "servidor"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Vocę năo pode usar JFS em partiçőes menores que 16MB"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Vocę năo pode usar ReiserFS em partiçőes menores que 32MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Pontos de montagem devem começar com uma /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Já existe uma partiçăo no ponto de montagem %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Vocę năo pode usar um Volume Lógivo LVM para o ponto de montagem %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Esse diretório deveria permanecer dentro do sistema de arquivo root"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Vocę precisa de um verdadeiro sistema de arquivo (ext2, reiserfs) para esse "
"ponto de montagem\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
"Vocę năo pode usar um sistema de arquivos criptografado como ponto de "
"montagem %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "Sem espaço livre suficiente para auto-alocaçăo"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr "Nada a fazer"
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Erro abrindo %s para gravaçăo: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Ocorreu um erro - nenhum dispositivo válido foi encontrado para criar novos "
"sistema de arquivos. Favor checar seu hardware para a causa desse problema"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Vocę năo tem nenhuma partiçăo!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Usar auto detecçăo"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Genérico"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Memória da Placa (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Formatando"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Mudar tipo"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Sair"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/Aj_uda"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/Aj_uda"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Ajuda/_Sobre..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Mouse"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Memória da Placa (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Cancelar"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Mouse"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Descriçăo"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Autenticaçăo?"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Selecione arquivo"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Dispositivo de gateway"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 botőes"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Detecçăo de discos rigidos"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Ver informaçăo do hardware"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Mostrar informaçăo"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Configurar mouse"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "detectado na porta %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Por favor aguarde"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d segundos"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Lendo banco de dados de drivers do CUPS"
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Auto detectar"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2317,7 +2470,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2471,9 +2624,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2866,7 +3018,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2878,9 +3030,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2960,21 +3111,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2990,9 +3140,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"A esse ponto, vocę precisa escolher onde vocę quer instalar o seu sistema\n"
"Mandrake Linux no seu disco rígido. Se estiver vazio ou se um sistema\n"
@@ -3080,9 +3230,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3278,38 +3427,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3475,11 +3618,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3546,7 +3689,7 @@ msgstr ""
"conhecimento sobre GNU/Linux.\n"
"Entăo, só escolha essa classe se souber o que está fazendo."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3574,7 +3717,7 @@ msgstr ""
"\n"
"Clique em \"Mais\" para ver uma lista completa de teclados disponíveis."
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3607,7 +3750,7 @@ msgstr ""
"selecionou \n"
"quaisquer adicionais, clique em \"OK\" para continuar."
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3638,7 +3781,7 @@ msgstr ""
"\"Cancelar\"\n"
"e escolher de novo."
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3646,23 +3789,23 @@ msgstr ""
"Favor selecionar a porta correta. Por exemplo, a porta COM1\n"
"no MS Windows é chamada ttyS0 no GNU/Linux."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3728,7 +3871,7 @@ msgstr ""
"Se seu computador năo está conectado a uma rede administrada, vocę deverá\n"
"esoclher \"Local Files\" para autenticaçăo."
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3750,7 +3893,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3758,7 +3901,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3838,7 +3981,7 @@ msgstr ""
"\"Adicionar\" cria uma nova entrada, e \"Feito\" vai para o próximo passo da "
"instalaçăo."
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3862,7 +4005,7 @@ msgstr ""
"ninguém, na qual vocę pode deletar as entradas correspondentes. Mas nesse\n"
"caso, vocę precisará de um disco de inicializaçăo para poder utilizá-los!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3877,29 +4020,28 @@ msgstr ""
"A năo ser que vocę saiba exatamente o que está fazendo, escolha \"Primeiro\n"
"setor do drive (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3908,7 +4050,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
#, fuzzy
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
@@ -3934,7 +4076,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"DrakX tentará localizar adaptadores PCI SCSI. Se DrakX encontrar\n"
@@ -3966,7 +4108,7 @@ msgstr ""
"do fabricante (se vocę tiver acesso ŕ Internet) ou no Microsoft Windows\n"
"(se vocę tivé-lo no seu sistema)."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
#, fuzzy
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
@@ -3977,9 +4119,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3991,7 +4132,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" 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"
@@ -4084,7 +4225,7 @@ msgstr ""
"se vocę\n"
"pressionar TAB para ver as opçőes de boot."
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
#, fuzzy
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
@@ -4112,9 +4253,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -4160,10 +4300,10 @@ msgstr ""
"o tempo \n"
"do Firmware Aberto expirar."
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -4171,12 +4311,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -4192,7 +4331,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
#, fuzzy
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
@@ -4204,7 +4343,7 @@ msgstr ""
"serăo\n"
"perdidos e năo poderăo ser recuperados."
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
#, fuzzy
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
@@ -4226,7 +4365,7 @@ msgstr ""
"Clique em \"Cancelar\" para cancelar essa operaçăo sem perder qualquer dado\n"
"e partiçăo presente nesse disco rígido."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4234,12 +4373,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4264,20 +4403,20 @@ msgstr ""
"\n"
"Vocę realmente quer instalar esses servidores?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "Năo pode usar broadcast sem domínio NIS"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Insira um disquete FAT formatado no drive %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Esse disquete năo está formatado como FAT"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4285,7 +4424,7 @@ msgstr ""
"Para usar a seleçăo salva de pacotes, entre na instalaçăo com ``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Erro lendo arquivo %s"
@@ -4315,7 +4454,7 @@ msgstr "Vocę tem que ter uma partiçăo swap"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -4323,60 +4462,60 @@ msgstr ""
"\n"
"Continuar mesmo assim?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Vocę tem que ter uma partiçăo swap"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Usar espaço livre"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Sem espaço livre suficiente para alocar as novas partiçőes"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Use partiçăo existindo"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Năo existe nenhuma tabela de partiçăo para usar"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Usar a partiçăo Windows para loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Qual partiçăo vocę quer usar para o Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Escolha os tamanhos"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Tamanho da partiçăo root em MB:"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Tamanho da partiçăo swap em MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Usar o espaço livre da partiçăo Windows"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Qual partiçăo vocę quer redimensionar?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Computando limites do sistema de arquivo do Windows"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4385,13 +4524,16 @@ msgstr ""
"O redimensionar FAT é incapaz de manipular sua partiçăo, \n"
"o seguinte erro ocorreu: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"Sua partiçăo Windows está muito fragmentada, favor rodar primeiro o "
"``defrag''"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -4411,56 +4553,56 @@ msgstr ""
"entăo reiniciar a instalaçăo. Vocę também deveria fazer backup de seus\n"
"dados. Quando tiver certeza, pressione Ok."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Quanto de espaço vocę quer deixar para o windows em"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "partiçăo %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Falha no redimensionamento FAT: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Năo existem partiçőes FAT para redimensionar ou para usar como loopback (ou "
"năo existe espaço suficiente)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Apague disco inteiro"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Remover Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
"Vocę tem mais de um disco rígido, em qual deles vocę quer instalar o linux?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"Todas as partiçőes que existem e todos os dados serăo perdidos em disco %s"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Particionamento de disco personalizada"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Usar fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4469,11 +4611,11 @@ msgstr ""
"Vocę pode agorar particionar %s.\n"
"Quando terminar, năo esqueça de salvar usando `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Vocę năo tem espaço livre na sua partiçăo Windows"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Eu năo achei espaço para instalaçăo"
@@ -4481,16 +4623,16 @@ msgstr "Eu năo achei espaço para instalaçăo"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "O particionador DrakX encontrou as soluçőes seguintes:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "O particionamento falhou: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Trazendo (acessando) a rede"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Fechando (desconectando) a rede"
@@ -4502,12 +4644,12 @@ msgstr ""
"Um erro ocorreu, mas eu năo sei como lidar com ele.\n"
"Continue a seu próprio risco."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Ponto de montagem %s duplicado"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4519,12 +4661,12 @@ msgstr ""
"Cheque o cdrom em um computador instalado usando \"rpm -qpl Mandarke/RPMS/*."
"rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Bem-vindo ŕ %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Nenhum drive de disquete disponível"
@@ -4534,9 +4676,9 @@ msgstr "Nenhum drive de disquete disponível"
msgid "Entering step `%s'\n"
msgstr "Entrando no passo `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4546,204 +4688,158 @@ msgstr ""
"usando o\n"
"modo texto. Para isso, aperte `F1' na tela de inicializaçăo e escreva `text'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Classe de Instalaçăo"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Por favor escolhe uma das seguintes classes de instalaçăo:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr ""
-"O tamanho total dos grupos que vocę selecionou é de aproximadamente %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Se vocę deseja instalar menos que esse tamanho,\n"
-"selecionar a percentagem de pacotes que vocę quer instalar.\n"
-"\n"
-"Uma baixa percentagem irá instalar apenas os pacotes mais importantes;\n"
-"uma percentagem de 100%% irá instalar todos os pacotes selecionados."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Vocę tem espaço em seu disco para apenas %d%% desses pacotes.\n"
-"\n"
-"Se vocę deseja instalar menos que esse tamanho,\n"
-"selecionar a percentagem de pacotes que vocę quer instalar.\n"
-"Uma baixa percentagem irá instalar apenas os pacotes mais importantes;\n"
-"uma percentagem de %d%% irá instalar o máximo de pacotes possível."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Vocę será capaz de escolhe-los mais precisamente no próximo passo"
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Percentagem de pacotes a serem instalados"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Seleçăo de Grupo de Pacotes"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Seleçăo individual de pacotes"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Tamanho total: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Pacote defeituoso"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Nome: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Versăo: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Tamanho: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Importância: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Vocę năo pode selecionar esse pacote pois năo existe espaço livre para "
"instalá-lo"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Os seguintes pacotes serăo instalados"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Os seguintes pacotes serăo removidos"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Vocę năo pode selecionar/deselecionar esse pacote"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Esse é um pacote obrigatório, năo pode ser deselecionado"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Vocę năo pode deselecionar esse pacote. Ele já está instalado"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Esse pacote tem que ser atualizado\n"
"Tem certeza que vocę quer deselecioná-lo?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Vocę năo pode deselecionar essa pacote. Ele tem que ser atualizado"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Mostra automaticamente os pacotes selecionados"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Instalar"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Salvar em disquete"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
#, fuzzy
msgid "Updating package selection"
msgstr "Salvar seleçăo de pacotes"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
#, fuzzy
msgid "Minimal install"
msgstr "Sair da instalaçăo"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Escolha os pacotes que vocę quer instalar"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Instalando"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Estimando"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Tempo restante "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Por favor aguarde, preparando instalaçăo"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d pacotes"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Instalando pacote %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Aceitar"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Recusar"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4759,17 +4855,17 @@ msgstr ""
"Se vocę năo o tiver, aperte em Cancelar para evitar a instalaçăo desse Cd-"
"Rom."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Continuar mesmo assim?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Houve um erro ordenando os pacotes:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Houve um erro instalando os pacotes:"
@@ -4842,11 +4938,11 @@ msgstr "Ocorreu um erro"
msgid "Do you really want to leave the installation?"
msgstr "Vocę quer reiniciar a rede"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Contrato de licença"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4861,7 +4957,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -4979,7 +5075,7 @@ msgstr ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -5084,113 +5180,117 @@ msgstr ""
"Paris - France.\n"
"For any question on this document, please contact MandrakeSoft S.A. \n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Teclado"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Favor escolher o layout do seu teclado."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Aqui está a lista completa de teclados disponíveis"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Qual classe de instalaçăo vocę quer?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Instalar/Atualizar"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Isso é uma instalaçăo ou atualizaçăo?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Recomendado"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Expert"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade"
msgstr "Atualizar"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr "Salvar seleçăo de pacotes"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Favor escolher o tipo do seu mouse."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Porta do Mouse"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Favor escolher em qual porta serial seu mouse está conectado."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Emulaçăo dos botőes"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Emulaçăo dos 2 botőes"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Emulaçăo dos 3 botőes"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Configurando cartőes PCMCIA..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Configurando IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "sem partiçőes disponíveis"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Escanenado partiçőes para encontrar pontos de montagem"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Escolha os ponto de montagem"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -5200,7 +5300,7 @@ msgstr ""
"serăo perdidos!). A outra soluçăo é năo deixar o DrakX modificar a tabela\n"
"de particăo. (o erro é %s)\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -5208,139 +5308,142 @@ msgstr ""
"O DiskDrake falhou na leitura da tabela de partiçăo.\n"
"Continue a seu próprio risco!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Escolha as partiçőes que vocę quer formatar"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Partiçăo Root"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Qual a partiçăo root (/) do seu sistema?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Vocę precisa reiniciar para que as modificaçőes na tabela de partiçăo tenham "
"efeito"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Escolha as partiçőes que vocę quer formatar"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Checar blocos defeituosos?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Formatando partiçőes"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Criando e formatando arquivo %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Sem swap suficiente para completar a instalaçăo, favor adicionar mais"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Procurando por pacotes disponíveis"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
+msgstr "Procurando por pacotes disponíveis"
+
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Procurando pacotes ŕ atualizar"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Vocę năo pode deselecionar esse pacote. Ele já está instalado"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Seu sistema năo tem espaço suficiente para instalçăo ou atualizaçăo (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Completa (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Mínima (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Recomendada (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
#, fuzzy
msgid "Load from floppy"
msgstr "Restaurar do disquete"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Loading from floppy"
msgstr "Restaurar do disquete"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Package selection"
msgstr "Seleçăo de Grupo de Pacotes"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Insira um disquete no drive %s"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Salvar em disquete"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "O tamanho escolhido é maior que o espaço disponível"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5350,16 +5453,16 @@ msgstr ""
"Se vocę năo tiver nenhum desses CDs, clique em Cancelar.\n"
"Se apenas alguns CDs estiverem faltando, desmarque-os, entăo clique em Ok."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom rotualdo \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Preparando instalaçăo"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -5368,23 +5471,23 @@ msgstr ""
"Instalando pacote %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Configuraçăo pós-instalaçăo"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Insira um disquete no drive %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Insira um disquete vazio no drive %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5456,168 +5559,199 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Contactando o mirror (espelho) para pegar a lista de pacotes disponíveis"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Escolha um mirror (espelho) de onde pegar os pacotes"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
"Contactando o mirror (espelho) para pegar a lista de pacotes disponíveis"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Qual é o seu fuso horário?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "O seu relógio do hardware está configurado como GMT?"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
#, fuzzy
msgid "NTP Server"
msgstr "Servidor NIS"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Sevidor CUPS remoto"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Nenhuma impressora"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Vocę tem alguma outra?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Sumário"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Mouse"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Fuso horário"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Impressora"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "Placa ISDN"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Placa de som"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "Placa de TV"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "NIS"
msgstr "Usar NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Remover Windows(TM)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Local files"
msgstr "Impressora local"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Especificar senha do root"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Nenhuma senha"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr "Essa senha é muito simples (deve ter ao menos %d caracteres)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autenticaçăo?"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
#, fuzzy
msgid "Authentication LDAP"
msgstr "Autenticaçăo?"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "LDAP Server"
msgstr "servidor"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
#, fuzzy
msgid "Authentication NIS"
msgstr "Autenticaçăo NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "Domínio NIS"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "Servidor NIS"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Autenticaçăo?"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Domínio NIS"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "Servidor NIS"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -5649,19 +5783,19 @@ msgstr ""
"disquete\n"
"no drive e aperte em \"OK\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Primeiro drive de disquete"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Segundo drive de disquete"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Pular"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5688,7 +5822,7 @@ msgstr ""
"com danos severos. Vocę quer criar um disco de inicializaçăo?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5697,30 +5831,30 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Desculpe, nenhum drive de disquete disponível"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Escolha o drive de disquete que vocę quer usar para criar o disco de "
"inicializaçăo"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Insira um disquete no drive %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Criando disco de inicializaçăo"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Preparando gerenciador de inicializaçăo"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5728,11 +5862,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Vocę quer usar o aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5740,18 +5874,18 @@ msgstr ""
"Erro instalando o aboot, \n"
"tentar forçar a instalaçăo, mesmo que isso destrua a primeira partiçăo?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
#, fuzzy
msgid "Installing bootloader"
msgstr "Instalar gerenciador de inicializaçăo"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"A instalaçăo do gerenciador de inicializaçăo falhou. Ocorreram os seguintes "
"erros:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, fuzzy, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5768,18 +5902,17 @@ msgstr ""
" Entăo escreva: shut-down\n"
"No seu próximo boot, vocę deve ver o prompt do gerenciador de boot."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Insira um disquete vazio no drive %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Criando disquete de auto instalaçăo"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5789,8 +5922,8 @@ msgstr ""
"\n"
"Vocę realmente quer sair agora?"
-#: ../../install_steps_interactive.pm_.c:1337
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1332
+#, fuzzy, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5801,7 +5934,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5817,11 +5950,15 @@ msgstr ""
"Informaçőes sobre a configuraçăo do sistema estăo disponíveis no\n"
"capítulo pós-instalaçăo do Guia Oficial de Usuário Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Criar disquete de auto instalaçăo"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5835,15 +5972,15 @@ msgstr ""
"\n"
"Vocę pode preferir repetir a instalaçăo.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automático"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Repetir"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Salvar seleçăo de pacotes"
@@ -5872,421 +6009,405 @@ msgstr ""
msgid "Choose a file"
msgstr "Escolher açăo"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Avançado"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Por favor aguarde"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Informaçăo"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Expandir Árvore"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Colapsar Árvore"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Mudar entre organizaçăo plana ou em grupo"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Má escolha, tente novamente\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Sua escolha? (padrăo %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Sua escolha? (padrăo %s) "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Opçőes: %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr "Vocę quer usar o aboot?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Sua escolha? (padrăo %s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Tcheco (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Alemăo"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Espanhol"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Filandęs"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Francęs"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norueguęs"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Polonęs"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Russo"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Sueco"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Inglęs (UK)"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Americano (US)"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Albanian"
msgstr "Iraniano"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armęnio (velho)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armęnio (máquina de escrever)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armęnio (fonético)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidjani (latino)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belga"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armęnio (fonético)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Búlgaro"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brasileiro (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Bielorusso"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Suíço (layout Alemăo)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Suíço (layout Francęs)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Tcheco (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Alemăo (sem teclas mortas)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Dinamarquęs"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norueguęs)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estoniano"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgiano (layout \"Russo\")"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgiano (layout \"Latin\")"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Grego"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Húngaro"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Croata"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Israelense"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Israelense (Fonético)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iraniano"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islandęs"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Italiano"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Japonęs 106 teclas"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Koreano"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latino Americano"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Lituânio AZERTY (velho)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Lituânio AZERTY (novo)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituânio \"número de colunas\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituânio \"fonético\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
#, fuzzy
msgid "Latvian"
msgstr "Lugar"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Macedônio"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Holandęs"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Polonęs (layout QWERTY)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Polonęs (layout QWERTZ)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portuguęs"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Canadense (Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Russo (Yawerty)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Russo (Yawerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Russo (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Eslovęnio"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Eslováquio (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Eslováquio (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Azerbaidjani (cirílico)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Table"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Teclado Tailandęs"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Teclado Tailandęs"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turco (modelo \"F\" tradicional)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turco (modelo moderno \"Q\")"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ucraniano"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Americano (Internacional)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamita \"número de colunas\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Iugoslávio (latin/cirílico)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -6299,7 +6420,31 @@ msgstr "Monts circulares %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Remover os volumes lógicos primeiro\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Número do telefone"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Formatar partiçőes"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -6340,10 +6485,6 @@ msgstr "1 botăo"
msgid "Generic 2 Button Mouse"
msgstr "Mouse Genérico com 2 Botőes"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Genérico"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Roda"
@@ -6408,38 +6549,54 @@ msgstr "nenhum"
msgid "No mouse"
msgstr "Nenhum Mouse"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Favor testar o mouse"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Para ativar o mouse,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "MOVA SUA RODA!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Terminar"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Próximo ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Anterior"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Isto está correto?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Informaçăo"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Expandir Árvore"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Colapsar Árvore"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Mudar entre organizaçăo plana ou em grupo"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Conectar ŕ Internet"
@@ -6486,7 +6643,7 @@ msgstr ""
"Nenhum adaptador de rede ethernet foi detectado em seu sistema.\n"
"Eu năo posso configurar esse tipo de conexăo."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Escolha a interface de rede"
@@ -6501,7 +6658,7 @@ msgstr ""
msgid "no network card found"
msgstr "nenhuma placa de rede encontrada"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Configurando rede"
@@ -6517,15 +6674,15 @@ msgstr ""
"Seu nome do host deve ser um nome de host totalmente qualificado,\n"
"como por exemplo ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Host name (nome do host)"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Auxiliar de Configuraçăo da Rede"
@@ -6573,7 +6730,7 @@ msgstr "Configuraçăo ISDN"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Selecione o seu provedor.\n"
" Se năo estiver na lista, escolha Năo Listado"
@@ -6596,14 +6753,14 @@ msgstr "Resto do mundo"
#: ../../network/isdn.pm_.c:185
#, fuzzy
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Resto do mundo \n"
" sem Canal-D (linhas arrendadas)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Qual protocolo vocę quer usar?"
#: ../../network/isdn.pm_.c:199
@@ -6627,7 +6784,8 @@ 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"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Se vocę tiver uma placa ISA, os valores da próxima tela devem estar certos.\n"
@@ -6643,13 +6801,13 @@ msgid "Continue"
msgstr "Continuar"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Qual é a sua placa ISDN?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Eu detectei um placa ISDN PCI, mas năo sei qual é o tipo. Favor selecionar "
"uma placa PCI na próxima tela."
@@ -6667,47 +6825,47 @@ msgstr "Favor escolher em qual porta serial seu modem está conectado."
msgid "Dialup options"
msgstr "Opçőes dialup"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Nome da conexăo"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Número do telefone"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "ID de Login"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr ""
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Baseado em script"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Baseado em terminal"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Nome do domínio"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Primeiro Servidor DNS (opcional)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Segundo Servidor DNS (opcional)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6715,7 +6873,7 @@ msgstr ""
"\n"
"Vocę pode se disconectar ou reconfigurar sua conexăo."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6723,11 +6881,11 @@ msgstr ""
"\n"
"Vocę pode reconfigurar sua conexăo."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Vocę está conectado ŕ Internet."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6735,35 +6893,35 @@ msgstr ""
"\n"
"Vocę pode se conectar ŕ Internet ou reconfigurar sua conexăo."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Vocę năo está conectado ŕ Internet."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Conectar"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Desconectar"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "Configurar rede"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Conexăo e configuraçăo da Internet"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
"\n"
"Vocę pode se disconectar ou reconfigurar sua conexăo."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, fuzzy, c-format
msgid ""
"\n"
@@ -6777,12 +6935,12 @@ msgstr ""
"\n"
"Vocę pode se disconectar ou reconfigurar sua conexăo."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Configuraçăo da Rede"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6794,9 +6952,9 @@ msgstr ""
"Clique em Ok para manter sua configuraçăo, ou cancelar para reconfigurar sua "
"conexăo de Internet & Rede.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"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"
@@ -6806,93 +6964,99 @@ msgstr ""
"Estamos para configurar sua conexăo de rede/internet.\n"
"Se vocę năo quiser usar a auto detecçăo, desmarque a opçăo.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Escolha o perfil a configurar:"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Usar auto detecçăo"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Modo expert"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Detectando dispositivos..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Conexăo normal via modem"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "detectado na porta %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "Conexăo ISDN"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "detectado %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy
msgid "ADSL connection"
msgstr "Coneçăo LAN"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "detectado na interface %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Conexăo via cabo"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "cable connection detected"
msgstr "Conexăo via cabo"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "Coneçăo LAN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "placa(s) ethernet detectada(s)"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Escolha a ferramente que vocę quer usar"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
#, fuzzy
msgid "Internet connection"
msgstr "Compartilhamento da Conexăo ŕ Internet"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Vocę quer iniciar sua conexăo ao iniciar?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Configuraçăo da Rede"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6903,7 +7067,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6913,7 +7077,7 @@ msgstr ""
"\n"
"A configuraçăo agora será aplicada no seu sistema.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6921,16 +7085,16 @@ msgstr ""
"Quando isso terminar, nós recomendados vocę a reiniciar o seu\n"
"ambiente X para evitar o problema da mudança do nome do host."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"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."
@@ -6939,7 +7103,7 @@ msgstr ""
"Apenas aceite para manter esse dispositivo configurado.\n"
"A modificaçăo dos campos abaixo irá sobrepor essa configuraçăo."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6949,38 +7113,43 @@ msgstr ""
"Cada item deve ser entrando como endereço IP pontilhado-decimal\n"
"(por exemplo, 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Configurando dispositivo de rede %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (driver %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "Endereço IP"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "IP Automático"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Iniciado na inicializaçăo"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "O endereço IP deve ser no formato 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6992,64 +7161,64 @@ msgstr ""
"como por exemplo ``mybox.mylab.myco.com'' .\n"
"Vocę também pode entrar como o endereço IP de um gateway se vocę tiver um"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "Servidor DNS"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Dispositivo de gateway"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Configuraçăo de proxies"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "O proxy deve ser http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "O proxy deve ser ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Configuraçăo da Internet"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Vocę quer tentar se conectar ŕ Internet agora?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Testando sua conexăo..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "O sistema está conectado ŕ Internet."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Por razăo de segurança, vocę será desconectado agora."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -7057,114 +7226,119 @@ msgstr ""
"O sistema năo está conectado ŕ internet.\n"
"Tente reconfigurar sua conexăo."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Configuraçăo da Conexăo"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Favor preencher ou marcar os campos abaixo"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ da Placa"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Memória da Placa (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "IO da Placa"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "IO_O da Placa"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "IO_1 da Placa"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "O número do seu telefone"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Nome do provedor (ex: provedor.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Número do telefone do provedor"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "DNS 1 do provedor (opcional)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "DNS 2 do provedor (opcional)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
#, fuzzy
msgid "Choose your country"
msgstr "Escolha seu teclado"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Modo de discagem"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection speed"
msgstr "Tipo de conexăo: "
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Tipo de conexăo: "
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Nome da conta (nome do usuário)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Senha da conta"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "falhou ao montar: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Partiçăo extendida năo suportada nessa plataforma"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Vocę tem um buraco em sua tabela de partiçăo e eu năo posso usá-lo.\n"
"A única soluçăo é mover suas partiçőes primárias para ter o buraco próximo "
"das partiçőes extendidas"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Restauraçăo pelo arquivo %s falhou: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Arquivo de backup defeituoso"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Erro gravando no arquivo %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7174,193 +7348,193 @@ msgstr ""
"O teste que checa a integridade dos dados falhou. \n"
"Isso significa que gravar algo no disco resultará em lixo aleatório."
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "tem que ter"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "importante"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "muito bom"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "bom"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "talvez"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr ""
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr ""
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Impressora local"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Impressora remota"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "Sevidor CUPS remoto"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Servidor lpd remoto"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Impressora da rede (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Servidor de Impressăo"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Dispositivo de Impressăo URI"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr "Impressora local"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr "Impressora remota"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Erro gravando no arquivo %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(módulo %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP do servidor CUPS"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Default)"
@@ -7383,12 +7557,12 @@ msgstr ""
"nenhuma impressora aqui; elas serăo detectadas automaticamente.\n"
"Se tiver dúvida, selecione \"Servidor CUPS remoto\"."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "Configuraçăo LAN"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "Sevidor CUPS remoto"
@@ -7419,7 +7593,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "O endereço IP deve ser no formato 1.2.3.4"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
#, fuzzy
msgid "The port number should be an integer!"
msgstr "O número da porta deve ser numérico"
@@ -7428,7 +7602,7 @@ msgstr "O número da porta deve ser numérico"
msgid "CUPS server IP"
msgstr "IP do servidor CUPS"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Porta"
@@ -7437,22 +7611,13 @@ msgstr "Porta"
msgid "Automatic CUPS configuration"
msgstr "Configuraçăo do estilo de inicializaçăo"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "Detectando dispositivos..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Testar portas"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "Nenhuma impressora"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7465,14 +7630,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr "Impressora local"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7490,12 +7655,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "Impressora remota"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7509,11 +7674,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7523,35 +7688,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "Usar auto detecçăo"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "Impressora remota"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Testar portas"
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "detectado %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
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, ..., "
@@ -7559,43 +7728,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Dispositivo de Impressăo URI"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr "Impressora local"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7603,7 +7772,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7611,73 +7780,83 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Favor escolher em qual porta serial seu modem está conectado."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Dispositivo de Impressăo URI"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "Configuraçăo"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "Instalando pacote %s"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
+msgstr "Instalando pacote %s"
+
+#: ../../printerdrake.pm_.c:524
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing mtools packages..."
msgstr "Instalando pacote %s"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
#, fuzzy
-msgid "Making printer port available for CUPS ..."
+msgid "Making printer port available for CUPS..."
msgstr "Lendo banco de dados de drivers do CUPS"
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
#, fuzzy
-msgid "Reading printer database ..."
+msgid "Reading printer database..."
msgstr "Lendo banco de dados de drivers do CUPS"
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Opçőes da impressora lpd Remota"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7687,31 +7866,31 @@ msgstr ""
"dar o nome do host e o servidor de impressăo e o nome da\n"
"fila naquele servidor."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
#, fuzzy
msgid "Remote host name"
msgstr "Nome do host remoto"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
#, fuzzy
msgid "Remote printer name"
msgstr "Impressora remota"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
#, fuzzy
msgid "Remote host name missing!"
msgstr "Nome do host remoto"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Nome do host remoto"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Opçőes de Impressăo SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7727,35 +7906,35 @@ msgstr ""
"qualquer informaçăo aplicável sobre nome de usuário, senha e grupo de "
"trabalho."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "Host servidor SMB"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP do servidor SMB"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Nome compartilhado"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Grupo de trabalho"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7779,7 +7958,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7788,7 +7967,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7796,11 +7975,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Opçőes de Impressăo NetWare"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7813,28 +7992,28 @@ msgstr ""
"do host TCP/IP!) como também o nome da fila de impressăo para a impressora\n"
"que vocę deseja acessar como qualquer nome de usuário e senha aplicável."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Servidor de Impressăo"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Nome da Fila de Impressăo"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Opçőes da Impressora Socket"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
@@ -7845,60 +8024,56 @@ msgstr ""
"Para imprimir em uma impressora socket, vocę precisa prover\n"
"o nome do host da impressora e a número da porta (opcional)."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
#, fuzzy
msgid "Printer host name"
msgstr "Nome do host da impressora"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
#, fuzzy
msgid "Printer host name missing!"
msgstr "Nome do host da impressora"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Dispositivo de Impressăo URI"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
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 ""
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Nome da impressora"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Descriçăo"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Lugar"
-#: ../../printerdrake.pm_.c:1021
+#: ../../printerdrake.pm_.c:1045
#, fuzzy
-msgid "Preparing printer database ..."
+msgid "Preparing printer database..."
msgstr "Lendo banco de dados de drivers do CUPS"
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "Impressora remota"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7913,28 +8088,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "Isto está correto?"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "Impressora remota"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
#, fuzzy
msgid "Printer model selection"
msgstr "Conexăo da Impressora"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Qual tipo de impressora vocę tem?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7943,18 +8118,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Configuraçăo da Internet"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7964,12 +8139,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Configuraçăo da Internet"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7977,7 +8152,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7990,7 +8165,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -8000,34 +8175,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Vocę quer testar a impressăo?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
#, fuzzy
msgid "Test pages"
msgstr "Testar portas"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8035,45 +8210,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
#, fuzzy
msgid "No test pages"
msgstr "Sim, imprimir ambas as páginas de teste"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
#, fuzzy
msgid "Print"
msgstr "Impressora"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
#, fuzzy
msgid "Standard test page"
msgstr "Padrăo"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Imprimindo página(s) de teste..."
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
#, fuzzy
msgid "Photo test page"
msgstr "Imprimindo página(s) de teste..."
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "Imprimindo página(s) de teste..."
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Imprimindo página(s) de teste..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8089,7 +8264,7 @@ msgstr ""
"\n"
"A impressăo funcionou corretamente?"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8099,16 +8274,16 @@ msgstr ""
"pode demorar um pouco até a impressora começar.\n"
"A impressăo funcionou corretamente?"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "Nenhuma impressora"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8117,15 +8292,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
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 ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -8134,49 +8309,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, 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\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8186,7 +8361,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -8195,30 +8370,41 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Fechar"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Fechando (desconectando) a rede"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Fechando (desconectando) a rede"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Fechando (desconectando) a rede"
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Fechando (desconectando) a rede"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Fechar"
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "Opçőes da impressora"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -8226,38 +8412,38 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
#, fuzzy
-msgid "Reading printer data ..."
+msgid "Reading printer data..."
msgstr "Lendo banco de dados de drivers do CUPS"
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Configuraçăo da Internet"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8267,51 +8453,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8319,61 +8505,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "O nome da impressora deve conter apenas letras, números e o símbolo _"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid "New printer name"
msgstr "Nenhuma impressora"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, 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 ""
-#: ../../printerdrake.pm_.c:1887
+#: ../../printerdrake.pm_.c:1935
#, fuzzy
-msgid "Refreshing printer data ..."
+msgid "Refreshing printer data..."
msgstr "Lendo banco de dados de drivers do CUPS"
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr ""
-#: ../../printerdrake.pm_.c:1896
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
-msgid "Starting network ..."
+msgid "Starting network..."
msgstr "Iniciando sua conexăo..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr "Configurar rede"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "Monitor năo configurado"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8381,12 +8567,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Configurando rede"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8396,34 +8582,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
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 ""
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
-msgid "Restarting printing system ..."
+msgid "Restarting printing system..."
msgstr "Qual sistema de impressăo vocę quer usar?"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "Alto"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "Paranóico"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8438,12 +8624,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Qual sistema de impressăo vocę quer usar?"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8457,69 +8643,69 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Selecionar Coneçăo da Impressora"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Qual sistema de impressăo vocę quer usar?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Configurar Impressora"
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr "Instalando pacote %s"
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Opçőes da impressora"
-#: ../../printerdrake.pm_.c:2318
+#: ../../printerdrake.pm_.c:2389
#, fuzzy
-msgid "Preparing PrinterDrake ..."
+msgid "Preparing PrinterDrake..."
msgstr "Lendo banco de dados de drivers do CUPS"
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Configurar Impressora"
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Vocę gostaria de configurar uma impressora?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8530,7 +8716,7 @@ msgstr ""
"Aqui estăo as filas de impressăo.\n"
"Vocę pode adicionar mais ou modificar as existentes."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8540,139 +8726,143 @@ msgstr ""
"Aqui estăo as filas de impressăo.\n"
"Vocę pode adicionar mais ou modificar as existentes."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Configurar rede"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Modo Normal"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Sair"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Vocę quer testar a configuraçăo?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
#, fuzzy
msgid "Modify printer configuration"
msgstr "Configuraçăo da Internet"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Vocę quer testar a configuraçăo?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
#, fuzzy
msgid "Printer connection type"
msgstr "Compartilhamento da Conexăo ŕ Internet"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
#, fuzzy
msgid "Printer name, description, location"
msgstr "Conexăo da Impressora"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
#, fuzzy
msgid "Print test pages"
msgstr "Imprimindo página(s) de teste..."
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "Vocę quer testar a configuraçăo?"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
#, fuzzy
msgid "Remove printer"
msgstr "Impressora remota"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
msgstr "Lendo banco de dados de drivers do CUPS"
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
#, fuzzy
msgid "Default printer"
msgstr "Impressora local"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Vocę quer reiniciar a rede"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr "Lendo banco de dados de drivers do CUPS"
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -8756,24 +8946,64 @@ msgstr "As senhas năo conferem"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Năo posso adicionar partiçăo ao RAID _formatado_ md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Năo posso gravar arquivo %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid falhou"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid falhou (talvez o raidtools esteja faltando)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Sem partiçőes suficientes para RAID nível %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Esse nível deve ser usado com cuidado. Ele faz o seu sistema mais fácil de "
+"usar,\n"
+"mas muito sensível: ele năo deve ser usado em uma máquina conectada a "
+"outros\n"
+"ou ŕ internet. Năo existe acesso por senha."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+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 ""
+"Com esse nível de segurança, o uso desse sistema como um servidor se tornou "
+"possível.\n"
+"A segurança agora está alta o suficiente para usar o sistema como um "
+"servidor\n"
+"que aceita conexăo de muitos clientes. "
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Configuraçăo LAN"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Opçőes"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Iniciar o sistema de som ALSA (Arquitetura Avançada de Som Linux)"
@@ -8832,7 +9062,7 @@ msgstr ""
"HardDrake executa uma detecçăo do hardware existente, e\n"
"opcionalmente configura um novo/alterado hardware."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8911,7 +9141,7 @@ msgstr ""
"Servidor Virtual Linux, utilizado para criar um servidor de alta\n"
"performance e alta acessibilidade."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -8990,7 +9220,7 @@ msgstr ""
"máquinas\n"
"que serăo os servidores para os protocolos que utilizam o mecanismo RPC."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -9090,7 +9320,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "Modo do sistema"
@@ -9213,6 +9443,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Centro de Controle"
@@ -9316,6 +9547,16 @@ msgstr ""
msgid "Installing packages..."
msgstr "Instalando pacote %s"
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr ""
+"Favor fazer um log out (sair) e entăo usar as teclas Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Favor relogar em %s para ativar as mudanças"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -9324,6 +9565,161 @@ msgstr ""
"Eu năo consigo ler sua tabela de partiçăo, é muito defeituosa\n"
"para mim. Eu irei tentar continuar limpando as partiçőes defeituosas"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Configuraçăo da Internet"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Servidor, Bancos de dados"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Servidor, Bancos de dados"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Adicionar usuário"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "Cliente DHCP"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#, fuzzy
+msgid "Help"
+msgstr "/Aj_uda"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Năo conectado"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Deletar"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Selecione arquivo"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Adicionar usuário"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "Cliente DHCP"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Configurando..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "reconfigurar"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Insira um disquete no drive %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Nenhum drive de disquete disponível"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
#, fuzzy
msgid "Error!"
@@ -9365,6 +9761,11 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Criando disquete de auto instalaçăo"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -9373,47 +9774,40 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Parabéns!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "Instalar"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "Adicionar um usuário"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "Formatando arquivo loopback %s"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9421,15 +9815,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9437,709 +9823,772 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "Erro lendo arquivo %s"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "Seleçăo de Grupo de Pacotes"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Escolha os pacotes que vocę quer instalar"
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "Fila remota"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Remover Windows(TM)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr "Nome do usuário"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Favor testar o mouse"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "Favor tentar novamente"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "Favor tentar novamente"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "Nenhuma senha"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Coneçăo LAN"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Selecionar Coneçăo da Impressora"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Favor escolher o layout do seu teclado."
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Favor clicar em uma partiçăo"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr "Escolha os pacotes que vocę quer instalar"
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Escolha os pacotes que vocę quer instalar"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "Favor testar o mouse"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "Interface de rede"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Tipo"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "Nome do usuário"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Escolha os pacotes que vocę quer instalar"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Favor escolher o idioma a ser utilizado."
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Detecçăo de discos rigidos"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Nome do usuário"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr "Roda"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr "Roda"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "Opçőes do módulo:"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Configuraçăo da Rede"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Escolha os pacotes que vocę quer instalar"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Escolha os pacotes que vocę quer instalar"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "Setup dos sistemas de arquivos"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Dispositivo do mouse: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save to Tape on device : %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, c-format
+msgid ""
+"\n"
+"- Save via %s on host : %s\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Opçőes"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Favor escolher em qual porta serial seu modem está conectado."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "Configuraçăo da Rede"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "Favor escolher o tipo do seu mouse."
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Favor testar o mouse"
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "Coneçăo LAN"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Selecionar Coneçăo da Impressora"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Restaurar do disquete"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "Favor escolher o tipo do seu mouse."
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "Outro"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "Instalar sistema"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "Restaurar do arquivo"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "Restaurar do arquivo"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "Personalizada"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/Aj_uda"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
#, fuzzy
msgid "Previous"
msgstr "<- Anterior"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr "Status:"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr "Restaurar do arquivo"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr "Próximo ->"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "Escolha pacotes a serem instalados"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Os seguintes pacotes serăo instalados"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "Favor escolher o idioma a ser utilizado."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "Favor escolher o idioma a ser utilizado."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "Favor escolher o idioma a ser utilizado."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "Salvar no arquivo"
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "Favor testar o mouse"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr "Escolha os pacotes que vocę quer instalar"
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Configuraçăo da Rede"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "Configuraçăo da Rede"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "Configuraçăo LAN"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "Configuraçăo LAN"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "Setup dos sistemas de arquivos"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -10171,7 +10620,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10180,7 +10629,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -10221,7 +10670,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -10249,12 +10698,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10271,7 +10725,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -10311,7 +10765,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -10322,7 +10776,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10335,7 +10789,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -10379,104 +10833,532 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "A Instalaçăo do %s falhou. Ocorreram os seguintes erros:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Ferramentas do Console"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "Centro de Controle"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "Expert"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Mouse"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Impressora remota"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Nome compartilhado"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Printerdrake"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Auxiliar de Configuraçăo da Rede"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Autenticaçăo?"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Seleçăo de Grupo de Pacotes"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Por favor aguarde"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Sair da instalaçăo"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "Porta"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Screenshots estarăo disponíveis depois da instalaçăo em %s"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Configuraçăo da Rede (%d adaptadores)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Perfil: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Apagar perfil..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Perfil a apagar:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Novo perfil..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Hostname:"
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Acesso ŕ Internet"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Tipo:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Gateway:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Interface:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Status:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Configurar Acesso ŕ Internet..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "Configuraçăo LAN"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Driver"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Interface"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protocolo"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "State"
+msgstr "Status:"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Configurar Rede Local (LAN)..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Ajudante..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Aplicar"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Por favor aguarde... Aplicando a configuraçăo"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Conectado"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Năo conectado"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Conectar..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Desconectar..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Vocę năo possui nenhuma interface configurada.\n"
+"Configure-as primeiro clicando em 'Configurar'"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "Configuraçăo LAN"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Adaptador %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Protocolo da inicializaçăo"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Iniciado na inicializaçăo"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "Cliente DHCP"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "activate now"
+msgstr "Ativo"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "deactivate now"
+msgstr "Ativo"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Vocę năo possui nenhuma conexăo ŕ Internet.\n"
+"Crie uma clicando em 'Configurar'"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Configuraçăo da conexăo ŕ Internet"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Configuraçăo da conexăo ŕ Internet"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Tipo de conexăo: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parâmetros"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Gateway"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Placa Ethernet"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "Cliente DHCP"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "utilizaçăo: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Nome do módulo"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Tamanho"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "criaçăo de discos de boot"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "padrăo"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Erro DrakFloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "versăo do kernel"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Principal"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Área Expert"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "argumentos opcionais mkinitrd"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Adicionar um módulo"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "forçar"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "se necessário"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "omitir módulos scsi"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "omitir módulos raid"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Remover um módulo"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Saída"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Criar o disco"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Certifique-se de que há um disco no dispositivo %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"Năo há nenhum disco no dispositivo %s.\n"
+"Por favor insira um disco."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Incapaz de dividir: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Incapaz de fechar adequadamente o mkbootdisk: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "nenhuma placa de rede encontrada"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr "Pronto"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr ""
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "Preparando instalaçăo"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
#, fuzzy
msgid "Restart XFS"
msgstr "restrito"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "restrito"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10485,122 +11367,121 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "Formatar partiçőes"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Configuraçăo LAN"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr "Ponto de Montagem"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Escolha as partiçőes que vocę quer formatar"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "Escritório"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr "Abortar"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr "Impressora"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "Instalar sistema"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "Selecione arquivo"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "Impressora remota"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
#, fuzzy
msgid "Initials tests"
msgstr "Mensagem Inicial"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr "Nenhum adaptador de rede em seu sistema!"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "Instalar"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr "Nenhum adaptador de rede em seu sistema!"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "Sair da instalaçăo"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Compartilhamento da Conexăo ŕ Internet"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "O Compartilhamento da Conexăo ŕ Internet está ativo"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10612,31 +11493,31 @@ msgstr ""
"\n"
"O que vocę gostaria de fazer?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "desativar"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "liberar"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "reconfigurar"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Desativando servidores..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "O Compartilhamento da Conexăo ŕ Internet agora está desativado."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "O Compartilhamento da Conexăo ŕ Internet está desativado"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10648,19 +11529,19 @@ msgstr ""
"\n"
"O que vocę gostaria de fazer?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "ativar"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Ativando servidores..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "O Compartilhamento da Conexăo ŕ Internet agora está ativo."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10676,21 +11557,21 @@ msgstr ""
"Nota: vocę precisa de um Adaptador de Rede dedicado para criar um Rede Local "
"(LAN)."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interface %s (usando módulo %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Interface %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Nenhum adaptador de rede em seu sistema!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10698,11 +11579,11 @@ msgstr ""
"Nenhum adaptador de rede foi detectado em seu sistema. Favor executar a "
"ferramenta de configuraçăo de hardware."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Interface de rede"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10717,18 +11598,18 @@ msgstr ""
"\n"
"Irei configurar sua Rede Local (LAN) com esse adaptador."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr "Favor escolher qual adaptador de rede será conectado ŕ su Rede Local."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "Monitor năo configurado"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10738,17 +11619,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Configuraçăo do estilo de inicializaçăo"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "Configuraçăo da Internet"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10759,7 +11640,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
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 C-Class Network that "
@@ -10771,34 +11652,34 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP do servidor CUPS"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Potencial conflinto de endereço LAN encontra na configuraçăo atual de %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Configuraçăo de Firewall detectado!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10806,20 +11687,20 @@ msgstr ""
"Atençăo! Uma configuraçăo de firewall foi detectada. Talvez vocę terá que "
"fazer alguma correçăo manual após a instalaçăo."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Configurando..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Configurando scripts, instalando programas, iniciando servidores..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Problemas instalando pacote %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10829,23 +11710,23 @@ msgstr ""
"Vocę agora pode compartilhar sua conexăo com outros computadores na sua Rede "
"Local (LAN), usando a configuraçăo automática de rede (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "A configuraçăo já foi feita, mas está desativada."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "A configuraçăo já foi feita e está desativada."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "O Compartilhamento de Conexăo ŕ Internet nunca foi configurado."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Configuraçăo do compartilhamento da Internet"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10860,213 +11741,6 @@ msgstr ""
"\n"
"Clique em ``Configurar'' se vocę quiser abrir o ajudante de configuraçăo."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Configuraçăo da Rede (%d adaptadores)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Perfil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Apagar perfil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Perfil a apagar:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Novo perfil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Hostname:"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Acesso ŕ Internet"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tipo:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Interface:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Configurar Acesso ŕ Internet..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Configuraçăo LAN"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Driver"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interface"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protocolo"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Configurar Rede Local (LAN)..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Ajudante..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Aplicar"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Por favor aguarde... Aplicando a configuraçăo"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Conectado"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Năo conectado"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Conectar..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Desconectar..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Vocę năo possui nenhuma interface configurada.\n"
-"Configure-as primeiro clicando em 'Configurar'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Configuraçăo LAN"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adaptador %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Protocolo da inicializaçăo"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Iniciado na inicializaçăo"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "Cliente DHCP"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Ativo"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Ativo"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Vocę năo possui nenhuma conexăo ŕ Internet.\n"
-"Crie uma clicando em 'Configurar'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Configuraçăo da conexăo ŕ Internet"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Configuraçăo da conexăo ŕ Internet"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Tipo de conexăo: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parâmetros"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Placa Ethernet"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "Cliente DHCP"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Opçőes do nível de segurança"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Centro de Controle"
@@ -11075,94 +11749,130 @@ msgstr "Centro de Controle"
msgid "Choose the tool you want to use"
msgstr "Escolha a ferramente que vocę quer usar"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\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 ""
+
+#: ../../standalone/drakxtv_.c:72
#, fuzzy
msgid "Canada (cable)"
msgstr "Canadense (Quebec)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "East Europe"
msgstr "Europa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "França"
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr "Islandęs"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "West Europe"
msgstr "Europa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr "serial"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Houve um erro instalando os pacotes:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -11206,7 +11916,7 @@ msgstr "Incapaz de iniciar a atualizaçăo on-line!!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
#, fuzzy
msgid "logdrake"
msgstr "draknet"
@@ -11221,7 +11931,7 @@ msgstr "/Arquivo/_Novo"
#: ../../standalone/logdrake_.c:102
msgid "<control>N"
-msgstr "<control>A"
+msgstr "<control>N"
#: ../../standalone/logdrake_.c:103
msgid "/File/_Open"
@@ -11255,13 +11965,9 @@ msgstr "/_Opçőes"
msgid "/Options/Test"
msgstr "/Opçőes/Teste"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/Aj_uda"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
-msgstr "/Ajuda/_Sobre"
+msgstr "/Ajuda/_Sobre..."
#: ../../standalone/logdrake_.c:118
msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
@@ -11323,7 +12029,7 @@ msgstr ""
msgid "Content of the file"
msgstr ""
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -11332,80 +12038,111 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr ""
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "Configuraçăo LAN"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache e Pro-ftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
+msgid "Apache World Wide Web Server"
msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Nome do domínio"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "Ext2"
+msgid "Ftp Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Servidor de mensagens postfiz, servidor de notícias Inn"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "Servidor NIS"
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "dispositivo"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Servidor de Impressăo"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "dispositivo"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "Formatando"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "Configuraçăo"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Salvar como..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Favor escolher o tipo do seu mouse."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "nenhum usb_serial encontrado\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Deseja emulaçăo de 3 botőes?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Lendo banco de dados de drivers do CUPS"
+
+#: ../../standalone/scannerdrake_.c:42
+#, fuzzy
+msgid "Detecting devices ..."
+msgstr "Detectando dispositivos..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -11449,6 +12186,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "Configuraçăo de Firewall"
@@ -11856,10 +12605,6 @@ msgid "Multimedia - Sound"
msgstr "Multimídia - Som"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Utilitários"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Documentaçăo"
@@ -11880,9 +12625,8 @@ msgid "Multimedia station"
msgstr "Estaçăo de Multimídia"
#: ../../share/compssUsers:999
-#, fuzzy
msgid "Configuration"
-msgstr "Configuraçăo LAN"
+msgstr "Configuraçăo"
#: ../../share/compssUsers:999
msgid "More Graphical Desktops (Gnome, IceWM)"
@@ -11965,10 +12709,6 @@ msgstr ""
"tin...) e para navegar na Web"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arquivamento, emuladores, monitoramento"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Finança Pessoal"
@@ -12016,40 +12756,160 @@ msgstr "Multimídia - Gravaçăo de CD"
msgid "Scientific Workstation"
msgstr "Estaçăo de Trabalho Científica"
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Abortar"
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "fsck falhou sem código de saída %d ou sinal %d"
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Identificaçăo de Placa Gráfica: %s\n"
-#, fuzzy
-#~ msgid "None"
-#~ msgstr "Pronto"
+#~ msgid "Choose options for server"
+#~ msgstr "Escolha as opçőes do server"
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Escolha o usuário:"
+#~ msgid "Monitor not configured"
+#~ msgstr "Monitor năo configurado"
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Impressora remota"
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Placa gráfica ainda năo configurado"
+
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Resoluçőes ainda năo escolhidas"
+
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "tente mudar alguns parâmetros"
+
+#~ msgid "An error occurred:"
+#~ msgstr "Ocorreu um erro:"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Saindo em %d segundos"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "É essa a configuraçăo correta?"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Ocorreu um erro, tente mudar alguns parâmetros"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "Server XFree86: %s"
+
+#~ msgid "Show all"
+#~ msgstr "Mostrar tudo"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Preparando configuraçăo X-Window"
+
+#~ msgid "What do you want to do?"
+#~ msgstr "O que vocę quer fazer?"
+
+#~ msgid "Change Monitor"
+#~ msgstr "Mudar Monitor"
+
+#~ msgid "Change Graphics card"
+#~ msgstr "Mudar Placa Gráfica"
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Agora vocę poder prover as opçőes para o módulo %s."
+#~ msgid "Change Server options"
+#~ msgstr "Mudar opçőes do Server"
-#~ msgid "Low"
-#~ msgstr "Baixo"
+#~ msgid "Change Resolution"
+#~ msgstr "Mudar Resoluçăo"
-#~ msgid "Medium"
-#~ msgstr "Médio"
+#~ msgid "Show information"
+#~ msgstr "Mostrar informaçăo"
+
+#~ msgid "Test again"
+#~ msgstr "Testar de novo"
+
+#~ msgid "Setting security level"
+#~ msgstr "Opçőes do nível de segurança"
+
+#~ msgid "Graphics card"
+#~ msgstr "Placa Gráfica"
+
+#~ msgid "Select a graphics card"
+#~ msgstr "Selecione uma placa gráfica"
+
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "Atençăo: testar essa placa gráfica pode travar o seu computador"
+
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "VGA Padrăo, 640x480 a 60 Hz"
+
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 a 56 Hz"
+
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "Compatível com 8514, 1024x768 a 87 Hz entrelaçado (sem 800x600)"
+
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 a 87 Hz entrelaçado, 800x600 a 56 Hz"
+
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Super VGA Extendido, 800x600 a 60 Hz, 640x480 a 72 Hz"
+
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "SVGA Năo-entrelaçado, 1024x768 a 60 Hz, 800x600 a 72 Hz"
+
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "SVGA de Alta Frequęncia, 1024x768 a 70 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Multi-frequęncia que pode fazer 1280x1024 a 60 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Multi-frequęncia que pode fazer 1280x1024 a 74 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Multi-frequęncia que pode fazer 1280x1024 a 76 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Monitor que pode fazer 1600x1200 a 70 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Monitor que pode fazer 1600x1200 a 76 Hz"
+
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr ""
+#~ "O tamanho total dos grupos que vocę selecionou é de aproximadamente %d "
+#~ "MB.\n"
+
+#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
+#~ msgstr ""
+#~ "Se vocę deseja instalar menos que esse tamanho,\n"
+#~ "selecionar a percentagem de pacotes que vocę quer instalar.\n"
+#~ "\n"
+#~ "Uma baixa percentagem irá instalar apenas os pacotes mais importantes;\n"
+#~ "uma percentagem de 100%% irá instalar todos os pacotes selecionados."
#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
+#~ "You have space on your disk for only %d%% of these packages.\n"
+#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
#~ msgstr ""
-#~ "Algumas melhoras para esse nível de segurança, a principal é que existem\n"
-#~ "mais avisos e testes de segurança."
+#~ "Vocę tem espaço em seu disco para apenas %d%% desses pacotes.\n"
+#~ "\n"
+#~ "Se vocę deseja instalar menos que esse tamanho,\n"
+#~ "selecionar a percentagem de pacotes que vocę quer instalar.\n"
+#~ "Uma baixa percentagem irá instalar apenas os pacotes mais importantes;\n"
+#~ "uma percentagem de %d%% irá instalar o máximo de pacotes possível."
+
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Vocę será capaz de escolhe-los mais precisamente no próximo passo"
+
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Percentagem de pacotes a serem instalados"
-#~ msgid "mount failed"
-#~ msgstr "falhou ao montar"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Escolha nível de segurança"
diff --git a/perl-install/share/po/ro.po b/perl-install/share/po/ro.po
index 82e30c776..5f54c6c07 100644
--- a/perl-install/share/po/ro.po
+++ b/perl-install/share/po/ro.po
@@ -2,110 +2,131 @@
# Copyright (c) 2000 MandrakeSoft
# Florin Grad <florin@mandrakesoft.com>, 1999-2000
# Dragos Marian Barbu <dragosb@softhome.net>, 2000
+# Ovidiu Constantin <ovidiu.soft@xnet.ro>, 2002
#
msgid ""
msgstr ""
"Project-Id-Version: DrakX 7.1\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
"PO-Revision-Date: 2000-04-30 2:55+0200\n"
-"Last-Translator: Florin Grad <florin@mandrakesoft.com>\n"
+"Last-Translator: Ovidiu Constantin <ovidiu.soft@xnet.ro>\n"
"Language-Team: romanian\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
-#: ../../Xconfigurator.pm_.c:249
-#, fuzzy
-msgid "Multi-head configuration"
-msgstr "Citirea configuraţiei"
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
-#: ../../Xconfigurator.pm_.c:250
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Carte grafică"
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Alegeţi o carte grafică"
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
-#: ../../Xconfigurator.pm_.c:286
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB sau mai mult"
+
+#: ../../Xconfig/card.pm_.c:201
msgid "Choose a X server"
msgstr "Alegeţi un server X"
-#: ../../Xconfigurator.pm_.c:286
+#: ../../Xconfig/card.pm_.c:201
msgid "X server"
msgstr "Server X"
-#: ../../Xconfigurator.pm_.c:293
+#: ../../Xconfig/card.pm_.c:225
#, fuzzy
-msgid "Choose a X driver"
-msgstr "Alegeţi un server X"
+msgid "Multi-head configuration"
+msgstr "Citirea configuraţiei"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "Server X"
+#: ../../Xconfig/card.pm_.c:226
+msgid ""
+"Your system support multiple head configuration.\n"
+"What do you want to do?"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, fuzzy, c-format
-msgid "XFree %s"
-msgstr "Server XFree86: %s"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Alegeţi memoria pentru cartea grafică"
+
+#: ../../Xconfig/card.pm_.c:341
+#, fuzzy
+msgid "XFree configuration"
+msgstr "Configuraţie post-install"
-#: ../../Xconfigurator.pm_.c:363
+#: ../../Xconfig/card.pm_.c:343
#, fuzzy
msgid "Which configuration of XFree do you want to have?"
msgstr "Ce tip de intrări doriţi să adăugaţi ?"
-#: ../../Xconfigurator.pm_.c:374
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
-"Your card is supported by XFree %s which may have a better support in 2D."
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
msgstr ""
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
msgstr ""
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Configuraţia reţelei"
+
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
+#, fuzzy, c-format
+msgid "XFree %s"
+msgstr "Server XFree86: %s"
+
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr ""
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
+#, c-format
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr ""
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -113,32 +134,53 @@ msgid ""
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
-#: ../../Xconfigurator.pm_.c:421
-#, fuzzy
-msgid "XFree configuration"
-msgstr "Configuraţie post-install"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Alegeţi memoria pentru cartea grafică"
+#: ../../Xconfig/card.pm_.c:445
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Alegeţi opţiunile pentru server"
+#: ../../Xconfig/main.pm_.c:60
+#, fuzzy, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr "Pastraţi configuraţia IP curentă"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Alegeţi un monitor"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+#, fuzzy
+msgid "Custom"
+msgstr "Personalizat"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Generic"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Anulează"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -160,518 +202,331 @@ msgstr ""
"distruge monitorul în acest fel.\n"
"Dacă nu sunteţi sigur, alegeţi parametri conservativi."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Rata de actualizare orizontală"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Rata de actualizare verticală"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor nu a fost încă configurat"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Cartea grafică nu a fost configurată încă"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Rezoluţia nu a fost încă aleasă"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Doriţi să testaţi configuraţia ?"
-
-#: ../../Xconfigurator.pm_.c:650
-#, fuzzy
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Atenţie: testul e periculos pentru această carte grafică"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Test de configuraţie"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 de culori (8 biţi)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"reîncercaţi după ce aţi modificat ceva parametri"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 mii de culori (15 biţi)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "A apărut o eroare:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 mii de culori (16 biţi)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Testul se va termina în %d secunde"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 milioane de culori (24 biţi)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Configuraţia e corectă"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 miliarde de culori (32 biţi)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Eroare, reîncercaţi după ce aţi modificat ceva parametri"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Rezoluţii"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Rezoluţie"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Alegeţi rezoluţia şi culorile"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Carte grafică: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Server XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-#, fuzzy
-msgid "More"
-msgstr "Deplasează"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Anulează"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-#, fuzzy
-msgid "Expert Mode"
-msgstr "Expert"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Afişaţi tot"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Doriţi să testaţi configuraţia ?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Rezoluţii"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Test de configuraţie"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Tastatura : %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Tip de mouse : %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Periferic pentru mouse: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Frecvenţa orizontala pentru monitor : %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Frecvenţa verticala pentru monitor : %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Carte grafică : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Carte grafică : %s\n"
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Memorie grafică : %s KB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, fuzzy, c-format
msgid "Color depth: %s\n"
msgstr "Opţiuni pentru culori:"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, fuzzy, c-format
msgid "Resolution: %s\n"
msgstr "Rezoluţii"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Server XFree86 : %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, fuzzy, c-format
msgid "XFree86 driver: %s\n"
msgstr "Server XFree86 : %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Pregătesc configuraţia X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Ce doriţi să faceţi ?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Alegeţi un alt tip de monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Alegeţi un alt tip de carte grafică"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Schimbaţi opţiunile server-ului"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Alegeţi o altă rezoluţie"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Afişează informaţiile"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Testează din nou"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Ieşire"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, fuzzy, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr "Pastraţi configuraţia IP curentă"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "Sever X la demaraj"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Pot să configurez calculatorul sa demareze automat X la demaraj.\n"
"Doriţi sa demaraţi X cînd redemaraţi ?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Vă rog reconectaţi-vă ca %s pentru a activa schimbările"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Vă rog delogaţi-vă şi folosiţi Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 de culori (8 biţi)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mii de culori (15 biţi)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mii de culori (16 biţi)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milioane de culori (24 biţi)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 miliarde de culori (32 biţi)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-#, fuzzy
-msgid "16 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-#, fuzzy
-msgid "32 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-#, fuzzy
-msgid "64 MB or more"
-msgstr "16 MB sau mai mult"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standard VGA, 640x480 la 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 la 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 Compatibil, 1024x768 la 87 Hz întreţesut (nu 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 la 87 Hz întreţesut, 800x600 la 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Super VGA Extins, 800x600 la 60 Hz, 640x480 la 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Ne-Întreţesut SVGA, 1024x768 la 60 Hz, 800x600 la 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Înaltă frecvenţă SVGA, 1024x768 la 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frecvenţă care e capabil de 1280x1024 la 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frecvenţă care e capabil de 1280x1024 la 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frecvenţă care e capabil de 1280x1024 la 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor care e capabil de 1600x1200 la 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor care e capabil de 1600x1200 la 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Primul sector al partiţiei de demaraj"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Primul sector al discului (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
#, fuzzy
msgid "SILO Installation"
msgstr "Instalare LILO/grub"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Unde doriţi să instalaţi Gestionarul de demaraj ?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "Instalare LILO/grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr ""
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr ""
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr ""
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr ""
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr ""
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
#, fuzzy
msgid "Yaboot"
msgstr "Root"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Opţiunile principale ale gestionarului de demaraj"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
#, fuzzy
msgid "Bootloader to use"
msgstr "Opţiunile principale ale gestionarului de demaraj"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
#, fuzzy
msgid "Bootloader installation"
msgstr "Opţiunile principale ale gestionarului de demaraj"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Periferic de demaraj"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (nu funcţionează cu BIOS-urile vechi)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Compact"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "compact"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Mod video"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Timp de aşteptare înaintea demarării imaginii standard"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Parola"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Parola (din nou)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Limitează opţiunile liniei de comandă"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "limitează"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Curăţă /tmp la fiecare demaraj"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Precizează cantintatea de RAM dacă e necesar (am găsit %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Activează profilurile multiple"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Introduceţi cantintatea de RAM în MB"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Opţiunea ``Limitează opţiunile liniei de comandă'' e inutilă fără parolă"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Încercaţi din nou"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Parolele nu corespund"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr ""
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr ""
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr ""
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr ""
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr ""
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
#, fuzzy
msgid "Default OS?"
msgstr "Standard"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -680,84 +535,84 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Acestea sunt diferitele intrările.\n"
"Puteţi să mai adăugaţi şi altele sau să schimbaţi cele existente."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Adaugă"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Gata"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
#, fuzzy
msgid "Modify"
msgstr "Modifică RAID"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Ce tip de intrări doriţi să adăugaţi ?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Alt SO (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Alt SO (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Alt SO (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Imagine"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Append"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Citeşte-Scrie"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabel"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Nesigur"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Etichetă"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Standard"
@@ -791,53 +646,75 @@ msgstr "Trebuie să aveţi o partiţie swap"
msgid "This label is already used"
msgstr "Această etichetă nu e permisă"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Am găsit interfaţele %s %s"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Aveţi o altă interfaţa?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Aveţi vreo interfaţă %s ?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Nu"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Da"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Vezi info hardware"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instalarea pilotului pentru %s cartea %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Puteţi furniza acum opţiunile modulului %s.\n"
+"Opţiunile sunt în formatul ``nume=valoare nume2=valoare2 ...''.\n"
+"de exemplu, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Opţiuni pentru module:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Care %s pilot să încerc?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -854,37 +731,15 @@ msgstr ""
"informaţiile necesare? Ocazional, interogarea poate bloca calculatorul,\n"
"dar n-ar trebui să produce nici o deteriorare."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Autoprobează"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Specificaţi opţiunile"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Puteţi furniza acum opţiunile modulului %s.\n"
-"Opţiunile sunt în formatul ``nume=valoare nume2=valoare2 ...''.\n"
-"de exemplu, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Opţiuni pentru module:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -893,51 +748,56 @@ msgstr ""
"Încăcarea modulului %s a eşuat.\n"
"Doriţi săîncercaţi cu alţi parametri ?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(deja adăugat %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Aceasta parolă e prea simplă"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Va rog înscrieţi numele utilizatorului"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Numele utilizatorului trebuie sa conţină numai caractere minuscule, numere, "
"`-' şi `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Acest nume de utilizator e deja adăugat"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Acest nume de utilizator e deja adăugat"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Adăugaţi un utilizator"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -946,32 +806,32 @@ msgstr ""
"Intraţi un utilizator\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Acceptare utilizator"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Nume real"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Numele utilizatorului"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Icoană"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr ""
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -980,126 +840,105 @@ msgstr ""
"Pot să configurez calculatorul sa demareze automat X la demaraj.\n"
"Doriţi sa demaraţi X cînd redemaraţi ?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
#, fuzzy
msgid "Choose the default user:"
msgstr "Alegeţi noua mărime"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
#, fuzzy
msgid "Choose the window manager to run:"
msgstr "Alegeţi unealta pe care doriţi să o folosiţi"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr "Vă rog, alegeţi o limbă."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr "Puteţi să alegeţi alte limbi care vor fi disponibile după instalare"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr ""
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr "Adăugaţi un utilizator"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-#, fuzzy
-msgid "Custom"
-msgstr "Personalizat"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr "Estimare"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Acest pachet trebuie actualizat\n"
"Sunteţi sigur că doriţi să-l deselectaţi ?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Anulează"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Bun venit Piraţilor"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Slab"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr ""
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Ridicat"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Ridicat"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoiac"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1111,7 +950,7 @@ msgstr ""
"calculator conectat cu altele de pe Internet. Nu există nici o parolă de\n"
"acces."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1119,7 +958,7 @@ msgstr ""
"Parolele sunt acum activate, dar utilizarea lui ca un calculator într-o\n"
"reţea tot nu recomandată."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1128,60 +967,61 @@ msgstr ""
"Acest a nivelul de securitate standard recomandat pentru un calculator care\n"
"va fi conectat ca un client la Internet. Nu există verificări de securitate."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Cu acest nivel de securitate, utilizarea acestui calculator ca server\n"
"devine posibilă. Securitatea este destul de ridicată pentru a folosi acest\n"
"sistem ca server care acceptă conexiuni de la mulţi clienţi."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Avem funcţionalităţile nivelului 4 de securitate dar acum sistemul e\n"
"complet închis. Securitatea e la maximum."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Alegeţi nivelul de securitate"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
#, fuzzy
msgid "Security level"
msgstr "Alegerea nivelului de securitate"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Alegeţi opţiunile pentru server"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, fuzzy, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1208,7 +1048,7 @@ 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_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Bun venit la gestionarul de sisteme de operare GRUB!"
@@ -1222,7 +1062,7 @@ msgstr "Bun venit la gestionarul de sisteme de operare GRUB!"
#
#. -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_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Folositi tastele %c si %c pentru selectarea intrarii puse in evidenta."
@@ -1237,7 +1077,7 @@ msgstr "Folositi tastele %c si %c pentru selectarea intrarii puse in evidenta."
#
#. -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_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Apasati enter pentru a demara OS-ul selectat, 'e' pentru a edita"
@@ -1251,7 +1091,7 @@ msgstr "Apasati enter pentru a demara OS-ul selectat, 'e' pentru a edita"
#
#. -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_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "comandele inainte de a demara, sau 'c' pentru linia de comanda."
@@ -1265,27 +1105,27 @@ msgstr "comandele inainte de a demara, sau 'c' pentru linia de comanda."
#
#. -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_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Intrarea selectata va demara dupa %d secunde"
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "nu e destul spaţiu în /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Meniu de Start"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Unde doriţi să instalaţi Gestionarul de demaraj ?"
@@ -1299,18 +1139,21 @@ msgstr ""
msgid "Boot Style Configuration"
msgstr "Configuraţie post-install"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
-#, fuzzy
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
-msgstr "Fişiere:\n"
+msgstr "/_Fişier"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
-msgstr ""
+msgstr "/Fişier/_Ieşire"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
-msgstr ""
+msgstr "<control>Q"
#: ../../bootlook.pm_.c:91
msgid "NewStyle Categorizing Monitor"
@@ -1347,12 +1190,12 @@ msgstr "Periferic de demaraj"
#: ../../bootlook.pm_.c:104
#, fuzzy, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr "Selectaţi Conexiunea de imprimantă"
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
#, fuzzy
msgid "Configure"
@@ -1363,7 +1206,7 @@ msgid "System mode"
msgstr ""
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr ""
#: ../../bootlook.pm_.c:148
@@ -1374,16 +1217,18 @@ msgstr ""
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
-msgstr ""
+msgstr "OK"
#: ../../bootlook.pm_.c:229
#, c-format
@@ -1430,7 +1275,7 @@ msgstr "Imposibil de adăugat o alta partiţie"
msgid "Screenshots will be available after install in %s"
msgstr "Puteţi să alegeţi alte limbi care vor fi disponibile după instalare"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
#, fuzzy
msgid "France"
msgstr "Anulează"
@@ -1439,7 +1284,7 @@ msgstr "Anulează"
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Belgian"
@@ -1468,11 +1313,12 @@ msgstr "Norvegian"
msgid "Sweden"
msgstr "Afişează"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr "Italian"
@@ -1482,7 +1328,7 @@ msgstr "Italian"
msgid "Austria"
msgstr "serie"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1490,8 +1336,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr "Vă rog faceţi mai întîi o copie a datelor dumneavoastră"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Citiţi cu atenţie!"
@@ -1504,11 +1350,12 @@ msgstr ""
"Dacă doriţi să folosiţi aboot, asiguraţi-vă să lăsaţi un spaţiu liber\n"
"(2048 de sectoare sunt de ajuns) la începutul discului"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Eroare"
@@ -1516,11 +1363,11 @@ msgstr "Eroare"
msgid "Wizard"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Alegeţi acţiunea"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1532,78 +1379,78 @@ msgstr ""
"Va sugerez să redimensionaţi mai întîi acea partiţie\n"
"faceţi clic pe ea şi apoi pe \"Redimensionează\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Vă rog faceţi clic pe o partiţie"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Detalii"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
#, fuzzy
msgid "Journalised FS"
msgstr "montare eşuată"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Gol"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Alt tip"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Tipul de fişiere sistem: "
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Crează"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tip"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Foloseşte ``%s'' în loc"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Şterge"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Foloseşte ``Demontare' mai întîi"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1611,72 +1458,78 @@ msgstr ""
"După schimbarea tipului de partiţie %s, toate datele de pe aceasta "
"partiţievor fi pierdute"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose a partition"
msgstr "Alegeţi acţiunea"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose another partition"
msgstr "Creează o nouă partiţie"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Trece în mod expert"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Trece în mod normal"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Anulează"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Continuaţi totuşi?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Ieşire fără a înregistra"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Ieşire din program fără a scrie în tabloul de partiţii ?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Doriţi să testaţi configuraţia ?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Auto aloca"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Şterge tot"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+#, fuzzy
+msgid "More"
+msgstr "Deplasează"
+
+#: ../../diskdrake/interactive.pm_.c:263
#, fuzzy
msgid "Hard drive information"
msgstr "Afişează informaţiile"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Toate partiţiile principale sunt alocate"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Imposibil de adăugat o alta partiţie"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1684,35 +1537,35 @@ msgstr ""
"Pentru a avea mai multe partiţii, ştergeţi una pentru a putea crea una de "
"tip Extended "
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr "Scrie tabloul de partiţii"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr "Salvează tabelul de partiţii"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Salvează tabelul de partiţii"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr "Salvează tabelul de partiţii"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Removable media automounting"
msgstr "Automontare automată a perifericelor extractibile"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Selecţionează fişierul"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1720,11 +1573,11 @@ msgstr ""
"Tabloul de partiţie salvat nu are aceeaşi mărime\n"
"Să continui totuşi ?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Avertisment"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1732,126 +1585,133 @@ msgstr ""
"Introduceţi o dischetă în periferic\n"
"Toate datele de pe această dischetă vor fi pierdute"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Încercare de salvare a tabloului de partiţii"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
#, fuzzy
msgid "Detailed information"
msgstr "Afişează informaţiile"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Punct de montaj"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
#, fuzzy
msgid "Options"
msgstr "Informaţie"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Redimensionează"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Deplasează"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formatează"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Montaj"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Adaugă la RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Adaugă la LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Demontează"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Şterge din RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Şterge din LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Modifică RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Foloseşte pentru loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Creează o nouă partiţie"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Sector de început: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Mărimea în MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Tipul de fişiere: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Punct de montaj: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Preferinţă: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+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/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Formatarea fişierului loopback %s"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Schimbă tipul partiţiei"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
#, fuzzy
msgid "Which filesystem do you want?"
msgstr "Ce limbă doriţi ?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Unde doriţi să montaţi fişierul loopback %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Unde doriţi să montaţi perifericul %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1860,132 +1720,139 @@ msgstr ""
"folosităpentru loopback.\n"
"Ştergeţi loopback-ul mai întîi"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Calculează salturile de fişiere FAT"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Redimensionează"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
#, fuzzy
msgid "This partition is not resizeable"
msgstr "Ce tip de partiţie doriţi?"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Toate datele de pe aceasta partiţie ar trebui salvate mai întîi"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"După redimensionarea partiţiei %s toate datele de pe aceasta partiţie vor fi "
"pierdute"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Alegeţi noua mărime"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
#, fuzzy
msgid "New size in MB: "
msgstr "Mărimea în MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Pe ce disc doriţi să schimbaţi ?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sector"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "La ce sector doriţi sa schimbaţi ?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Schimbă"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Schimbă partiţia..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Alegeţi un RAID existent la care să adăugaţi"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "nou"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Alegeţi un LVM existent la care să adăugaţi"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Această partiţie nu poate fi folosită pentru loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Numele fişierului loopback"
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr "Nume real"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Fişier deja folosit de un alt loopback, alegeţi un altul"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Fişierul există deja. Să-l folosesc ?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
#, fuzzy
msgid "Mount options"
msgstr "Opţiuni pentru module:"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
-msgstr "periferic: "
+msgstr "dispozitiv"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "nivel"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "mărimea porţiunii "
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Atenţie: aceasta operaţie e periculoasă."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
#, fuzzy
msgid "What type of partitioning?"
msgstr "Ce tip de imprimanta aveţi?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr ""
+"Acest pachet trebuie actualizat\n"
+"Sunteţi sigur că doriţi să-l deselectaţi ?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1997,7 +1864,7 @@ msgstr ""
"Sau folosiţi LILO soi nu va funcţiona, sau nu folosiţi LILO şi atunci nu\n"
"aveţi nevoie de /boot"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -2010,7 +1877,7 @@ msgstr ""
"Dacă planificaţi să folosiţi LILO ca gestionar de demaraj, asiguraţi-vă "
"căaţi adăugat o partiţie /boot."
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
#, fuzzy
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2022,140 +1889,140 @@ msgstr ""
"o partitie /boot. Folosiţi deci o partiţie /boot dacă doriţi să folosiţi\n"
"lilo sau grub."
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Tabloul de partiţii al perifericului %s va fi scris pe disc!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Va trebui să redemaraţi pentru ca schimbările sa fie luate în considerare"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"După formatarea partiţiei %s toate datele de pe aceasta partiţie vor fi "
"pierdute"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Formatare"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatarea fişierului loopback %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Formatarea partiţiei %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Hide files"
msgstr "mkraid a eşuat"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr "Creează o nouă partiţie"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Creează o nouă partiţie"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Rezoluţii"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Periferic: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Litera perifericului DOS: %s (doar o presupunere)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Tip: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Nume: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Start: sector %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Mărimea: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sectori"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "De la cilindrul %d la cilindrul %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Formatat\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Neformatat\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Montat\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Fişier(e) loopback: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2163,27 +2030,27 @@ msgstr ""
"Partiţia demarată din oficiu\n"
" (pentru demaraj MS-DOS, nu pentru lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Nivel %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Mărimea porţiunii %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "Discuri-RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Numele fişierului loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2191,7 +2058,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2199,65 +2066,65 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Mărime: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrie: %s cylinders, %s heads, %s sectors\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "Discuri-LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tipul tabloul de partiţii : %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "pe bus-ul %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, fuzzy, c-format
msgid "Options: %s"
msgstr "Partiţie"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Tipul de fişiere: "
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Această parole e prea simplă (ar trebui să fie de cel puţin %d caractere)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Parolele nu corespund"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2268,36 +2135,66 @@ msgstr "Schimbă tipul partiţiei"
#: ../../diskdrake/removable_gtk.pm_.c:28
#, fuzzy
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Vă rog faceţi clic pe o partiţie"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Autentificare"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Interesant"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Numele utilizatorului"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Numele utilizatorului"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "Domeniu NIS"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "Server DNS"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s Formatarea %s eşuată"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Nu ştiu cum să formatez %s în tipul %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "eroare la demontarea %s: %s"
@@ -2315,71 +2212,323 @@ msgstr ""
msgid "server"
msgstr "server"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Punctele de montaje trebuie sa înceapă cu un /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "O partiţie cu punctul de montaj %s există deja\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr ""
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Aveţi nevoie de un sistem de fişiere serios (ext2, reiserfs) pentru\n"
"acest punct de montaj.\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
"Aveţi nevoie de un sistem de fişiere serios (ext2, reiserfs) pentru\n"
"acest punct de montaj.\n"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr ""
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Eroare la citirea %s pentru a scrie: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"O eroare a apărut - nu am găsit nici un periferic pentru a instala noi "
"fişiere\n"
"sistem. Verificaţi harware-ul pentru a detecta cauza acestei probleme."
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Nu aveţi nici o partiţie!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Opţiuni pentru imprimanta lpd distantă"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Generic"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+msgid "Card model :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Formatare"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Schimbă tipul partiţiei"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Ieşire"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+#, fuzzy
+msgid "/_Help"
+msgstr "Ajutor"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "Ajutor"
+
+#: ../../harddrake/ui.pm_.c:15
+msgid "/_About..."
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Mouse USB"
+
+#: ../../harddrake/ui.pm_.c:22
+msgid "hard disk model"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Anulează"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Mouse USB"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+#, fuzzy
+msgid "Description"
+msgstr "Specificaţi opţiunile"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Autentificare"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Selecţionează fişierul"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Periferic pasarelă"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+msgid "Number of buttons"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Detecţia discului dur"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Vezi info hardware"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Afişează informaţiile"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Configuraţie mouse"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "Duplicaţi pounctul de montaj %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Puţintică răbdare"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "Testul se va termina în %d secunde"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Opţiuni pentru imprimanta lpd distantă"
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Autoprobează"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2393,7 +2542,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2464,9 +2613,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2652,7 +2800,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2664,9 +2812,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2712,21 +2859,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2742,9 +2888,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
#: ../../help.pm_.c:347
@@ -2765,9 +2911,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -2877,38 +3022,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -2982,11 +3121,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3010,7 +3149,7 @@ msgid ""
"choose this unless you know what you are doing."
msgstr ""
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3025,7 +3164,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3040,7 +3179,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3056,7 +3195,7 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
#, fuzzy
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
@@ -3065,23 +3204,23 @@ msgstr ""
"Vă rog selectaţi portul corect. De exemplu, portul COM1 din Windows e\n"
"numit ttyS0 în Linux."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3103,7 +3242,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3125,7 +3264,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3133,7 +3272,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3154,7 +3293,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
#, fuzzy
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
@@ -3179,7 +3318,7 @@ msgstr ""
"În acest ultim caz însă, veţi avea nevoie de un floppy de demaraj pentru\n"
"a putea le demara!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
#, fuzzy
msgid ""
"You must indicate where you wish to place the information required to boot\n"
@@ -3195,29 +3334,28 @@ msgstr ""
"În general alegeţi \"Primul sector al discului\". Alegeţi altceva doar dacă "
"ştiţi ce faceţi."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3226,7 +3364,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3251,11 +3389,11 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3265,9 +3403,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3279,7 +3416,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" 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"
@@ -3305,7 +3442,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3332,18 +3469,17 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3351,12 +3487,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3372,14 +3507,14 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3390,7 +3525,7 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3398,12 +3533,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3418,26 +3553,26 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "Nu pot să folosesc difuzia fără nici un domeniu NIS"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Introduceţi o dischetă în perifericul %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Eroare la citirea fişierului %s"
@@ -3465,7 +3600,7 @@ msgstr "Trebuie să aveţi o partiţie swap"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -3473,78 +3608,81 @@ msgstr ""
"\n"
"Să continui totuşi?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Trebuie să aveţi o partiţie swap"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
#, fuzzy
msgid "Use free space"
msgstr "Foloseşte pentru loopback"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr ""
-#: ../../install_interactive.pm_.c:100
+#: ../../install_interactive.pm_.c:101
#, fuzzy
-msgid "Use existing partition"
+msgid "Use existing partitions"
msgstr "Formatarea partiţiilor"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
#, fuzzy
msgid "There is no existing partition to use"
msgstr "Încercare de salvare a tabloului de partiţii"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
#, fuzzy
msgid "Use the Windows partition for loopback"
msgstr "Foloseşte pentru loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
#, fuzzy
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Ce partiţe doriţi să folosiiţ pentru a instala Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Alegeţi mărimile"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Mărimea partiţiei root în MB:"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Mărimea partiţiei swap în MB:: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr ""
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
#, fuzzy
msgid "Which partition do you want to resize?"
msgstr "Ce tip de partiţie doriţi?"
-#: ../../install_interactive.pm_.c:130
+#: ../../install_interactive.pm_.c:131
#, fuzzy
-msgid "Computing Windows filesystem bounds"
+msgid "Resizing Windows partition"
msgstr "Calculează salturile de fişiere FAT"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
"the following error occured: %s"
msgstr ""
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -3565,56 +3703,56 @@ msgstr ""
"reîncepeţi instalarea. Ar trebui de asemenea să faceţi o copie a datelor\n"
"dumneavoastră. Dacă sunteţi sigur, apăsaţi Ok."
-#: ../../install_interactive.pm_.c:147
+#: ../../install_interactive.pm_.c:148
#, fuzzy
-msgid "Which size do you want to keep for windows on"
+msgid "Which size do you want to keep for Windows on"
msgstr "La ce sector doriţi sa schimbaţi ?"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, fuzzy, c-format
msgid "partition %s"
msgstr "Partiţie"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, fuzzy, c-format
msgid "FAT resizing failed: %s"
msgstr "Redimensionarea automată a eşuat"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr ""
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr ""
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, fuzzy, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"După redimensionarea partiţiei %s toate datele de pe aceasta partiţie vor fi "
"pierdute"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
#, fuzzy
msgid "Custom disk partitioning"
msgstr "Formatarea partiţiilor"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr ""
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, fuzzy, c-format
msgid ""
"You can now partition %s.\n"
@@ -3623,12 +3761,12 @@ msgstr ""
"Puteţi partiţiona acum discul %s dumneavoastră dur\n"
"Cînd aţi terminat, nu uitaţi să înregistraţi folosind `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
#, fuzzy
msgid "You don't have enough free space on your Windows partition"
msgstr "Nu aveţi nici o partiţie Windows"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
#, fuzzy
msgid "I can't find any room for installing"
msgstr "Imposibil de adăugat o alta partiţie"
@@ -3637,16 +3775,16 @@ msgstr "Imposibil de adăugat o alta partiţie"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, fuzzy, c-format
msgid "Partitioning failed: %s"
msgstr "Tipul tabloul de partiţii : %s\n"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Configuraţie reţea"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Oprire reţea"
@@ -3658,12 +3796,12 @@ msgstr ""
"A apărut o eroare pe care nu ştiu să o interpretez în mod corect.\n"
"Continuaţi pe riscul dumneavoastră."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Duplicaţi pounctul de montaj %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3676,12 +3814,12 @@ msgstr ""
"Mandrake/RPMS/*.rpm\" pentru a verifica cdrom-ul pe un\n"
"sistem instalat.\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Bine aţi venit la %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Nici dischetă disponibilă"
@@ -3691,215 +3829,169 @@ msgstr "Nici dischetă disponibilă"
msgid "Entering step `%s'\n"
msgstr "Începe etapa `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Tip de instalare"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Vă rog alegeţi unul din următoarele tipuri de instalare"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Mărimea totală a grupurilor selectate e în jur de %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Dacă doriţi să instalaţi mai puţin decît această mărime,\n"
-"selectaţi procentul pachetelor pe care doriţi să le instalaţi.\n"
-"\n"
-"Un procent slab va instala numai pachetele cele mai inmportante;\n"
-"un procent de 100% va instala toate pachetele selectate."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Nu aveţi spaţiu pe discul dunmeavoastră decît pentru %d%% al acestor\n"
-"pachete.\n"
-"\n"
-"Dacă doriţi să instalaţi mai puţin decît atît,\n"
-"selectaţi procentul pachetelor pe care doriţi săle instalaţi.\n"
-"Un procent slab nu va installa decît pachetele cele mai importante;\n"
-"un procent de %d%% va instala cît de multe pachete va fi posibil."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Veţi putea să le alegeţi mai în detaliu la etapa următoare."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Procentul pachetelor de instalat"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Selectarea grupurilor de pachete"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Selectare individuală a pachetelor"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Mărime totală: %d / %d MB "
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Pachet defectuos"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Nume: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Versiune: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Mărime: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Importanţă: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "Nu aveţi destul spaţiu pentru a instala acest pachet"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
#, fuzzy
msgid "The following packages are going to be installed"
msgstr "Pachetele următoare urmează să fie dezinstalate"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
#, fuzzy
msgid "The following packages are going to be removed"
msgstr "Următoare pachete vor fi instalate/şterse"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Nu puteţi selecta/deselecta acest pachet"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Acesta este un pachet indispensabil şi nu poate fi deselectat"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Nu puteţi deselecta aces pachet. E deja instalat"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Acest pachet trebuie actualizat\n"
"Sunteţi sigur că doriţi să-l deselectaţi ?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Nu puteţi deselecta acest pachet. Trebuie acualizat."
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Instalare"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Înregistreaza pe dischetă"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
#, fuzzy
msgid "Updating package selection"
msgstr "Selectare individuală a pachetelor"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
#, fuzzy
msgid "Minimal install"
msgstr "Dezinstalare"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Alegeţi pachetele pe care doriţi să le instalaţi"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "În curs de instalare"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Estimare"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Timp rămas "
-#: ../../install_steps_gtk.pm_.c:528
+#: ../../install_steps_gtk.pm_.c:474
#, fuzzy
-msgid "Please wait, preparing installation"
+msgid "Please wait, preparing installation..."
msgstr "Pregătesc instalarea"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d pachete"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Instalarea pachetului %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
#, fuzzy
msgid "Accept"
msgstr "Acceptare utilizator"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#, fuzzy
msgid "Refuse"
msgstr "Redimensionează"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -3914,17 +4006,17 @@ msgstr ""
"Dacă nu-l aveţi, apăsaţi Anulează pentru a evita instalarea de pe acest Cd-"
"Rom."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Să continui totuşi?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "O eroare a apărut la ordonarea pachetelor:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "A fost o eroare la instalarea pachetelor:"
@@ -3969,11 +4061,11 @@ msgstr "A apărut o eroare"
msgid "Do you really want to leave the installation?"
msgstr "Doriţi să testaţi configuraţia ?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -3988,7 +4080,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -4094,115 +4186,119 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Tastatură"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Alegeţi tastatura."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Ce tip de instalare doriţi?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
#, fuzzy
msgid "Install/Update"
msgstr "Instalare/Actualizare"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
#, fuzzy
msgid "Is this an install or an update?"
msgstr "Este vorba de o instalare sau de o actualizare ?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Recomandat"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Expert"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade"
msgstr "Actualizare"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr "Selectare individuală a pachetelor"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Vă rog, alegeţi tipul de mouse?"
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Port Mouse"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Pe ce port serie este conectat mouse-ul?"
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Configuraţie cartele PCMCIA..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Configuraţia IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "nici o partiţie disponibilă"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Alegeţi punctele de montaj"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, fuzzy, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4210,7 +4306,7 @@ msgstr ""
"Nu pot citi tabloul de partiţii, e prea deteriorat după mine :(\n"
"Voi încerca să continui ştergînd partiţiile greşite"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4218,141 +4314,144 @@ msgstr ""
"DiskDrake a eşuat la citirea corectă a tabloului de partiţii.\n"
"Continuaţi pe riscul dumneavoastră!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "N'am găsit nici o partiţie root"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Partiţia Root"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Care e partiţia root (/) a sistemului dumneavoastră?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Trebuie să redemaraţi pentru a înregistra modificările tabloului de partiţii"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Alegeţi partiţiile pe care doriţi sa le formataăi"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Să verific blocurile defectuoase?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Formatarea partiţiilor"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Crearea şi formatarea fişierului %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Swap insuficient pentru a termina instalarea, mai adăugaţi ceva"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Căutarea pachetelor disponibile"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
+msgstr "Căutarea pachetelor disponibile"
+
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Cautarea pachetelor de actualizat"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Nu puteţi deselecta aces pachet. E deja instalat"
+
+#: ../../install_steps_interactive.pm_.c:516
#, fuzzy, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Sistemul dumneavoastră nu ar destul spaţiu disponibil pentru instalare\n"
"sau actualizare"
-#: ../../install_steps_interactive.pm_.c:515
-#, fuzzy, c-format
-msgid "Complete (%dMB)"
-msgstr "Normal"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, fuzzy, c-format
-msgid "Minimum (%dMB)"
-msgstr "(%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, fuzzy, c-format
-msgid "Recommended (%dMB)"
-msgstr "Recomandat"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
#, fuzzy
msgid "Load from floppy"
msgstr "Restaurează din dischetă"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Loading from floppy"
msgstr "Restaurează din dischetă"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Package selection"
msgstr "Selectarea grupurilor de pachete"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Introduceţi o dischetă în perifericul %s"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Înregistreaza pe dischetă"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
#, fuzzy
msgid "Type of install"
msgstr "Alegeţi pachetul de instalat"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
#, fuzzy
msgid "With X"
msgstr "Aşteptare"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4363,16 +4462,16 @@ msgstr ""
"Dacă nu vă lispsesc decît cîteva CD-uri, deselectaţi-le şi faceţi click pe "
"Ok."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom etichetat \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Pregătesc instalarea"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4381,23 +4480,23 @@ msgstr ""
"instalarea pachetului %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Configuraţie post-install"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Introduceţi o dischetă în perifericul %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Introduceţi uo dischetă goală în perifericul %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -4462,171 +4561,201 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Contactarea oglinzii pentru recuperarea pachetelor disponibile"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Alegeţi o oglindă de la care să recuperaţi pachetele"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Contactarea oglinzii pentru recuperarea pachetelor disponibile"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
#, fuzzy
msgid "Which is your timezone?"
msgstr "Care e folosinţa sistemului dumneavoastră?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Ceasul dumneavoastră hardware e fixat la GMT?"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
#, fuzzy
msgid "NTP Server"
msgstr "Server NIS"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
#, fuzzy
msgid "Remote CUPS server"
msgstr "Coadă distantă:"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
#, fuzzy
msgid "No printer"
msgstr "Imprimantă locală"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Aveţi o altă interfaţa?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
#, fuzzy
msgid "Mouse"
msgstr "Mouse USB"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Imprimantă"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "NIS"
msgstr "Foloseşte NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+msgid "Windows PDC"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Local files"
msgstr "Imprimantă locală"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Alegeţi parola pentru root"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Nici o parolă"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Această parole e prea simplă (ar trebui să fie de cel puţin %d caractere)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autentificare"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
#, fuzzy
msgid "Authentication LDAP"
msgstr "Autentificare"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "LDAP Server"
msgstr "Server NIS"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
#, fuzzy
msgid "Authentication NIS"
msgstr "Autentificare NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "Domeniu NIS"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "Server NIS"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Autentificare"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Domeniu NIS"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "Server NIS"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
#, fuzzy
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4653,19 +4782,19 @@ msgstr ""
"severe.\n"
"Doriţi să creaţi o dischetă de demaraj pentru sistemul dumneavoastră ?"
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Primul periferic de dichetă"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Al doilea periferic de dischetă"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Sari peste"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4690,7 +4819,7 @@ msgstr ""
"Doriţi să creaţi o dischetă de demaraj pentru sistemul dumneavoastră ?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -4699,29 +4828,29 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Îmi pare rău dar nu găsesc nici un periferic de dischetă disponibil."
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Alegeţi perifericul pe care-l doriţi pentru a realiza un disc de demaraj."
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Introduceţi o dischetă în perifericul %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Crearea dischetei de demaraj"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Pegătirea gestionalului de demaraj"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4729,12 +4858,12 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
#, fuzzy
msgid "Do you want to use aboot?"
msgstr "Vreţi să folosiţi SILO?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -4742,17 +4871,17 @@ msgstr ""
"Eroare la instalrea lui aboot,\n"
"să încerc să forţaţi instalarea chiar dacă aceasta distruge prima partiţie ?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
#, fuzzy
msgid "Installing bootloader"
msgstr "Instalaţi un gestionar de demaraj"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
#, fuzzy
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Instalarea lui LILO a eşuat. Următoarea eroare a apărut:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4763,18 +4892,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Introduceţi uo dischetă goală în perifericul %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Creati discheta de autoinstalare"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -4784,7 +4912,8 @@ msgstr ""
"\n"
"Chiar vreţi să terminaţi acum?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -4795,7 +4924,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -4809,19 +4938,23 @@ msgstr ""
"Mandrake Linux, consultaţi Erata disponibilă la \n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Informaţiile asupra configurării sistemului sunt disponibile în \n"
"capitolul referitor la post instalare din \n"
"Oficial Mandrake Linux User's Guide."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
#, fuzzy
msgid "Generate auto install floppy"
msgstr "Creati discheta de autoinstalare"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4830,16 +4963,16 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automatizat"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
#, fuzzy
msgid "Replay"
msgstr "Reîncarcă"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
#, fuzzy
msgid "Save packages selection"
msgstr "Selectare individuală a pachetelor"
@@ -4868,426 +5001,410 @@ msgstr ""
msgid "Choose a file"
msgstr "Alegeţi acţiunea"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr ""
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Puţintică răbdare"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Expandaţi Arborele"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Închideţi Arborele"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Basculaţi între plat şi triere în funcţie de grup"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Alegere greşită, încercaţi din nou\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Ce alegeţi? (din oficiu %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Ce alegeţi? (din oficiu %s) "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Partiţie"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr "Vreţi să folosiţi SILO?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Ce alegeţi? (din oficiu %s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Ceh (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "German"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Spaniol"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finlandez"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Francez"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norvegian"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Polonez"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Rus"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Suedez"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Tastatura UK"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Tastatura US"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Albanian"
msgstr "Ukrainian"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armenian (vechi)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armenian (maşină de scris)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armenian (fonetic)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr ""
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgian"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armenian (fonetic)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Bulgar"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brazilian (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Bielorus"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Elveţian (dispoziţie germanâ)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Elveţian (dispoziţie francezâ)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Ceh (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "German (făra taste moarte)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Danez"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
#, fuzzy
msgid "Dvorak (US)"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
#, fuzzy
msgid "Dvorak (Norwegian)"
msgstr "Norvegian"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estonian"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgian (dispoziţie \"Rusă\")"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgian (dispoziţie \"Latină\")"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Grec"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Ungar"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Croat"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Izraelian"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Izraelian (fonetic)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
#, fuzzy
msgid "Iranian"
msgstr "Ukrainian"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islandez"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Italian"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr ""
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
#, fuzzy
msgid "Korean keyboard"
msgstr "Tastatura UK"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latin American"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Lituanian AZERTY (vechi)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Lituanian AZERTY (nou)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituanian QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lithuanian \"fonetic\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
#, fuzzy
msgid "Latvian"
msgstr "Informaţie"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr ""
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Olandez"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Polonez (dispoziţie qwerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Polonez (dispoziţie qwertz)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portughez"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Canadian (Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "us (Yawerty)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "us (Yawerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "us (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Sloven"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovac (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovac (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Iugoslav (dispoziţie latinâ)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Tabel"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Tastatură Thai"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Tastatură Thai"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turc (tradiţional model \"F\")"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turc (model \"Q\" modern)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukrainian"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Tastatură US (internaţional)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
#, fuzzy
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Lituanian QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Iugoslav (dispoziţie latinâ)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5300,7 +5417,31 @@ msgstr "Montaje circulare %s\n"
msgid "Remove the logical volumes first\n"
msgstr ""
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Număr de telefon"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Formatarea partiţiilor"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5342,10 +5483,6 @@ msgstr ""
msgid "Generic 2 Button Mouse"
msgstr "Mouse generic cu 2 butoane"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Generic"
-
#: ../../mouse.pm_.c:46
#, fuzzy
msgid "Wheel"
@@ -5412,41 +5549,57 @@ msgstr "nici unul"
msgid "No mouse"
msgstr "Fără mouse"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
#, fuzzy
msgid "Please test the mouse"
msgstr "Vă rog, alegeţi tipul de mouse?"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
#, fuzzy
msgid "To activate the mouse,"
msgstr "Vă rog, alegeţi tipul de mouse?"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr ""
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
#, fuzzy
msgid "Finish"
msgstr "Finlandez"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr ""
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr ""
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "E corect ?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Info"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Expandaţi Arborele"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Închideţi Arborele"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Basculaţi între plat şi triere în funcţie de grup"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
#, fuzzy
msgid "Connect to the Internet"
@@ -5488,7 +5641,7 @@ msgid ""
"I cannot set up this connection type."
msgstr ""
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
#, fuzzy
msgid "Choose the network interface"
msgstr "Alegeţi noua mărime"
@@ -5503,7 +5656,7 @@ msgstr "Pe ce port serie este conectat mouse-ul?"
msgid "no network card found"
msgstr "n'am găsit nici o carte de reţea"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Configuraţie reţea"
@@ -5520,16 +5673,16 @@ msgstr ""
"ca de exemplu ``calculatorulmeu.laboratorulmeu.întreprindereamea.com''.\n"
"Puteţi de asemenea intra adresa IP a pasarelei dacă aveţi una"
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
#, fuzzy
msgid "Host name"
msgstr "Numele calculatorului:"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
#, fuzzy
msgid "Network Configuration Wizard"
msgstr "Configuraţia reţelei"
@@ -5581,7 +5734,7 @@ msgstr "Configuraţie"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
#: ../../network/isdn.pm_.c:183
@@ -5599,13 +5752,13 @@ msgstr "Test de configuraţie"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
#: ../../network/isdn.pm_.c:189
#, fuzzy
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Ce tip de partiţie doriţi?"
#: ../../network/isdn.pm_.c:199
@@ -5632,7 +5785,8 @@ 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"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
#: ../../network/isdn.pm_.c:210
@@ -5646,13 +5800,13 @@ msgstr "Continuaţi totuşi?"
#: ../../network/isdn.pm_.c:216
#, fuzzy
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Care e zona dumneavoastră orară?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
#: ../../network/isdn.pm_.c:244
@@ -5667,106 +5821,106 @@ msgstr "Pe ce port serial este conectat modemul dumneavoastră?"
msgid "Dialup options"
msgstr "Opţuni de telefonie"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Nume de conexiune"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
#, fuzzy
msgid "Phone number"
msgstr "Număr de telefon"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "ID de login"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Bazat-pe-un-script"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Bazat-pe-un-terminal"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
#, fuzzy
msgid "Domain name"
msgstr "Nume de conexiune"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
#, fuzzy
msgid "First DNS Server (optional)"
msgstr "Primul server DNS"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
#, fuzzy
msgid "Second DNS Server (optional)"
msgstr "Al doilea server DNS"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
#, fuzzy
msgid ""
"\n"
"You can reconfigure your connection."
msgstr "Configuraţie reţea"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
#, fuzzy
msgid "You are currently connected to internet."
msgstr "Pe ce disc doriţi să schimbaţi ?"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
msgstr "Nume de conexiune"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid "You are not currently connected to Internet."
msgstr "Pe ce disc doriţi să schimbaţi ?"
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Connect"
msgstr "Nume de conexiune"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
#, fuzzy
msgid "Disconnect"
msgstr "Selectaţi Conexiunea de imprimantă"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "Configuraţie reţea"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
#, fuzzy
msgid "Internet connection & configuration"
msgstr "Selectaţi Conexiunea de imprimantă"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr "Configuraţie reţea"
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, fuzzy, c-format
msgid ""
"\n"
@@ -5778,12 +5932,12 @@ msgid ""
"Press OK to continue."
msgstr "Configuraţie reţea"
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Configuraţia reţelei"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -5791,108 +5945,114 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"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 ""
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
#, fuzzy
msgid "Choose the profile to configure"
msgstr "Alegeţi noua mărime"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Mod expert"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Detecţia perifericelor..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, fuzzy
msgid "Normal modem connection"
msgstr "Configuraţie reţea"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, fuzzy, c-format
msgid "detected on port %s"
msgstr "Duplicaţi pounctul de montaj %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, fuzzy
msgid "ISDN connection"
msgstr "Selectaţi Conexiunea de imprimantă"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy
msgid "ADSL connection"
msgstr "Selectaţi Conexiunea de imprimantă"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "Cable connection"
msgstr "Selectaţi Conexiunea de imprimantă"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "cable connection detected"
msgstr "Selectaţi Conexiunea de imprimantă"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
#, fuzzy
msgid "LAN connection"
msgstr "Selectaţi Conexiunea de imprimantă"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Alegeţi unealta pe care doriţi să o folosiţi"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
#, fuzzy
msgid "Internet connection"
msgstr "Selectaţi Conexiunea de imprimantă"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
#, fuzzy
msgid "Do you want to start the connection at boot?"
msgstr "Doriti să folosiţi aboot?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
#, fuzzy
msgid "Network configuration"
msgstr "Configuraţia reţelei"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -5900,35 +6060,35 @@ msgid ""
"%s"
msgstr "Doriţi să testaţi configuraţia ?"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"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 ""
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -5938,40 +6098,45 @@ msgstr ""
"Fiecare rubrica va trebui sa fie completată ca o adresă IP în format\n"
"zecimal-punctat (de exemplu 192.168.1.55)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Configuraţia cărţii de reţea %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, fuzzy, c-format
msgid " (driver %s)"
msgstr "Server XFree86 : %s\n"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
#, fuzzy
msgid "IP address"
msgstr "Adresă IP"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
#, fuzzy
msgid "Netmask"
msgstr "Mască de reţea:"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "IP automat"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Creaţi un floppy de demaraj"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "Adresa IP ar trebui să fie în formatul 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -5983,385 +6148,390 @@ msgstr ""
"ca de exemplu ``calculatorulmeu.laboratorulmeu.întreprindereamea.com''.\n"
"Puteţi de asemenea intra adresa IP a pasarelei dacă aveţi una"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "Server DNS"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Periferic pasarelă"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
#, fuzzy
msgid "Proxies configuration"
msgstr "Configuraţie post-install"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Proxy-ul ar trebui să fie http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Proxy-ul ar trebui să fie ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
#, fuzzy
msgid "Internet configuration"
msgstr "Configuraţie proxy"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
#, fuzzy
msgid "Do you want to try to connect to the Internet now?"
msgstr "Doriţi să testaţi configuraţia ?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
#, fuzzy
msgid "Testing your connection..."
msgstr "Configuraţie reţea"
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
#, fuzzy
msgid "The system is now connected to Internet."
msgstr "Pe ce disc doriţi să schimbaţi ?"
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr ""
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
#, fuzzy
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
msgstr "Nume de conexiune"
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
#, fuzzy
msgid "Connection Configuration"
msgstr "Configuraţie proxy"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr ""
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr ""
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr ""
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr ""
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr ""
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr ""
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr ""
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr ""
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
#, fuzzy
msgid "Provider phone number"
msgstr "Număr de telefon"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
#, fuzzy
msgid "Provider dns 1 (optional)"
msgstr "Opţiuni imprimantă"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
#, fuzzy
msgid "Provider dns 2 (optional)"
msgstr "Opţiuni imprimantă"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
#, fuzzy
msgid "Choose your country"
msgstr "Alegeţi tastatura"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
#, fuzzy
msgid "Dialing mode"
msgstr "Nume de domeniu"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection speed"
msgstr "Nume de conexiune"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Nume de conexiune"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
#, fuzzy
msgid "Account Login (user name)"
msgstr "Punct de montaj"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
#, fuzzy
msgid "Account Password"
msgstr "Parola"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "montare eşuată: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Partiţiile extended nu sunt suportatet pe această platformă "
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Aveţi o gaură în tabloul de partiţii dar nu pot să o folosesc.\n"
"Singura soluţie e să deplasaţi partiţia principală pentru a avea gaura "
"lîngăpartiţia extinsă"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Restaurarea din fişierul %s a eşuat: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Backup defectuos"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Eroare la scrierea în fişierul %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
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 trash"
msgstr ""
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "trebuie avut"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "important"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "foarte simpatic"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "simpatic: "
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "poate"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr ""
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr ""
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Imprimantă locală"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
#, fuzzy
msgid "Remote printer"
msgstr "Opţiuni pentru imprimanta lpd distantă"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "Coadă distantă:"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "lpd distant:"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
#, fuzzy
msgid "Network printer (TCP/Socket)"
msgstr "Opţiunea imprimantei NetWare"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Server de imprimantă"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Periferic imprimantă:"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr "Imprimantă locală"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr "Opţiuni pentru imprimanta lpd distantă"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Eroare la scrierea în fişierul %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(modul %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "Adresa IP a serverului SMB"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Standard)"
@@ -6380,12 +6550,12 @@ msgid ""
"printers will be automatically detected."
msgstr ""
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "Configuraţie"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "Coadă distantă:"
@@ -6416,7 +6586,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "Adresa IP ar trebui să fie în formatul 1.2.3.4"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr ""
@@ -6425,7 +6595,7 @@ msgstr ""
msgid "CUPS server IP"
msgstr "Adresa IP a serverului SMB"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
#, fuzzy
msgid "Port"
msgstr "Slab"
@@ -6435,22 +6605,13 @@ msgstr "Slab"
msgid "Automatic CUPS configuration"
msgstr "Configuraţie post-install"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "Detecţia perifericelor..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Test porturi"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "Imprimantă locală"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6463,14 +6624,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr "Imprimantă locală"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6488,12 +6649,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "Opţiuni pentru imprimanta lpd distantă"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6507,11 +6668,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6521,35 +6682,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "Opţiuni pentru imprimanta lpd distantă"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "Opţiuni pentru imprimanta lpd distantă"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Test porturi"
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "Duplicaţi pounctul de montaj %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
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, ..., "
@@ -6557,43 +6722,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Periferic imprimantă:"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr "Imprimantă locală"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6601,7 +6766,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6609,71 +6774,81 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Pe ce port serial este conectat modemul dumneavoastră?"
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Periferic imprimantă:"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "Configuraţie proxy"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "Instalarea pachetului %s"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
+msgstr "Instalarea pachetului %s"
+
+#: ../../printerdrake.pm_.c:524
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing mtools packages..."
msgstr "Instalarea pachetului %s"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr ""
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Opţiuni pentru imprimanta lpd distantă"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -6682,31 +6857,31 @@ msgstr ""
"pentru a folosi a coadă de impresie lpd distantă, aveţi nevoie să furnizaţi\n"
"numele calculatorului serverului de imprimantă ăi lista de aşteptare"
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
#, fuzzy
msgid "Remote host name"
msgstr "Numele calculator distant"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
#, fuzzy
msgid "Remote printer name"
msgstr "Opţiuni pentru imprimanta lpd distantă"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
#, fuzzy
msgid "Remote host name missing!"
msgstr "Numele calculator distant"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Numele calculator distant"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Opţiuni pentru imprimanta SMB/Windows 95/NT"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -6720,35 +6895,35 @@ msgstr ""
"numele de access şi numele de utilizator, parola şi informaţia grupului de "
"lucru."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "Numele serverului SMB"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "Adresa IP a serverului SMB"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Numele de access"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Numele de grup"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -6772,7 +6947,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -6781,7 +6956,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -6789,11 +6964,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Opţiunea imprimantei NetWare"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -6806,28 +6981,28 @@ msgstr ""
"cît şi numele listei de aşteptare şi eventual utilizatorii care vor avea\n"
"access şi parolele."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Server de imprimantă"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Lista de aşteptare a imprimantei"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Opţiunea imprimantei NetWare"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -6835,63 +7010,58 @@ msgid ""
"hardware."
msgstr ""
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
#, fuzzy
msgid "Printer host name"
msgstr "Opţiuni imprimantă"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
#, fuzzy
msgid "Printer host name missing!"
msgstr "Opţiuni imprimantă"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
#, fuzzy
msgid "Printer Device URI"
msgstr "Periferic imprimantă:"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
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 ""
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
#, fuzzy
msgid "Name of printer"
msgstr "Imprimantă locală"
-#: ../../printerdrake.pm_.c:1006
-#, fuzzy
-msgid "Description"
-msgstr "Specificaţi opţiunile"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
#, fuzzy
msgid "Location"
msgstr "Informaţie"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr ""
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "Opţiuni pentru imprimanta lpd distantă"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -6906,28 +7076,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "E corect ?"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "Opţiuni pentru imprimanta lpd distantă"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
#, fuzzy
msgid "Printer model selection"
msgstr "Selectaţi Conexiunea de imprimantă"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Ce tip de imprimanta aveţi?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -6936,18 +7106,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Configuraţie modem"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -6957,12 +7127,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Configuraţie proxy"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -6970,7 +7140,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -6983,7 +7153,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -6993,34 +7163,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Doriţi să testaţi imprimarea ?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
#, fuzzy
msgid "Test pages"
msgstr "Test porturi"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7028,45 +7198,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
#, fuzzy
msgid "No test pages"
msgstr "Da, imprimă amîndouă paginile de test"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
#, fuzzy
msgid "Print"
msgstr "Imprimantă"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
#, fuzzy
msgid "Standard test page"
msgstr "Programator"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Imprimarea pagin(ei/lor) de test"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
#, fuzzy
msgid "Photo test page"
msgstr "Imprimarea pagin(ei/lor) de test"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "Imprimarea pagin(ei/lor) de test"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Imprimarea pagin(ei/lor) de test"
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7082,7 +7252,7 @@ msgstr ""
"\n"
"Funcţionează cum trebuie?"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7092,16 +7262,16 @@ msgstr ""
"Aceasta va dura puţin timp înaintea pornirii imprimării\n"
"Funcţionează cum trebuie?"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "Imprimantă locală"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7110,15 +7280,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
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 ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7127,49 +7297,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, 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\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7179,7 +7349,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7188,31 +7358,42 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-#, fuzzy
-msgid "Close"
-msgstr "Mouse USB"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Oprire reţea"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Oprire reţea"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Oprire reţea"
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Oprire reţea"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+#, fuzzy
+msgid "Close"
+msgstr "Mouse USB"
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "Opţiuni imprimantă"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7220,37 +7401,37 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Configuraţie proxy"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7260,51 +7441,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7312,61 +7493,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid "New printer name"
msgstr "Imprimantă locală"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, 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 ""
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Configuraţia imprimantei"
-#: ../../printerdrake.pm_.c:1896
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
-msgid "Starting network ..."
+msgid "Starting network..."
msgstr "Configuraţie reţea"
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr "Configuraţie reţea"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "Monitor nu a fost încă configurat"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7374,12 +7555,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Configuraţie reţea"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7389,34 +7570,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
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 ""
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
-msgid "Restarting printing system ..."
+msgid "Restarting printing system..."
msgstr "Ce tip de partiţie doriţi?"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "Ridicat"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "Paranoiac"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7431,12 +7612,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Ce tip de partiţie doriţi?"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7450,69 +7631,69 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Selectaţi Conexiunea de imprimantă"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Ce tip de partiţie doriţi?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Configuraţia imprimantei"
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr "Instalarea pachetului %s"
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Opţiuni imprimantă"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr ""
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Configuraţia imprimantei"
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Doriţi să configuraţi o imprimantă?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "Printerdrake"
msgstr "Imprimantă"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7523,7 +7704,7 @@ msgstr ""
"Iată următoarele cozi de imprimare\n"
"Puteţi să adăugaţi altele sau să modificaţi cele existente."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7533,140 +7714,144 @@ msgstr ""
"Iată următoarele cozi de imprimare\n"
"Puteţi să adăugaţi altele sau să modificaţi cele existente."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Configuraţie reţea"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
#, fuzzy
msgid "Normal Mode"
msgstr "Normal"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Ieşire"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Doriţi să testaţi configuraţia ?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
#, fuzzy
msgid "Modify printer configuration"
msgstr "Configuraţie modem"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Doriţi să testaţi configuraţia ?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
#, fuzzy
msgid "Printer connection type"
msgstr "Selectaţi Conexiunea de imprimantă"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
#, fuzzy
msgid "Printer name, description, location"
msgstr "Selectaţi Conexiunea de imprimantă"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
#, fuzzy
msgid "Print test pages"
msgstr "Imprimarea pagin(ei/lor) de test"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "Doriţi să testaţi configuraţia ?"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
#, fuzzy
msgid "Remove printer"
msgstr "Opţiuni pentru imprimanta lpd distantă"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
msgstr "Opţiuni pentru imprimanta lpd distantă"
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
#, fuzzy
msgid "Default printer"
msgstr "Imprimantă locală"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Doriţi să testaţi configuraţia ?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr "Opţiuni pentru imprimanta lpd distantă"
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -7749,24 +7934,62 @@ msgstr "Parolele nu corespund"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Nu pot adăuga partiţia la md%d _formatat_RAID"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Nu pot scrie fişierul %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid a eşuat"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid a eşuat (poate vă lipsesc raidtools?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nu aveţi destule partiţii pentru nivelul RAID %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Va trebui să folosiţi acest nivel cu grijă. Aceasta face ca sistemul să fie\n"
+"mai uşor de folosit, dar foarte sensibil: nu trebuie să fie folosit pentru "
+"un\n"
+"calculator conectat cu altele de pe Internet. Nu există nici o parolă de\n"
+"acces."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+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 ""
+"Cu acest nivel de securitate, utilizarea acestui calculator ca server\n"
+"devine posibilă. Securitatea este destul de ridicată pentru a folosi acest\n"
+"sistem ca server care acceptă conexiuni de la mulţi clienţi."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Configuraţie"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Informaţie"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -7823,7 +8046,7 @@ msgid ""
"new/changed hardware."
msgstr ""
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -7889,7 +8112,7 @@ msgid ""
"available server."
msgstr ""
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -7966,7 +8189,7 @@ msgstr ""
"ca NFS şi NIS. Server-ul portmap trebuie demarat pe calculatoare care \n"
"funcţionează ca servere pentru protocoluri care folosesc mecanismul RPC."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -8067,7 +8290,7 @@ msgstr "Interesant"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "Mouse Systems"
@@ -8192,6 +8415,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Nume de conexiune"
@@ -8297,6 +8521,15 @@ msgstr ""
msgid "Installing packages..."
msgstr "Instalarea pachetului %s"
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Vă rog delogaţi-vă şi folosiţi Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Vă rog reconectaţi-vă ca %s pentru a activa schimbările"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8305,6 +8538,160 @@ msgstr ""
"Nu pot citi tabloul de partiţii, e prea deteriorat după mine :(\n"
"Voi încerca să continui ştergînd partiţiile greşite"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Configuraţie proxy"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Server de imprimantă"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Server de imprimantă"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "Server NIS"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "Server NIS"
+
+#: ../../standalone/drakTermServ_.c:234
+#, fuzzy
+msgid "Etherboot Floppy/ISO"
+msgstr "Creaţi o dischetă de demaraj"
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Adăugaţi un utilizator"
+
+#: ../../standalone/drakTermServ_.c:242
+msgid "Add/Del Clients"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#, fuzzy
+msgid "Help"
+msgstr "Ajutor"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Selectaţi Conexiunea de imprimantă"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Şterge"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Selecţionează fişierul"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Adăugaţi un utilizator"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+msgid "<-- Del Client"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Configuraţia IDE"
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "Configuraţi X"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Introduceţi o dischetă în perifericul %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Nici dischetă disponibilă"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
#, fuzzy
msgid "Error!"
@@ -8346,6 +8733,11 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Creati discheta de autoinstalare"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -8354,47 +8746,40 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Felicitări!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "Instalare"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "Adăugaţi un utilizator"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "Formatarea fişierului loopback %s"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8402,15 +8787,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8418,708 +8795,771 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Backup defectuos"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "Backup defectuos"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "Backup defectuos"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "Eroare la citirea fişierului %s"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "Selectarea grupurilor de pachete"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Vă rog alegeţi pachetele pe care doriţi să le instalaţi"
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "Şterge coada"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr ""
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr "Numele utilizatorului"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Backup defectuos"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Vă rog, alegeţi tipul de mouse?"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "Încercaţi din nou"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "Încercaţi din nou"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "Nici o parolă"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Selectaţi Conexiunea de imprimantă"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Selectaţi Conexiunea de imprimantă"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Alegeţi tastatura."
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Vă rog faceţi clic pe o partiţie"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr "Vă rog alegeţi pachetele pe care doriţi să le instalaţi"
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "Backup defectuos"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Vă rog alegeţi pachetele pe care doriţi să le instalaţi"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "Vă rog, alegeţi tipul de mouse?"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "Backup defectuos"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "Configuraţie reţea"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Tip"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "Numele utilizatorului"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Vă rog alegeţi pachetele pe care doriţi să le instalaţi"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Vă rog, alegeţi o limbă."
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Sa folosesc optimizările penrtu disc dur?"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Sa folosesc optimizările penrtu disc dur?"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
#, fuzzy
msgid "What"
msgstr "Aşteptare"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr "nivel"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr "nivel"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "Opţiuni pentru module:"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Configuraţia reţelei"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Vă rog alegeţi pachetele pe care doriţi să le instalaţi"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Vă rog alegeţi pachetele pe care doriţi să le instalaţi"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "Instalarea fişierelor sistem"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Periferic pentru mouse: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Informaţie"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Pe ce port serial este conectat modemul dumneavoastră?"
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "Configuraţia reţelei"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "Backup defectuos"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "Vă rog, alegeţi tipul de mouse?"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Backup defectuos"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Vă rog, alegeţi tipul de mouse?"
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "Selectaţi Conexiunea de imprimantă"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Selectaţi Conexiunea de imprimantă"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Restaurează din dischetă"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "Vă rog, alegeţi tipul de mouse?"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "Alt tip"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "Instalarea sistemului"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "Restaurează din fişierul"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "Restaurează din fişierul"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "Personalizat"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "Ajutor"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr ""
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr "Meniu de Start"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "Backup defectuos"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr "Restaurează din fişierul"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr "Text"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "Alege pachetele de instalat"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Pachetele următoare urmează să fie dezinstalate"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "Vă rog, alegeţi o limbă."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "Vă rog, alegeţi o limbă."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "Vă rog, alegeţi o limbă."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "Backup defectuos"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "Backup defectuos"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "Backup defectuos"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "Înregistrează în fişierul"
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "Vă rog, alegeţi tipul de mouse?"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr "Vă rog alegeţi pachetele pe care doriţi să le instalaţi"
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Configuraţia reţelei"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "Configuraţia reţelei"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "Configuraţie"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "Configuraţie"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "Instalarea fişierelor sistem"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9151,7 +9591,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9160,7 +9600,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9201,7 +9641,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9229,12 +9669,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -9251,7 +9696,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9291,7 +9736,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9302,7 +9747,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9315,7 +9760,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9359,104 +9804,546 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Instalarea lui %s a eşuat. Următoarea eroare a apărut:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+msgid "Standalone Tools"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "Nume de conexiune"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "indispensabil"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Mouse USB"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Opţiuni pentru imprimanta lpd distantă"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Numele de access"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Imprimantă"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Configuraţia reţelei"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Autentificare"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Pachet"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Puţintică răbdare"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Ieşire din instalare"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "Slab"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Puteţi să alegeţi alte limbi care vor fi disponibile după instalare"
+
+#: ../../standalone/drakconnect_.c:80
+#, fuzzy, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Configuraţia reţelei"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#, fuzzy
+msgid "Profile: "
+msgstr "montare eşuată: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+#, fuzzy
+msgid "Hostname: "
+msgstr "Numele calculatorului:"
+
+#: ../../standalone/drakconnect_.c:168
+#, fuzzy
+msgid "Internet access"
+msgstr "Interesant"
+
+#: ../../standalone/drakconnect_.c:181
+#, fuzzy
+msgid "Type:"
+msgstr "Tip: "
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Pasarelă:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#, fuzzy
+msgid "Interface:"
+msgstr "Interesant"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+#, fuzzy
+msgid "Configure Internet Access..."
+msgstr "Configuraţia serviciilor"
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#, fuzzy
+msgid "LAN configuration"
+msgstr "Configuraţie"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "Driver"
+msgstr "Server"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "Interface"
+msgstr "Interesant"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "State"
+msgstr "Meniu de Start"
+
+#: ../../standalone/drakconnect_.c:244
+#, fuzzy
+msgid "Configure Local Area Network..."
+msgstr "Configuraţie reţea"
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:302
+#, fuzzy
+msgid "Please Wait... Applying the configuration"
+msgstr "Test de configuraţie"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#, fuzzy
+msgid "Connected"
+msgstr "Nume de conexiune"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#, fuzzy
+msgid "Not connected"
+msgstr "Selectaţi Conexiunea de imprimantă"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:453
+#, fuzzy
+msgid "LAN Configuration"
+msgstr "Configuraţie"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "activate now"
+msgstr "Activ"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "deactivate now"
+msgstr "Activ"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:584
+#, fuzzy
+msgid "Internet connection configuration"
+msgstr "Selectaţi Conexiunea de imprimantă"
+
+#: ../../standalone/drakconnect_.c:588
+#, fuzzy
+msgid "Internet Connection Configuration"
+msgstr "Selectaţi Conexiunea de imprimantă"
+
+#: ../../standalone/drakconnect_.c:597
+#, fuzzy
+msgid "Connection type: "
+msgstr "Nume de conexiune"
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Pasarelă"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "utilizare: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Nume modul"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Dimensiune"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "Creare disc boot"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "Implicit"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Eroare DrakFloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "Versiune kernel"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "General"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Arie expert"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "Argumente opţionale mkinitrd"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Adaugă un modul"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "Forţează"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "Dacă este necesar"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "Omite modulele scsi"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "Omite modulele raid"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Elimină un modul"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Ieşire"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Crează disc"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Fiţi sigur că discul este prezent în dispozitivul %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"Discul nu este în dispozitivul %s.\n"
+"Vă rog introduceţi unul."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Nu pot face fork: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Nu pot termina ce bine mkbootdisk: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
-msgstr "n'am găsit %s "
+msgstr "n'am găsit nici o carte de reţea"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr "Gata"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
-#, fuzzy
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
-msgstr "Formatează dischetă"
+msgstr ""
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "Pregătesc instalarea"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
+#, fuzzy
msgid "please wait during ttmkfdir..."
-msgstr ""
+msgstr "Pregătesc instalarea"
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
+#, fuzzy
msgid "True Type install done"
-msgstr ""
+msgstr "Alegeţi pachetul de instalat"
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
+#, fuzzy
msgid "Fonts conversion"
-msgstr ""
+msgstr "Versiune kernel"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr ""
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "limitează"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -9465,120 +10352,118 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
-msgstr "Formatarea partiţiilor"
+msgstr "Informaţie"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
-#, fuzzy
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
-msgstr "Dezinstalarea RPM-urilor"
-
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Configuraţie"
+msgstr ""
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr "Punct de montaj"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Alegeţi partiţiile pe care doriţi sa le formataăi"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "Birou"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr ""
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
-msgstr "Imprimantă"
+msgstr "Opţiuni pentru imprimanta lpd distantă"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "Instalarea sistemului"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "Selecţionează fişierul"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "Opţiuni pentru imprimanta lpd distantă"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr ""
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
msgstr ""
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "Instalare"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
msgstr ""
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "Ieşire din instalare"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
#, fuzzy
msgid "Internet Connection Sharing"
msgstr "Selectaţi Conexiunea de imprimantă"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr ""
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -9586,35 +10471,35 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
#, fuzzy
msgid "disable"
msgstr "Tabel"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr ""
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
#, fuzzy
msgid "reconfigure"
msgstr "Configuraţi X"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
#, fuzzy
msgid "Disabling servers..."
msgstr "Detecţia perifericelor..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
#, fuzzy
msgid "Internet connection sharing is now disabled."
msgstr "Selectaţi Conexiunea de imprimantă"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr ""
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -9622,21 +10507,21 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
#, fuzzy
msgid "enable"
msgstr "Tabel"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
#, fuzzy
msgid "Internet connection sharing is now enabled."
msgstr "Selectaţi Conexiunea de imprimantă"
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -9646,31 +10531,31 @@ msgid ""
"(LAN)."
msgstr ""
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr ""
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, fuzzy, c-format
msgid "Interface %s"
msgstr "Interesant"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr ""
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr ""
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -9680,18 +10565,18 @@ msgid ""
"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "Monitor nu a fost încă configurat"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -9701,17 +10586,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Configuraţie post-install"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "Configuraţie modem"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -9722,7 +10607,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
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 C-Class Network that "
@@ -9734,79 +10619,79 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "Adresa IP a serverului SMB"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
#, fuzzy
msgid "Firewalling configuration detected!"
msgstr "Citirea configuraţiei"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
msgstr ""
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
#, fuzzy
msgid "Configuring..."
msgstr "Configuraţia IDE"
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, fuzzy, c-format
msgid "Problems installing package %s"
msgstr "Instalarea pachetului %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
#, fuzzy
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Selectaţi Conexiunea de imprimantă"
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
#, fuzzy
msgid "Internet connection sharing configuration"
msgstr "Selectaţi Conexiunea de imprimantă"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, fuzzy, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -9816,226 +10701,6 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Selectaţi Conexiunea de imprimantă"
-#: ../../standalone/draknet_.c:80
-#, fuzzy, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Configuraţia reţelei"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-#, fuzzy
-msgid "Profile: "
-msgstr "montare eşuată: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-#, fuzzy
-msgid "Hostname: "
-msgstr "Numele calculatorului:"
-
-#: ../../standalone/draknet_.c:168
-#, fuzzy
-msgid "Internet access"
-msgstr "Interesant"
-
-#: ../../standalone/draknet_.c:181
-#, fuzzy
-msgid "Type:"
-msgstr "Tip: "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Pasarelă:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-#, fuzzy
-msgid "Interface:"
-msgstr "Interesant"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-#, fuzzy
-msgid "Configure Internet Access..."
-msgstr "Configuraţia serviciilor"
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-#, fuzzy
-msgid "LAN configuration"
-msgstr "Configuraţie"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "Driver"
-msgstr "Server"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "Interface"
-msgstr "Interesant"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Meniu de Start"
-
-#: ../../standalone/draknet_.c:244
-#, fuzzy
-msgid "Configure Local Area Network..."
-msgstr "Configuraţie reţea"
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr ""
-
-#: ../../standalone/draknet_.c:302
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr "Test de configuraţie"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Connected"
-msgstr "Nume de conexiune"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Not connected"
-msgstr "Selectaţi Conexiunea de imprimantă"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-#, fuzzy
-msgid "LAN Configuration"
-msgstr "Configuraţie"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr ""
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr ""
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr ""
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Activ"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Activ"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-#, fuzzy
-msgid "Internet connection configuration"
-msgstr "Selectaţi Conexiunea de imprimantă"
-
-#: ../../standalone/draknet_.c:588
-#, fuzzy
-msgid "Internet Connection Configuration"
-msgstr "Selectaţi Conexiunea de imprimantă"
-
-#: ../../standalone/draknet_.c:597
-#, fuzzy
-msgid "Connection type: "
-msgstr "Nume de conexiune"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr ""
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Pasarelă"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr ""
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr ""
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Alegerea nivelului de securitate"
-
#: ../../standalone/drakxconf_.c:47
#, fuzzy
msgid "Control Center"
@@ -10045,92 +10710,128 @@ msgstr "Nume de conexiune"
msgid "Choose the tool you want to use"
msgstr "Alegeţi unealta pe care doriţi să o folosiţi"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\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 ""
+
+#: ../../standalone/drakxtv_.c:72
#, fuzzy
msgid "Canada (cable)"
msgstr "Canadian (Quebec)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Anulează"
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr "Islandez"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
msgstr ""
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr "serie"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "A fost o eroare la instalarea pachetelor:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10179,7 +10880,7 @@ msgstr ""
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr ""
@@ -10231,11 +10932,6 @@ msgstr "Informaţie"
msgid "/Options/Test"
msgstr "Informaţie"
-#: ../../standalone/logdrake_.c:110
-#, fuzzy
-msgid "/_Help"
-msgstr "Ajutor"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr ""
@@ -10302,7 +10998,7 @@ msgstr ""
msgid "Content of the file"
msgstr "Nume de conexiune"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -10311,81 +11007,112 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr "Pregătesc instalarea"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "Configuraţie"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr ""
-
#: ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid "sshd"
-msgstr "shadow"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Nume de conexiune"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "Ext2"
+msgid "Ftp Server"
+msgstr "Server NIS"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Server de imprimantă"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "Server NIS"
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "Server NIS"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "periferic: "
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Server de imprimantă"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "Interesant"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "Formatare"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "Configuraţie proxy"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
#, fuzzy
msgid "Save as.."
msgstr "Meniu de Start"
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Vă rog, alegeţi tipul de mouse?"
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "n'am găsit nici un serie_usb\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Emulare 3 Butoane?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Opţiuni pentru imprimanta lpd distantă"
+
+#: ../../standalone/scannerdrake_.c:42
+#, fuzzy
+msgid "Detecting devices ..."
+msgstr "Detecţia perifericelor..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -10429,6 +11156,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
#, fuzzy
msgid "Firewalling Configuration"
@@ -10780,10 +11519,6 @@ msgid "Multimedia - Sound"
msgstr "Multimedia"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr ""
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Documentaţie"
@@ -10892,10 +11627,6 @@ msgid ""
msgstr ""
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr ""
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr ""
@@ -10944,196 +11675,187 @@ msgstr "Multimedia"
msgid "Scientific Workstation"
msgstr "Informaţie"
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Montaj"
+#~ msgid "Choose options for server"
+#~ msgstr "Alegeţi opţiunile pentru server"
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
+#~ msgid "Monitor not configured"
+#~ msgstr "Monitor nu a fost încă configurat"
-#~ msgid "None"
-#~ msgstr "Nici unul"
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Cartea grafică nu a fost configurată încă"
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Alegeţi noua mărime"
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Rezoluţia nu a fost încă aleasă"
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Opţiuni pentru imprimanta lpd distantă"
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "reîncercaţi după ce aţi modificat ceva parametri"
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Puteţi furniza acum opţiunile modulului %s."
+#~ msgid "An error occurred:"
+#~ msgstr "A apărut o eroare:"
-#~ msgid "mount failed"
-#~ msgstr "montare eşuată"
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Testul se va termina în %d secunde"
-#~ msgid "Low"
-#~ msgstr "Scăzut"
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Configuraţia e corectă"
-#~ msgid "Medium"
-#~ msgstr "Mediu"
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Eroare, reîncercaţi după ce aţi modificat ceva parametri"
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Cîteva ameliorări pentru acest nivel de securitate, principalul fiind că\n"
-#~ "am introdus mai multe mesaje de avertisment şi verificări."
+#~ msgid "XFree86 server: %s"
+#~ msgstr "Server XFree86: %s"
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr "Multimedia"
+#~ msgid "Show all"
+#~ msgstr "Afişaţi tot"
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Expert"
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Pregătesc configuraţia X-Window"
-#, fuzzy
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "Puteţi selecta acum zona orară în funcţie de locul unde trăiţi.\n"
-#~ "\n"
-#~ "\n"
-#~ "Linux tratează ora în format GMT sau \"Greenwich Mean Time\" şi-l "
-#~ "traduce\n"
-#~ "în oră locală în funcţie de zona orară aleasă."
+#~ msgid "What do you want to do?"
+#~ msgstr "Ce doriţi să faceţi ?"
-#, fuzzy
-#~ msgid "Connect to Internet"
-#~ msgstr "Nume de conexiune"
+#~ msgid "Change Monitor"
+#~ msgstr "Alegeţi un alt tip de monitor"
-#, fuzzy
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Nume de conexiune"
+#~ msgid "Change Graphics card"
+#~ msgstr "Alegeţi un alt tip de carte grafică"
-#, fuzzy
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Configuraţie reţea"
+#~ msgid "Change Server options"
+#~ msgstr "Schimbaţi opţiunile server-ului"
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Pe ce disc doriţi să schimbaţi ?"
+#~ msgid "Change Resolution"
+#~ msgstr "Alegeţi o altă rezoluţie"
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Vă rog alegeţi pachetele pe care doriţi să le instalaţi"
+#~ msgid "Show information"
+#~ msgstr "Afişează informaţiile"
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Info"
+#~ msgid "Test again"
+#~ msgstr "Testează din nou"
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Informaţie"
+#~ msgid "Setting security level"
+#~ msgstr "Alegerea nivelului de securitate"
-#, fuzzy
-#~ msgid "authentification"
-#~ msgstr "Autentificare"
+#~ msgid "Graphics card"
+#~ msgstr "Carte grafică"
-#, fuzzy
-#~ msgid "user"
-#~ msgstr "Numele utilizatorului"
+#~ msgid "Select a graphics card"
+#~ msgstr "Alegeţi o carte grafică"
-#, fuzzy
-#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
-#~ "\n"
-#~ msgstr "Vă rog, alegeţi tipul de mouse?"
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Standard VGA, 640x480 la 60 Hz"
-#, fuzzy
-#~ msgid "Removable media"
-#~ msgstr "Automontare automată a perifericelor extractibile"
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 la 56 Hz"
-#~ msgid "Active"
-#~ msgstr "Activ"
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514 Compatibil, 1024x768 la 87 Hz întreţesut (nu 800x600)"
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "Nu"
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 la 87 Hz întreţesut, 800x600 la 56 Hz"
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "O imprimantă, modelul \"%s\", a fost detactă în"
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Super VGA Extins, 800x600 la 60 Hz, 640x480 la 72 Hz"
-#~ msgid "Local Printer Device"
-#~ msgstr "Periferic local de imprimantă"
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Ne-Întreţesut SVGA, 1024x768 la 60 Hz, 800x600 la 72 Hz"
-#~ msgid "Printer Device"
-#~ msgstr "Periferic imprimantă:"
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "Înaltă frecvenţă SVGA, 1024x768 la 70 Hz"
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Coadă distantă:"
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Multi-frecvenţă care e capabil de 1280x1024 la 60 Hz"
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "Coadă distantă:"
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Multi-frecvenţă care e capabil de 1280x1024 la 74 Hz"
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Multi-frecvenţă care e capabil de 1280x1024 la 76 Hz"
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Mouse Systems"
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Monitor care e capabil de 1600x1200 la 70 Hz"
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "Alt tip"
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Monitor care e capabil de 1600x1200 la 76 Hz"
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Alegeţi tastatura."
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Mărimea totală a grupurilor selectate e în jur de %d MB.\n"
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Vă rog faceţi clic pe o partiţie"
+#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
+#~ msgstr ""
+#~ "Dacă doriţi să instalaţi mai puţin decît această mărime,\n"
+#~ "selectaţi procentul pachetelor pe care doriţi să le instalaţi.\n"
+#~ "\n"
+#~ "Un procent slab va instala numai pachetele cele mai inmportante;\n"
+#~ "un procent de 100% va instala toate pachetele selectate."
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Tip: "
+#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
+#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
+#~ msgstr ""
+#~ "Nu aveţi spaţiu pe discul dunmeavoastră decît pentru %d%% al acestor\n"
+#~ "pachete.\n"
+#~ "\n"
+#~ "Dacă doriţi să instalaţi mai puţin decît atît,\n"
+#~ "selectaţi procentul pachetelor pe care doriţi săle instalaţi.\n"
+#~ "Un procent slab nu va installa decît pachetele cele mai importante;\n"
+#~ "un procent de %d%% va instala cît de multe pachete va fi posibil."
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Backup defectuos"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Veţi putea să le alegeţi mai în detaliu la etapa următoare."
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "Configuraţi X"
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Procentul pachetelor de instalat"
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Periferic imprimantă:"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Alegeţi nivelul de securitate"
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Anulează"
+#~ msgid "None"
+#~ msgstr "Nici unul"
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "Ok"
+#~ msgid "You may now provide options to module %s."
+#~ msgstr "Puteţi furniza acum opţiunile modulului %s."
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Mouse USB"
+#~ msgid "mount failed"
+#~ msgstr "montare eşuată"
-#, fuzzy
-#~ msgid "toto"
-#~ msgstr "Root"
+#~ msgid "Low"
+#~ msgstr "Scăzut"
-#, fuzzy
-#~ msgid "Starting your connection..."
-#~ msgstr "Configuraţie reţea"
+#~ msgid "Medium"
+#~ msgstr "Mediu"
-#, fuzzy
-#~ msgid "Closing your connection..."
-#~ msgstr "Configuraţie reţea"
+#~ msgid ""
+#~ "Few improvements for this security level, the main one is that there are\n"
+#~ "more security warnings and checks."
+#~ msgstr ""
+#~ "Cîteva ameliorări pentru acest nivel de securitate, principalul fiind că\n"
+#~ "am introdus mai multe mesaje de avertisment şi verificări."
-#, fuzzy
-#~ msgid "The system is now disconnected."
-#~ msgstr "Pe ce disc doriţi să schimbaţi ?"
+#~ msgid "Active"
+#~ msgstr "Activ"
+
+#~ msgid "A printer, model \"%s\", has been detected on "
+#~ msgstr "O imprimantă, modelul \"%s\", a fost detactă în"
+
+#~ msgid "Local Printer Device"
+#~ msgstr "Periferic local de imprimantă"
+
+#~ msgid "Printer Device"
+#~ msgstr "Periferic imprimantă:"
#~ msgid "Choose the size you want to install"
#~ msgstr "Alegeţi mărimea pe care vreţi să o instalaţi"
@@ -11157,32 +11879,9 @@ msgstr "Informaţie"
#~ "La ce periferic aţi conectat imprimanta \n"
#~ "(notaţi că /dev/lp0 e echivalent cu LPT1:)?\n"
-#~ msgid "$_"
-#~ msgstr "$_"
-
#~ msgid "New"
#~ msgstr "Nou"
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "Şterge"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Vă rog faceţi clic pe o partiţie"
-
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Alegerea obişnuită este \"/dev/hda\" pentru un disc maestru principal "
-#~ "IDE\n"
-#~ "sau \"/dev/sda\" pentru primul disc SCSI."
-
#~ msgid "Ambiguity (%s), be more precise\n"
#~ msgstr "Ambiguitate (%s), fiţi mai precis\n"
@@ -11192,35 +11891,6 @@ msgstr "Informaţie"
#~ msgid "Your choice? (default %s enter `none' for none) "
#~ msgstr "Ce alegeţi ? (din oficiu %s enter `niciuna' pentru niciuna) "
-#, fuzzy
-#~ msgid "Do you want to restart the network"
-#~ msgstr "Doriţi să testaţi configuraţia ?"
-
-#, fuzzy
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Doriţi să testaţi configuraţia ?"
-
-#, fuzzy
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "Doriţi să testaţi configuraţia ?"
-
-#, fuzzy
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "Nume de conexiune"
-
-#, fuzzy
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Alegeţi noua mărime"
-
-#, fuzzy
-#~ msgid "Test the mouse here."
-#~ msgstr "Vă rog, alegeţi tipul de mouse?"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr "Alegeţi limba pentru instalare şi folosirea sistemului."
-
#~ msgid "Choose the layout corresponding to your keyboard from the list above"
#~ msgstr "Alegeţi dispoziţia tastaturii din lista de mai sus"
@@ -11255,137 +11925,6 @@ msgstr "Informaţie"
#~ " dumneavoastră.\n"
#~ " Dar vă rog, NU ALEGEŢi ACEASTA DECÎT DACĂ ŞTIŢI CE FACEŢI!."
-#, fuzzy
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "\t* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ "\t at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "\t* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ "\t will then have a complete collection of software installed in order "
-#~ "to compile, debug and format source code,\n"
-#~ "\t or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "\t* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ "\t SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ "\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "Diferitele posibilităţi pentru utilizarea calculatorului (furnizate, "
-#~ "deci, dacă\n"
-#~ "aţi ales \"Personalizat\" sau \"Expert\" la clasa de instalare) sunt \n"
-#~ "următoarele:\n"
-#~ "\n"
-#~ " - Normal: alegeţi aceasta dacă doriţi să folosiţi calculatorul pentru\n"
-#~ " utilizare zilnică (munca de servici, manipulaţii grafice, etc). Nu "
-#~ "vă\n"
-#~ " aşteptaţi la nici un compilator, utilitare de programare şi altele\n"
-#~ "\n"
-#~ " - Programare: cum numele-l indică. Alegeţi acesta dacă doriţi să aveţi\n"
-#~ " un calculator în principal pentru programare. Veţi avea atunci o "
-#~ "colecţiecompletă\n"
-#~ " instalată pentru a compila, deboga şi formata cod sursă sau crea \n"
-#~ " pachete software.\n"
-#~ "\n"
-#~ " - Server: alegeţi aceasta pentru a instala Mandrake Linux şi "
-#~ "intenţionaţi să-l folosiţi ca server. Acesta poate fi server de "
-#~ "fişiere (NFS sau SMB),\n"
-#~ " sau server de imprimantă (Unix' lp (Line Printer) protocol sau "
-#~ "imprimare \n"
-#~ "stil Windows SMB, server de autentificare (NIS), server de baze de date, "
-#~ "etc.\n"
-#~ "Deci nu vă aşteptaţi la programe de genul KDE, GNOME...\n"
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "Puteţi acum să selectaţi grupul pachetelor pe care vreţi să le instalaţi\n"
-#~ "sau actualizaţi.\n"
-#~ "DrakX va verifica dacă aveţi destul spaţiu pentru a le instala pe toate."
-#~ "Dacă nu, vă va avertiza despre asta. Dacă doriţi să continuaţi oricum,\n"
-#~ "va continua instalarea a tuturor grupurilor selectate dar va lăsa\n"
-#~ "deoparte cîteva pachete de mai puţin interes. La baza listei puteţi să\n"
-#~ "selectaţi opţiunea \"Selectarea individuală a pachetelor\"; în acest caz\n"
-#~ "va trebui va trebui să parcurgeţi mai mult de 1000 de pachete..."
-
-#, fuzzy
-#~ msgid ""
-#~ "If you have all the CDs in the list above, click Ok. If you have\n"
-#~ "none of those CDs, click Cancel. If only some CDs are missing, unselect "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "Dacă aveţi toate CD-urile din lista de mai sus faceţi clic pe Ok.\n"
-#~ "Dacă nu aveţi nici unul din aceste Cd-uri, faceţi clic pe Anulează.\n"
-#~ "Dacă numai cîteva din aceste Cd-uri lipsesc, de-selectaţi-le şi apoi Ok."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, the correct informations can "
-#~ "be\n"
-#~ "obtained from your Internet Service Provider."
-#~ msgstr ""
-#~ "Puteţi intra opţiunile de telefonie. Dacă nu sunteţi sigur de ceea ce\n"
-#~ "trebuie să intraţi, întrebaţi ISP-ul dumneavoastră."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Intrare;\n"
-#~ "\n"
-#~ " - Adresă IP: dacă nu ştiţi care e, întrebaţi administratorul de reţea "
-#~ "sauFurnizorul de Acces Internet (ISP).\n"
-#~ "\n"
-#~ "\n"
-#~ " - Mască de reţea: \"255.255.255.0\" e în general cea corectă. Dacă nu\n"
-#~ "sunteţi sigur, întrebaţi administratorul de reţea sau ISP.\n"
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, ask your network administrator."
-#~ msgstr ""
-#~ "Dacă reţeaua dumneavoastră foloseşte NIS, selectaţi \"Foloseşte NIS\". "
-#~ "Dacă\n"
-#~ "nu ştiţi exact, întrebaţi administratorul de reţea."
-
#~ msgid ""
#~ "You may now enter dialup options. If you're not sure what to enter, the\n"
#~ "correct information can be obtained from your ISP."
@@ -11401,68 +11940,6 @@ msgstr "Informaţie"
#~ "trebuie să folosiţi un proxy, întrebaţi administratorul de reţea sau ISP-"
#~ "ul."
-#, fuzzy
-#~ msgid ""
-#~ "You can install cryptographic package if your internet connection has "
-#~ "been\n"
-#~ "set up correctly. First choose a mirror where you wish to download "
-#~ "packages and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "Puteţi instala pachetul criptografie dacă conexiunea Internet a fost\n"
-#~ "realizată corect. Alegeţi mai întîi un sit Internet oglindă pentru a\n"
-#~ "recupera pachetele şi selectaţi pachetele de instalat.\n"
-#~ "\n"
-#~ "Notaţi că va trebui să alegeţi aceste pachete criptografice "
-#~ "corespunzătoare\n"
-#~ "legislaţie dumneavoastră."
-
-#, fuzzy
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "Alegeţi parola pentru utilizatorul administrator al sistemului Linux.\n"
-#~ "Parola trebuie înscrisă de două ori pentru a se asigura că sunt "
-#~ "identice.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root e utilizatorul administrator al sistemului şi singurul autorizat\n"
-#~ "pentru a modifica configuraţia sistemului. Deci alegeţi cu atenţie "
-#~ "această\n"
-#~ "parolă! Utilizarea neautorizată a acestui cont poate fi foarte\n"
-#~ "periculoasă pentru integritatea sistemului, pentru informaţiilor "
-#~ "conţinute\n"
-#~ "şi pentru celelalte calculatoare conectate la el. Această parolă trebuie "
-#~ "să\n"
-#~ "fie un amestec de caractere alfanumerice şi de cel puţin 8 caractere. Nu-"
-#~ "l\n"
-#~ "scrieţi NICIODATĂ pe ceva şi nu-l faceţi prea lung sau prea greu de "
-#~ "reţinut."
-
#~ msgid ""
#~ "You may now create one or more \"regular\" user account(s), as\n"
#~ "opposed to the \"privileged\" user account, root. You can create\n"
@@ -11507,152 +11984,6 @@ msgstr "Informaţie"
#~ "utilizatorului pe care l-aţi creat aici şi să folosiţi contul root\n"
#~ "numai pentru administraţie şi scopuri de depanare."
-#, fuzzy
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <number>: use the corresponding text mode.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories\n"
-#~ "stored in \"/tmp\" when you boot your system, select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the\n"
-#~ "BIOS about the amount of RAM present in your computer. As consequence, "
-#~ "Linux may\n"
-#~ "fail to detect your amount of RAM correctly. If this is the case, you "
-#~ "can\n"
-#~ "specify the correct amount or RAM here. Please note that a difference of "
-#~ "2 or 4\n"
-#~ "MB between detected memory and memory present in your system is normal."
-#~ msgstr ""
-#~ "Principalele opţiuni ale lui LILO şi grub sunt:\n"
-#~ " - Periferic de boot: parametrează numele perifericului (e.g. o partiţie\n"
-#~ "a unui disc dur) care conţine sectorul de demaraj. În mod normal e vorba\n"
-#~ "de \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Timp de aşteptare înainte de a demara imaginea din oficiu: Specifică\n"
-#~ "numărul de zecimi de secundă pentru a aştepta înaintea demarării primei\n"
-#~ "imagini. Acesta e foarte practic pentru sistemele care demarează de pe\n"
-#~ "disc dur după activarea tastaturii. Gestionarul de demaraj nu aşteaptă\n"
-#~ "deloc dacă secţiunea \"delay\" e omisă sau dacă e fixată la zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Mod Video: Aceasta specifică modul text VGA care ar trebui selectat "
-#~ "la\n"
-#~ "demaraj. Următoarele opţiuni sunt valabile:\n"
-#~ " * normal: selectaţi normal pentru un mod text de 80x25.\n"
-#~ " * <număr>: folosiţi modul text corespunzător."
-
-#, fuzzy
-#~ msgid ""
-#~ "SILO is a bootloader for SPARC: it is able to boot\n"
-#~ "either GNU/Linux or any other operating system present on your computer.\n"
-#~ "Normally, these other operating systems are correctly detected and\n"
-#~ "installed. If this is not the case, you can add an entry by hand in this\n"
-#~ "screen. Be careful as to choose the correct parameters.\n"
-#~ "\n"
-#~ "\n"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "anyone, in which case you can delete the corresponding entries. But\n"
-#~ "in this case, you will need a boot disk in order to boot them!"
-#~ msgstr ""
-#~ "LILO (de la LInux LOader) şi Grub sunt gestionare de demaraj. Amîndoi "
-#~ "sunt\n"
-#~ "capabili să demareze Linux sau un alt sistem prezent în calculator.\n"
-#~ "În mod normal, aceste alte sisteme de operare sunt detectate şi "
-#~ "instalate\n"
-#~ "corect. Dacă cumva nu e cazul, puteţi adăuga o intrare manual în acest\n"
-#~ "ecran. Aveţi grijă să alegeţi parametrii cei buni.\n"
-#~ "\n"
-#~ "\n"
-#~ "Puteţi de asemenea să interziceţi accesul acestor alte sisteme a altor \n"
-#~ "utilizatori, caz în care ar trebui să ştergeţi intrările acestor "
-#~ "sisteme.\n"
-#~ "În acest ultim caz însă, veţi avea nevoie de un floppy de demaraj pentru\n"
-#~ "a putea le demara!"
-
-#, fuzzy
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ "Principalele opţiuni ale lui LILO şi grub sunt:\n"
-#~ " - Periferic de boot: parametrează numele perifericului (e.g. o partiţie\n"
-#~ "a unui disc dur) care conţine sectorul de demaraj. În mod normal e vorba\n"
-#~ "de \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Timp de aşteptare înainte de a demara imaginea din oficiu: Specifică\n"
-#~ "numărul de zecimi de secundă pentru a aştepta înaintea demarării primei\n"
-#~ "imagini. Acesta e foarte practic pentru sistemele care demarează de pe\n"
-#~ "disc dur după activarea tastaturii. Gestionarul de demaraj nu aşteaptă\n"
-#~ "deloc dacă secţiunea \"delay\" e omisă sau dacă e fixată la zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Mod Video: Aceasta specifică modul text VGA care ar trebui selectat "
-#~ "la\n"
-#~ "demaraj. Următoarele opţiuni sunt valabile:\n"
-#~ " * normal: selectaţi normal pentru un mod text de 80x25.\n"
-#~ " * <număr>: folosiţi modul text corespunzător."
-
-#, fuzzy
-#~ msgid ""
-#~ "Now it's time to configure the X Window System, which is the\n"
-#~ "core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "Acum e momentul să configuraţi Sistemul X Windows, care e inima "
-#~ "interfaţei\n"
-#~ "grafice din Linux (Linux GUI de la Linux Graphical User Interface). În\n"
-#~ "acest scop trebuie să configuraţi cartea video şi monitorul. Majoritatea\n"
-#~ "acestor etape sunt automatizate; deci s-ar putea ca tot ceea ce veţi "
-#~ "avea\n"
-#~ "de făcut va consista în verificarea şi acceptarea parametrilor :)\n"
-#~ "\n"
-#~ "Cînd aţi terminat cu configuraţia, X va fi re-demarat (dar poate îi veţi\n"
-#~ "cere lui DrakX să nu o facă) pentru a verifica dacă noii parametrii vă\n"
-#~ "convin. Dacă nu vă convin, va puteţi întoarce şi să-i schimbaţi de cîte "
-#~ "ori\n"
-#~ "e necesar."
-
#~ msgid ""
#~ "If something is wrong in X configuration, use these options to correctly\n"
#~ "configure the X Window System."
@@ -11707,29 +12038,9 @@ msgstr "Informaţie"
#~ msgid "Remote queue"
#~ msgstr "Coadă distantă:"
-#, fuzzy
-#~ msgid "Default Runlevel"
-#~ msgstr "Standard"
-
#~ msgid "NetWare"
#~ msgstr "NetWare"
-#, fuzzy
-#~ msgid "Adapter"
-#~ msgstr "Actualizare"
-
-#, fuzzy
-#~ msgid "Disable network"
-#~ msgstr "Configuraţie reţea"
-
-#, fuzzy
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "Configuraţie reţea"
-
-#, fuzzy
-#~ msgid "Choose"
-#~ msgstr "Mouse USB"
-
#~ msgid "Yes, print ASCII test page"
#~ msgstr "Da, imprimă o pagină de test ASCII"
@@ -11769,26 +12080,6 @@ msgstr "Informaţie"
#~ msgid "Extra Text options"
#~ msgstr "Opţinuni Text suplimentare"
-#~ msgid "Reverse page order"
-#~ msgstr "incersează ordinea paginilor"
-
-#, fuzzy
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Selectaţi Conexiunea de imprimantă"
-
-#, fuzzy
-#~ msgid ""
-#~ "Every printer need a name (for example lp).\n"
-#~ "Other parameters such as the description of the printer or its location\n"
-#~ "can be defined. What name should be used for this printer and\n"
-#~ "how is the printer connected?"
-#~ msgstr ""
-#~ "Fiecare coadă (la care activităţile de imprimare sunt trimise) are "
-#~ "nevoie\n"
-#~ "de un nume (adesea lp) şi de un directoriu de spool asociat. Ce nume\n"
-#~ "şi directoriu doriţi să utilizaţi pentru această coadă şi cum e "
-#~ "conectatăimprimanta?"
-
#~ msgid ""
#~ "Every print queue (which print jobs are directed to) needs a\n"
#~ "name (often lp) and a spool directory associated with it. What\n"
@@ -11807,18 +12098,6 @@ msgstr "Informaţie"
#~ msgid "Spool directory"
#~ msgstr "Dosar de Spool:"
-#, fuzzy
-#~ msgid "Disable"
-#~ msgstr "Tabel"
-
-#, fuzzy
-#~ msgid "Enable"
-#~ msgstr "Tabel"
-
-#, fuzzy
-#~ msgid "fsck failed: "
-#~ msgstr "montare eşuată: "
-
#~ msgid ""
#~ "To enable a more secure system, you should select \"Use shadow file\" "
#~ "and\n"
@@ -11840,141 +12119,20 @@ msgstr "Informaţie"
#~ msgid "yellow pages"
#~ msgstr "Pagini galbene"
-#, fuzzy
-#~ msgid "Light configuration"
-#~ msgstr "Configuraţie"
-
-#, fuzzy
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr "Pe ce disc doriţi să schimbaţi ?"
-
-#, fuzzy
-#~ msgid "Selected size %d%s"
-#~ msgstr "Selecţionează fişierul"
-
-#, fuzzy
-#~ msgid "Opening your connection..."
-#~ msgstr "Configuraţie reţea"
-
-#, fuzzy
-#~ msgid "Configure..."
-#~ msgstr "Configuraţia IDE"
-
-#, fuzzy
-#~ msgid "Configuration de Lilo/Grub"
-#~ msgstr "Configuraţie: Adaugă localizare"
-
#~ msgid "This startup script try to load your modules for your usb mouse."
#~ msgstr ""
#~ "Acest script de demaraj încearcă să încarce modulele pentru mouse-ul\n"
#~ "dumneavoastră usb."
-#, fuzzy
-#~ msgid "Boot style configuration"
-#~ msgstr "Configuraţie post-install"
-
#~ msgid "Automatic dependencies"
#~ msgstr "Dependenţe automate"
#~ msgid "Configure LILO/GRUB"
#~ msgstr "Configuraţie LILO/GRUB"
-#~ msgid "Create a boot floppy"
-#~ msgstr "Creaţi o dischetă de demaraj"
-
#~ msgid "Choice"
#~ msgstr "Alegere "
-#, fuzzy
-#~ msgid "gMonitor"
-#~ msgstr "Monitor"
-
-#, fuzzy
-#~ msgid ""
-#~ "You can now select some miscellaneous options for your system.\n"
-#~ "\n"
-#~ "* Use hard drive optimizations: this option can improve hard disk "
-#~ "performance but is only for advanced users. Some buggy\n"
-#~ " chipsets can ruin your data, so beware. Note that the kernel has a "
-#~ "builtin blacklist of drives and chipsets, but if\n"
-#~ " you want to avoid bad surprises, leave this option unset.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Choose security level: you can choose a security level for your system. "
-#~ "Please refer to the manual for complete\n"
-#~ " information. Basically, if you don't know what to choose, keep the "
-#~ "default option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the BIOS about the amount of RAM present in\n"
-#~ " your computer. As consequence, Linux may fail to detect your amount of "
-#~ "RAM correctly. If this is the case, you can\n"
-#~ " specify the correct amount or RAM here. Please note that a difference "
-#~ "of 2 or 4 MB between detected memory and memory\n"
-#~ " present in your system is normal.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Removable media automounting: if you would prefer not to manually mount "
-#~ "removable media (CD-Rom, floppy, Zip, etc.) by\n"
-#~ " typing \"mount\" and \"umount\", select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories stored in \"/tmp\" when you boot your system,\n"
-#~ " select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Enable num lock at startup: if you want NumLock key enabled after "
-#~ "booting, select this option. Please note that you\n"
-#~ " should not enable this option on laptops and that NumLock may or may "
-#~ "not work under X."
-#~ msgstr ""
-#~ "Puteţi alege acum diferite opţiuni pentru sistemul dumneavoastră.\n"
-#~ "\n"
-#~ " - Foloseşte optimizări pentru disc dur: această opţiune poate ameliora\n"
-#~ "performanţele discului dur dar e rezervat numai utilizatorilor avansaţi:\n"
-#~ "problemele cu unele microprocesoare port distruge datele, deci sunteţi\n"
-#~ "avertizat. Kernel-ul conţine o listă neagră a discurilor şi a "
-#~ "microproce-\n"
-#~ "soarelor, dar dacă vreţi să eliminaţi orice surpriză nu selectaţi "
-#~ "această\n"
-#~ "opţiune.\n"
-#~ "\n"
-#~ " - Alege nivelul de securitate: puteţi alege nivelul de securitate "
-#~ "pentru\n"
-#~ "sistemul dumneavoastră. Vă referiţi-vă la manual pentru o informaţie "
-#~ "completă.\n"
-#~ "Pe scurt: dacă nu sunteţi sigur, alegeţi \"Mediu\", dacă doriţi un\n"
-#~ "calculator securizat, alegeţi \"Paranoiac\" dar aveţi grijă: ÎN ACEST "
-#~ "NIVEL\n"
-#~ " DE SECURITATE, LE LOGIN ÎN CALITATE DE ROOT NU E AUTORIZAT DIRECT! "
-#~ "Pentru \n"
-#~ "a deveni root, va trebui să vă conectaţi ca utilizator normal şi apoi să\n"
-#~ "folosiţi comanda \"su\". În plus, nu vă aşteptaţi să aveţi altceva decît\n"
-#~ "un server. Aţi fost avertizat.\n"
-#~ "\n"
-#~ " - Precizează RAM-ul dacă e necesar: din păcate, în lumea actuală a\n"
-#~ "calculatoarelor personale, nu există o metodă standard pentru a consulta\n"
-#~ "BIOS-ul cu privire la RAM-ul prezent în calculator dumneavoastră. Din\n"
-#~ "această cauză, Linux poate eşua la detectarea RAM-ului în mod corect. "
-#~ "Dacă\n"
-#~ "acesta e cazul, puteţi specifica aici cantitatea exactă. Notaţi că o\n"
-#~ "diferenţă de 2 sau 4Mb e normală.\n"
-#~ "\n"
-#~ " - Auto-montaj des media extractibile: dacă preferaţi să nu montaţi "
-#~ "manual\n"
-#~ "în mod manual aceste periferice (CD-ROM, Floppy, Zip) cu ajutorul \n"
-#~ "comenzilor \"mount\" şi \"umount\", selectaţi această opţiune.\n"
-#~ "\n"
-#~ " - Activează Numlock la demaraj: dacă doriţi să activaţi NumLock la\n"
-#~ "demaraj selectaţi această opţiune (Notaţi că Numlock poate sau să\n"
-#~ "funcţioneze în) mod grafic, X)."
-
-#, fuzzy
-#~ msgid "Internet/Network access"
-#~ msgstr "Interesant"
-
#~ msgid "Miscellaneous"
#~ msgstr "Diverse"
@@ -11990,14 +12148,6 @@ msgstr "Informaţie"
#~ msgid "Second DNS Server"
#~ msgstr "Al doilea server DNS"
-#, fuzzy
-#~ msgid "using module"
-#~ msgstr "Nume de domeniu"
-
-#, fuzzy
-#~ msgid "Development, Database"
-#~ msgstr "Programator"
-
#~ msgid "loopback"
#~ msgstr "loopback"
@@ -12010,95 +12160,27 @@ msgstr "Informaţie"
#~ msgid "Try to find a modem?"
#~ msgstr "Să caut un modem?"
-#, fuzzy
-#~ msgid "Configure an ISDN connection"
-#~ msgstr "Configuraţie reţea"
-
-#, fuzzy
-#~ msgid "Disable Internet Connection"
-#~ msgstr "Configuraţie reţea"
-
-#, fuzzy
-#~ msgid "Configure local network"
-#~ msgstr "Configuraţie reţea"
-
-#, fuzzy
-#~ msgid "Configure the Internet connection / Configure local Network"
-#~ msgstr "Nume de conexiune"
-
-#, fuzzy
-#~ msgid ""
-#~ "Local networking has already been configured.\n"
-#~ "Do you want to:"
-#~ msgstr "Reţeaua LAN a fost deja configurată. Doriţi să :"
-
-#, fuzzy
-#~ msgid "Reconfigure using wizard..."
-#~ msgstr "Configuraţia IDE"
-
-#, fuzzy
-#~ msgid "KDE"
-#~ msgstr "IDE"
-
#~ msgid "Gnome"
#~ msgstr "Gnome"
-#, fuzzy
-#~ msgid "Internet Tools"
-#~ msgstr "Configuraţie proxy"
-
-#, fuzzy
-#~ msgid "Development C/C++"
-#~ msgstr "Programator"
-
#~ msgid "Configure timezone"
#~ msgstr "Configuraţia zonei orare"
-#, fuzzy
-#~ msgid "Network adaptater 1 (eth0):"
-#~ msgstr "Opţiunea imprimantei NetWare"
-
#~ msgid "(may cause data corruption)"
#~ msgstr "(poate cauza deteriorarea datelor)"
#~ msgid "Enable num lock at startup"
#~ msgstr "Activează num lock la demaraj"
-#, fuzzy
-#~ msgid "Confirm Password"
-#~ msgstr "Parola"
-
#~ msgid "DNS server:"
#~ msgstr "Server DNS:"
#~ msgid "Gateway device:"
#~ msgstr "Periferic pasarelă:"
-#~ msgid "default"
-#~ msgstr "standard"
-
-#, fuzzy
-#~ msgid "What is your system used for?"
-#~ msgstr "Care e folosinţa sistemului dumneavoastră?"
-
-#, fuzzy
-#~ msgid "Select the size you want to install"
-#~ msgstr "Alegeţi mărimea pe care vreţi să o instalaţi"
-
#~ msgid "Customized"
#~ msgstr "Personalizat"
-#, fuzzy
-#~ msgid ""
-#~ "Are you sure you are an expert? \n"
-#~ "You will be allowed to make powerful but dangerous things here.\n"
-#~ "\n"
-#~ "You will be asked questions such as: ``Use shadow file for passwords?'',\n"
-#~ "are you ready to answer that kind of questions?"
-#~ msgstr ""
-#~ "Sunteţi sigur ca sunteţi un expert?\n"
-#~ "Ei, nu-i glumă, veţi putea face lucruri serioase dar periculoase aici."
-
#~ msgid "Use shadow file"
#~ msgstr "Foloseşte un fişier shadow"
@@ -12108,9 +12190,6 @@ msgstr "Informaţie"
#~ msgid "Use MD5 passwords"
#~ msgstr "Foloseşte parole MD5"
-#~ msgid "Package"
-#~ msgstr "Pachet"
-
#~ msgid "Tree"
#~ msgstr "Arbore"
@@ -12218,10 +12297,6 @@ msgstr "Informaţie"
#~ msgid "Finding leaves takes some time"
#~ msgstr "Găsirea foilor ia ceva timp"
-#, fuzzy
-#~ msgid "ECI modem"
-#~ msgstr "Expert"
-
#~ msgid "i18n (important)"
#~ msgstr "i18n (important)"
@@ -12240,182 +12315,9 @@ msgstr "Informaţie"
#~ msgid "Slovakian"
#~ msgstr "Slovac"
-#, fuzzy
-#~ msgid "Reconfigure local network"
-#~ msgstr "Reconfiguraţi reţeaua"
-
-#, fuzzy
-#~ msgid "Connect to Internet with a normal modem"
-#~ msgstr "Nume de conexiune"
-
-#, fuzzy
-#~ msgid "Connect to Internet using ISDN"
-#~ msgstr "Nume de conexiune"
-
-#, fuzzy
-#~ msgid "Connect to Internet using DSL (or ADSL)"
-#~ msgstr "Nume de conexiune"
-
-#, fuzzy
-#~ msgid "Connect to Internet using Cable"
-#~ msgstr "Nume de conexiune"
-
-#, fuzzy
-#~ msgid "Germany (1TR6)"
-#~ msgstr "German"
-
-#, fuzzy
-#~ msgid "What do you wish to do?"
-#~ msgstr "Ce doriţi să faceţi ?"
-
-#, fuzzy
-#~ msgid "Install/Rescue"
-#~ msgstr "Instalare"
-
-#, fuzzy
-#~ msgid "Rescue"
-#~ msgstr "Redimensionează"
-
#~ msgid "Which partition type do you want?"
#~ msgstr "Ce tip de partiţie doriţi?"
-#, fuzzy
-#~ msgid ""
-#~ "Choose \"Install\" if there are no previous versions of GNU/Linux\n"
-#~ "installed, or if you wish to use multiple distributions or versions.\n"
-#~ "\n"
-#~ "Choose \"Rescue\" if you wish to rescue a version of Mandrake Linux "
-#~ "already installed.\n"
-#~ "\n"
-#~ "\n"
-#~ "Select:\n"
-#~ "\n"
-#~ " - Recommended: If you have never installed GNU/Linux before, choose "
-#~ "this.\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!\n"
-#~ msgstr ""
-#~ "Alegeţi \"Instalare\" dacă nu exista alte versiuni de Linux instalate,\n"
-#~ "sau dacă doriţi să folosiţi mai multe versiuni sau distribuţii.\n"
-#~ "\n"
-#~ "Alegeţi \"Actualizare\" dacă doriţi să actualizaţi o versiune\n"
-#~ "precedentă Mandrake Linux:\n"
-#~ "%s or %s.\n"
-#~ "\n"
-#~ "\n"
-#~ "Selectare:\n"
-#~ "\n"
-#~ " - Automatizat: Dacă n'aţi mai instalat Linux niciodată, alegeţi "
-#~ "aceasta.\n"
-#~ "NOTĂ:\n"
-#~ " reţeaua nu va fi configurată în timpul instalării, folosiţi\n"
-#~ " \"LinuxConf\" pentru a o configura după ce instalarea s'a terminat.\n"
-#~ "\n"
-#~ " - Personalizat: Dacă sunteţi destul de familiar cu GNU/Linux, puteţi\n"
-#~ " atunci să alegeţi utilizarea principală a calculatorului. Vezi mai "
-#~ "jos\n"
-#~ " pentru detalii.\n"
-#~ "\n"
-#~ " - Expert: Aceasta presupune că sunteţi foarte familiar cu GNU/Linux "
-#~ "şi\n"
-#~ " doriţi să faceţi o instalare foarte personalizată. Ca şi pentru "
-#~ "clasa\n"
-#~ " \"Personalizat\", veţi putea să selectaţi utilizarea sistemului\n"
-#~ " dumneavoastră.\n"
-#~ " Dar vă rog, NU ALEGEŢi ACEASTA DECÎT DACĂ ŞTIŢI CE FACEŢI!.\n"
-
-#, fuzzy
-#~ msgid ""
-#~ "At this point, you may choose what partition(s) to use to install\n"
-#~ "your Mandrake Linux system if they have been already defined (from a\n"
-#~ "previous install of GNU/Linux or from another partitioning tool). In "
-#~ "other\n"
-#~ "cases, hard drive partitions must be defined. This operation consists of\n"
-#~ "logically dividing the computer's hard drive capacity into separate\n"
-#~ "areas for use.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you have to create new partitions, use \"Auto allocate\" to "
-#~ "automatically\n"
-#~ "create partitions for GNU/Linux. You can select the disk for partitioning "
-#~ "by\n"
-#~ "clicking on \"hda\" for the first IDE drive,\n"
-#~ "\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
-#~ "\n"
-#~ "\n"
-#~ "Two common partition are: the root partition (/), which is the starting\n"
-#~ "point of the filesystem's directory hierarchy, and /boot, which contains\n"
-#~ "all files necessary to start the operating system when the\n"
-#~ "computer is first turned on.\n"
-#~ "\n"
-#~ "\n"
-#~ "Because the effects of this process are usually irreversible, "
-#~ "partitioning\n"
-#~ "can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-#~ "simplifies the process so that it must not be. Consult the documentation\n"
-#~ "and take your time before proceeding.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can reach any option using the keyboard: navigate through the "
-#~ "partitions\n"
-#~ "using Tab and Up/Down arrows. 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"
-#~ msgstr ""
-#~ "În acest punct, veţi putea alege partiţiile pentru a instala sistemul\n"
-#~ "Mandrake Linux dacă acestea au fost deja definite (dintr-o altă "
-#~ "instalare\n"
-#~ "prealabilă a unui sistem Linux sau cu ajutorul unui program "
-#~ "departiţionare). În celelalte cazuri, partiţiile vor trebui să fie "
-#~ "create.\n"
-#~ "Această operaţie consistă în divizarea logică a capacităţii discului dur\n"
-#~ "în arii separate pentru utilizare.\n"
-#~ "\n"
-#~ "\n"
-#~ "Dacă aveţi nevoie să creaţi noi partiţii, folosiţi \"Auto alocare\" \n"
-#~ "pentru o creare automată de partiţii Linux. Puteţi selecta discul pentru\n"
-#~ "partiţionare făcînd clic pe \"hda\" pentru primul disc IDE, \"hdb\" \n"
-#~ "pentru al doilea sau \"sda\" pentru primul disc SCSI şi aşa mai departe.\n"
-#~ "\n"
-#~ "\n"
-#~ "Două partiţii obişnuite sunt: partiţia root (/), punctul de plecare\n"
-#~ "al ierarhiei sistemului de fişiere şi /boot, care conţine toate "
-#~ "fişierele\n"
-#~ "necesare pentru a demara sistemul de operare cînd calculatorul e aprins.\n"
-#~ "\n"
-#~ "\n"
-#~ "Pentru că efectele acestui proces sunt în mod uzual reversibile,\n"
-#~ "partiţionarea poate fi intimidantă pentru un utilizator ne-experimentat.\n"
-#~ "De aceea DiskDrake simplifică pe cît posibil acest proces. Consultaţi\n"
-#~ "documentaţia şi nu vă grăbiţi înainte de a începe.\n"
-#~ "\n"
-#~ "\n"
-#~ "Puteţi accede la toate opţiunile cu ajutorul tastaturii: navigaţi "
-#~ "printre\n"
-#~ "partiţii folosind tasta Tab şi tastele săgeţi Sus/Jos. Cînd o partiţie\n"
-#~ "e selectată, puteţi folosi:\n"
-#~ "\n"
-#~ "- Ctrl-c pentru a crea o nouă partiţie (cînd a partiţie goală e "
-#~ "selectată)\n"
-#~ "\n"
-#~ "- Ctrl-d pentru a şterge o partiţie\n"
-#~ "\n"
-#~ "- Ctrl-m pentru a crea un punct de montaj\n"
-
#~ msgid ""
#~ "Any partitions that have been newly defined must be formatted for\n"
#~ "use (formatting meaning creating a filesystem). At this time, you may\n"
@@ -12445,35 +12347,6 @@ msgstr "Informaţie"
#~ "precedente, caz în care timpul va fi lung înainte ca actualizarea să\n"
#~ "înceapă."
-#, fuzzy
-#~ msgid ""
-#~ "If DrakX failed to find your mouse, or if you want to\n"
-#~ "check what it has done, you will be presented the list of mice\n"
-#~ "above.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you agree with DrakX's settings, just click 'Ok'.\n"
-#~ "Otherwise you may choose the mouse that more closely matches your own\n"
-#~ "from the menu above.\n"
-#~ "\n"
-#~ "\n"
-#~ "In case of a serial mouse, you will also have to tell DrakX\n"
-#~ "which serial port it is connected to."
-#~ msgstr ""
-#~ "Dacă DrakX nu a reuşit să detecteze mouse-ul, sau dacă doriţi să "
-#~ "verificaţi\n"
-#~ "ceea ce a făcut, vi se va propune lista cu mouse-uri de mai sus.\n"
-#~ "\n"
-#~ "\n"
-#~ "Dacă sunteţi de acord cu propunerea lui DrakX, săriţi la secţiunea "
-#~ "dorită\n"
-#~ "cu un simple în meniu din stînga. Dacă nu, alegeţi tipul de mouse care\n"
-#~ "credeţi că se apropie mai mult de cel pe care-l aveţi.\n"
-#~ "\n"
-#~ "\n"
-#~ "În cazul unui mouse de tip serie, veţi putea specifica portul serie la\n"
-#~ "care e conectat."
-
#~ msgid ""
#~ "This section is dedicated to configuring a local area\n"
#~ "network (LAN) or a modem.\n"
@@ -12531,85 +12404,6 @@ msgstr "Informaţie"
#~ "configurată. DrakX va încerca să detecteze modemul şi dacă nu reuşeşte\n"
#~ "vă va propune portul serie la care modemul e conectat."
-#, fuzzy
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these\n"
-#~ "types require a different setup. Note however that the print\n"
-#~ "spooler uses 'lp' as the default printer name; so you\n"
-#~ "must have one printer with such a name; but you can give\n"
-#~ "several names, separated by '|' characters, to a printer.\n"
-#~ "So, if you prefer to have a more meaningful name you just have\n"
-#~ "to put it first, eg: \"My Printer|lp\".\n"
-#~ "The printer having \"lp\" in its name(s) will be the default printer.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select\n"
-#~ "\"Local printer\". You will then have to tell which port your\n"
-#~ "printer is connected to, and select the appropriate filter.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine,\n"
-#~ "you will have to select \"Remote lpd\". In order to make\n"
-#~ "it work, no username or password is required, but you will need\n"
-#~ "to know the name of the printing queue on this server.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a SMB printer (which means, a printer located\n"
-#~ "on a remote Windows 9x/NT machine), you will have to specify its\n"
-#~ "SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
-#~ "plus the username, workgroup and password required in order to\n"
-#~ "access the printer, and of course the name of the printer. The same goes\n"
-#~ "for a NetWare printer, except that you need no workgroup information."
-#~ msgstr ""
-#~ "Linux poate gera multe tipuri de imprimante. Fiecare din aceste tipuri\n"
-#~ "necesită o instalare diferită. Notaţi că \"spool\"-ul de imprimantă\n"
-#~ "foloseşte \"lp\" pentru numele din oficiu al imprimantei; deci va trebui\n"
-#~ "să aveţi o imprimantă cu un acest nume; dar îi veţi putea da mai multe "
-#~ "nume,\n"
-#~ "separate de caractere '|'. Deci, dacă doriţi să aveţi unele nume mai "
-#~ "pline\n"
-#~ "de sens, veţi putea folosi, de exemplu: \"Imprimanta mea|lp\".\n"
-#~ "Imprimanta care are are \"lp\" printre numele ei va fi considerată ca\n"
-#~ "imprimanta din oficiu.\n"
-#~ "\n"
-#~ "\n"
-#~ "Dacă imprimanta e conectată fizic la calculator, selectaţi atunci\n"
-#~ "\"Imprimantă locală\". Veţi avea apoi a intra numele portului de\n"
-#~ "imprimantă la care aceasta e conectată şi a selecta filtrul apropriat\n"
-#~ "Portul LPT1 devine lp0 în Linux\n"
-#~ "\n"
-#~ "\n"
-#~ "Dacă doriţi să accedeţi la un calculator Unix distant, veţi avea a "
-#~ "selecta\n"
-#~ "\"lpd distant\". Pentru a o face să funcţioneze, nu aveţi nevoie de "
-#~ "parolă\n"
-#~ "sau de nume de utilizator, dar va trebui să ştiţi care e numele cozii de\n"
-#~ "imprimare de pe acest server-ului.\n"
-#~ "\n"
-#~ "\n"
-#~ "Dacă doriţi să acedeţi la o imprimantă SMB (adică la o imprimantă "
-#~ "conectată\n"
-#~ "fizic la un calculator distant cu un sistem Windows), va trebui să \n"
-#~ "specificaţi numele ei SMB (care nu e numele ei TCP/IP) şi probabil "
-#~ "adresa\n"
-#~ "ei IP, plus numele utilizatorului, al grupului de lucru şi parola cerută\n"
-#~ "pentru a accede la imprimantă şi bineînţeles numele imprimantei. "
-#~ "Lucrurile\n"
-#~ "sunt similare pentru o imprimantă Netware, excepţie făcînd faptul că nu\n"
-#~ "aveţi nevoie de informaţia de grup de lucru."
-
-#, fuzzy
-#~ msgid ""
-#~ "It is strongly recommended that you answer \"Yes\" here. If you install\n"
-#~ "Microsoft Windows at a later date it will overwrite the boot sector.\n"
-#~ "Unless you have made a bootdisk as suggested, you will not be able to\n"
-#~ "boot into GNU/Linux any more."
-#~ msgstr ""
-#~ "E foarte indicat să răspundeţi \"Da\" aici. Dacă instalaţi Microsoft \n"
-#~ "Windows mai tîrziu, acest a vă va şterge sectorul de demaraj al "
-#~ "discului.\n"
-#~ "Dacă nu aveţi un floppy de demaraj, nu veţi mai putea demara Linux."
-
#~ msgid "Forget the changes?"
#~ msgstr "Abandonaţi schimbările?"
@@ -12703,10 +12497,6 @@ msgstr "Informaţie"
#~ msgid "Generic 3 Button Mouse (serial)"
#~ msgstr "Mouse serie generic cu 3 butoane"
-#, fuzzy
-#~ msgid "Kensington Thinking Mouse (serial)"
-#~ msgstr "Kensington Thinking Mouse"
-
#~ msgid "nfs mount failed"
#~ msgstr "montarea nfs a eşuat"
diff --git a/perl-install/share/po/ru.po b/perl-install/share/po/ru.po
index 1f8d41ac7..ee13542aa 100644
--- a/perl-install/share/po/ru.po
+++ b/perl-install/share/po/ru.po
@@ -1,36 +1,70 @@
-# DrakX messages translations.
-# Copyright (C) 1999 MandrakeSoft.
+# drakbootdisk messages translations to (ru) KOI8-R
+# Copyright (C) YEAR Free Software Foundation, Inc.
+# Aleksey Smirnov <smi@logic.ru>, 2000.
# Vladimir Choundalov <choundalovvv@point.pwp.ru>, 2001
-# Aleksey Smirnov <smi@logic.ru>, 1999-2000
+# Vitaly Zubkov <habad@yandex.ru>, 2001
+# Pavel Maryanov <acid_jack@ukr.net>, 2002
+#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2000-11-23 10:07 +0200\n"
-"Last-Translator: Vladimir Choundalov <choundalovvv@point.pwp.ru>\n"
-"Language-Team: ru\n"
+"Project-Id-Version: drakfloppy 0.30\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2000-08-01 16:24+0200\n"
+"Last-Translator: Pavel Maryanov <acid_jack@ukr.net>\n"
+"Language-Team: Russian \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=koi8-r\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "îÁÓÔŇĎÉÔŘ ×ÓĹ ÇĎĚĎ×ËÉ ÎĹÚÁ×ÉÓÉÍĎ"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ ŇÁÓŰÉŇĹÎÉĹ Xinerama"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "óËŇĎÎĆÉÇŐŇÉŇĎ×ÁÔŘ ÔĎĚŘËĎ ËÁŇÔŐ \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 Mb"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 Mb"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB ÉĚÉ ÂĎĚŘŰĹ"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "÷ŮÂĹŇÉÔĹ X ÓĹŇ×ĹŇ"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X ÓĹŇ×ĹŇ"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "îÁÓÔŇĎĘËÁ ÄĚŃ ÎĹÓËĎĚŘËÉČ ÇĎĚĎ×ĎË"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -38,43 +72,44 @@ msgstr ""
"÷ÁŰÁ ÓÉÓÔĹÍÁ ĐĎÄÄĹŇÖÉ×ÁĹÔ ÎÁÓÔŇĎĘËŐ ÄĚŃ ÎĹÓËĎĚŘËÉČ ÇĎĚĎ×ĎË.\n"
"ţÔĎ ×Ů ČĎÔÉÔĹ ÓÄĹĚÁÔŘ?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "÷ÉÄĹĎËÁŇÔÁ"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "÷ŮÂĹŇÉÔĹ ŇÁÚÍĹŇ ĐÁÍŃÔÉ ×ÁŰĹĘ ×ÉÄĹĎËÁŇÔŮ"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "÷ŮÂĹŇÉÔĹ ×ÉÄĹĎËÁŇÔŐ"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "îÁÓÔŇĎĘËÁ XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "÷ŮÂĹŇÉÔĹ X ÓĹŇ×ĹŇ"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "ëÁËŐŔ ËĎÎĆÉÇŐŇÁĂÉŔ XFree ×Ů ČĎÔÉÔĹ ĐĎĚŐŢÉÔŘ?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X ÓĹŇ×ĹŇ"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "îÁÓÔŇĎÉÔŘ ×ÓĹ ÇĎĚĎ×ËÉ ÎĹÚÁ×ÉÓÉÍĎ"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "÷ŮÂĹŇÉÔĹ X ÓĹŇ×ĹŇ"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ ŇÁÓŰÉŇĹÎÉĹ Xinerama"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X ÓĹŇ×ĹŇ"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "óËŇĎÎĆÉÇŐŇÉŇĎ×ÁÔŘ ÔĎĚŘËĎ ËÁŇÔŐ \"%s\" (%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree86 %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "ëÁËŐŔ ËĎÎĆÉÇŐŇÁĂÉŔ XFree ×Ů ČĎÔÉÔĹ ĐĎĚŐŢÉÔŘ?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s Ó ÁĐĐÁŇÁÔÎŮÍ 3D ŐÓËĎŇĹÎÉĹÍ"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -85,33 +120,17 @@ msgstr ""
"÷ÁŰÁ ×ÉÄĹĎËÁŇÔÁ ĐĎÄÄĹŇÖÉ×ÁĹÔÓŃ ÓĹŇ×ĹŇĎÍ XFree %s, ËĎÔĎŇŮĘ ×ĎÚÍĎÖÎĎ ĚŐŢŰĹ "
"ĐĎÄÄĹŇÖÉ×ÁĹÔ 2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "÷ÁŰÁ ×ÉÄĹĎËÁŇÔÁ ÍĎÖĹÔ ĐĎÄÄĹŇÖÉ×ÁÔŘ ÁĐĐÁŇÁÔÎĎĹ 3D ŐÓËĎŇĹÎÉĹ × XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s Ó ÁĐĐÁŇÁÔÎŮÍ 3D ŐÓËĎŇĹÎÉĹÍ"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"÷ÁŰÁ ×ÉÄĹĎËÁŇÔÁ ÍĎÖĹÔ ĐĎÄÄĹŇÖÉ×ÁÔŘ ÁĐĐÁŇÁÔÎĎĹ 3D ŐÓËĎŇĹÎÉĹ × XFree %s,\n"
-"ďâňáôéôĺ ÷îéíáîéĺ - üôď üëóđĺňéíĺîôáěřîáń đďääĺňöëá é ÷ďúíďöîď úá÷éóáîéĺ "
-"÷áűĺçď ëďíđřŕôĺňá."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s Ó üëóđĺňéíĺîôáěřîůí ÁĐĐÁŇÁÔÎŮÍ 3D ŐÓËĎŇĹÎÉĹÍ"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -125,31 +144,59 @@ msgstr ""
"÷ÁŰÁ ×ÉÄĹĎËÁŇÔÁ ĐĎÄÄĹŇÖÉ×ÁĹÔÓŃ ÓĹŇ×ĹŇĎÍ XFree %s, ËĎÔĎŇĎĘ, ×ĎÚÍĎÖÎĎ, ĚŐŢŰĹ "
"ĐĎÄÄĹŇÖÉ×ÁĹÔ 2D."
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
+"÷ÁŰÁ ×ÉÄĹĎËÁŇÔÁ ÍĎÖĹÔ ĐĎÄÄĹŇÖÉ×ÁÔŘ ÁĐĐÁŇÁÔÎĎĹ 3D ŐÓËĎŇĹÎÉĹ × XFree %s,\n"
+"ďâňáôéôĺ ÷îéíáîéĺ - üôď üëóđĺňéíĺîôáěřîáń đďääĺňöëá é ÷ďúíďöîď úá÷éóáîéĺ "
+"÷áűĺçď ëďíđřŕôĺňá."
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "îÁÓÔŇĎĘËÁ XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "÷ŮÂĹŇÉÔĹ ŇÁÚÍĹŇ ĐÁÍŃÔÉ ×ÁŰĹĘ ×ÉÄĹĎËÁŇÔŮ"
+#: ../../Xconfig/card.pm_.c:445
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "÷ŮÂĹŇÉÔĹ ĎĐĂÉÉ ÄĚŃ ÓĹŇ×ĹŇÁ"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"óĎČŇÁÎÉÔŘ ÉÚÍĹÎĹÎÉŃ?\n"
+"ôĹËŐÝÉĹ ÎÁÓÔŇĎĘËÉ:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "÷ŮÂĹŇÉÔĹ ÍĎÎÉÔĎŇ"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "íĎÎÉÔĎŇ"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "óĐĹĂÉÁĚŘÎÁŃ"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "ďÂŮŢÎŮĘ"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "ďÔËÁÔ"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -172,515 +219,325 @@ msgstr ""
"×ÎĹ ĆÁËÔÉŢĹÓËÉČ ×ĎÚÍĎÖÎĎÓÔĹĘ ×ÁŰĹÇĎ ÍĎÎÉÔĎŇÁ: ×Ů ÍĎÖĹÔĹ ÉÓĐĎŇÔÉÔŘ ÍĎÎÉÔĎŇ.\n"
" ĺÓĚÉ ÓĎÍÎĹ×ÁĹÔĹÓŘ - ĚŐŢŰĹ ×ŮÂĹŇÉÔĹ ËĎÎÓĹŇ×ÁÔÉ×ÎŮĹ ŐÓÔÁÎĎ×ËÉ."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "ţÁÓÔĎÔÁ ÇĎŇÉÚĎÎÔÁĚŘÎĎĘ ŇÁÚ×ĹŇÔËÉ"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "ţÁÓÔĎÔÁ ×ĹŇÔÉËÁĚŘÎĎĘ ŇÁÚ×ĹŇÔËÉ"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "íĎÎÉÔĎŇ ÎĹ ÎÁÓÔŇĎĹÎ"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "÷ÉÄĹĎËÁŇÔÁ ĹÝĹ ÎĹ ÎÁÓÔŇĎĹÎÁ"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "ňÁÚŇĹŰĹÎÉĹ ĹÝĹ ÎĹ ×ŮÂŇÁÎĎ"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "čĎÔÉÔĹ ĐŇĎÔĹÓÔÉŇĎ×ÁÔŘ ÎÁÓÔŇĎĘËÉ?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-"đŇĹÄŐĐŇĹÖÄĹÎÉĹ: ÔĹÓÔÉŇĎ×ÁÎÉĹ ÜÔĎĘ ×ÉÄĹĎËÁŇÔŮ ÍĎÖĹÔ ĐŇÉ×ĹÓÔÉ Ë ÚÁ×ÉÓÁÎÉŔ "
-"ËĎÍĐŘŔÔĹŇÁ"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "đŇĎ×ĹŇËÁ ÎÁÓÔŇĎĹË"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 Ă×ĹÔĎ× (8 ÂÉÔ)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"ĐĎĐŇĎÂŐĘÔĹ ÉÚÍĹÎÉÔŘ ÎĹËĎÔĎŇŮĹ ĐÁŇÁÍĹÔŇŮ"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 ÔŮÓŃŢÉ Ă×ĹÔĎ× (15 ÂÉÔ)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "đŇĎÉÚĎŰĚÁ ĎŰÉÂËÁ:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 ÔŮÓŃŢ Ă×ĹÔĎ× (16 ÂÉÔ)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "úÁ×ĹŇŰĹÎÉĹ ŢĹŇĹÚ %d ÓĹËŐÎÄ"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 ÍÉĚĚÉĎÎĎ× Ă×ĹÔĎ× (24 ÂÉÔÁ)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "üÔÉ ŐÓÔÁÎĎ×ËÉ ×ĹŇÎŮ?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 ÍÉĚĚÉÁŇÄÁ Ă×ĹÔĎ× (32 ÂÉÔÁ)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "đŇĎÉÚĎŰĚÁ ĎŰÉÂËÁ, ĐĎĐŇĎÂŐĘÔĹ ÉÚÍĹÎÉÔŘ ÎĹËĎÔĎŇŮĹ ĐÁŇÁÍĹÔŇŮ"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "ňÁÚŇĹŰĹÎÉŃ"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "ňÁÚŇĹŰĹÎÉĹ"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "÷ŮÂĎŇ ŇÁÚŇĹŰĹÎÉŃ É ÇĚŐÂÉÎŮ Ă×ĹÔÁ"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "÷ÉÄĹĎËÁŇÔÁ: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "óĹŇ×ĹŇ XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "ĺÝĹ"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "ďÔÍĹÎÉÔŘ"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "ďË"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "ňĹÖÉÍ üËÓĐĹŇÔ"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "đĎËÁÚÁÔŘ ×ÓĹ"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "čĎÔÉÔĹ ĐŇĎÔĹÓÔÉŇĎ×ÁÔŘ ÎÁÓÔŇĎĘËÉ?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "ňÁÚŇĹŰĹÎÉŃ"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "đŇĎ×ĹŇËÁ ÎÁÓÔŇĎĹË"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "ňÁÓËĚÁÄËÁ ËĚÁ×ÉÁÔŐŇŮ: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "ôÉĐ ÍŮŰÉ: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "íŮŰŘ: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "íĎÎÉÔĎŇ: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "ţÁÓÔĎÔÁ ÇĎŇ.ŇÁÚ×. ÍĎÎÉÔĎŇÁ: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "ţÁÓÔĎÔÁ ×ĹŇÔ.ŇÁÚ×. ÍĎÎÉÔĎŇÁ: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
-msgstr "÷ÉÄĹĎËÁŇÔÁ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
+msgid "Graphics card: %s\n"
msgstr "÷ÉÄĹĎËÁŇÔÁ: %s\n"
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "÷ÉÄĹĎĐÁÍŃÔŘ: %s KB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "çĚŐÂÉÎÁ Ă×ĹÔÁ: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "ňÁÚŇĹŰĹÎÉĹ: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "óĹŇ×ĹŇ XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "äŇÁĘ×ĹŇ XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "đĎÄÇĎÔĎ×ËÁ ÎÁÓÔŇĎĹË X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "ţÔĎ ×Ů ČĎÔÉÔĹ ÓÄĹĚÁÔŘ?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "óÍĹÎÉÔĹ ÍĎÎÉÔĎŇ"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "óÍĹÎÉÔĹ ×ÉÄĹĎËÁŇÔŐ"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "óÍĹÎÉÔĹ ĎĐĂÉÉ óĹŇ×ĹŇÁ"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "óÍĹÎÉÔĹ ŇÁÚŇĹŰĹÎÉĹ"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "đĎËÁÚÁÔŘ ÉÎĆĎŇÍÁĂÉŔ"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "đŇĎ×ĹŇÉÔŘ ÓÎĎ×Á"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "÷ŮČĎÄ"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"óĎČŇÁÎÉÔŘ ÉÚÍĹÎĹÎÉŃ?\n"
-"ôĹËŐÝÉĹ ÎÁÓÔŇĎĘËÉ:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X ĐŇÉ ÚÁÇŇŐÚËĹ"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"íĎÖÎĎ ÎÁÓÔŇĎÉÔŘ ÓÉÓÔĹÍŐ ÄĚŃ Á×ÔĎÍÁÔÉŢĹÓËĎÇĎ ÚÁĐŐÓËÁ X ĐĎÓĚĹ ÚÁÇŇŐÚËÉ.\n"
"čĎÔÉÔĹ, ŢÔĎÂŮ X ÓÔÁŇÔĎ×ÁĚ ĐŇÉ ĐĹŇĹÚÁÇŇŐÚËĹ?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "÷ĎĘÄÉÔĹ ĐĎ×ÔĎŇÎĎ × %s ÄĚŃ ÁËÔÉ×ÁĂÉÉ ÉÚÍĹÎĹÎÉĘ"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "÷ŮĘÄÉÔĹ, Á ÚÁÔĹÍ ÉÓĐĎĚŘÚŐĘÔĹ Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 Ă×ĹÔĎ× (8 ÂÉÔ)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 ÔŮÓŃŢÉ Ă×ĹÔĎ× (15 ÂÉÔ)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 ÔŮÓŃŢ Ă×ĹÔĎ× (16 ÂÉÔ)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 ÍÉĚĚÉĎÎĎ× Ă×ĹÔĎ× (24 ÂÉÔÁ)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 ÍÉĚĚÉÁŇÄÁ Ă×ĹÔĎ× (32 ÂÉÔÁ)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-#, fuzzy
-msgid "16 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-#, fuzzy
-msgid "32 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-#, fuzzy
-msgid "64 MB or more"
-msgstr "16 MB ÉĚÉ ÂĎĚŘŰĹ"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "óÔÁÎÄÁŇÔÎŮĘ VGA, 640x480 ĐŇÉ 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 ĐŇÉ 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "óĎ×ÍĹÓÔÉÍÁ Ó 8514, 1024x768 ĐŇÉ 87 Hz ŢŇĹÚ-ÓÔŇĎŢÎŮĘ (ÎĹÔ 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 ĐŇÉ 87 Hz ŢŇĹÚ-ÓÔŇĎŢÎŮĘ, 800x600 ĐŇÉ 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Extended Super VGA, 800x600 ĐŇÉ 60 Hz, 640x480 ĐŇÉ 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Non-Interlaced SVGA, 1024x768 ĐŇÉ 60 Hz, 800x600 ĐŇÉ 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "SVGA ÷ŮÓĎËĎĘ ţÁÓÔĎÔŮ, 1024x768 ĐŇÉ 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frequency ÓĐĎÓĎÂÎŮĘ ĐĎÄÄĹŇÖÉ×ÁÔŘ 1280x1024 ĐŇÉ 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frequency ÓĐĎÓĎÂÎŮĘ ĐĎÄÄĹŇÖÉ×ÁÔŘ 1280x1024 ĐŇÉ 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frequency ÓĐĎÓĎÂÎŮĘ ĐĎÄÄĹŇÖÉ×ÁÔŘ 1280x1024 ĐŇÉ 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor ÓĐĎÓĎÂÎŮĘ ĐĎÄÄĹŇÖÉ×ÁÔŘ 1600x1200 ĐŇÉ 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor ÓĐĎÓĎÂÎŮĘ ĐĎÄÄĹŇÖÉ×ÁÔŘ 1600x1200 ĐŇÉ 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "đĹŇ×ŮĘ ÓĹËÔĎŇ ÚÁÇŇŐÚĎŢÎĎÇĎ ŇÁÚÄĹĚÁ"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "đĹŇ×ŮĘ ÓĹËÔĎŇ ŐÓÔŇĎĘÓÔ×Á (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "őÓÔÁÎĎ×ËÁ SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "ëŐÄÁ ×Ů ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ ÎÁŢÁĚŘÎŮĘ ÚÁÇŇŐÚŢÉË?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "őÓÔÁÎĎ×ËÁ LILO/grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO Ó ÔĹËÓÔĎ×ŮÍ ÍĹÎŔ"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO Ó ÇŇÁĆÉŢĹÓËÉÍ ÍĹÎŔ"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "úÁÇŇŐÖÁÔŘÓŃ ÉÚ DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "çĚÁ×ÎŮĹ ĐÁŇÁÍĹÔŇŮ ÎÁŢÁĚŘÎĎÇĎ ÚÁÇŇŐÚŢÉËÁ"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "÷ŮÂĎŇ ÉÓĐĎĚŘÚŐĹÍĎÇĎ ÎÁŢÁĚŘÎĎÇĎ ÚÁÇŇŐÚŢÉËÁ"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "őÓÔÁÎĎ×ËÁ ÎÁŢÁĚŘÎĎÇĎ ÚÁÇŇŐÚŢÉËÁ"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "úÁÇŇŐÚĎŢÎĎĹ ŐÓÔŇĎĘÓÔ×Ď"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ÎĹ ŇÁÂĎÔÁĹÔ ÎÁ ÓÔÁŇŮČ BIOS)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "ëĎÍĐÁËÔÎĎ"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "ËĎÍĐÁËÔÎĎ"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "÷ÉÄĹĎ-ŇĹÖÉÍ"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "úÁÄĹŇÖËÁ ĐĹŇĹÄ ÚÁÇŇŐÚËĎĘ ĎÂŇÁÚÁ ĐĎ ŐÍĎĚŢÁÎÉŔ"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "đÁŇĎĚŘ"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "đÁŇĎĚŘ (ĹÝĹ ŇÁÚ)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "ďÇŇÁÎÉŢÉÔŘ ĐÁŇÁÍĹÔŇŮ ËĎÍÁÎÄÎĎĘ ÓÔŇĎËÉ"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "ĎÇŇÁÎÉŢÉÔŘ"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "ďŢÉÝÁÔŘ /tmp ĐŇÉ ËÁÖÄĎĘ ÚÁÇŇŐÚËĹ"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "őËÁÖÉÔĹ ÔĎŢÎŮĘ ŇÁÚÍĹŇ RAM (ÎÁĘÄĹÎĎ %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "ňÁÚŇĹŰÉÔŘ ÎĹÓËĎĚŘËĎ ĐŇĎĆÉĚĹĘ"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "úÁÄÁĘÔĹ ŇÁÚÍĹŇ RAM × Mb"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "đŐÎËÔ ``ďÇŇÁÎÉŢÉÔŘ ĎĐĂÉÉ ËĎÍÁÎÄÎĎĘ ÓÔŇĎËÉ'' ÎĹ ÉÓĐĎĚŘÚŐĹÔÓŃ ÂĹÚ ĐÁŇĎĚŃ"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "đĎĐŇĎÂŐĘÔĹ ĹÝĹ ŇÁÚ"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "đÁŇĎĚÉ ÎĹ ÓĎ×ĐÁÄÁŔÔ"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "îÁŢÁĚŘÎĎĹ ÓĎĎÂÝĹÎÉĹ"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "úÁÄĹŇÖËÁ ĎÔËŇŮÔÉŃ Firmware"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "úÁÄĹŇÖËÁ ÚÁÇŇŐÚËÉ ŃÄŇÁ"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "÷ËĚŔŢÉÔŘ ÚÁÇŇŐÚËŐ Ó CD?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "÷ËĚŔŢÉÔŘ ÚÁÇŇŐÚËŐ OF?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "ďĐĹŇÁĂÉĎÎÎÁŃ ÓÉÓÔĹÍÁ ĐĎ ŐÍĎĚŢÁÎÉŔ?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -689,83 +546,83 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"éÍĹĹÔÓŃ ÎĹÓËĎĚŘËĎ ŇÁÚŮÎČ ĐŐÎËÔĎ×.\n"
"÷Ů ÍĎÖĹÔĹ ÄĎÂÁ×ÉÔŘ ĹÝĹ, ÉĚÉ ÉÚÍĹÎÉÔŘ ÓŐÝĹÓÔ×ŐŔÝÉĹ."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "äĎÂÁ×ÉÔŘ"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "çĎÔĎ×Ď"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "éÚÍĹÎÉÔŘ"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "ëÁËĎĘ ÔÉĐ ĐŐÎËÔÁ ×Ů ČĎÔÉÔĹ ÄĎÂÁ×ÉÔŘ?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "äŇŐÇÁŃ ďó (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "äŇŐÇÁŃ ďó (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "äŇŐÇÁŃ ďó (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "ďÂŇÁÚ"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "äĎÂÁ×ÉÔŘ"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "ţÔĹÎÉĹ-ÚÁĐÉÓŘ"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "ôÁÂĚÉĂÁ"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "îĹÂĹÚĎĐÁÓÎŮĘ"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "íĹÔËÁ"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "őÍĎĚŢÁÎÉĹ"
@@ -798,53 +655,75 @@ msgstr "ő ×ÁÓ ÄĎĚÖĹÎ ÂŮÔŘ ŇÁÚÄĹĚ swap"
msgid "This label is already used"
msgstr "üÔÁ ÍĹÔËÁ ŐÖĹ ÉÓĐĎĚŘÚŐĹÔÓŃ"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "îÁĘÄĹÎŮ %s %s ÉÎÔĹŇĆĹĘÓŮ"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "ĺÓÔŘ ĚÉ Ő ×ÁÓ ÄŇŐÇĎĘ?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "ĺÓÔŘ ĚÉ Ő ×ÁÓ ËÁËÉĹ-ĚÉÂĎ %s ÉÎÔĹŇĆĹĘÓŮ?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "îĹÔ"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "äÁ"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "óÍ. ĎĐÉÓÁÎÉĹ ĎÂĎŇŐÄĎ×ÁÎÉŃ"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "őÓÔÁÎĎ×ËÁ ÄŇÁĘ×ĹŇÁ ÄĚŃ %s ËÁŇÔŮ %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(ÍĎÄŐĚŘ %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"ôĹĐĹŇŘ ×Ů ÍĎÖĹÔĹ ÚÁÄÁ×ÁÔŘ ĐÁŇÁÍĹÔŇŮ ÄĚŃ ÍĎÄŐĚŃ %s.\n"
+"đÁŇÁÍĹÔŇŮ ÚÁÄÁŔÔÓŃ × ĆĎŇÍÁÔĹ ``ÉÍŃ=ÚÎÁŢĹÎÉĹ ÉÍŃ2=ÚÎÁŢĹÎÉĹ2 ...''.\n"
+"îÁĐŇÉÍĹŇ, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "đÁŇÁÍĹÔŇŮ ÍĎÄŐĚŃ:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "ëÁËĎĘ %s ÄŇÁĘ×ĹŇ ÍÎĹ ĐĎĐŇĎÂĎ×ÁÔŘ?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -862,37 +741,15 @@ msgstr ""
"ÎĎ ĎÎĎ \n"
"ÎĹ ×ŮÚĎ×ĹÔ ÎÉËÁËÉČ ĐĎ×ŇĹÖÄĹÎÉĘ."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "á×ÔĎĐĎÉÓË"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "őËÁÖÉÔĹ ĐÁŇÁÍĹÔŇŮ"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"ôĹĐĹŇŘ ×Ů ÍĎÖĹÔĹ ÚÁÄÁ×ÁÔŘ ĐÁŇÁÍĹÔŇŮ ÄĚŃ ÍĎÄŐĚŃ %s.\n"
-"đÁŇÁÍĹÔŇŮ ÚÁÄÁŔÔÓŃ × ĆĎŇÍÁÔĹ ``ÉÍŃ=ÚÎÁŢĹÎÉĹ ÉÍŃ2=ÚÎÁŢĹÎÉĹ2 ...''.\n"
-"îÁĐŇÉÍĹŇ, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "đÁŇÁÍĹÔŇŮ ÍĎÄŐĚŃ:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -901,51 +758,56 @@ msgstr ""
"úÁÇŇŐÚËÁ ÍĎÄŐĚŃ %s ÚÁ×ĹŇŰÉĚÁÓŘ ÎĹŐÄÁŢÎĎ.\n"
"čĎÔÉÔĹ ĐĎĐŇĎÂĎ×ÁÔŘ ĹÝĹ Ó ÄŇŐÇÉÍÉ ĐÁŇÁÍĹÔŇÁÍÉ?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(ŐÖĹ ÄĎÂÁ×ĚĹÎĎ %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "üÔĎÔ ĐÁŇĎĚŘ ÓĚÉŰËĎÍ ĐŇĎÓÔ"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "÷×ĹÄÉÔĹ ÉÍŃ ĐĎĚŘÚĎ×ÁÔĹĚŃ"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"éÍŃ ĐĎĚŘÚĎ×ÁÔĹĚŃ ÄĎĚÖÎĎ ÓĎÄĹŇÖÁÔŘ ÂŐË×Ů ÔĎĚŘËĎ × ÎÉÖÎĹÍ ŇĹÇÉÓÔŇĹ, \n"
"ĂÉĆŇŮ , `-' É `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "üÔĎ ÉÍŃ ĐĎĚŘÚĎ×ÁÔĹĚŃ ŐÖĹ ÄĎÂÁ×ĚĹÎĎ"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "üÔĎ ÉÍŃ ĐĎĚŘÚĎ×ÁÔĹĚŃ ŐÖĹ ÄĎÂÁ×ĚĹÎĎ"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "äĎÂÁ×ÉÔŘ ĐĎĚŘÚĎ×ÁÔĹĚŃ"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -954,32 +816,32 @@ msgstr ""
"÷×ĹÓÔÉ ĐĎĚŘÚĎ×ÁÔĹĚŃ\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "đŇÉÎŃÔŘ ĐĎĚŘÚĎ×ÁÔĹĚŃ"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "îÁÓÔĎŃÝĹĹ ÉÍŃ"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "đĎĚŘÚĎ×ÁÔĹĚŘÓËĎĹ ÉÍŃ"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "ďÂĎĚĎŢËÁ"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "đÉËÔĎÇŇÁÍÍÁ"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "á×ÔĎ-×ČĎÄ"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -989,123 +851,103 @@ msgstr ""
"ĐĎĚŘÚĎ×ÁÔĹĚŃ.\n"
"ĺÓĚÉ ×Ů ÎĹ ČĎÔÉÔĹ ĐĎĚŘÚĎ×ÁÔŘÓŃ ÜÔĎĘ ×ĎÚÍĎÖÎĎÓÔŘŔ, ÎÁÖÍÉÔĹ ÎÁ ËÎĎĐËŐ ďÔÍĹÎÉÔŘ."
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "÷ŮÂĹŇÉÔĹ ĐĎĚŘÚĎ×ÁÔĹĚŃ ĐĎ ŐÍĎĚŢÁÎÉŔ:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "÷ŮÂĹŇÉÔĹ ÍĹÎĹÄÖĹŇ ĎËĎÎ ÄĚŃ ÚÁĐŐÓËÁ:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr "őËÁÖÉÔĹ, ËÁËĎĘ ŃÚŮË ÉÓĐĎĚŘÚĎ×ÁÔŘ."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr "÷Ů ÍĎÖĹÔĹ ×ŮÂŇÁÔŘ ÄŇŐÇÉĹ ŃÚŮËÉ, ËĎÔĎŇŮĹ ÂŐÄŐÔ ÄĎÓÔŐĐÎŮ ĐĎÓĚĹ ŐÓÔÁÎĎ×ËÉ"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "÷ÓĹ"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr "äĎÂÁ×ÉÔŘ ĐĎĚŘÚĎ×ÁÔĹĚŃ"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "óĐĹĂÉÁĚŘÎÁŃ"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr "úÁĐŐÓËÁĹÔÓŃ CUPS"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"üÔĎÔ ĐÁËĹÔ ÓĚĹÄŐĹÔ ĎÂÎĎ×ÉÔŘ\n"
"÷Ů Ő×ĹŇĹÎŮ, ŢÔĎ ČĎÔÉÔĹ ĎÔÍĹÎÉÔŘ ĹÇĎ ×ŮÂĎŇ?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "ďÔÍĹÎÁ"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "äĎÂŇĎ ĐĎÖÁĚĎ×ÁÔŘ × Crackers"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "óĚÁÂŮĘ"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "óÔÁÎÄÁŇÔÎÁŃ"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "÷ŮÓĎËÉĘ"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "÷ŮÓĎËÉĘ"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "đÁŇÁÎĎÉÄÁĚŘÎŮĘ"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1116,7 +958,7 @@ msgstr ""
"ÉÓĐĎĚŘÚĎ×ÁÔŘ\n"
"ÎÁ ÍÁŰÉÎÁČ, ĐĎÄËĚŔŢĹÎÎŮÍ Ë ÓĹÔÉ ÉĚÉ Ë Internet. ÷ČĎÄ ÎĹ ÚÁÝÉÝĹÎ ĐÁŇĎĚĹÍ."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1124,7 +966,7 @@ msgstr ""
"đÁŇĎĚÉ ÔĹĐĹŇŘ ×ËĚŔŢĹÎŮ, ÎĎ ÉÓĐĎĚŘÚĎ×ÁÎÉĹ ËĎÍĐŘŔÔĹŇÁ × ËÁŢĹÓÔ×Ĺ ÓĹÔĹ×ĎÇĎ\n"
"ĐĎ-ĐŇĹÖÎĹÍŐ ÎĹ ŇĹËĎÍĹÎÄŐĹÔÓŃ."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1134,56 +976,57 @@ msgstr ""
"ĐĎÄÓĎĹÄÉÎĹÎÎĎÇĎ Ë Internet × ËÁŢĹÓÔ×Ĺ ËĚÉĹÎÔÁ. äĎÂÁ×ĚĹÎŮ ÎĎ×ŮĹ ĐŇĎ×ĹŇËÉ\n"
"ÎÁ ÂĹÚĎĐÁÓÎĎÓÔŘ."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"îÁ ÜÔĎÍ ŐŇĎ×ÎĹ ÂĹÚĎĐÁÓÎĎÓÔÉ ÓÔÁÎĎ×ÉÔÓŃ ×ĎÚÍĎÖÎŮÍ ÉÓĐĎĚŘÚĎ×ÁÎÉĹ ÓÉÓÔĹÍŮ\n"
"× ËÁŢĹÓÔ×Ĺ ÓĹŇ×ĹŇÁ. âĹÚĎĐÁÓÎĎÓÔŘ ÔĹĐĹŇŘ ÄĎÓÔÁÔĎŢÎĎ ×ŮÓĎËÁ ÄĚŃ ŇÁÂĎÔŮ\n"
"ÓĹŇ×ĹŇÁ, ÄĎĐŐÓËÁŔÝĹÇĎ ÓĎĹÄÉÎĹÎÉŃ ÓĎ ÍÎĎÇÉÍÉ ËĚÉĹÎÔÁÍÉ."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"íŮ ĐŇÉÎŃĚÉ ÎÁÓÔŇĎĘËÉ ŢĹÔ×ĹŇÔĎÇĎ ŐŇĎ×ÎŃ ÂĹÚĎĐÁÓÎĎÓÔÉ, ÎĎ ÔĹĐĹŇŘ ÓÉÓÔĹÍÁ "
"ĐĎĚÎĎÓÔŘŔ ÚÁËŇŮÔÁ.\n"
"đÁŇÁÍĹÔŇŮ ÂĹÚĎĐÁÓÎĎÓÔÉ ŐÓÔÁÎĎ×ĚĹÎŮ ÎÁ ÍÁËÓÉÍŐÍ."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "őŇĎ×ĹÎŘ ÂĹÚĎĐÁÓÎĎÓÔÉ"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
#, fuzzy
msgid "Security level"
msgstr "îÁÓÔŇĎĘËÁ ŐŇĎ×ĹÎŘ ÂĹÚĎĐÁÓÎĎÓÔÉ"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
#, fuzzy
msgid "Use libsafe for servers"
msgstr "÷ŮÂĹŇÉÔĹ ĎĐĂÉÉ ÄĚŃ ÓĹŇ×ĹŇÁ"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1200,52 +1043,52 @@ 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_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "äĎÂŇĎ ĐĎÖÁĚĎ×ÁÔŘ × GRUB, ÄÉÓĐĹÔŢĹŇ ĎĐĹŇÁĂÉĎÎÎĎĘ ÓÉÓÔĹÍŮ!"
#. -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_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "éÓĐĎĚŘÚŐĘÔĹ ËĚÁ×ÉŰÉ %c É %c ÄĚŃ ×ŮÄĹĚĹÎÉŃ ĐŐÎËÔÁ."
#. -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_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "îÁÖÍÉÔĹ enter ÄĚŃ ÚÁÇŇŐÚËÉ ×ŮÂŇÁÎÎĎĘ ďó, 'e' ÄĚŃ ŇĹÄÁËÔÉŇĎ×ÁÎÉŃ"
#. -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_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "ËĎÍÁÎÄ ĐĹŇĹÄ ÚÁÇŇŐÚËĎĘ, ÉĚÉ 'c' ÄĚŃ ŇĹÖÉÍÁ ËĎÍÁÎÄÎĎĘ ÓÔŇĎËÉ."
#. -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_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "÷ŮÂŇÁÎÎŮĘ ĐŐÎËÔ ÂŐÄĹÔ ÚÁÇŇŐÖĹÎ Á×ÔĎÍÁÔÉŢĹÓËÉ ŢĹŇĹÚ %d ÓĹËŐÎÄ."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "ÎĹ Č×ÁÔÁĹÔ ÍĹÓÔÁ × /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "ňÁÂĎŢÉĘ ÓÔĎĚ"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "óÔÁŇÔĎ×ĎĹ ÍĹÎŔ"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "ëŐÄÁ ×Ů ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ ÎÁŢÁĚŘÎŮĘ ÚÁÇŇŐÚŢÉË?"
@@ -1258,15 +1101,19 @@ msgstr "ÓĐŇÁ×ËÁ ĐĎËÁ ÎĹ ÓĎÚÄÁÎÁ.\n"
msgid "Boot Style Configuration"
msgstr "îÁÓÔŇĎĘËÁ ×ÉÄÁ ÚÁÇŇŐÚËÉ"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
-msgstr "/_ćÁĘĚ"
+msgstr "/ćÁĘĚ"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
-msgstr "/ćÁĘĚ/_÷ŮČĎÄ"
+msgstr "/ćÁĘĚ/÷ŮĘÔÉ"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1301,14 +1148,14 @@ msgstr "ňĹÖÉÍ Yaboot"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"÷ ÄÁÎÎŮĘ ÍĎÍĹÎÔ ×Ů ÉÓĐĎĚŘÚŐĹÔĹ %s × ËÁŢĹÓÔ×Ĺ ÍĹÎĹÄÖĹŇÁ ÚÁÇŇŐÚËÉ.\n"
"÷ŮÂĹŇÉÔĹ ĐŐÎËÔ îÁÓÔŇĎĘËÁ ÄĚŃ ÚÁĐŐÓËÁ ÍÁÓÔĹŇÁ ÎÁÓÔŇĎĘËÉ."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "îÁÓÔŇĎĘËÁ"
@@ -1318,7 +1165,7 @@ msgid "System mode"
msgstr "óÉÓÔĹÍÎŮĘ ŇĹÖÉÍ"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "úÁĐŐÓËÁÔŘ X-Window ĐŇÉ ÎÁŢÁĚĹ ŇÁÂĎÔŮ"
#: ../../bootlook.pm_.c:148
@@ -1330,14 +1177,16 @@ msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
"äÁ, Ń ČĎŢŐ ÉÓĐĎĚŘÚĎ×ÁÔŘ Á×ÔĎÍÁÔÉŢĹÓËÉĘ ×ČĎÄ × ÓÉÓÔĹÍŐ Ó ÜÔÉÍÉ (user, desktop)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "OK"
@@ -1386,7 +1235,7 @@ msgstr "äĎÂÁ×ĚĹÎÉĹ ÎĎ×ŮČ ŇÁÚÄĹĚĎ× ÎĹ×ĎÚÍĎÖÎĎ"
msgid "Screenshots will be available after install in %s"
msgstr "÷Ů ÍĎÖĹÔĹ ×ŮÂŇÁÔŘ ÄŇŐÇÉĹ ŃÚŮËÉ, ËĎÔĎŇŮĹ ÂŐÄŐÔ ÄĎÓÔŐĐÎŮ ĐĎÓĚĹ ŐÓÔÁÎĎ×ËÉ"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
#, fuzzy
msgid "France"
msgstr "ćŇÁÎĂŐÚÓËÉĘ"
@@ -1395,7 +1244,7 @@ msgstr "ćŇÁÎĂŐÚÓËÉĘ"
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "âĹĚŘÇÉĘÓËÉĘ"
@@ -1424,11 +1273,12 @@ msgstr "îĎŇ×ĹÖÓËÉĘ"
msgid "Sweden"
msgstr "ű×ĹÄÓËÉĘ"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr "éÔÁĚŘŃÎÓËÉĘ"
@@ -1438,7 +1288,7 @@ msgstr "éÔÁĚŘŃÎÓËÉĘ"
msgid "Austria"
msgstr "ĐĎÓĚĹÄĎ×ÁÔĹĚŘÎÁŃ"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1446,8 +1296,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr "đŇĹÖÄĹ ×ÓĹÇĎ ÓÄĹĚÁĘÔĹ ŇĹÚĹŇ×ÎŐŔ ËĎĐÉŔ ÄÁÎÎŮČ"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "ţÉÔÁĘÔĹ ×ÎÉÍÁÔĹĚŘÎĎ!"
@@ -1461,11 +1311,12 @@ msgstr ""
"ÂŐÄĹÔ ÄĎÓÔÁÔĎŢÎĎ)\n"
"× ÎÁŢÁĚĹ ÄÉÓËÁ"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "ďŰÉÂËÁ"
@@ -1473,11 +1324,11 @@ msgstr "ďŰÉÂËÁ"
msgid "Wizard"
msgstr "íÁÓÔĹŇ"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "÷ŮÂĹŇÉÔĹ ÄĹĘÓÔ×ÉĹ"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1489,150 +1340,155 @@ msgstr ""
"đŇĹÄĚÁÇÁŔ ĐŇĹÖÄĹ ×ÓĹÇĎ ÉÚÍĹÎÉÔŘ ŇÁÚÍĹŇ ŇÁÚÄĹĚÁ\n"
"(ËĚÉËÎÉÔĹ ÎÁ ÎĹÇĎ, Á ÚÁÔĹÍ ÎÁ \"éÚÍĹÎÉÔŘ ŇÁÚÍĹŇ\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "đĎÖÁĚŐĘÓÔÁ ÎÁÖÍÉÔĹ ÎÁ ŇÁÚÄĹĚ"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "đĎÄŇĎÂÎĎÓÔÉ"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
#, fuzzy
msgid "Journalised FS"
msgstr "ĎŰÉÂËÁ ÍĎÎÔÉŇĎ×ÁÎÉŃ"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "đŐÓÔĎ"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "äŇŐÇÉĹ"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "ôÉĐŮ ĆÁĘĚĎ×ŮČ ÓÉÓÔĹÍ:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "óĎÚÄÁÔŘ"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "ôÉĐ"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "÷ÍĹÓÔĎ ÜÔĎÇĎ ÉÓĐĎĚŘÚŐĘÔĹ ``%s'' "
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "őÄÁĚÉÔŘ"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "óÎÁŢÁĚÁ ÓÄĹĚÁĘÔĹ ``ďÔÍĎÎÔÉŇĎ×ÁÔŘ''"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"đĎÓĚĹ ÉÚÍĹÎĹÎÉŃ ÔÉĐÁ ŇÁÚÄĹĚÁ %s, ×ÓĹ ÄÁÎÎŮĹ × ÜÔĎÍ ŇÁÚÄĹĚĹ ÂŐÄŐÔ ĐĎÔĹŇŃÎŮ"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose a partition"
msgstr "÷ŮÂĹŇÉÔĹ ÄĹĘÓÔ×ÉĹ"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose another partition"
msgstr "óĎÚÄÁÔŘ ÎĎ×ŮĘ ŇÁÚÄĹĚ"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "đĹŇĹËĚŔŢĹÎÉĹ × ŇĹÖÉÍ üËÓĐĹŇÔ"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "đĹŇĹËĚŔŢĹÎÉĹ × ŇĹÖÉÍ îĎŇÍÁĚŘÎĎ"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "ďÔËÁÔ"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "÷ÓĹ-ÔÁËÉ ĐŇĎÄĎĚÖÁÔŘ?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "÷ŮĘÔÉ ÂĹÚ ÓĎČŇÁÎĹÎÉŃ"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "÷ŮĘÔÉ ÂĹÚ ÚÁĐÉÓÉ ÔÁÂĚÉĂŮ ŇÁÚÄĹĚĎ×?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "čĎÔÉÔĹ ĐŇĎÔĹÓÔÉŇĎ×ÁÔŘ ÎÁÓÔŇĎĘËÉ?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "ňÁÚÍĹÓÔÉÔŘ Á×ÔĎÍÁÔÉŢĹÓËÉ"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "ďŢÉÓÔÉÔŘ ×ÓĹ"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "ĺÝĹ"
+
+#: ../../diskdrake/interactive.pm_.c:263
#, fuzzy
msgid "Hard drive information"
msgstr "ďĐŇĹÄĹĚĹÎÉĹ ÖĹÓÔËĎÇĎ ÄÉÓËÁ"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "÷ÓĹ ĐĹŇ×ÉŢÎŮĹ ŇÁÚÄĹĚŮ ŐÖĹ ÉÓĐĎĚŘÚĎ×ÁÎŮ"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "äĎÂÁ×ĚĹÎÉĹ ÎĎ×ŮČ ŇÁÚÄĹĚĎ× ÎĹ×ĎÚÍĎÖÎĎ"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1640,35 +1496,35 @@ msgstr ""
"ţÔĎÂŮ ĐĎĚŐŢÉÔŘ ÂĎĚŘŰĹ ŇÁÚÄĹĚĎ×, ŐÄÁĚÉÔĹ ĎÄÉÎ, ŢÔĎÂŮ ĐĎĚŐŢÉÔŘ ×ĎÚÍĎÖÎĎÓÔŘ "
"ÓĎÚÄÁÔŘ ŇÁŰÉŇĹÎÎŮĘ ŇÁÚÄĹĚ"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr "úÁĐÉÓÁÔŘ ÔÁÂĚÉĂŐ ŇÁÚÄĹĚĎ×"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr "úÁĐÁÓÎÁŃ ÔÁÂĚÉĂÁ ŇÁÚÄĹĚĎ×"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "úÁĐÁÓÎÁŃ ÔÁÂĚÉĂÁ ŇÁÚÄĹĚĎ×"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr "úÁĐÁÓÎÁŃ ÔÁÂĚÉĂÁ ŇÁÚÄĹĚĎ×"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Removable media automounting"
msgstr "á×ÔĎÍĎÎÔÉŇĎ×ÁÎÉĹ ÓßĹÍÎŮČ ÎĎÓÉÔĹĚĹĘ"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "÷ŮÂĹŇÉÔĹ ĆÁĘĚ"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1676,11 +1532,11 @@ msgstr ""
"ňĹÚĹŇ×ÎÁŃ ÔÁÂĚÉĂÁ ŇÁÚÄĹĚĎ× ÄÉÓËÁ ÉÍĹĹÔ ÄŇŐÇĎĘ ŇÁÚÍĹŇ\n"
"÷ÓĹ-ÔÁËÉ ĐŇĎÄĎĚÖÉÔŘ?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "÷ÎÉÍÁÎÉĹ"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1688,124 +1544,131 @@ msgstr ""
"÷ÓÔÁ×ŘÔĹ ÄÉÓËĹÔŐ × ÄÉÓËĎ×ĎÄ\n"
"÷ÓĹ ÄÁÎÎŮĹ ÎÁ ÜÔĎĘ ÄÉÓËĹÔĹ ÂŐÄŐÔ ĐĎÔĹŇŃÎŮ"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "đŇĎÂŐĹÍ ×ĎÓÓÔÁÎĎ×ÉÔŘ ÔÁÂĚÉĂŐ ŇÁÚÄĹĚĎ×"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
#, fuzzy
msgid "Detailed information"
msgstr "đĎËÁÚÁÔŘ ÉÎĆĎŇÍÁĂÉŔ"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "ôĎŢËÁ ÍĎÎÔÉŇĎ×ÁÎÉŃ"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "đÁŇÁÍĹÔŇŮ"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "éÚÍĹÎÉÔŘ ŇÁÚÍĹŇ"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "đĹŇĹÍĹÓÔÉÔŘ"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "ćĎŇÍÁÔÉŇĎ×ÁÔŘ"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "íĎÎÔÉŇĎ×ÁÎÉĹ"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "äĎÂÁ×ÉÔŘ Ë RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "äĎÂÁ×ÉÔŘ Ë LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "ďÔÍĎÎÔÉŇĎ×ÁÔŘ"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "őÄÁĚÉÔŘ ÉÚ RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "őÄÁĚÉÔŘ ÉÚ LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "éÚÍĹÎÉÔŘ RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ ÄĚŃ loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "óĎÚÄÁÔŘ ÎĎ×ŮĘ ŇÁÚÄĹĚ"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "îÁŢÁĚŘÎŮĘ ÓĹËÔĎŇ: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "ňÁÚÍĹŇ × MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "ôÉĐ ĆÁĘĚĎ×ĎĘ ÓÉÓÔĹÍŮ: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "ôĎŢËÁ ÍĎÎÔÉŇĎ×ÁÎÉŃ:"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "đŇĹÄĐĎŢÔĹÎÉĹ: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+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/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr "ćĎŇÍÁÔÉŇĎ×ÁÎÉĹ ĆÁĘĚÁ loopback %s"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "éÚÍĹÎÉÔŘ ÔÉĐ ŇÁÚÄĹĚÁ"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "ëÁËŐŔ ĆÁĘĚĎ×ŐŔ ÓÉÓÔĹÍŐ ×Ů ČĎÔÉÔĹ?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "ëŐÄÁ ×Ů ČĎÔÉÔĹ ĐŇÉÍĎÎÔÉŇĎ×ÁÔŘ loopback ĆÁĘĚ %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "ëŐÄÁ ×Ů ČĎÔÉÔĹ ĐŇÉÍĎÎÔÉŇĎ×ÁÔŘ ŐÓÔŇĎĘÓÔ×Ď %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1813,129 +1676,136 @@ msgstr ""
"îĹ ÍĎÇŐ ĎÔÍĹÎÉÔŘ ÔĎŢËŐ ÍĎÎÔÉŇĎ×ÁÎÉŃ, ĐĎÓËĎĚŘËŐ ÜÔĎÔ ŇÁÚÄĹĚ ÚÁÄĹĘÓÔ×Ď×ÁÎ ÄĚŃ "
"loop back. óÎÁŢÁĚÁ ŐÂĹŇÉÔĹ loopback"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "÷ŮŢÉÓĚĹÎÉĹ ÇŇÁÎÉĂ ĆÁĘĚĎ×ĎĘ ÓÉÓÔĹÍŮ FAT"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "éÚÍĹÎĹÎÉĹ ŇÁÚÍĹŇÁ"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "ňÁÚÍĹŇ ÜÔĎÇĎ ŇÁÚÄĹĚÁ ÎĹĚŘÚŃ ÉÚÍĹÎÉÔŘ"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "äĚŃ ×ÓĹČ ÄÁÎÎŮČ × ÜÔĎÍ ŇÁÚÄĹĚĹ ÄĎĚÖÎÁ ÂŮÔŘ ÓÄĹĚÁÎÁ ŇĹÚĹŇ×ÎÁŃ ËĎĐÉŃ"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"đĎÓĚĹ ÉÚÍĹÎĹÎÉŃ ŇÁÚÍĹŇÁ ŇÁÚÄĹĚÁ %s ×ÓĹ ÄÁÎÎŮĹ × ÜÔĎÍ ŇÁÚÄĹĚĹ ÂŐÄŐÔ ĐĎÔĹŇŃÎŮ"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "÷ŮÂŇÁÔŘ ÎĎ×ŮĘ ŇÁÚÍĹŇ"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
#, fuzzy
msgid "New size in MB: "
msgstr "ňÁÚÍĹŇ × MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "îÁ ËÁËĎĘ ÄÉÓË ČĎÔÉÔĹ ĐĹŇĹÍĹÓÔÉÔŘ?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "óĹËÔĎŇ"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "îÁ ËÁËĎĘ ÓĹËÔĎŇ ČĎÔÉÔĹ ĐĹŇĹÍĹÓÔÉÔŘ?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "đĹŇĹÍĹÝĹÎÉĹ"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "đĹŇĹÍĹÝĹÎÉĹ ŇÁÚÄĹĚÁ..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "÷ŮÂĹŇÉÔĹ ÓŐÝĹÓÔ×ŐŔÝÉĘ RAID ÄĚŃ ÄĎÂÁ×ĚĹÎÉŃ"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "ÎĎ×ŮĘ"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "÷ŮÂĹŇÉÔĹ ÓŐÝĹÓÔ×ŐŔÝÉĘ LVM ÄĚŃ ÄĎÂÁ×ĚĹÎÉŃ"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "éÍŃ LVM?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "üÔĎÔ ŇÁÚÄĹĚ ÎĹĚŘÚŃ ÉÓĐĎĚŘÚĎ×ÁÔŘ ÄĚŃ loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "éÍŃ ĆÁĘĚÁ loopback: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr "îÁÓÔĎŃÝĹĹ ÉÍŃ"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "ćÁĘĚ ŐÖĹ ÉÓĐĎĚŘÚŐĹÔÓŃ ÄŇŐÇÉÍ loopback, ×ŮÂĹŇÉÔĹ ÄŇŐÇĎĘ ĆÁĘĚ."
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "ćÁĘĚ ŐÖĹ ÓŐÝĹÓÔ×ŐĹÔ. éÓĐĎĚŘÚĎ×ÁÔŘ ĹÇĎ?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
#, fuzzy
msgid "Mount options"
msgstr "đÁŇÁÍĹÔŇŮ ÍĎÄŐĚŃ:"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "ŐÓÔŇĎĘÓÔ×Ď"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "ŐŇĎ×ĹÎŘ"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "ŇÁÚÍĹŇ chunk"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "ďÓÔĎŇĎÖÎĎ: ÜÔÁ ĎĐĹŇÁĂÉŃ ĎĐÁÓÎÁ."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "ëÁËĎĘ ÔÉĐ ŇÁÚÂÉĹÎÉŃ ÎÁ ŇÁÚÄĹĚŮ?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr ""
+"üÔĎÔ ĐÁËĹÔ ÓĚĹÄŐĹÔ ĎÂÎĎ×ÉÔŘ\n"
+"÷Ů Ő×ĹŇĹÎŮ, ŢÔĎ ČĎÔÉÔĹ ĎÔÍĹÎÉÔŘ ĹÇĎ ×ŮÂĎŇ?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1946,7 +1816,7 @@ msgstr ""
"ěÉÂĎ ×Ů ÉÓĐĎĚŘÚŐĹÔĹ LILO - ÔĎÇÄÁ ÜÔĎ ÎĹ ÂŐÄĹÔ ŇÁÂĎÔÁÔŘ, ĚÉÂĎ LILO ÎĹ "
"ÉÓĐĎĚŘÚŐĹÔÓŃ, É ÔĎÇÄÁ /boot ÎĹ ÎŐÖĹÎ."
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1959,7 +1829,7 @@ msgstr ""
"ĺÓĚÉ ÂŐÄĹÔ ÉÓĐĎĚŘÚĎ×ÁÔŘÓŃ ÄÉÓĐĹÔŢĹŇ ÚÁÇŇŐÚËÉ LILO, ÎĹ ÚÁÂŐÄŘÔĹ ÄĎÂÁ×ÉÔŘ "
"ŇÁÚÄĹĚ /boot"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1969,138 +1839,138 @@ msgstr ""
"îÉËÁËĎĘ ÚÁÇŇŐÚŢÉË ÎĹ ÓÍĎÖĹÔ ÜÔĎ ĎÂŇÁÂĎÔÁÔŘ ÂĹÚ ŇÁÚÄĹĚÁ /boot.\n"
"ôÁË ŢÔĎ ÎĹ ÚÁÂŐÄŘÔĹ ÄĎÂÁ×ÉÔŘ ŇÁÚÄĹĚ /boot"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "ôÁÂĚÉĂÁ ŇÁÚÄĹĚĎ× ŐÓÔŇĎĘÓÔ×Á %s ÂŐÄĹÔ ÚÁĐÉÓÁÎÁ ÎÁ ÄÉÓË!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "ţÔĎÂŮ ÉÚÍĹÎĹÎÉŃ ĎÓŐÝĹÓÔ×ÉĚÉÓŘ, ÎĹĎÂČĎÄÉÍĎ ĐĹŇĹÚÁÇŇŐÚÉÔŘÓŃ"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"đĎÓĚĹ ĆĎŇÍÁÔÉŇĎ×ÁÎÉŃ ŇÁÚÄĹĚÁ %s, ×ÓĹ ÄÁÎÎŮĹ × ÜÔĎÍ ŇÁÚÄĹĚĹ ÂŐÄŐÔ ĐĎÔĹŇŃÎŮ"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "ćĎŇÍÁÔÉŇĎ×ÁÎÉĹ"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "ćĎŇÍÁÔÉŇĎ×ÁÎÉĹ ĆÁĘĚÁ loopback %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "ćĎŇÍÁÔÉŇĎ×ÁÎÉĹ ŇÁÚÄĹĚÁ %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Hide files"
msgstr "mkraid ÎĹ ÓŇÁÂĎÔÁĚ"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr "îĹÄĎÓÔÁÔĎŢÎĎ Ó×ĎÂĎÄÎĎÇĎ ÍĹÓÔÁ ÄĚŃ ŇÁÚÍĹÝĹÎÉŃ ÎĎ×ŮČ ŇÁÚÄĹĚĎ×"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr "îĹÄĎÓÔÁÔĎŢÎĎ Ó×ĎÂĎÄÎĎÇĎ ÍĹÓÔÁ ÄĚŃ ŇÁÚÍĹÝĹÎÉŃ ÎĎ×ŮČ ŇÁÚÄĹĚĎ×"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr "ňÁÚŇĹŰĹÎÉĹ: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "őÓÔŇĎĘÓÔ×Ď: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "ÂŐË×Á ÄĚŃ DOS-ÄÉÓËÁ: %s (ÎÁŐÇÁÄ)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "ôÉĐ: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "éÍŃ: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "îÁŢÁĚĎ: ÓĹËÔĎŇ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "ňÁÚÍĹŇ: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s ÓĹËÔĎŇĎ×"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "ó ĂÉĚÉÎÄŇÁ %d ĐĎ ĂÉĚÉÎÄŇ %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "ďÔĆĎŇÍÁÔÉŇĎ×ÁÎĎ\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "îĹ ĎÔĆĎŇÍÁÔÉŇĎ×ÁÎĎ\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "đŇÉÍĎÎÔÉŇĎ×ÁÎĎ\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Loopback ĆÁĘĚ(Ů): %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2108,27 +1978,27 @@ msgstr ""
"ňÁÚÄĹĚ, ÚÁÇŇŐÖÁĹÍŮĘ ĐĎ ŐÍĎĚŢÁÎÉŔ\n"
" (ÄĚŃ ÚÁÇŇŐÚËÉ MS-DOS, ÎĹ ÄĚŃ lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "őŇĎ×ĹÎŘ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "ňÁÚÍĹŇ Óhunk %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "äÉÓËÉ RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "éÍŃ ĆÁĘĚÁ Loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2140,7 +2010,7 @@ msgstr ""
"Ń×ĚŃĹÔÓŃ ŇÁÚÄĹĚĎÍ ÄŇÁĘ×ĹŇÁ, ×ĎÚÍĎÖÎĎ,\n"
"×ÁÍ ÎĹ ÓĚĹÄŐĹÔ ĹÇĎ ÔŇĎÇÁÔŘ.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2152,64 +2022,64 @@ msgstr ""
"ŇÁÚÄĹĚ ĐŇĹÄÎÁÚÎÁŢĹÎ\n"
"ÄĚŃ ×ĎÚÍĎÖÎĎÓÔÉ ÚÁÇŇŐÚËÉ Ä×ŐČ ĎĐ.ÓÉÓÔĹÍ.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "ňÁÚÍĹŇ: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "çĹĎÍĹÔŇÉŃ: %s ĂÉĚÉÎÄŇĎ×, %s ÇĎĚĎ×ĎË, %s ÓĹËÔĎŇĎ×\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "éÎĆĎŇÍÁĂÉŃ: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-ÄÉÓËÉ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "ôÉĐ ÔÁÂĚÉĂŮ ŇÁÚÄĹĚĎ×: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "ÎÁ ŰÉÎĹ %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "đÁŇÁÍĹÔŇŮ: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "ôÉĐ ĆÁĘĚĎ×ĎĘ ÓÉÓÔĹÍŮ: "
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "üÔĎÔ ĐÁŇĎĚŘ ÓĚÉŰËĎÍ ĐŇĎÓÔ (ĹÇĎ ÄĚÉÎÁ ÄĎĚÖÎÁ ÂŮÔŘ ÎĹ ÍĹÎĹĹ %d ÓÉÍ×ĎĚĎ×)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "đÁŇĎĚÉ ÎĹ ÓĎ×ĐÁÄÁŔÔ"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2220,36 +2090,66 @@ msgstr "éÚÍĹÎÉÔŘ ÔÉĐ ŇÁÚÄĹĚÁ"
#: ../../diskdrake/removable_gtk.pm_.c:28
#, fuzzy
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "đĎÖÁĚŐĘÓÔÁ ÎÁÖÍÉÔĹ ÎÁ ŇÁÚÄĹĚ"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "áŐÔĹÎÔÉĆÉËÁĂÉŃ"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "éÎÔĹŇÎĹÔ"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "đĎĚŘÚĎ×ÁÔĹĚŘÓËĎĹ ÉÍŃ"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "đĎĚŘÚĎ×ÁÔĹĚŘÓËĎĹ ÉÍŃ"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS ÄĎÍĹÎ"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "DNS ÓĹŇ×ĹŇ"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s ĎŰÉÂËÁ ĆĎŇÍÁÔÉŇĎ×ÁÎÉŃ %s"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "îĹ ÚÎÁŔ ËÁË ĆĎŇÍÁÔÉŇĎ×ÁÔŘ %s Ó ÔÉĐĎÍ %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "ĎŰÉÂËÁ ĎÔÍĎÎÔÉŇĎ×ÁÎÉŃ %s: %s"
@@ -2266,69 +2166,323 @@ msgstr ""
msgid "server"
msgstr "ÓĹŇ×ĹŇ"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "÷Ů ÎĹ ÍĎÖĹÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ JFS ÎÁ ŇÁÚÄĹĚÁČ ÍĹÎŘŰĹ 16MB"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "÷Ů ÎĹ ÍĎÖĹÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ReiserFS ÎÁ ŇÁÚÄĹĚÁČ ÍĹÎŘŰĹ 32MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "ôĎŢËÁ ÍĎÎÔÉŇĎ×ÁÎÉŃ ÄĎĚÖÎÁ ÎÁŢÉÎÁÔŘÓŃ Ó /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "őÖĹ ĹÓÔŘ ŇÁÚÄĹĚ Ó ÔĎŢËĎĘ ÍĎÎÔÉŇĎ×ÁÎÉŃ %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "÷Ů ÎĹ ÍĎÖĹÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ěĎÇÉŢĹÓËÉĘ ôĎÍ LVM ÄĚŃ ÔĎŢËÉ ÍĎÎÔÉŇĎ×ÁÎÉŃ %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "üÔÁ ÄÉŇĹËÔĎŇÉŃ ÄĎĚÖÎÁ ĎÓÔÁ×ÁÔŘÓŃ ×ÎŐÔŇÉ ËĎŇÎĹ×ĎĘ ĆÁĘĚĎ×ĎĘ ÓÉÓÔĹÍŮ"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"äĚŃ ÜÔĎĘ ÔĎŢËÉ ÍĎÎÔÉŇĎ×ÁÎÉŃ ÎŐÖÎÁ ŇĹÁĚŘÎÁŃ ĆÁĘĚĎ×ÁŃ ÓÉÓÔĹÍÁ (ext2, "
"reiserfs)\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "÷Ů ÎĹ ÍĎÖĹÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ěĎÇÉŢĹÓËÉĘ ôĎÍ LVM ÄĚŃ ÔĎŢËÉ ÍĎÎÔÉŇĎ×ÁÎÉŃ %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "îĹÄĎÓÔÁÔĎŢÎĎ Ó×ĎÂĎÄÎĎÇĎ ÍĹÓÔÁ ÄĚŃ Á×ÔĎ-ŇÁÚÍĹÝĹÎÉŃ"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "ďŰÉÂËÁ ĎÔËŇŮÔÉŃ %s ÄĚŃ ÚÁĐÉÓÉ: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"đŇĎÉÚĎŰĚÁ ĎŰÉÂËÁ: ÎĹ ÎÁĘÄĹÎŮ ŐÓÔŇĎĘÓÔ×Á ÄĚŃ ÓĎÚÄÁÎÉŃ ÎĎ×ŮČ ĆÁĘĚĎ×ŮČ ÓÉÓÔĹÍ. "
"đŇĎ×ĹŇŘÔĹ ĎÂĎŇŐÄĎ×ÁÎÉĹ ÄĚŃ ×ŮŃÓÎĹÎÉŃ ×ĹŇĎŃÔÎĎĘ ĐŇÉŢÉÎŮ."
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "ő ×ÁÓ ÎĹ ÓĎÚÄÁÎĎ ÎÉËÁËÉČ ŇÁÚÄĹĚĎ×!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ Á×ÔĎĎĐŇĹÄĹĚĹÎÉĹ"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "ďÂŮŢÎŮĘ"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "áÄŇĹÓ (DMA) ËÁŇÔŮ"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "ćĎŇÍÁÔÉŇĎ×ÁÎÉĹ"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "éÚÍĹÎÉÔŘ ÔÉĐ ŇÁÚÄĹĚÁ"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "÷ŮČĎÄ"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/đĎÍĎÝŘ"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/đĎÍĎÝŘ"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/đĎÍĎÝŘ/ď ĐŇĎÇŇÁÍÍĹ..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "íŮŰŘ"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "áÄŇĹÓ (DMA) ËÁŇÔŮ"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "ďÔÍĹÎÉÔŘ"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "íŮŰŘ"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "ďĐÉÓÁÎÉĹ"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "áŐÔĹÎÔÉĆÉËÁĂÉŃ"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "÷ŮÂĹŇÉÔĹ ĆÁĘĚ"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "űĚŔÚĎ×ĎĹ ŐÓÔŇĎĘÓÔ×Ď"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 ËÎĎĐËÉ"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "ďĐŇĹÄĹĚĹÎÉĹ ÖĹÓÔËĎÇĎ ÄÉÓËÁ"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "óÍ. ĎĐÉÓÁÎÉĹ ĎÂĎŇŐÄĎ×ÁÎÉŃ"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "đĎËÁÚÁÔŘ ÉÎĆĎŇÍÁĂÉŔ"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "îÁÓÔŇĎĘËÁ ÍŮŰÉ"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "ÎÁĘÄĹÎ ÎÁ ĐĎŇÔŐ %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "đĎÄĎÖÄÉÔĹ, ĐĎÖÁĚŐĘÓÔÁ"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d ÓĹËŐÎÄ"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "ţÔĹÎÉĹ ÂÁÚŮ ÄŇÁĘ×ĹŇĎ× CUPS..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "á×ÔĎĐĎÉÓË"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2342,7 +2496,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2454,9 +2608,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2651,7 +2804,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2663,9 +2816,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2712,21 +2864,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2742,9 +2893,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"÷ ÜÔĎÍ ĐŐÎËÔĹ ×ÁÍ ÎŐÖÎĎ ×ŮÂŇÁÔŘ ÍĹÓÔĎ ÎÁ ×ÁŰĹÍ ÖĹÓÔËĎÍ ÄÉÓËĹ\n"
"× ËĎÔĎŇĎĹ ×Ů ÂŐÄĹÔĹ ŐÓÔÁÎÁ×ĚÉ×ÁÔŘ Mandrake Linux. ĺÓĚÉ ĎÎ ĐŐÓÔ ÉĚÉ\n"
@@ -2836,9 +2987,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -2991,38 +3141,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3215,11 +3359,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3278,7 +3422,7 @@ msgstr ""
"ÍĎÖĹÔ ÂŮÔŘ ĎŢĹÎŘ ÔŇŐÄÎĎ. đĎÜÔĎÍŐ ÎĹ ×ŮÂÉŇÁĘÔĹ ÜÔĎÔ ŐŇĎ×ĹÎŘ ŐÓÔÁÎĎ×ËÉ,\n"
" ĹÓĚÉ ×Ů ÎĹ Ő×ĹŇĹÎŮ × ÔĎÍ, ŢÔĎ ÄĹĚÁĹÔĹ."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3293,7 +3437,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3308,7 +3452,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3324,7 +3468,7 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
#, fuzzy
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
@@ -3333,23 +3477,23 @@ msgstr ""
"÷ŮĹÂŇÉÔĹ ĐŇÁ×ÉĚŘÎŮĘ ĐĎŇÔ. îÁĐŇÉÍĹŇ, COM1\n"
"ĐĎŇÔ × MS Windows ÎÁÚŮ×ÁĹÔÓŃ ttyS0 × GNU/Linux."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3371,7 +3515,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3393,7 +3537,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3401,7 +3545,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3422,7 +3566,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
#, fuzzy
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
@@ -3451,7 +3595,7 @@ msgstr ""
"ĐĎÔŇĹÂŐĹÔÓŃ\n"
"ÚÁÇŇŐÚĎŢÎÁŃ ÄÉÓËĹÔÁ!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
#, fuzzy
msgid ""
"You must indicate where you wish to place the information required to boot\n"
@@ -3467,29 +3611,28 @@ msgstr ""
"ĺÓĚÉ ×Ů ÎĹ ĐĎÎÉÍÁĹÔĹ ÁÂÓĎĚŔÔÎĎ ÔĎŢÎĎ ÔĎ, ŢÔĎ ×Ů ÄĹĚÁĹÔĹ, ×ŮÂÉŇÁĘÔĹ\n"
"\"đĹŇ×ŮĘ ÓĹËÔĎŇ ÎÁ ÄÉÓËĹ (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3498,7 +3641,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
#, fuzzy
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
@@ -3524,7 +3667,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"DrakX ĐĎĐŇĎÂŐĹÔ ĎĐŇĹÄĹĚÉÔŘ PCI SCSI ÁÄÁĐÔĹŇ(Ů). ĺÓĚÉ DrakX\n"
@@ -3557,7 +3700,7 @@ msgstr ""
"ĐĎÓÍĎÔŇÉÔĹ ÎÁÓÔŇĎĘËÉ × Microsoft Windows\n"
"(ĹÓĚÉ ĎÎ ŐÓÔÁÎĎ×ĚĹÎ ÎÁ ×ÁŰĹĘ ÓÉÓÔĹÍĹ)."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
#, fuzzy
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
@@ -3568,9 +3711,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3582,7 +3724,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" 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"
@@ -3675,7 +3817,7 @@ msgstr ""
"ÓÉÍ×ĎĚĎÍ '*', ĹÓĚÉ ×Ů ÎÁÖÍĹÔĹ\n"
"TAB ÄĚŃ ĐŇĎÓÔÍĎÔŇÁ ×ÁŇÉÁÎÔĎ× ÚÁÇŇŐÚËÉ."
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
#, fuzzy
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
@@ -3703,9 +3845,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -3760,10 +3901,10 @@ msgstr ""
"ŐÍĎĚŢÁÎÉŔ ĐĎÓĚĹ ÉÓÔĹŢĹÎÉŃ ×ŇĹÍĹÎÉ ÚÁÄĹŇÖËÉ \n"
"Firmware."
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3771,12 +3912,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3792,7 +3932,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
#, fuzzy
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
@@ -3804,7 +3944,7 @@ msgstr ""
"ÂĹÚ ×ĎÚÍĎÖÎĎÓÔÉ\n"
"×ĎÓÓÔÁÎĎ×ĚĹÎÉŃ."
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
#, fuzzy
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
@@ -3827,7 +3967,7 @@ msgstr ""
"ŇÁÚÄĹĚĎ× \n"
"ÎÁ ÜÔĎÍ ÖĹÓÔËĎÍ ÄÉÓËĹ."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3835,12 +3975,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3866,20 +4006,20 @@ msgstr ""
"\n"
"÷Ů Ő×ĹŇĹÎŮ, ŢÔĎ ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ ÜÔÉ ÓĹŇ×ĹŇÁ?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "îĹ×ĎÚÍĎÖÎĎ ÉÓĐĎĚŘÚĎ×ÁÔŘ broadcast ÂĹÚ NIS ÄĎÍĹÎÁ"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "÷ÓÔÁ×ŘÔĹ ĎÔĆĎŇÍÁÔÉŇĎ×ÁÎÎŐŔ ĐĎÄ FAT ÄÉÓËĹÔŐ × ÄÉÓËĎ×ĎÄ %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "üÔÁ ÄÉÓËĹÔÁ ÎĹ ĎÔĆĎŇÍÁÔÉŇĎ×ÁÎÁ ĐĎÄ FAT"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3887,7 +4027,7 @@ msgstr ""
"ţÔĎÂŮ ÉÓĐĎĚŘÚĎ×ÁÔŘ ÓĎČŇÁÎĹÎÎŮĘ ×ŮÂĎŇ ĐÁËĹÔĎ×, ÚÁĐŐÓÔÉÔĹ ŐÓÔÁÎĎ×ËŐ Ó "
"ĐÁŇÁÍĹÔŇĎÍ, ÎÁĐŇÉÍĹŇ ``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "ďŰÉÂËÁ ŢÔĹÎÉŃ ĆÁĘĚÁ %s"
@@ -3918,7 +4058,7 @@ msgstr "ő ×ÁÓ ÄĎĚÖĹÎ ÂŮÔŘ ŇÁÚÄĹĚ swap"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -3926,60 +4066,60 @@ msgstr ""
"\n"
"÷ÓĹ-ÔÁËÉ ĐŇĎÄĎĚÖÉÔŘ?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "ő ×ÁÓ ÄĎĚÖĹÎ ÂŮÔŘ ŇÁÚÄĹĚ swap"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ Ó×ĎÂĎÄÎĎĹ ÍĹÓÔĎ"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "îĹÄĎÓÔÁÔĎŢÎĎ Ó×ĎÂĎÄÎĎÇĎ ÍĹÓÔÁ ÄĚŃ ŇÁÚÍĹÝĹÎÉŃ ÎĎ×ŮČ ŇÁÚÄĹĚĎ×"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ ÓŐÝĹÓÔ×ŐŔÝÉĘ ŇÁÚÄĹĚ"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "îĹÔ ÓŐÝĹÓÔ×ŐŔÝÉČ ŇÁÚÄĹĚĎ× ÄĚŃ ÉÓĐĎĚŘÚĎ×ÁÎÉŃ"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ ŇÁÚÄĹĚ Windows ÄĚŃ loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "ëĎÔĎŇŮĘ ŇÁÚÄĹĚ ×Ů ČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ÄĚŃ Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "÷ŮÂĹŇÉÔĹ ŇÁÚÍĹŇŮ"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "ňÁÚÍĹŇ ËĎŇÎĹ×ĎÇĎ ŇÁÚÄĹĚÁ × MB: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "ňÁÚÍĹŇ ŇÁÚÄĹĚÁ swap × MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ Ó×ĎÂĎÄÎĎĹ ÍĹÓÔĎ ŇÁÚÄĹĚÁ Windows"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "ňÁÚÍĹŇ ËÁËĎÇĎ ŇÁÚÄĹĚÁ ×Ů ČĎÔÉÔĹ ÉÚÍĹÎÉÔŘ?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "÷ŮŢÉÓĚĹÎÉĹ ÇŇÁÎÉĂ ĆÁĘĚĎ×ĎĘ ÓÉÓÔĹÍŮ Windows"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -3988,12 +4128,15 @@ msgstr ""
"đŇĎÇŇÁÍÍÁ ÉÚÍĹÎĹÎÉŃ ŇÁÚÍĹŇÁ ŇÁÚÄĹĚĎ× FAT ÎĹ ÍĎÖĹÔ ĎÂŇÁÂĎÔÁÔŘ ŇÁÚÄĹĚ, \n"
"ĐŇĎÉÚĎŰĚÁ ÓĚĹÄŐŔÝÁŃ ĎŰÉÂËÁ: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+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 ÓĚÉŰËĎÍ ĆŇÁÇÍĹÎÔÉŇĎ×ÁÎ, ÚÁĐŐÓÔÉÔĹ ÓÎÁŢÁĚÁ ``defrag'' "
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -4014,55 +4157,55 @@ msgstr ""
"ŇĹÚĹŇ×ÎŐŔ ËĎĐÉŔ ÄÁÎÎŮČ.\n"
"ĺÓĚÉ ÇĎÔĎ×Ů, ÎÁÖÍÉÔĹ Ok."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "ëÁËĎĘ ŇÁÚÍĹŇ ×Ů ČĎÔÉÔĹ ÓĎČŇÁÎÉÔŘ ÄĚŃ windows"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "ŇÁÚÄĹĚ %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "ÉÚÍĹÎĹÎÉĹ ŇÁÚÍĹŇÁ FAT ĐŇĎ×ÁĚÉĚĎÓŘ: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"îĹÔ ŇÁÚÄĹĚĎ× FAT ÄĚŃ ÉÚÍĹÎĹÎÉŃ ŇÁÚÍĹŇÁ ÉĚÉ ŇÁÚÍĹÝĹÎÉŃ loopback (ÉĚÉ ĎÓÔÁĚĎÓŘ "
"ÎĹÄĎÓÔÁÔĎŢÎĎ ÍĹÓÔÁ)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "ďŢÉÓÔÉÔŘ ×ĹÓŘ ÄÉÓË"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "őÄÁĚÉÔŘ Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
"ő ×ÁÓ ÎĹÓËĎĚŘËĎ ÖĹÓÔËÉČ ÄÉÓËĎ×. îÁ ËÁËĎĘ ÉÚ ÎÉČ ×Ů ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ Linux?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "÷óĺ ÓŐÝĹÓÔ×ŐŔÝÉĹ ŇÁÚÄĹĚŮ É ÉČ ÄÁÎÎŮĹ ÂŐÄŐÔ ĐĎÔĹŇŃÎŮ ÎÁ ÄÉÓËĹ %s"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "óĐĹĂÉÁĚŘÎĎĹ ŇÁÚÂÉĹÎÉĹ ÄÉÓËÁ"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "éÓĐĎĚŘÚŐĘÔĹ fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4071,11 +4214,11 @@ msgstr ""
"ôĹĐĹŇŘ ÍĎÖÎĎ ÓÄĹĚÁÔŘ ŇÁÚÂÉĹÎÉĹ %s.\n"
"đĎ ÚÁ×ĹŇŰĹÎÉÉ ÎĹ ÚÁÂŐÄŘÔĹ ÓĎČŇÁÎÉÔŘ ĐŇÉ ĐĎÍĎÝÉ `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "ő ×ÁÓ ÎĹÄĎÓÔÁÔĎŢÎĎ ÍĹÓÔÁ ÎÁ ×ÁŰĹÍ ŇÁÚÄĹĚĹ Windows"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "îĹ ÎÁĘÄĹÎĎ ÍĹÓÔÁ ÄĚŃ ŐÓÔÁÎĎ×ËÉ"
@@ -4083,16 +4226,16 @@ msgstr "îĹ ÎÁĘÄĹÎĎ ÍĹÓÔÁ ÄĚŃ ŐÓÔÁÎĎ×ËÉ"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "íÁÓÔĹŇ ŇÁÚÂÉĹÎÉŃ ÄÉÓËÁ ÉÚ DrakX ÎÁŰĹĚ ÓĚĹÄŐŔÝÉĹ ŇĹŰĹÎÉŃ:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "ňÁÚÂÉĹÎÉĹ ÎÁ ŇÁÚÄĹĚŮ ÎĹ ĐŇĎŰĚĎ: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "áËÔÉ×ÉÚÁĂÉŃ ÓĹÔÉ"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "äĹÁËÔÉ×ÉÚÁĂÉŃ ÓĹÔÉ"
@@ -4104,12 +4247,12 @@ msgstr ""
"đŇĎÉÚĎŰĚÁ ĎŰÉÂËÁ, ÎĎ Ń ÎĹ ÚÎÁŔ, ËÁË ĹĹ ËĎŇŇĹËÔÎĎ ĎÂŇÁÂĎÔÁÔŘ.\n"
"đŇĎÄĎĚÖÁĘÔĹ ÎÁ Ó×ĎĘ ÓÔŇÁČ É ŇÉÓË."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "äŐÂĚÉŇĎ×ÁÎÉĹ ÔĎŢËÉ ÍĎÎÔÉŇĎ×ÁÎÉŃ %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4121,12 +4264,12 @@ msgstr ""
"đŇĎ×ĹŇŘÔĹ cdrom ÎÁ ŐÓÔÁÎĎ×ĚĹÎÎĎÍ ËĎÍĐŘŔÔĹŇĹ ËĎÍÁÎÄĎĘ \"rpm -qpl Mandrake/"
"RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "äĎÂŇĎ ĐĎÖÁĚĎ×ÁÔŘ × %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "äÉÓËĎ×ĎÄ ÎĹÄĎÓÔŐĐĹÎ"
@@ -4136,9 +4279,9 @@ msgstr "äÉÓËĎ×ĎÄ ÎĹÄĎÓÔŐĐĹÎ"
msgid "Entering step `%s'\n"
msgstr "đĹŇĹČĎÄ ÎÁ ÜÔÁĐ `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4148,202 +4291,157 @@ msgstr ""
"ÜÔĎÇĎ\n"
"ÎÁÖÍÉÔĹ `F1' ĐŇÉ ÚÁÇŇŐÚËĹ Ó CDROM, É ÚÁÔĹÍ ÎÁÂĹŇÉÔĹ `text'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "ëĚÁÓÓ őÓÔÁÎĎ×ËÉ"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ĎÄÉÎ ÉÚ ÓĚĹÄŐŔÝÉČ ËĚÁÓÓĎ× ŐÓÔÁÎĎ×ËÉ:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "ďÂÝÉĘ ĎÂßĹÍ ÄĚŃ ×ŮÂŇÁÎÎŮČ ×ÁÍÉ ÇŇŐĐĐ ÓĎÓÔÁ×ĚŃĹÔ ĐŇÉÍĹŇÎĎ %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"ĺÓĚÉ ×Ů ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ ĎÂßĹÍ, ÍĹÎŘŰÉĘ ŢĹÍ ÜÔĎÔ, ŐËÁÖÉÔĹ ĐŇĎĂĹÎÔ \n"
-"ĐÁËĹÔĎ×, ËĎÔĎŇŮĹ ×Ů ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ.\n"
-"\n"
-"đŇÉ ÎÉÚËÉČ ĐŇĎĂĹÎÔÁČ ŐÓÔÁÎĎ×ŃÔÓŃ ÔĎĚŘËĎ ÎÁÉÂĎĚĹĹ ×ÁÖÎŮĹ ĐÁËĹÔŮ;\n"
-"ŐËÁÚÁÎÉĹ 100%% ĐŇÉ×ĹÄĹÔ Ë ŐÓÔÁÎĎ×ËĹ ×ÓĹČ ×ŮÂŇÁÎÎŮČ ĐÁËĹÔĎ×."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"ő ×ÁÓ ĹÓÔŘ ÍĹÓÔĎ ÎÁ ÄÉÓËĹ ÔĎĚŘËĎ ÄĚŃ %d%% ÉÚ ÜÔÉČ ĐÁËĹÔĎ×.\n"
-"\n"
-"ĺÓĚÉ ×Ů ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ ÍĹÎŘŰĹ, ŢĹÍ ÜÔĎ, ŐËÁÖÉÔĹ × ĐŇĎĂĹÎÔÁČ ÄĎĚŔ,\n"
-"ĐÁËĹÔĎ×, ËĎÔĎŇŮĹ ×Ů ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ.\n"
-"đŇÉ ÎÉÚËÉČ ĐŇĎĂĹÎÔÁČ ŐÓÔÁÎĎ×ŃÔÓŃ ÔĎĚŘËĎ ÎÁÉÂĎĚĹĹ ×ÁÖÎŮĹ ĐÁËĹÔŮ;\n"
-"ŐËÁÚÁÎÉĹ %d%% ĐŇÉ×ĹÄĹÔ Ë ŐÓÔÁÎĎ×ËĹ ÎÁÉÂĎĚŘŰĹÇĎ ×ĎÚÍĎÖÎĎÇĎ ŢÉÓĚÁ ĐÁËĹÔĎ×."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "âĎĚĹĹ ÔĎŢÎŮĘ ÉČ ×ŮÂĎŇ ÍĎÖÎĎ ÂŐÄĹÔ ÓÄĹĚÁÔŘ ÎÁ ÓĚĹÄŐŔÝĹÍ ŰÁÇĹ."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "đŇĎĂĹÎÔ ĐÁËĹÔĎ× ÄĚŃ ŐÓÔÁÎĎ×ËÉ"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "÷ŮÂĎŇ ÇŇŐĐĐŮ ĐÁËĹÔĎ×"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "÷ŮÂĎŇ ĎÔÄĹĚŘÎŮČ ĐÁËĹÔĎ×"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "ďÂÝÉĘ ĎÂßĹÍ: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "đĚĎČĎĘ ĐÁËĹÔ"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "éÍŃ: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "÷ĹŇÓÉŃ: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "ňÁÚÍĹŇ: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "÷ÁÖÎĎÓÔŘ: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"îĹĚŘÚŃ ×ŮÂÉŇÁÔŘ ÜÔĎÔ ĐÁËĹÔ, ĐĎÓËĎĚŘËŐ ÄĚŃ ĹÇĎ ŐÓÔÁÎĎ×ËÉ ÎĹÄĎÓÔÁÔĎŢÎĎ ÍĹÓÔÁ"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "âŐÄŐÔ ŐÓÔÁÎĎ×ĚĹÎŮ ÓĚĹÄŐŔÝÉĹ ĐÁËĹÔŮ"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "âŐÄŐÔ ŐÄÁĚĹÎŮ ÓĚĹÄŐŔÝÉĹ ĐÁËĹÔŮ"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "÷Ů ÎĹ ÍĎÖĹÔĹ ×ŮÂŇÁÔŘ/ĎÔÍĹÎÉÔŘ ×ŮÂĎŇ ÜÔĎÇĎ ĐÁËĹÔÁ"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "üÔĎ ĎÂŃÚÁÔĹĚŘÎŮĘ ĐÁËĹÔ, ĎÔ ÎĹÇĎ ÎĹĚŘÚŃ ĎÔËÁÚÁÔŘÓŃ"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "îĹĚŘÚŃ ĎÔÍĹÎÉÔŘ ×ŮÂĎŇ ÜÔĎÇĎ ĐÁËĹÔÁ, ĎÎ ŐÖĹ ŐÓÔÁÎĎ×ĚĹÎ."
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"üÔĎÔ ĐÁËĹÔ ÓĚĹÄŐĹÔ ĎÂÎĎ×ÉÔŘ\n"
"÷Ů Ő×ĹŇĹÎŮ, ŢÔĎ ČĎÔÉÔĹ ĎÔÍĹÎÉÔŘ ĹÇĎ ×ŮÂĎŇ?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "îĹĚŘÚŃ ĎÔÍĹÎÉÔŘ ×ŮÂĎŇ ÜÔĎÇĎ ĐÁËĹÔÁ. ďÎ ÄĎĚÖĹÎ ÂŮÔŘ ĎÂÎĎ×ĚĹÎ"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "đĎËÁÚÁÔŘ Á×ÔĎÍÁÔÉŢĹÓËÉ×ŮÂŇÁÎÎŮĹ ĐÁËĹÔŮ"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "őÓÔÁÎĎ×ËÁ"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
#, fuzzy
msgid "Load/Save on floppy"
msgstr "óĎČŇÁÎÉÔŘ ÎÁ ÄÉÓËĹÔĹ"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
#, fuzzy
msgid "Updating package selection"
msgstr "óĎČŇÁÎÉÔŘ ×ŮÂĎŇ ĐÁËĹÔĎ×"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
#, fuzzy
msgid "Minimal install"
msgstr "÷ŮČĎÄ ÉÚ ĐŇĎĂĹÓÓÁ ŐÓÔÁÎĎ×ËÉ"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "÷ŮÂĎŇ ĐÁËĹÔĎ× ÄĚŃ ŐÓÔÁÎĎ×ËÉ"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "éÄĹÔ ŐÓÔÁÎĎ×ËÁ"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "óÍĹÔÁ"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "ďÓÔÁ×ŰĹĹÓŃ ×ŇĹÍŃ "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "đĎÖÁĚŐĘÓÔÁ, ĐĎÄĎÖÄÉÔĹ, ĐĎÄÇĎÔÁ×ĚÉ×ÁĹÔÓŃ ŐÓÔÁÎĎ×ËÁ"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d ĐÁËĹÔĎ×"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "őÓÔÁÎĎ×ËÁ ĐÁËĹÔÁ %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "đŇÉÎŃÔŘ"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "ďÔËÁÚÁÔŘÓŃ"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4358,17 +4456,17 @@ msgstr ""
"ĺÓĚÉ Ő ×ÁÓ ĹÇĎ ÎĹÔ, ÎÁÖÍÉÔĹ ďÔÍĹÎÉÔŘ (Cancel), ŢÔĎÂŮ ÉÚÂĹÖÁÔŘ ŐÓÔÁÎĎ×ËÉ Ó "
"ÜÔĎÇĎ ÄÉÓËÁ."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "÷ÓĹ ŇÁ×ÎĎ ĐŇĎÄĎĚÖÁÔŘ?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "đŇĎÉÚĎŰĚÁ ĎŰÉÂËÁ ĐĎĚŐŢĹÎÉŃ ĐÁËĹÔĎ×:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "đŇÉ ŐÓÔÁÎĎ×ËĹ ĐÁËĹÔĎ× ĐŇĎÉÚĎŰĚÁ ĎŰÉÂËÁ:"
@@ -4441,11 +4539,11 @@ msgstr "đŇĎÉÚĎŰĚÁ ĎŰÉÂËÁ"
msgid "Do you really want to leave the installation?"
msgstr "÷Ů ČĎÔÉÔĹ ĐĹŇĹÚÁĐŐÓÔÉÔŘ ÓĹÔŘ"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "ěÉĂĹÎÚÉĎÎÎĎĹ ÓĎÇĚÁŰĹÎÉĹ"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4460,7 +4558,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -4682,113 +4780,117 @@ msgstr ""
"Paris - France.\n"
"For any question on this document, please contact MandrakeSoft S.A. \n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "ëĚÁ×ÉÁÔŐŇÁ"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ŇÁÓËĚÁÄËŐ ×ÁŰĹĘ ËĚÁ×ÉÁÔŐŇŮ"
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "đĎĚÎŮĘ ÓĐÉÓĎË ÄĎÓÔŐĐÎŮČ ËĚÁ×ÉÁÔŐŇ"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "ëÁËĎĘ ËĚÁÓÓ ŐÓÔÁÎĎ×ËÉ ×Ů ČĎÔÉÔĹ?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "őÓÔÁÎĎ×ËÁ/ďÂÎĎ×ĚĹÎÉĹ"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "üÔĎ ÎĎ×ÁŃ ŐÓÔÁ×Ď×ËÁ ÉĚÉ ĎÂÎĎ×ĚĹÎÉĹ?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "ňĹËĎÍĹÎÄŐĹÔÓŃ"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "üËÓĐĹŇÔ"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade"
msgstr "ďÂÎĎ×ĚĹÎÉĹ"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr "óĎČŇÁÎÉÔŘ ×ŮÂĎŇ ĐÁËĹÔĎ×"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "đĎÖÁĚŐĘÓÔÁ, ŐËÁÖÉÔĹ ÔÉĐ ×ÁŰĹĘ ÍŮŰÉ"
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "đĎŇÔ ÍŮŰÉ"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "őËÁÖÉĹÔ, Ë ËÁËĎÍŐ ĐĎÓĚĹÄĎ×ÁÔĹĚŘÎĎÍŐ ĐĎŇÔŐ ĐĎÄËĚŔŢĹÎÁ ×ÁŰÁ ÍŮŰŘ."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "üÍŐĚŃĂÉŃ ËÎĎĐĎË ÍŮŰÉ"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "üÍŐĚŃĂÉ 2 ËÎĎĐĎË"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "üÍŐĚŃĂÉŃ 3 ËÎĎĐĎË"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "îÁÓÔŇĎĘËÁ ËÁŇÔ PCMCIA ..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "îÁÓÔŇĎĘËÁ IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "ÎĹÔ ÄĎÓÔŐĐÎŮČ ŇÁÚÄĹĚĎ×"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "đŇĎÓÍĎÔŇ ŇÁÚÄĹĚĎ× - ĐĎÉÓË ÔĎŢĹË ÍĎÎÔÉŇĎ×ÁÎÉŃ"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "÷ŮÂĹŇÉÔĹ ÔĎŢËÉ ÍĎÎÔÉŇĎ×ÁÎÉŃ"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4800,7 +4902,7 @@ msgstr ""
"\n"
"÷Ů ÓĎÇĚÁÓÎŮ ĐĎÔĹŇŃÔŘ ×ÓĹ ×ÁŰÉ ŇÁÚÄĹĚŮ?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4808,140 +4910,143 @@ msgstr ""
"DiskDrake ÎĹ ÓÍĎÇ ËĎŇŇĹËÔÎĎ ĐŇĎŢÉÔÁÔŘ ÔÁÂĚÉĂŐ ŇÁÚÄĹĚĎ×.\n"
"đŇĎÄĎĚÖÁĘÔĹ ÎÁ Ó×ĎĘ ÓÔŇÁČ É ŇÉÓË!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "÷ŮÂĎŇ ŇÁÚÄĹĚĎ× ÄĚŃ ĆĎŇÍÁÔÉŇĎ×ÁÎÉŃ"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "ëĎŇÎĹ×ĎĘ ŇÁÚÄĹĚ"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "ëÁËĎĘ ŇÁÚÄĹĚ Ń×ĚŃĹÔÓŃ ËĎŇÎĹ×ŮÍ (/) × ×ÁŰĹĘ ÓÉÓÔĹÍĹ?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr "ţÔĎÂŮ ÍĎÄÉĆÉËÁĂÉŃ ÔÁÂĚÉĂŮ ŇÁÚÄĹĚĎ× ĎÓŐÝĹÓÔ×ÉĚÁÓŘ, ĐĹŇĹÚÁÇŇŐÚÉÔĹÓŘ"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "÷ŮÂĎŇ ŇÁÚÄĹĚĎ× ÄĚŃ ĆĎŇÍÁÔÉŇĎ×ÁÎÉŃ"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "đŇĎ×ĹŇÉÔŘ ĐĚĎČÉĹ ÂĚĎËÉ?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "ćĎŇÍÁÔÉŇĎ×ÁÎÉĹ ŇÁÚÄĹĚĎ×"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "óĎÚÄÁÎÉĹ É ĆĎŇÍÁÔÉŇĎ×ÁÎÉĹ ĆÁĘĚÁ %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"îĹÄĎÓÔÁÔĎŢÎŮĘ ŇÁÚÍĹŇ ×ÉŇÔŐÁĚŘÎĎĘ ĐÁÍŃÔÉ (swap) ÄĚŃ ŐÓÔÁÎĎ×ËÉ, ÎĹÍÎĎÇĎ "
"Ő×ĹĚÉŢŘÔĹ"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "đŇĎÓÍĎÔŇ ÄĎÓÔŐĐÎŮČ ĐÁËĹÔĎ×"
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "đŇĎÓÍĎÔŇ ÄĎÓÔŐĐÎŮČ ĐÁËĹÔĎ×"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "đĎÉÓË ĐÁËĹÔĎ× ÄĚŃ ĎÂÎĎ×ĚĹÎÉŃ"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "îĹĚŘÚŃ ĎÔÍĹÎÉÔŘ ×ŮÂĎŇ ÜÔĎÇĎ ĐÁËĹÔÁ, ĎÎ ŐÖĹ ŐÓÔÁÎĎ×ĚĹÎ."
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"îÁ ×ÁŰĹĘ ÓÉÓÔĹÍĹ ĎÓÔÁĚĎÓŘ ÎĹÄĎÓÔÁÔĎŢÎĎ ÍĹÓÔÁ ÄĚŃ ŐÓÔÁÎĎ×ËÉ ÉĚÉ ĎÂÎĎ×ĚĹÎÉŃ (%"
"d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "đĎĚÎĎÓÔŘŔ (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "íÉÎÉÍŐÍ (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "ňĹËĎÍĹÎÄŐĹÔÓŃ (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
#, fuzzy
msgid "Load from floppy"
msgstr "÷ĎÓÓÔÁÎĎ×ÉÔŘ Ó ÄÉÓËĹÔŮ"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Loading from floppy"
msgstr "÷ĎÓÓÔÁÎĎ×ÉÔŘ Ó ÄÉÓËĹÔŮ"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Package selection"
msgstr "÷ŮÂĎŇ ÇŇŐĐĐŮ ĐÁËĹÔĎ×"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "÷ÓÔÁ×ŘÔĹ ÄÉÓËĹÔŐ × ÄÉÓËĎ×ĎÄ %s"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "óĎČŇÁÎÉÔŘ ÎÁ ÄÉÓËĹÔĹ"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "÷ŮÂŇÁÎÎŮĘ ŇÁÚÍĹŇ ÂĎĚŘŰĹ, ŢĹÍ ÄĎÓÔŐĐÎĎ ÍĹÓÔÁ"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4951,16 +5056,16 @@ msgstr ""
"ĺÓĚÉ Ő ×ÁÓ ÎĹÔ ÎÉ ĎÄÎĎÇĎ ÉÚ ÎÉČ, ÎÁÖÍÉÔĹ ďÔÍĹÎÉÔŘ.\n"
"ĺÓĚÉ ĎÔÓŐÔÓÔ×ŐŔÔ ÔĎĚŘËĎ ĎÔÄĹĚŘÎŮĹ CD, ĎÔÍĹÎÉÔĹ ÉČ ×ŮÂĎŇ É ÎÁÖÍÉÔĹ Ok."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom ĐĎÄ ÉÍĹÎĹÍ \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "đĎÄÇĎÔĎ×ËÁ ŐÓÔÁÎĎ×ËÉ"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4969,23 +5074,23 @@ msgstr ""
"őÓÔÁÎĎ×ËÁ ĐÁËĹÔÁ %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "îÁÓÔŇĎĘËÁ ĐĎÓĚĹ ŐÓÔÁÎĎ×ËÉ"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "÷ÓÔÁ×ŘÔĹ ÄÉÓËĹÔŐ × ÄÉÓËĎ×ĎÄ %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "÷ÓÔÁ×ŘÔĹ ŢÉÓÔŐŔ ÄÉÓËĹÔŐ × ÄÉÓËĎ×ĎÄ %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5055,166 +5160,197 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "ó×ŃÚŘ Ó ÓĹŇ×ĹŇĎÍ ÄĚŃ ĐĎĚŐŢĹÎÉŃ ÓĐÉÓËÁ ÄĎÓÔŐĐÎŮČ ĐÁËĹÔĎ×"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "÷ŮÂĎŇ ÓĹŇ×ĹŇÁ ÄĚŃ ĐĎĚŐŢĹÎÉŃ ĐÁËĹÔĎ×"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "ó×ŃÚŘ Ó ÓĹŇ×ĹŇĎÍ ÄĚŃ ĐĎĚŐŢĹÎÉŃ ÓĐÉÓËÁ ÄĎÓÔŐĐÎŮČ ĐÁËĹÔĎ×"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "ëÁËĎ× ×ÁŰ ŢÁÓĎ×ĎĘ ĐĎŃÓ?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "÷ÁŰÉ ÓÉÓÔĹÍÎŮĹ ŢÁÓŮ ŐÓÔÁÎĎ×ĚĹÎŮ ÎÁ GMT?"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
#, fuzzy
msgid "NTP Server"
msgstr "NIS ÓĹŇ×ĹŇ"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "őÄÁĚĹÎÎŮĘ CUPS ÓĹŇ×ĹŇ"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "îĹÔ ĐŇÉÎÔĹŇÁ"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "ĺÓÔŘ ĚÉ Ő ×ÁÓ ÄŇŐÇĎĘ?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "ňĹÚŔÍĹ"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "íŮŰŘ"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "ţÁÓĎ×ĎĘ ĐĎŃÓ"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "đŇÉÎÔĹŇ"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "÷ÎŐÔŇĹÎÎŃŃ ËÁŇÔÁ ISDN"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "ú×ŐËĎ×ÁŃ ËÁŇÔÁ"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV ËÁŇÔÁ"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "NIS"
msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "őÄÁĚÉÔŘ Windows(TM)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Local files"
msgstr "ěĎËÁĚŘÎŮĘ ĐŇÉÎÔĹŇ"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "úÁÄÁÎÉĹ ĐÁŇĎĚŃ ÄĚŃ root"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "îĹÔ ĐÁŇĎĚŃ"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr "üÔĎÔ ĐÁŇĎĚŘ ÓĚÉŰËĎÍ ĐŇĎÓÔ (ĹÇĎ ÄĚÉÎÁ ÄĎĚÖÎÁ ÂŮÔŘ ÎĹ ÍĹÎĹĹ %d ÓÉÍ×ĎĚĎ×)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "áŐÔĹÎÔÉĆÉËÁĂÉŃ"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
#, fuzzy
msgid "Authentication LDAP"
msgstr "áŐÔĹÎÔÉĆÉËÁĂÉŃ"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "LDAP Server"
msgstr "NIS ÓĹŇ×ĹŇ"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
#, fuzzy
msgid "Authentication NIS"
msgstr "áŐÔĹÎÔÉĆÉËÁĂÉŃ NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS ÄĎÍĹÎ"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS ÓĹŇ×ĹŇ"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "áŐÔĹÎÔÉĆÉËÁĂÉŃ"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "NIS ÄĎÍĹÎ"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NIS ÓĹŇ×ĹŇ"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -5242,19 +5378,19 @@ msgstr ""
"ĐĹŇ×ŮĘ \n"
"ÄÉÓËĎ×ĎÄ É ÎÁÖÍÉÔĹ \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "đĹŇ×ŮĘ ÄÉÓËĎ×ĎÄ"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "÷ÔĎŇĎĘ ÄÉÓËĎ×ĎÄ"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "đŇĎĐŐÓÔÉÔŘ"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5279,7 +5415,7 @@ msgstr ""
"čĎÔÉÔĹ ÓĎÚÄÁÔŘ ÚÁÇŇŐÚĎŢÎŮĘ ÄÉÓË ÓĹĘŢÁÓ?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5288,28 +5424,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "đŇĎÓÔÉÔĹ, ÎĎ ÄÉÓËĎ×ĎÄ ÎĹÄĎÓÔŐĐĹÎ"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "÷ŮÂĹŇÉÔĹ ÄÉÓËĎ×ĎÄ, × ËĎÔĎŇĎÍ ÂŐÄĹÔ ÓĎÚÄÁ×ÁÔŘÓŃ ÚÁÇŇŐÚĎŢÎÁŃ ÄÉÓËĹÔÁ"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "÷ÓÔÁ×ŘÔĹ ÄÉÓËĹÔŐ × ÄÉÓËĎ×ĎÄ %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "óĎÚÄÁÎÉĹ ÚÁÇŇŐÚĎŢÎĎĘ ÄÉÓËĹÔŮ"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "đĎÄÇĎÔĎ×ËÁ ÎÁŢÁĚŘÎĎÇĎ ÚÁÇŇŐÚŢÉËÁ"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5317,11 +5453,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "÷Ů ČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5329,16 +5465,16 @@ msgstr ""
"ďŰÉÂËÁ ŐÓÔÁÎĎ×ËÉ aboot, \n"
"ĐĎĐŇĎÂĎ×ÁÔŘ ÓÄĹĚÁÔŘ ŐÓÔÁÎĎ×ËŐ ÎÁÓÉĚŘÎĎ, ÄÁÖĹ ĹÓĚÉ ÜÔĎ ŇÁÚŇŐŰÉÔ ĐĹŇ×ŮĘ ŇÁÚÄĹĚ?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
#, fuzzy
msgid "Installing bootloader"
msgstr "őÓÔÁÎĎ×ËÁ ÍĹÎĹÄÖĹŇÁ ÚÁÇŇŐÚËÉ"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "őÓÔÁÎĎ×ËÁ bootloader ÎĹ ĐŇĎŰĚÁ. đŇĎÉÚĎŰĚÁ ÓĚĹÄŐŔÝÁŃ ĎŰÉÂËÁ:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, fuzzy, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5357,18 +5493,17 @@ msgstr ""
" úÁÔĹÍ ××ĹÄÉÔĹ: shut-down\n"
"đŇÉ ÓĚĹÄŐŔÝĹĘ ÚÁÇŇŐÚËĹ ×Ů Ő×ÉÄÉÔĹ ĐŇÉÇĚÁŰĹÎÉĹ ÎÁŢÁĚŘÎĎÇĎ ÚÁÇŇŐÚŢÉËÁ."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "÷ÓÔÁ×ŘÔĹ ŢÉÓÔŐŔ ÄÉÓËĹÔŐ × ÄÉÓËĎ×ĎÄ %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "óĎÚÄÁÎÉĹ ÓÁÍĎ-ŐÓÔÁÎÁ×ĚÉ×ÁŔÝĹĘÓŃ ÄÉÓËĹÔŮ"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5378,7 +5513,8 @@ msgstr ""
"\n"
"÷Ů ÄĹĘÓÔ×ÉÔĹĚŘÎĎ ČĎÔÉÔĹ ×ŮĘÔÉ ÓĹĘŢÁÓ?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5389,7 +5525,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5403,17 +5539,21 @@ msgstr ""
"ĎÂŇÁÝÁĘÔĹÓŘ ÎÁ \n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"éÎĆĎŇÍÁĂÉŃ Ď ÎÁÓÔŇĎĘËĹ ×ÁŰĹĘ ÓÉÓÔĹÍŮ ĹÓÔŘ × ĐĎÓĚĹ-ŐÓÔÁÎĎ×ĎŢÎĎĘ\n"
"ÇĚÁ×Ĺ ×ÁŰĹÇĎ ňŐËĎ×ĎÄÓÔ×Á đĎĚŘÚĎ×ÁÔĹĚŃ ÉÚ ďĆÉĂÉÁĚŘÎĎÇĎ Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "óĎÚÄÁÎÉĹ ÓÁÍĎ-ŐÓÔÁÎÁ×ĚÉ×ÁŔÝĹĘÓŃ ÄÉÓËĹÔŮ"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5427,15 +5567,15 @@ msgstr ""
"\n"
"÷ĎÚÍĎÖÎĎ, ×Ů ĐŇĹÄĐĎŢÔĹÔĹ ĐĎ×ÔĎŇÉÔŘ ŐÓÔÁÎĎ×ËŐ.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "á×ÔĎÍÁÔÉŢĹÓËÉĘ"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "đĎ×ÔĎŇÉÔŘ"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "óĎČŇÁÎÉÔŘ ×ŮÂĎŇ ĐÁËĹÔĎ×"
@@ -5464,421 +5604,405 @@ msgstr ""
msgid "Choose a file"
msgstr "÷ŮÂĹŇÉÔĹ ÄĹĘÓÔ×ÉĹ"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "đŇĎÄ×ÉÎŐÔŮĘ"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "đĎÄĎÖÄÉÔĹ, ĐĎÖÁĚŐĘÓÔÁ"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "éÎĆĎŇÍÁĂÉŃ"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "ňÁÚ×ĹŇÎŐÔŘ ÄĹŇĹ×Ď"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "ó×ĹŇÎŐÔŘ ÄĹŇĹ×Ď"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "đĹŇĹËĚŔŢĹÎÉĹ ÍĹÖÄŐ ĐŇĎÓÔŮÍ ÓĐÉÓËĎÍ É ÓĎŇÔÉŇĎ×ËĎĘ ĐĎ ÇŇŐĐĐÁÍ"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "đĚĎČĎĘ ×ŮÂĎŇ, ĐĎĐŇĎÂŐĘÔĹ ĹÝĹ\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "÷ÁŰ ×ŮÂĎŇ? (ŐÍĎĚŢÁÎÉĹ %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "÷ÁŰ ×ŮÂĎŇ? (ŐÍĎĚŢÁÎÉĹ %s) "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "đÁŇÁÍĹÔŇŮ: %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr "÷Ů ČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ aboot?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "÷ÁŰ ×ŮÂĎŇ? (ŐÍĎĚŢÁÎÉĹ %s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "ţĹŰÓËÉĘ (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "îĹÍĹĂËÉĘ"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "éÓĐÁÎÓËÉĘ"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "ćÉÎÓËÉĘ"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "ćŇÁÎĂŐÚÓËÉĘ"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "îĎŇ×ĹÖÓËÉĘ"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "đĎĚŘÓËÉĘ"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "ňŐÓÓËÉĘ"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "ű×ĹÄÓËÉĘ"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "UK ËĚÁ×ÉÁÔŐŇÁ"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "US ËĚÁ×ÉÁÔŐŇÁ"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Albanian"
msgstr "éŇÁÎÓËÉĘ"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "áŇÍŃÎÓËÉĘ (ÓÔÁŇŮĘ)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "áŇÍŃÎÓËÉĘ (ÍÁŰÉÎĎĐÉÓŘ)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "áŇÍŃÎÓËÉĘ (ĆĎÎĹÔÉŢĹÓËÉĘ)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "áÚĹŇÂÁĘÄÖÁÎÓËÉĘ (ĚÁÔÉÎÉĂÁ)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "âĹĚŘÇÉĘÓËÉĘ"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "áŇÍŃÎÓËÉĘ (ĆĎÎĹÔÉŢĹÓËÉĘ)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "âĎĚÇÁŇÓËÉĘ"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "âŇÁÚÉĚŘÓËÉĘ (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "âeĚĎŇŐÓÓËÉĘ"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "ű×ĹĘĂÁŇÓËÉĘ (îĹÍĹĂËÁŃ ŇÁÓËĚÁÄËÁ)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "ű×ĹĘĂÁŇÓËÉĘ (ćŇÁÎĂŐÚÓËÁŃ ŇÁÓËĚÁÄËÁ)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "ţĹŰÓËÉĘ (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "îĹÍĹĂËÉĘ (ÂĹÚ ÍĹŇÔ×ŮČ ËĚÁ×ÉŰ)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "äÁÔÓËÉĘ"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (óűá)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (îĎŇ×ĹÖÓËÉĘ)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (óűá)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "üÓÔĎÎÓËÉĘ"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "çŇŐÚÉÎÓËÉĘ (\"ňŐÓÓËÁŃ\" ŇÁÓËĚÁÄËÁ)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "çŇŐÚÉÎÓËÉĘ (\"ěÁÔÉÎÓËÁŃ\" ŇÁÓËĚÁÄËÁ)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "çŇĹŢĹÓËÉĘ"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "÷ĹÎÇĹŇÓËÉĘ"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "čĎŇ×ÁÔÓËÉĘ"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "é×ŇÉÔ"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "é×ŇÉÔ (ĆĎÎĹÔÉŢĹÓËÉĘ)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "éŇÁÎÓËÉĘ"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "éÓĚÁÎÄÓËÉĘ"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "éÔÁĚŘŃÎÓËÉĘ"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "ńĐĎÎÓËÉĘ 106 ËĚÁ×ÉŰ"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "ëĎŇĹĘÓËÁŃ ËĚÁ×ÉÁÔŐŇÁ"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "ěÁÔÉÎĎ-áÍĹŇÉËÁÎÓËÉĘ"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "ěÉÔĎ×ÓËÉĘ AZERTY (ÓÔÁŇŮĘ)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "ěÉÔĎ×ÓËÉĘ AZERTY (ÎĎ×ŮĘ)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "ěÉÔĎ×ÓËÉĘ \"ÎĎÍĹŇ ŇŃÄÁ\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "ěÉÔĎ×ÓËÉĘ \"ĆĎÎĹÔÉŢĹÓËÉĘ\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
#, fuzzy
msgid "Latvian"
msgstr "íĹÓÔĎÎÁČĎÖÄĹÎÉĹ"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "íÁËĹÄĎÎÓËÉĘ"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "çĎĚĚÁÎÄÓËÉĘ"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "đĎĚŘÓËÉĘ (ŇÁÓËĚÁÄËÁ qwerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "đĎĚŘÓËÉĘ (ŇÁÓËĚÁÄËÁ qwertz)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "đĎŇÔŐÇÁĚŘÓËÉĘ"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "ëÁÎÁÄÓËÉĘ (ë×ĹÂĹË)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "ňŐÓÓËÉĘ (Yawerty)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "ňŐÓÓËÉĘ (Yawerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "ňŐÓÓËÉĘ (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "óĚĎ×ĹÎÓËÉĘ"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "óĚĎ×ÁĂËÉĘ (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "óĚĎ×ÁĂËÉĘ (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "áÚĹŇÂÁĘÄÖÁÎÓËÉĘ (ËÉŇÉĚĚÉĂÁ)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "ôÁÂĚÉĂÁ"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "ôÁĘÓËÁŃ ËĚÁ×ÉÁÔŐŇÁ"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "ôÁĘÓËÁŃ ËĚÁ×ÉÁÔŐŇÁ"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "ôŐŇĹĂËÉĘ (ÔŇÁÄÉĂÉĎÎÎÁŃ \"F\" ÍĎÄĹĚŘ)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "ôŐŇĹĂËÉĘ (ÓĎ×ŇĹÍĹÎÎÁŃ \"Q\" ÍĎÄĹĚŘ)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "őËŇÁÉÎÓËÉĘ"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US ËĚÁ×ÉÁÔŐŇÁ (ÉÎÔĹŇÎÁĂÉĎÎÁĚŘÎÁŃ)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "÷ŘĹÔÎÁÍÓËÉĘ \"ŢÉÓĚĎ×ĎĘ ŇŃÄ\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "ŕÇĎÓĚÁ×ÓËÉĘ (ĚÁÔÉÎÉĂÁ/ËÉŇÉĚĚÉĂÁ)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5891,7 +6015,31 @@ msgstr "ăÉËĚÉŢĹÓËĎĹ ÍĎÎÔÉŇĎ×ÁÎÉĹ %s\n"
msgid "Remove the logical volumes first\n"
msgstr "óÎÁŢÁĚÁ ŐÄÁĚÉÔĹ ĚĎÇÉŢĹÓËÉĹ ÔĎÍÁ\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "îĎÍĹŇ ÔĹĚĹĆĎÎÁ"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "ĆĎŇÍÁÔÉŇĎ×ÁÎÉĹ ŇÁÚÄĹĚĎ×"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5932,10 +6080,6 @@ msgstr "1 ËÎĎĐËÁ"
msgid "Generic 2 Button Mouse"
msgstr "ďÂŮŢÎÁŃ 2-Č ËÎĎĐĎŢÎÁŃ ÍŮŰŘ"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "ďÂŮŢÎŮĘ"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "ëĎĚĹÓÉËĎ"
@@ -6000,38 +6144,54 @@ msgstr "ÎÉËÁËĎĘ"
msgid "No mouse"
msgstr "îĹÔ ÍŮŰÉ"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "đŇĎ×ĹŇŘÔĹ ×ÁŰŐ ÍŮŰŘ"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "ţÔĎÂŮ ÚÁĐŐÓÔÉÔŘ ÍŮŰŘ,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "đďëňőôéôĺ ëďěĺóéëď!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "ćÉÎÓËÉĘ"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "óĚĹÄŐŔÝÉĘ ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- đŇĹÄŮÄŐÝÉĘ"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "üÔĎ ×ĹŇÎĎ?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "éÎĆĎŇÍÁĂÉŃ"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "ňÁÚ×ĹŇÎŐÔŘ ÄĹŇĹ×Ď"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "ó×ĹŇÎŐÔŘ ÄĹŇĹ×Ď"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "đĹŇĹËĚŔŢĹÎÉĹ ÍĹÖÄŐ ĐŇĎÓÔŮÍ ÓĐÉÓËĎÍ É ÓĎŇÔÉŇĎ×ËĎĘ ĐĎ ÇŇŐĐĐÁÍ"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "đĎÄÓĎĹÄÉÎÉÔŘÓŃ Ë éÎÔĹŇÎĹÔ"
@@ -6078,7 +6238,7 @@ msgstr ""
"îÁ ×ÁŰĹĘ ÓÉÓÔĹÍĹ ÎĹ ĎÂÎÁŇŐÖĹÎĎ ÓĹÔ×ĹĎÇĎ ÁÄÁĐÔĹŇÁ ethernet.\n"
"îĹ ÍĎÇŐ ŐÓÔÁÎĎ×ÉÔŘ ÜÔĎÔ ÔÉĐ ÓĎĹÄÉÎĹÎÉŃ."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "÷ŮÂĎŇ ÓĹÔĹ×ĎÇĎ ÉÎÔĹŇĆĹĘÓÁ"
@@ -6093,7 +6253,7 @@ msgstr ""
msgid "no network card found"
msgstr "ÓĹÔĹ×ŮČ ËÁŇÔ ÎĹ ÎÁĘÄĹÎĎ"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "îÁÓÔŇĎĘËÁ ÓĹÔÉ"
@@ -6109,15 +6269,15 @@ msgstr ""
"éÍŃ ×ÁŰĹĘ ÍÁŰÉÎŮ ÄĎĚÖÎĎ ÂŮÔŘ ÚÁÄÁÎĎ ĐĎĚÎĎÓÔŘŔ,\n"
"ÎÁĐŇÉÍĹŇ ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "éÍŃ ÍÁŰÉÎŮ"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "íÁÓÔĹŇ ÎÁÓÔŇĎĘËÉ ÓĹÔÉ"
@@ -6165,7 +6325,7 @@ msgstr "îÁÓÔŇĎĘËÁ ISDN"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"÷ŮÂĹŇÉÔĹ ĐŇĎ×ÁĘÄĹŇÁ.\n"
" ĺÓĚÉ ĹÇĎ ÎĹÔ × ÓĐÉÓËĹ, ×ŮÂĹŇÉÔĹ îĹŐËÁÚÁÎÎŮĘ"
@@ -6188,14 +6348,14 @@ msgstr "ďÓÔÁĚŘÎĎĘ ÍÉŇ"
#: ../../network/isdn.pm_.c:185
#, fuzzy
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"ďÓÔÁĚŘÎĎĘ ÍÉŇ \n"
" ÂĹÚ D-ËÁÎÁĚÁ (×ŮÄĹĚĹÎÎŮČ ĚÉÎÉĘ)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "ëÁËĎĘ ĐŇĎÔĎËĎĚ ÂŐÄĹÔ ÉÓĐĎĚŘÚĎ×ÁÔŘÓŃ ?"
#: ../../network/isdn.pm_.c:199
@@ -6219,7 +6379,8 @@ 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"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"ĺÓĚÉ Ő ×ÁÓ ËÁŇÔÁ ISA, ÔĎ ÚÎÁŢĹÎÉŃ ÎÁ ÓĚĹÄŐŔÝĹÍ ÜËŇÁÎĹ ÄĎĚÖÎŮ ÂŮÔŘ ×ĹŇÎŮÍÉ.\n"
@@ -6235,13 +6396,13 @@ msgid "Continue"
msgstr "đŇĎÄĎĚÖÉÔŘ"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "ëÁËÁŃ Ő ×ÁÓ ËÁŇÔÁ ISDN ?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"ďÂÎÁŇŐÖĹÎÁ ËÁŇÔÁ ISDN PCI, ÎĎ ĹĹ ÔÉĐ ÎĹ ŐÄÁĚĎÓŘ ĎĐŇĹÄĹĚÉÔŘ. ÷ŮÂĹŇÉÔĹ ÎÁ "
"ÓĚĹÄŐŔÝĹÍ ÜËŇÁÎĹ ËÁŇÔŐ PCI."
@@ -6258,47 +6419,47 @@ msgstr "÷ŮÂĹŇÉÔĹ, Ë ËÁËĎÍŐ ĐĎÓĚĹÄĎ×ÁÔĹĚŘÎĎÍŐ ĐĎŇÔŐ ĐĎÄËĚŔŢĹÎ ÍĎÄĹÍ."
msgid "Dialup options"
msgstr "đÁŇÁÍĹÔŇŮ ÄĎÚ×ĎÎÁ"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "éÍŃ ÓĎĹÄÉÎĹÎÉŃ"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "îĎÍĹŇ ÔĹĚĹĆĎÎÁ"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "éÍŃ (Login ID)"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr ""
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "ÎÁ ÂÁÚĹ ÓËŇÉĐÔÁ"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "ÎÁ ÂÁÚĹ ÔĹŇÍÉÎÁĚÁ"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "éÍŃ ÄĎÍĹÎÁ"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "đĹŇ×ŮĘ ÓĹŇ×ĹŇ DNS (ÎĹĎÂŃÚÁÔĹĚŘÎĎ)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "÷ÔĎŇĎĘ ÓĹŇ×ĹŇ DNS (ÎĹĎÂŃÚÁÔĹĚŘÎĎ)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6306,7 +6467,7 @@ msgstr ""
"\n"
"÷Ů ÍĎÖĹÔĹ ĎÔÓĎĹÄÉÎÉÔŘÓŃ ÉĚÉ ĐĹŇĹÎÁÓÔŇĎÉÔŘ ×ÁŰĹ ÓĎĹÄÉÎĹÎÉĹ."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6314,11 +6475,11 @@ msgstr ""
"\n"
"÷Ů ÍĎÖĹÔĹ ĐĹŇĹÎÁÓÔŇĎÉÔŘ ×ÁŰĹ ÓĎĹÄÉÎĹÎÉĹ."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "÷ ÄÁÎÎŮĘ ÍĎÍĹÎÔ ×Ů ÓĎĹÄÉÎĹÎŮ Ó ÉÎÔĹŇÎĹÔ."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6326,35 +6487,35 @@ msgstr ""
"\n"
"÷Ů ÍĎÖĹÔĹ ÓĎĹÄÉÎÉÔŘÓŃ Ó ÉÎÔĹŇÎĹÔ ÉĚÉ ĐĹŇĹÎÁÓÔŇĎÉÔŘ ×ÁŰĹ ÓĎĹÄÉÎĹÎÉĹ."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "÷ ÄÁÎÎŮĘ ÍĎÍĹÎÔ ×Ů ÎĹ ÓĎĹÄÉÎĹÎŮ Ó ÉÎÔĹŇÎĹÔ."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "óĎĹÄÉÎĹÎÉÔŘÓŃ"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "ďÔÓĎĹÄÉÎÉÔŘÓŃ"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "îÁÓÔŇĎĘËÁ ÓĹÔÉ"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "óĎĹÄÉÎĹÎÉĹ éÎÔĹŇÎĹÔ É ÎÁÓÔŇĎĘËÁ"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
"\n"
"÷Ů ÍĎÖĹÔĹ ĎÔÓĎĹÄÉÎÉÔŘÓŃ ÉĚÉ ĐĹŇĹÎÁÓÔŇĎÉÔŘ ×ÁŰĹ ÓĎĹÄÉÎĹÎÉĹ."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, fuzzy, c-format
msgid ""
"\n"
@@ -6368,12 +6529,12 @@ msgstr ""
"\n"
"÷Ů ÍĎÖĹÔĹ ĎÔÓĎĹÄÉÎÉÔŘÓŃ ÉĚÉ ĐĹŇĹÎÁÓÔŇĎÉÔŘ ×ÁŰĹ ÓĎĹÄÉÎĹÎÉĹ."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "ëĎÎĆÉÇŐŇÁĂÉŃ ÓĹÔÉ"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6384,9 +6545,9 @@ msgstr ""
"îÁÖÍÉÔĹ Ok ŢÔĎÂŮ ĎÓÔÁ×ÉÔŘ ÔĹËŐÝÉĹ ÎÁÓÔŇĎĘËÉ, ÉĚÉ ďÔÍĹÎÉÔŘ, ŢÔĎÂŮ "
"ĐĹŇĹÎÁÓÔŇĎÉÔŘ ×ÁŰĹ ÓĎĹÄÉĹÎÉĹ Ó ÉÎÔĹŇÎĹÔ É ĚĎËÁĚŘÎĎĘ ÓĹÔŘŔ.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"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"
@@ -6396,93 +6557,99 @@ msgstr ""
"óĹĘŢÁÓ ÍŮ ÎÁÓÔŇĎÉÍ ×ÁŰĹ ÓĎĹÄÉÎĹÎÉĹ Ó ÉÎÔĹŇÎĹÔ É/ÉĚÉ ĚĎËÁĚŘÎĎĘ ÓĹÔŘŔ.\n"
"ĺÓĚÉ ×Ů ÎĹ ČĎÔÉÔĹ ÓÉĐĎĚŘÚĎ×ÁÔŘ Á×ÔĎĎĐŇĹÄĹĚĹÎÉĹ, ĎÔÍĹÎÉÔĹ ÇÁĚĎŢËŐ.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "÷ŮÂĹŇÉÔĹ ĐŇĎĆÉĚŘ ÄĚŃ ÎÁÓÔŇĎĘËÉ"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ Á×ÔĎĎĐŇĹÄĹĚĹÎÉĹ"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "ňĹÖÉÍ ÜËÓĐĹŇÔÁ"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "ďĐŇĹÄĹĚĹÎÉĹ ŐÓÔŇĎĘÓÔ×..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "ďÂŮŢÎĎĹ ÍĎÄĹÍÎĎĹ ÓĎĹÄÉÎĹÎÉĹ"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "ÎÁĘÄĹÎ ÎÁ ĐĎŇÔŐ %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN ÓĎĹÄÉÎĹÎÉĹ"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "ÎÁĘÄĹÎĎ %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy
msgid "ADSL connection"
msgstr "óĎĹÄÉÎĹÎÉĹ ĐĎ ĚĎËÁĚŘÎĎĘ ÓĹÔÉ"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "ĎÂÎÁŇŐÖĹÎ ÎÁ ÉÎÔĹŇĆĹĘÓĹ %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "ëÁÂĹĚŘÎĎĹ ÓĎĹÄÉÎĹÎÉĹ"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "cable connection detected"
msgstr "ëÁÂĹĚŘÎĎĹ ÓĎĹÄÉÎĹÎÉĹ"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "óĎĹÄÉÎĹÎÉĹ ĐĎ ĚĎËÁĚŘÎĎĘ ÓĹÔÉ"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "ĎÂÎÁŇŐÖĹÎÁ ĎÄÎÁ ÉĚÉ ÎĹÓËĎĚŘËĎ ÓĹÔĹ×ÁČ ËÁŇÔ ethernet"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "÷ŮÂĹŇÉÔĹ ĐŇĎÇŇÁÍÍŐ, ËĎÔĎŇŮĘ ×Ů ČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
#, fuzzy
msgid "Internet connection"
msgstr "ňÁÚÄĹĚĹÎÉĹ ÉÎÔĹŇÎĹÔ-ÓĎĹÄÉÎĹÎÉŃ"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "čĎÔÉÔĹ ĚÉ ×Ů, ŢÔĎÂŮ ×ÁŰĹ ÓĎĹÄÉÎĹÎÉĹ ÚÁĐŐÓËÁĚĎÓŘ ĐŇÉ ÚÁÇŇŐÚËĹ?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "îÁÓÔŇĎĘËÁ ÓĹÔÉ"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6493,7 +6660,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6503,7 +6670,7 @@ msgstr ""
"\n"
"óĹĘŢÁÓ ÂŐÄŐÔ ÓÄĹĚÁÎŮ ÉÚÍĹÎĹÎÉŃ × ×ÁŰĹĘ ÓÉÓÔĹÍĹ.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6511,16 +6678,16 @@ msgstr ""
"đĎÓĚĹ ÜÔĎÇĎ ÍŮ ŇĹËĎÍĹÎÄŐĹÍ ĐĹŇĹÚÁĐŐÓÔÉÔŘ ×ÁŰ X ÓĹŇ×ĹŇ, \n"
"ŢÔĎÂŮ ÉÚÂĹÖÁÔŘ ĐŇĎÂĚĹÍ ÉÚ-ÚÁ ÓÍĹÎŮ ÉÍĹÎÉ ËĎÍĐŘŔÔĹŇÁ."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"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."
@@ -6530,7 +6697,7 @@ msgstr ""
"đŇĎÓÔĎ ĎÓÔÁ×ŘÔĹ ÜÔĎ ŐÓÔŇĎĘÓÔ×Ď ÎÁÓÔŇĎĹÎÎŮÍ.\n"
"éÚÍĹÎĹÎÉĹ ĐĎĚĹĘ ×ÎÉÚŐ ÉÚÍĹÎÉÔ ĐŇĹÄŮÄŐÝŐŔ ÎÁÓÔŇĎĘËŐ."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6540,38 +6707,43 @@ msgstr ""
"ëÁÖÄŮĘ ĐŐÎËÔ ÄĎĚÖĹÎ ÂŮÔŘ ÚÁĐĎĚÎĹÎ ËÁË IP ÁÄŇĹÓ × ÄĹÓŃÔÉŢÎĎ-ÔĎŢĹŢÎĎĘ \n"
"ÎĎÔÁĂÉÉ (ÎÁĐŇÉÍĹŇ, 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "îÁÓÔŇĎĘËÁ ÓĹÔĹ×ĎÇĎ ŐÓÔŇĎĘÓÔ×Á %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr "(driver %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP ÁÄŇĹÓ"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "íÁÓËÁ ÓĹÔÉ"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "á×ÔĎÍÁÔÉŢĹÓËÉĘ IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "úÁĐŐÝĹÎĎ ĐŇÉ ÚÁÇŇŐÚËĹ"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP ÁÄŇĹÓ ÄĎĚÖĹÎ ÂŮÔŘ × ĆĎŇÍÁÔĹ 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6583,64 +6755,64 @@ msgstr ""
"ÎÁĐŇÉÍĹŇ ``mybox.mylab.myco.com''.\n"
"÷Ů ÍĎÖĹÔĹ ÔÁËÖĹ ××ĹÓÔÉ IP ÁÄŇĹÓ ŰĚŔÚÁ, ĹÓĚÉ ĎÎ Ő ×ÁÓ ĹÓÔŘ"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS ÓĹŇ×ĹŇ"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "űĚŔÚĎ×ĎĹ ŐÓÔŇĎĘÓÔ×Ď"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "îÁÓÔŇĎĘËÁ proxy"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Proxy ÄĎĚÖÎĎ ÂŮÔŘ http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Proxy ÄĎĚÖÎĎ ÂŮÔŘ ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "îÁÓÔŇĎĘËÁ éÎÔĹŇÎĹÔ"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "čĎÔÉÔĹ ×ĎĘÔÉ × ÉÎÔĹŇÎĹÔ ÓĹĘŢÁÓ?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "đŇĎ×ĹŇËÁ ×ÁŰĹÇĎ ÓĎĹÄÉÎĹÎÉŃ..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "óĹĘŢÁÓ ÓÉÓÔĹÍÁ ÓĎĹÄÉÎĹÎÁ Ó éÎÔĹŇÎĹÔ."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "éÚ ÓĎĎÂŇÁÖĹÎÉĘ ÂĹÚĎĐÁÓÎĎÓÔÉ, ÓĎĹÄÉÎĹÎÉĹ ÂŐÄĹÔ ÓĹĘŢÁÓ ŇÁÚĎŇ×ÁÎĎ"
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6648,114 +6820,119 @@ msgstr ""
"đĎČĎÖĹ, ÓÉÓÔĹÍÁ ÎĹ ×ĎŰĚÁ × ÉÎÔĹŇÎĹÔ.\n"
"đĎĐŇĎÂŐĘÔĹ ÎÁÓÔŇĎÉÔŘ ÓĎĹÄÉÎĹÎÉĹ."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "îÁÓÔŇĎĘËÁ ÓĎĹÄÉÎĹÎÉŃ"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "úÁĐĎĚÎÉÔĹ ÉĚÉ ĐŇĎ×ĹŇŘÔĹ ĐĎĚĹ ×ÎÉÚŐ"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ ËÁŇÔŮ"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "áÄŇĹÓ (DMA) ËÁŇÔŮ"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "IO ËÁŇÔŮ"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "IO_0 ËÁŇÔŮ"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "IO_1 ËÁŇÔŮ"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "÷ÁŰ ĚÉŢÎŮĘ ÔĹĚĹĆĎÎÎŮĘ ÎĎÍĹŇ"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "éÍŃ ĐŇĎ×ÁĘÄĹŇÁ (ÎÁĐŇ. provider.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "îĎÍĹŇ ÔĹĚĹĆĎÎÁ ĐŇĎ×ÁĘÄĹŇÁ"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "IP ÁÄŇĹÓ ĐĹŇ×ĎÇĎ DNS ÓĹŇ×ĹŇÁ ĐŇĎ×ÁĘÄĹŇÁ (ÎĹĎÂŃÚÁÔĹĚŘÎĎ)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "IP ÁÄŇĹÓ ×ÔĎŇĎÇĎ DNS ÓĹŇ×ĹŇÁ ĐŇĎ×ÁĘÄĹŇÁ (ÎĹĎÂŃÚÁÔĹĚŘÎĎ)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
#, fuzzy
msgid "Choose your country"
msgstr "÷ŮÂĎŇ ËĚÁ×ÉÁÔŐŇŮ"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "ňĹÖÉÍ ÄĎÚ×ĎÎÁ"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection speed"
msgstr "ôÉĐ ÓĎĹÄÉÎĹÎÉŃ: "
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "ôÉĐ ÓĎĹÄÉÎĹÎÉŃ: "
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "÷ČĎÄ (ÉÍŃ ĐĎĚŘÚĎ×ÁÔĹĚŃ)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "đÁŇĎĚŘ"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "ĎŰÉÂËÁ ÍĎÎÔÉŇĎ×ÁÎÉŃ: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "ňÁÓŰÉŇĹÎÎŮĹ ŇÁÚÄĹĚŮ ÎĹ ĐĎÄÄĹŇÖÉ×ÁŔÔÓŃ ÎÁ ÜÔĎĘ ĐĚÁÔĆĎŇÍĹ"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"ő ×ÁÓ ĹÓÔŘ ÄŮŇÁ × ÔÁÂĚÉĂĹ ŇÁÚÄĹĚĎ×, ÎĎ Ń ÎĹ ÍĎÇŐ ĹĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ.\n"
"ĺÄÉÎÓÔ×ĹÎÎŮĘ ×ŮČĎÄ ÓĎÓÔĎÉÔ × ÔĎÍ, ŢÔĎÂŮ ĐĹŇĹÄ×ÉÎŐÔŘ ĐĹŇ×ÉŢÎŮĹ ŇÁÚÄĹĚŮ ÔÁË, "
"ŢÔĎÂŮ ÄŮŇÁ ŰĚÁ ÓŇÁÚŐ ÚÁ ŇÁÓŰÉŇĹÎÎŮÍ (extended) ŇÁÚÄĹĚĎÍ"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "÷ĎÓÓÔÁÎĎ×ĚĹÎÉĹ ÉÚ ĆÁĘĚÁ %s ĐŇĎ×ÁĚÉĚĎÓŘ %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "đĚĎČĎĘ ĆÁĘĚ Ó ŇĹÚĹŇ×ÎĎĘ ËĎĐÉĹĘ"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "ďŰÉÂËÁ ÚÁĐÉÓÉ × ĆÁĘĚ %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6765,194 +6942,194 @@ msgstr ""
"ôĹÓÔ ÎÁ ĂĹĚĎÓÔÎĎÓÔŘ ÄÁÎÎŮČ ÎĹ ĐŇĎŰĹĚ. \n"
"üÔĎ ĎÚÎÁŢÁĹÔ, ŢÔĎ ÚÁĐÉÓŘ ÉÎĆĎŇÍÁĂÉÉ ÎÁ ÜÔĎÔ ÄÉÓË ÚÁËĎÎŢÉÔÓŃ ÇĎŇĎĘ ÍŐÓĎŇÁ"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "ĎÂŃÚÁÔĹĚŘÎĎ"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "×ÁÖÎĎ"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "×ĹÓŘÍÁ ÖĹĚÁÔĹĚŘÎĎ"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "ÖĹĚÁÔĹĚŘÎĎ"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "ÍĎÖÎĎ É ÜÔĎ"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr ""
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr ""
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "ěĎËÁĚŘÎŮĘ ĐŇÉÎÔĹŇ"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "őÄÁĚĹÎÎŮĘ ĐŇÉÎÔĹŇ"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "őÄÁĚĹÎÎŮĘ CUPS ÓĹŇ×ĹŇ"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "őÄÁĚĹÎÎŮĘ lpd ÓĹŇ×ĹŇ"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
#, fuzzy
msgid "Network printer (TCP/Socket)"
msgstr "óĹÔĹ×ĎĘ ĐŇÉÎÔĹŇ (ÓĎËĹÔ)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
#, fuzzy
msgid "Printer on NetWare server"
msgstr "óĹŇ×ĹŇ ĐĹŢÁÔÉ"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
#, fuzzy
msgid "Enter a printer device URI"
msgstr "áÄŇĹÓ ŐÓÔŇĎĘÓÔ×Á ĐĹŢÁÔÉ"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr "ěĎËÁĚŘÎŮĘ ĐŇÉÎÔĹŇ"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr "őÄÁĚĹÎÎŮĘ ĐŇÉÎÔĹŇ"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "ďŰÉÂËÁ ÚÁĐÉÓÉ × ĆÁĘĚ %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(ÍĎÄŐĚŘ %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP ÓĹŇ×ĹŇÁ CUPS"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (őÍĎĚŢÁÎÉĹ)"
@@ -6975,12 +7152,12 @@ msgstr ""
"ÎÉËÁËÉČ ĐŇÉÎÔĹŇĎ×; ĐŇÉÎÔĹŇŮ ÂŐÄŐÔ ĎÂÎÁŇŐÖĹÎŮ Á×ÔĎÍÁÔÉŢĹÓËÉ.\n"
"ĺÓĚÉ ÓĎÍÎĹ×ÁĹÔĹÓŘ, ×ŮÂĹŇÉÔĹ \"őÄÁĚĹÎÎŮĘ CUPS ÓĹŇ×ĹŇ\"."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "îÁÓÔŇĎĘËÁ ĚĎËÁĚŘÎĎĘ ÓĹÔÉ"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "őÄÁĚĹÎÎŮĘ CUPS ÓĹŇ×ĹŇ"
@@ -7011,7 +7188,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP ÁÄŇĹÓ ÄĎĚÖĹÎ ÂŮÔŘ × ĆĎŇÍÁÔĹ 1.2.3.4"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
#, fuzzy
msgid "The port number should be an integer!"
msgstr "îĎÍĹŇ ĐĎŇÔÁ ÄĎĚÖĹÎ ÓĎÓÔĎŃÔŘ ÉÚ ĂÉĆŇ"
@@ -7020,7 +7197,7 @@ msgstr "îĎÍĹŇ ĐĎŇÔÁ ÄĎĚÖĹÎ ÓĎÓÔĎŃÔŘ ÉÚ ĂÉĆŇ"
msgid "CUPS server IP"
msgstr "IP ÓĹŇ×ĹŇÁ CUPS"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "đĎŇÔ"
@@ -7029,22 +7206,13 @@ msgstr "đĎŇÔ"
msgid "Automatic CUPS configuration"
msgstr "îÁÓÔŇĎĘËÁ ×ÉÄÁ ÚÁÇŇŐÚËÉ"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "ďĐŇĹÄĹĚĹÎÉĹ ŐÓÔŇĎĘÓÔ×..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "đŇĎ×ĹŇÉÔŘ ĐĎŇÔŮ"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "îĹÔ ĐŇÉÎÔĹŇÁ"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7057,14 +7225,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr "ěĎËÁĚŘÎŮĘ ĐŇÉÎÔĹŇ"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7082,12 +7250,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "őÄÁĚĹÎÎŮĘ ĐŇÉÎÔĹŇ"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7101,11 +7269,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7115,35 +7283,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ Á×ÔĎĎĐŇĹÄĹĚĹÎÉĹ"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "őÄÁĚĹÎÎŮĘ ĐŇÉÎÔĹŇ"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "đŇĎ×ĹŇÉÔŘ ĐĎŇÔŮ"
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "ÎÁĘÄĹÎĎ %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
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, ..., "
@@ -7151,43 +7323,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "áÄŇĹÓ ŐÓÔŇĎĘÓÔ×Á ĐĹŢÁÔÉ"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr "ěĎËÁĚŘÎŮĘ ĐŇÉÎÔĹŇ"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7195,7 +7367,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7203,73 +7375,83 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "÷ŮÂĹŇÉÔĹ, Ë ËÁËĎÍŐ ĐĎÓĚĹÄĎ×ÁÔĹĚŘÎĎÍŐ ĐĎŇÔŐ ĐĎÄËĚŔŢĹÎ ÍĎÄĹÍ."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "áÄŇĹÓ ŐÓÔŇĎĘÓÔ×Á ĐĹŢÁÔÉ"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "îÁÓÔŇĎĘËÁ"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "őÓÔÁÎĎ×ËÁ ĐÁËĹÔÁ %s"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing SANE packages..."
msgstr "őÓÔÁÎĎ×ËÁ ĐÁËĹÔÁ %s"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "őÓÔÁÎĎ×ËÁ ĐÁËĹÔÁ %s"
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
#, fuzzy
-msgid "Making printer port available for CUPS ..."
+msgid "Making printer port available for CUPS..."
msgstr "ţÔĹÎÉĹ ÂÁÚŮ ÄŇÁĘ×ĹŇĎ× CUPS..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
#, fuzzy
-msgid "Reading printer database ..."
+msgid "Reading printer database..."
msgstr "ţÔĹÎÉĹ ÂÁÚŮ ÄŇÁĘ×ĹŇĎ× CUPS..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "ďĐĂÉÉ ŐÄÁĚĹÎÎĎÇĎ ĐŇÉÎÔĹŇÁ lpd"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7279,31 +7461,31 @@ msgstr ""
"ÓĹŇ×ĹŇÁ ĐĹŢÁÔÉ É ÉÍŃ ĎŢĹŇĹÄÉ ĐĹŢÁÔÉ ÎÁ ÜÔĎÍ ÓĹŇ×ĹŇĹ, × ËĎÔĎŇŐŔ ŐÄÁĚĹÎÎŮĘ "
"ÓĹŇ×ĹŇ ÂŐÄĹÔ ĐĎÍĹÝÁÔŘ ÚÁÄÁÎÉŃ ÎÁ ĐĹŢÁÔŘ."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
#, fuzzy
msgid "Remote host name"
msgstr "őÄÁĚĹÎÎÁŃ ÍÁŰÉÎÁ"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
#, fuzzy
msgid "Remote printer name"
msgstr "őÄÁĚĹÎÎŮĘ ĐŇÉÎÔĹŇ"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
#, fuzzy
msgid "Remote host name missing!"
msgstr "őÄÁĚĹÎÎÁŃ ÍÁŰÉÎÁ"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
#, fuzzy
msgid "Remote printer name missing!"
msgstr "őÄÁĚĹÎÎÁŃ ÍÁŰÉÎÁ"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "ďĐĂÉÉ ĐŇÉÎÔĹŇÁ SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7316,35 +7498,35 @@ msgstr ""
"ŇĹÓŐŇÓÁ, Ó×ŃÚÁÎÎĎĹ Ó ×ŮÂŇÁÎÎŮÍ ĐŇÉÎÔĹŇĎÍ, ÉÍŃ ĐĎĚŘÚĎ×ÁÔĹĚŃ, ĐÁŇĎĚŘ É "
"ÉÎĆĎŇÍÁĂÉŔ Ď ŇÁÂĎŢĹĘ ÇŇŐĐĐĹ."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "óĹŇ×ĹŇ SMB"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP ÓĹŇ×ĹŇÁ SMB"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "éÍŃ ŇĹÓŐŇÓÁ"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "ňÁÂĎŢÁŃ ÇŇŐĐĐÁ"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7368,7 +7550,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7377,7 +7559,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7385,11 +7567,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "ďĐĂÉÉ ĐŇÉÎÔĹŇÁ NetWare"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7401,28 +7583,28 @@ msgstr ""
"NetWare (ÎĹ ×ÓĹÇÄÁ ÓĎ×ĐÁÄÁĹÔ Ó ÉÍĹÎĹÍ × ÓĹÔÉ TCP/IP) É ÉÍŃ ĎŢĹŇĹÄÉ, "
"ÓĎĎÔ×ĹÔÓÔ×ŐŔÝĹĘ ×ŮÂŇÁÎÎĎÍŐ ĐŇÉÎÔĹŇŐ, Á ÔÁËÖĹ ÉÍŃ ĐĎĚŘÚĎ×ÁÔĹĚŃ É ĐÁŇĎĚŘ."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "óĹŇ×ĹŇ ĐĹŢÁÔÉ"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "éÍŃ ĎŢĹŇĹÄÉ ĐĹŢÁÔÉ"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "ďĐĂÉÉ ĐŇÉÎÔĹŇÁ Socket"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -7430,60 +7612,56 @@ msgid ""
"hardware."
msgstr ""
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
#, fuzzy
msgid "Printer host name"
msgstr "éÍŃ ÍÁŰÉÎŮ Ó ĐŇÉÎÔĹŇĎÍ"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
#, fuzzy
msgid "Printer host name missing!"
msgstr "éÍŃ ÍÁŰÉÎŮ Ó ĐŇÉÎÔĹŇĎÍ"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "áÄŇĹÓ ŐÓÔŇĎĘÓÔ×Á ĐĹŢÁÔÉ"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
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 ""
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "éÍŃ ĐŇÉÎÔĹŇÁ"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "ďĐÉÓÁÎÉĹ"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "íĹÓÔĎÎÁČĎÖÄĹÎÉĹ"
-#: ../../printerdrake.pm_.c:1021
+#: ../../printerdrake.pm_.c:1045
#, fuzzy
-msgid "Preparing printer database ..."
+msgid "Preparing printer database..."
msgstr "ţÔĹÎÉĹ ÂÁÚŮ ÄŇÁĘ×ĹŇĎ× CUPS..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "őÄÁĚĹÎÎŮĘ ĐŇÉÎÔĹŇ"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7498,28 +7676,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "üÔĎ ×ĹŇÎĎ?"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "őÄÁĚĹÎÎŮĘ ĐŇÉÎÔĹŇ"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
#, fuzzy
msgid "Printer model selection"
msgstr "đĎÄËĚŔŢĹÎÉĹ ĐŇÉÎÔĹŇÁ"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
#, fuzzy
msgid "Which printer model do you have?"
msgstr "ëÁËĎĘ Ő ×ÁÓ ÔÉĐ ĐŇÉÎÔĹŇÁ?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7528,18 +7706,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "îÁÓÔŇĎĘËÁ éÎÔĹŇÎĹÔ"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7549,12 +7727,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "îÁÓÔŇĎĘËÁ éÎÔĹŇÎĹÔ"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7562,7 +7740,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7575,7 +7753,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7585,34 +7763,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "čĎÔÉÔĹ ×ŮĐĎĚÎÉÔŘ ĐŇĎÂÎŐŔ ĐĹŢÁÔŘ?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
#, fuzzy
msgid "Test pages"
msgstr "đŇĎ×ĹŇÉÔŘ ĐĎŇÔŮ"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7620,45 +7798,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
#, fuzzy
msgid "No test pages"
msgstr "äÁ, ÎÁĐĹŢÁÔÁÔŘ ĎÂĹ ĐŇĎÂÎŮĹ ÓÔŇÁÎÉĂŮ ÔĹËÓÔÁ"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
#, fuzzy
msgid "Print"
msgstr "đŇÉÎÔĹŇ"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
#, fuzzy
msgid "Standard test page"
msgstr "óÔÁÎÄÁŇÔÎÁŃ"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "đĹŢÁÔŘ ÔĹÓÔĎ×ŮČ ÓÔŇÁÎÉĂ..."
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
#, fuzzy
msgid "Photo test page"
msgstr "đĹŢÁÔŘ ÔĹÓÔĎ×ŮČ ÓÔŇÁÎÉĂ..."
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "đĹŢÁÔŘ ÔĹÓÔĎ×ŮČ ÓÔŇÁÎÉĂ..."
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "đĹŢÁÔŘ ÔĹÓÔĎ×ŮČ ÓÔŇÁÎÉĂ..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7674,7 +7852,7 @@ msgstr ""
"\n"
"ďÎ ŇÁÂĎÔÁĹÔ ÎĎŇÍÁĚŘÎĎ?"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7684,16 +7862,16 @@ msgstr ""
"đŇĹÖÄĹ ŢĹÍ ĐŇÉÎÔĹŇ ÚÁŇÁÂĎÔÁĹÔ ÍĎÖĹÔ ĐŇĎĘÔÉ ÎĹËĎÔĎŇĎĹ ×ŇĹÍŃ.\n"
"ďÎ ŇÁÂĎÔÁĹÔ ÎĎŇÍÁĚŘÎĎ?"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "îĹÔ ĐŇÉÎÔĹŇÁ"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7702,15 +7880,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
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 ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7719,49 +7897,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, 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\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7771,7 +7949,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7780,30 +7958,41 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "úÁËŇŮÔŘ"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "äĹÁËÔÉ×ÉÚÁĂÉŃ ÓĹÔÉ"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "äĹÁËÔÉ×ÉÚÁĂÉŃ ÓĹÔÉ"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "äĹÁËÔÉ×ÉÚÁĂÉŃ ÓĹÔÉ"
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "äĹÁËÔÉ×ÉÚÁĂÉŃ ÓĹÔÉ"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "úÁËŇŮÔŘ"
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "đÁŇÁÍĹÔŇŮ ĐŇÉÎÔĹŇÁ"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7811,38 +8000,38 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
#, fuzzy
-msgid "Reading printer data ..."
+msgid "Reading printer data..."
msgstr "ţÔĹÎÉĹ ÂÁÚŮ ÄŇÁĘ×ĹŇĎ× CUPS..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
#, fuzzy
msgid "Transfer printer configuration"
msgstr "îÁÓÔŇĎĘËÁ éÎÔĹŇÎĹÔ"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7852,51 +8041,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7904,61 +8093,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "éÍŃ ĐŇÉÎÔĹŇÁ ÄĎĚÖÎĎ ÓĎÄĹŇÖÁÔŘ ÔĎĚŘËĎ ÂŐË×Ů, ĂÉĆŇŮ É ĐĎÄŢĹŇËÉ×ÁÎÉĹ"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid "New printer name"
msgstr "îĹÔ ĐŇÉÎÔĹŇÁ"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, 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 ""
-#: ../../printerdrake.pm_.c:1887
+#: ../../printerdrake.pm_.c:1935
#, fuzzy
-msgid "Refreshing printer data ..."
+msgid "Refreshing printer data..."
msgstr "ţÔĹÎÉĹ ÂÁÚŮ ÄŇÁĘ×ĹŇĎ× CUPS..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr ""
-#: ../../printerdrake.pm_.c:1896
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
-msgid "Starting network ..."
+msgid "Starting network..."
msgstr "úÁĐŐÓË ÷ÁŰĹÇĎ ÓĎĹÄÉÎĹÎÉŃ..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr "îÁÓÔŇĎĘËÁ ÓĹÔÉ"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "íĎÎÉÔĎŇ ÎĹ ÎÁÓÔŇĎĹÎ"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7966,12 +8155,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr "îÁÓÔŇĎĘËÁ ÓĹÔÉ"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7981,34 +8170,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
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 ""
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
-msgid "Restarting printing system ..."
+msgid "Restarting printing system..."
msgstr "ëÁËŐŔ ÓÉÓÔĹÍŐ ĐĹŢÁÔÉ ×Ů ČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ?"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "÷ŮÓĎËÉĘ"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "đÁŇÁÎĎÉÄÁĚŘÎŮĘ"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8023,12 +8212,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "ëÁËŐŔ ÓÉÓÔĹÍŐ ĐĹŢÁÔÉ ×Ů ČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ?"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8042,70 +8231,70 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
#, fuzzy
msgid "Select Printer Spooler"
msgstr "÷ŮÂĎŇ ÔÉĐÁ ĐĎÄËĚŔŢĹÎÉŃ ĐŇÉÎÔĹŇÁ"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "ëÁËŐŔ ÓÉÓÔĹÍŐ ĐĹŢÁÔÉ ×Ů ČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "îÁÓÔŇĎÉÔŘ ĐŇÉÎÔĹŇ"
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr "őÓÔÁÎĎ×ËÁ ĐÁËĹÔÁ %s"
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "đÁŇÁÍĹÔŇŮ ĐŇÉÎÔĹŇÁ"
-#: ../../printerdrake.pm_.c:2318
+#: ../../printerdrake.pm_.c:2389
#, fuzzy
-msgid "Preparing PrinterDrake ..."
+msgid "Preparing PrinterDrake..."
msgstr "ţÔĹÎÉĹ ÂÁÚŮ ÄŇÁĘ×ĹŇĎ× CUPS..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "îÁÓÔŇĎÉÔŘ ĐŇÉÎÔĹŇ"
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "čĎÔÉÔĹ ÎÁÓÔŇĎÉÔŘ ĐŇÉÎÔĹŇ?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "Printerdrake"
msgstr "đŇÉÎÔĹŇ"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8116,7 +8305,7 @@ msgstr ""
"éÍĹŔÔÓŃ ÓĚĹÄŐŔÝÉĹ ĎŢĹŇĹÄÉ ĐĹŢÁÔÉ.\n"
"÷Ů ÍĎÖĹÔĹ ÄĎÂÁ×ÉÔŘ ÎĎ×ŮĹ ÉĚÉ ÉÚÍĹÎÉÔŘ ÓŐÝĹÓÔ×ŐŔÝÉĹ."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8126,139 +8315,143 @@ msgstr ""
"éÍĹŔÔÓŃ ÓĚĹÄŐŔÝÉĹ ĎŢĹŇĹÄÉ ĐĹŢÁÔÉ.\n"
"÷Ů ÍĎÖĹÔĹ ÄĎÂÁ×ÉÔŘ ÎĎ×ŮĹ ÉĚÉ ÉÚÍĹÎÉÔŘ ÓŐÝĹÓÔ×ŐŔÝÉĹ."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "îÁÓÔŇĎĘËÁ ÓĹÔÉ"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "îĎŇÍÁĚŘÎŮĘ ŇĹÖÉÍ"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "÷ŮČĎÄ"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "čĎÔÉÔĹ ĐŇĎÔĹÓÔÉŇĎ×ÁÔŘ ÎÁÓÔŇĎĘËÉ?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
#, fuzzy
msgid "Modify printer configuration"
msgstr "îÁÓÔŇĎĘËÁ éÎÔĹŇÎĹÔ"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "čĎÔÉÔĹ ĐŇĎÔĹÓÔÉŇĎ×ÁÔŘ ÎÁÓÔŇĎĘËÉ?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
#, fuzzy
msgid "Printer connection type"
msgstr "ňÁÚÄĹĚĹÎÉĹ ÉÎÔĹŇÎĹÔ-ÓĎĹÄÉÎĹÎÉŃ"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
#, fuzzy
msgid "Printer name, description, location"
msgstr "đĎÄËĚŔŢĹÎÉĹ ĐŇÉÎÔĹŇÁ"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
#, fuzzy
msgid "Print test pages"
msgstr "đĹŢÁÔŘ ÔĹÓÔĎ×ŮČ ÓÔŇÁÎÉĂ..."
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "čĎÔÉÔĹ ĐŇĎÔĹÓÔÉŇĎ×ÁÔŘ ÎÁÓÔŇĎĘËÉ?"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
#, fuzzy
msgid "Remove printer"
msgstr "őÄÁĚĹÎÎŮĘ ĐŇÉÎÔĹŇ"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
msgstr "ţÔĹÎÉĹ ÂÁÚŮ ÄŇÁĘ×ĹŇĎ× CUPS..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
#, fuzzy
msgid "Default printer"
msgstr "ěĎËÁĚŘÎŮĘ ĐŇÉÎÔĹŇ"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "÷Ů ČĎÔÉÔĹ ĐĹŇĹÚÁĐŐÓÔÉÔŘ ÓĹÔŘ"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr "ţÔĹÎÉĹ ÂÁÚŮ ÄŇÁĘ×ĹŇĎ× CUPS..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -8342,24 +8535,61 @@ msgstr "đÁŇĎĚÉ ÎĹ ÓĎ×ĐÁÄÁŔÔ"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "îĹ ÍĎÇŐ ÄĎÂÁ×ÉÔŘ ŇÁÚÄĹĚ ÎÁ _ĎÔĆĎŇÍÁÔÉŇĎ×ÁÎÎŮĘ_ RAID md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "îĹ ÍĎÇŐ ĐÉÓÁÔŘ × ĆÁĘĚ %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid ÎĹ ÓŇÁÂĎÔÁĚ"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid ÎĹ ÓŇÁÂĎÔÁĚ (×ĎÚÍĎÖÎĎ, ÎĹÔ raidtools?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "îĹÄĎÓÔÁÔĎŢÎĎ ŇÁÚÄĹĚĎ× ÄĚŃ RAID ŐŇĎ×ÎŃ %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"üÔĎÔ ŐŇĎ×ĹÎŘ ÎÁÄĎ ÉÓĐĎĚŘÚĎ×ÁÔŘ Ó ĎÓÔĎŇĎÖÎĎÓÔŘŔ. óÉÓÔĹÍÁ ÓÔÁÎĎ×ÉÔÓŃ\n"
+"ĐŇĎÝĹ × ÉÓĐĎĚŘÚĎ×ÁÎÉÉ, ÎĎ ÂĎĚĹĹ ŢŐ×ÓÔ×ÉÔĹĚŘÎĎĘ: ÜÔĎÔ ŐŇĎ×ĹÎŘ ÎĹ ÓĚĹÄŐĹÔ "
+"ÉÓĐĎĚŘÚĎ×ÁÔŘ\n"
+"ÎÁ ÍÁŰÉÎÁČ, ĐĎÄËĚŔŢĹÎÎŮÍ Ë ÓĹÔÉ ÉĚÉ Ë Internet. ÷ČĎÄ ÎĹ ÚÁÝÉÝĹÎ ĐÁŇĎĚĹÍ."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+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 ""
+"îÁ ÜÔĎÍ ŐŇĎ×ÎĹ ÂĹÚĎĐÁÓÎĎÓÔÉ ÓÔÁÎĎ×ÉÔÓŃ ×ĎÚÍĎÖÎŮÍ ÉÓĐĎĚŘÚĎ×ÁÎÉĹ ÓÉÓÔĹÍŮ\n"
+"× ËÁŢĹÓÔ×Ĺ ÓĹŇ×ĹŇÁ. âĹÚĎĐÁÓÎĎÓÔŘ ÔĹĐĹŇŘ ÄĎÓÔÁÔĎŢÎĎ ×ŮÓĎËÁ ÄĚŃ ŇÁÂĎÔŮ\n"
+"ÓĹŇ×ĹŇÁ, ÄĎĐŐÓËÁŔÝĹÇĎ ÓĎĹÄÉÎĹÎÉŃ ÓĎ ÍÎĎÇÉÍÉ ËĚÉĹÎÔÁÍÉ."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "îÁÓÔŇĎĘËÁ ĚĎËÁĚŘÎĎĘ ÓĹÔÉ"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "đÁŇÁÍĹÔŇŮ"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -8423,7 +8653,7 @@ msgstr ""
"HardDrake ×ŮĐĎĚÎŃĹÔ ĐŇĎ×ĹŇËŐ ÖĹĚĹÚÁ É ĐŇÉ ÎĹĎÂČĎÄÉÍĎÓÔÉ ÎÁÓÔŇÁÉ×ÁĹÔ \n"
"ÎĎ×ŮĹ/ÉÚÍĹÎÉ×ŰÉĹÓŃ ŐÓÔŇĎĘÓÔ×Á."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8500,7 +8730,7 @@ msgstr ""
"ÓĹŇ×ĹŇĎ×\n"
"Ó ČĎŇĎŰÉÍ ÄĎÓÔŐĐĎÍ."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -8582,7 +8812,7 @@ msgstr ""
"ËĎÔĎŇŮĹ ĆŐÎËĂÉĎÎÉŇŐŔÔ ËÁË ÓĹŇ×ĹŇÁ ÄĚŃ ĐŇĎÔĎËĎĚĎ×, ËĎÔĎŇŮĹ ĐĎÚ×ĎĚŃŔÔ "
"ÉÓĐĎĚŘÚĎ×ÁÔŘ ÍĹČÁÎÉÚÍ RPC."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -8681,7 +8911,7 @@ msgstr "éÎÔĹŇÎĹÔ"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "óÉÓÔĹÍÎŮĘ ŇĹÖÉÍ"
@@ -8804,6 +9034,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "ăĹÎÔŇ őĐŇÁ×ĚĹÎÉŃ"
@@ -8907,6 +9138,15 @@ msgstr ""
msgid "Installing packages..."
msgstr "őÓÔÁÎĎ×ËÁ ĐÁËĹÔÁ %s"
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "÷ŮĘÄÉÔĹ, Á ÚÁÔĹÍ ÉÓĐĎĚŘÚŐĘÔĹ Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "÷ĎĘÄÉÔĹ ĐĎ×ÔĎŇÎĎ × %s ÄĚŃ ÁËÔÉ×ÁĂÉÉ ÉÚÍĹÎĹÎÉĘ"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8915,6 +9155,161 @@ msgstr ""
"ôÁÂĚÉĂÁ ŇÁÚÄĹĚĎ× ÎĹ ŢÉÔÁĹÔÓŃ, ĎÎÁ ÓĚÉŰËĎÍ ÉÓĐĎŇŢĹÎÁ :(\n"
"đĎÓÔÁŇÁŔÓŘ ĐŇĎÄĎĚÖÉÔŘ, ĎŢÉÝÁŃ ĎŢÉÝÁŃ ŇÁÚÄĹĚŮ"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "îÁÓÔŇĎĘËÁ éÎÔĹŇÎĹÔ"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "âÁÚÁ ÄÁÎÎŮČ"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "âÁÚÁ ÄÁÎÎŮČ"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS ÓĹŇ×ĹŇ"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS ÓĹŇ×ĹŇ"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "äĎÂÁ×ÉÔŘ ĐĎĚŘÚĎ×ÁÔĹĚŃ"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "ëĚÉĹÎÔ DHCP"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#, fuzzy
+msgid "Help"
+msgstr "/_đĎÍĎÝŘ"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "îĹ ÓĎĹÄÉÎĹÎĎ"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "őÄÁĚÉÔŘ"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "÷ŮÂĹŇÉÔĹ ĆÁĘĚ"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "äĎÂÁ×ÉÔŘ ĐĎĚŘÚĎ×ÁÔĹĚŃ"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "ëĚÉĹÎÔ DHCP"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "îÁÓÔŇĎĘËÁ..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "ĐĹŇĹÎÁÓÔŇĎÉÔŘ"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "÷ÓÔÁ×ŘÔĹ ÄÉÓËĹÔŐ × ÄÉÓËĎ×ĎÄ %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "äÉÓËĎ×ĎÄ ÎĹÄĎÓÔŐĐĹÎ"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
#, fuzzy
msgid "Error!"
@@ -8956,6 +9351,11 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "óĎÚÄÁÎÉĹ ÓÁÍĎ-ŐÓÔÁÎÁ×ĚÉ×ÁŔÝĹĘÓŃ ÄÉÓËĹÔŮ"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -8964,47 +9364,40 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "đĎÚÄŇÁ×ĚŃĹÍ!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "őÓÔÁÎĎ×ËÁ"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "äĎÂÁ×ÉÔŘ ĐĎĚŘÚĎ×ÁÔĹĚŃ"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "ćĎŇÍÁÔÉŇĎ×ÁÎÉĹ ĆÁĘĚÁ loopback %s"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9012,15 +9405,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9028,709 +9413,772 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "đĚĎČĎĘ ĆÁĘĚ Ó ŇĹÚĹŇ×ÎĎĘ ËĎĐÉĹĘ"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "đĚĎČĎĘ ĆÁĘĚ Ó ŇĹÚĹŇ×ÎĎĘ ËĎĐÉĹĘ"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "đĚĎČĎĘ ĆÁĘĚ Ó ŇĹÚĹŇ×ÎĎĘ ËĎĐÉĹĘ"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "ďŰÉÂËÁ ŢÔĹÎÉŃ ĆÁĘĚÁ %s"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "÷ŮÂĎŇ ÇŇŐĐĐŮ ĐÁËĹÔĎ×"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ĐÁËĹÔŮ, ËĎÔĎŇŮĹ ×Ů ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ"
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "őÄÁĚÉÔŘ ĎŢĹŇĹÄŘ"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
#, fuzzy
msgid "Windows (FAT32)"
msgstr "őÄÁĚÉÔŘ Windows(TM)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr "đĎĚŘÚĎ×ÁÔĹĚŘÓËĎĹ ÉÍŃ"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "đĚĎČĎĘ ĆÁĘĚ Ó ŇĹÚĹŇ×ÎĎĘ ËĎĐÉĹĘ"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "đŇĎ×ĹŇŘÔĹ ×ÁŰŐ ÍŮŰŘ"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "đĎĐŇĎÂŐĘÔĹ ĹÝĹ ŇÁÚ"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "đĎĐŇĎÂŐĘÔĹ ĹÝĹ ŇÁÚ"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "îĹÔ ĐÁŇĎĚŃ"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "óĎĹÄÉÎĹÎÉĹ ĐĎ ĚĎËÁĚŘÎĎĘ ÓĹÔÉ"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "÷ŮÂĎŇ ÔÉĐÁ ĐĎÄËĚŔŢĹÎÉŃ ĐŇÉÎÔĹŇÁ"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ŇÁÓËĚÁÄËŐ ×ÁŰĹĘ ËĚÁ×ÉÁÔŐŇŮ"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "đĎÖÁĚŐĘÓÔÁ ÎÁÖÍÉÔĹ ÎÁ ŇÁÚÄĹĚ"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr "đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ĐÁËĹÔŮ, ËĎÔĎŇŮĹ ×Ů ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ"
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "đĚĎČĎĘ ĆÁĘĚ Ó ŇĹÚĹŇ×ÎĎĘ ËĎĐÉĹĘ"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ĐÁËĹÔŮ, ËĎÔĎŇŮĹ ×Ů ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "đŇĎ×ĹŇŘÔĹ ×ÁŰŐ ÍŮŰŘ"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "đĚĎČĎĘ ĆÁĘĚ Ó ŇĹÚĹŇ×ÎĎĘ ËĎĐÉĹĘ"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "óĹÔĹ×ĎĘ ÉÎÔĹŇĆĹĘÓ"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "ôÉĐ"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "đĎĚŘÚĎ×ÁÔĹĚŘÓËĎĹ ÉÍŃ"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ĐÁËĹÔŮ, ËĎÔĎŇŮĹ ×Ů ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "őËÁÖÉÔĹ, ËÁËĎĘ ŃÚŮË ÉÓĐĎĚŘÚĎ×ÁÔŘ."
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "ďĐŇĹÄĹĚĹÎÉĹ ÖĹÓÔËĎÇĎ ÄÉÓËÁ"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "đĎĚŘÚĎ×ÁÔĹĚŘÓËĎĹ ÉÍŃ"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr "ëĎĚĹÓÉËĎ"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr "ëĎĚĹÓÉËĎ"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "đÁŇÁÍĹÔŇŮ ÍĎÄŐĚŃ:"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "ëĎÎĆÉÇŐŇÁĂÉŃ ÓĹÔÉ"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ĐÁËĹÔŮ, ËĎÔĎŇŮĹ ×Ů ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ĐÁËĹÔŮ, ËĎÔĎŇŮĹ ×Ů ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "îÁÓÔŇ. ĆÁĘĚĎ×ŮČ ÓÉÓÔĹÍ"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "íŮŰŘ: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "đÁŇÁÍĹÔŇŮ"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "÷ŮÂĹŇÉÔĹ, Ë ËÁËĎÍŐ ĐĎÓĚĹÄĎ×ÁÔĹĚŘÎĎÍŐ ĐĎŇÔŐ ĐĎÄËĚŔŢĹÎ ÍĎÄĹÍ."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "ëĎÎĆÉÇŐŇÁĂÉŃ ÓĹÔÉ"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "đĚĎČĎĘ ĆÁĘĚ Ó ŇĹÚĹŇ×ÎĎĘ ËĎĐÉĹĘ"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "đĎÖÁĚŐĘÓÔÁ, ŐËÁÖÉÔĹ ÔÉĐ ×ÁŰĹĘ ÍŮŰÉ"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "đĚĎČĎĘ ĆÁĘĚ Ó ŇĹÚĹŇ×ÎĎĘ ËĎĐÉĹĘ"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "đŇĎ×ĹŇŘÔĹ ×ÁŰŐ ÍŮŰŘ"
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "óĎĹÄÉÎĹÎÉĹ ĐĎ ĚĎËÁĚŘÎĎĘ ÓĹÔÉ"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "÷ŮÂĎŇ ÔÉĐÁ ĐĎÄËĚŔŢĹÎÉŃ ĐŇÉÎÔĹŇÁ"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "÷ĎÓÓÔÁÎĎ×ÉÔŘ Ó ÄÉÓËĹÔŮ"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "đĎÖÁĚŐĘÓÔÁ, ŐËÁÖÉÔĹ ÔÉĐ ×ÁŰĹĘ ÍŮŰÉ"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "äŇŐÇÉĹ"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "őÓÔÁÎĎ×ËÁ ÓÉÓÔĹÍŮ"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "÷ĎÓÓÔÁÎĎ×ÉÔŘ ÉÚ ĆÁĘĚÁ"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "÷ĎÓÓÔÁÎĎ×ÉÔŘ ÉÚ ĆÁĘĚÁ"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "óĐĹĂÉÁĚŘÎÁŃ"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/_đĎÍĎÝŘ"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
#, fuzzy
msgid "Previous"
msgstr "<- đŇĹÄŮÄŐÝÉĘ"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr "óÔÁÔŐÓ:"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "đĚĎČĎĘ ĆÁĘĚ Ó ŇĹÚĹŇ×ÎĎĘ ËĎĐÉĹĘ"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr "÷ĎÓÓÔÁÎĎ×ÉÔŘ ÉÚ ĆÁĘĚÁ"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr "óĚĹÄŐŔÝÉĘ ->"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "÷ŮÂĎŇ ĐÁËĹÔĎ× ÄĚŃ ŐÓÔÁÎĎ×ËÉ"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "âŐÄŐÔ ŐÓÔÁÎĎ×ĚĹÎŮ ÓĚĹÄŐŔÝÉĹ ĐÁËĹÔŮ"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "őËÁÖÉÔĹ, ËÁËĎĘ ŃÚŮË ÉÓĐĎĚŘÚĎ×ÁÔŘ."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "őËÁÖÉÔĹ, ËÁËĎĘ ŃÚŮË ÉÓĐĎĚŘÚĎ×ÁÔŘ."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "őËÁÖÉÔĹ, ËÁËĎĘ ŃÚŮË ÉÓĐĎĚŘÚĎ×ÁÔŘ."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "đĚĎČĎĘ ĆÁĘĚ Ó ŇĹÚĹŇ×ÎĎĘ ËĎĐÉĹĘ"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "đĚĎČĎĘ ĆÁĘĚ Ó ŇĹÚĹŇ×ÎĎĘ ËĎĐÉĹĘ"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "đĚĎČĎĘ ĆÁĘĚ Ó ŇĹÚĹŇ×ÎĎĘ ËĎĐÉĹĘ"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "óĎČŇÁÎÉÔŘ × ĆÁĘĚ"
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "đŇĎ×ĹŇŘÔĹ ×ÁŰŐ ÍŮŰŘ"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr "đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ĐÁËĹÔŮ, ËĎÔĎŇŮĹ ×Ů ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ"
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "ëĎÎĆÉÇŐŇÁĂÉŃ ÓĹÔÉ"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "ëĎÎĆÉÇŐŇÁĂÉŃ ÓĹÔÉ"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "îÁÓÔŇĎĘËÁ ĚĎËÁĚŘÎĎĘ ÓĹÔÉ"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "îÁÓÔŇĎĘËÁ ĚĎËÁĚŘÎĎĘ ÓĹÔÉ"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "îÁÓÔŇ. ĆÁĘĚĎ×ŮČ ÓÉÓÔĹÍ"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9762,7 +10210,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9771,7 +10219,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9812,7 +10260,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9840,12 +10288,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -9862,7 +10315,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9902,7 +10355,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9913,7 +10366,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9926,7 +10379,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9970,104 +10423,532 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "őÓÔÁÎĎ×ËÁ %s ÚÁ×ĹŇŰÉĚÁÓŘ ÎĹŐÄÁŢÎĎ. đŇĎÉÚĎŰĚÁ ÓĚĹÄŐŔÝÁŃ ĎŰÉÂËÁ:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "đŇĎÇŇÁÍÍŮ ÄĚŃ ËĎÎÓĎĚÉ"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "ăĹÎÔŇ őĐŇÁ×ĚĹÎÉŃ"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "üËÓĐĹŇÔ"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "íŮŰŘ"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "őÄÁĚĹÎÎŮĘ ĐŇÉÎÔĹŇ"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "éÍŃ ŇĹÓŐŇÓÁ"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "đŇÉÎÔĹŇ"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "íÁÓÔĹŇ ÎÁÓÔŇĎĘËÉ ÓĹÔÉ"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "áŐÔĹÎÔÉĆÉËÁĂÉŃ"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "÷ŮÂĎŇ ÇŇŐĐĐŮ ĐÁËĹÔĎ×"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "đĎÄĎÖÄÉÔĹ, ĐĎÖÁĚŐĘÓÔÁ"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "÷ŮČĎÄ ÉÚ ĐŇĎĂĹÓÓÁ ŐÓÔÁÎĎ×ËÉ"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "đĎŇÔ"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "÷Ů ÍĎÖĹÔĹ ×ŮÂŇÁÔŘ ÄŇŐÇÉĹ ŃÚŮËÉ, ËĎÔĎŇŮĹ ÂŐÄŐÔ ÄĎÓÔŐĐÎŮ ĐĎÓĚĹ ŐÓÔÁÎĎ×ËÉ"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "ëĎÎĆÉÇŐŇÁĂÉŃ ÓĹÔÉ (%d ÁÄÁĐÔĹŇĎ×)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "đŇĎĆÉĚŘ: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "őÄÁĚÉÔŘ ĐŇĎĆÉĚŘ..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "őÄÁĚŃĹÍŮĘ ĐŇĎĆÉĚŘ:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "îĎ×ŮĘ ĐŇĎĆÉĚŘ..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "éÍŃ ËĎÍĐŘŔÔĹŇÁ:"
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "äĎÓÔŐĐ × ÉÎÔĹŇÎĹÔ"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "ôÉĐ:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "űĚŔÚ:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "éÎÔĹŇĆĹĘÓ:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "óÔÁÔŐÓ:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "îÁÓÔŇĎĘËÁ ÄĎÓÔŐĐÁ × ÉÎÔĹŇÎĹÔ..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "îÁÓÔŇĎĘËÁ ĚĎËÁĚŘÎĎĘ ÓĹÔÉ"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "äŇÁĘ×ĹŇ"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "éÎÔĹŇĆĹĘÓ"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "đŇĎÔĎËĎĚ"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "State"
+msgstr "óÔÁÔŐÓ:"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "îÁÓÔŇĎÉÔŘ ĚĎËÁĚŘÎŐŔ ÓĹÔŘ..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "íÁÓÔĹŇ..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "đŇÉÍĹÎÉÔŘ"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "đĎÖÁĚŐĘÓÔÁ, ĐĎÄĎÖÄÉÔĹ... ÷ÎĹÓĹÎÉĹ ÉÚÍĹÎĹÎÉĘ × ÎÁÓÔŇĎĘËŐ"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "óĎĹÄÉÎĹÎĎ"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "îĹ ÓĎĹÄÉÎĹÎĎ"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "óĎĹÄÉÎÉÔŘ..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "ďÔÓĎĹÄÉÎÉÔŘ..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"ő ×ÁÓ ÎĹÔ ÎÁÓÔŇĎĹÎÎŮČ ÉÎÔĹŇĆĹĘÓĎ×.\n"
+"óÎÁŢÁĚÁ ÎŐÖÎĎ ÉČ ÎÁÓÔŇĎÉÔŘ ÎÁÖÁ× ÎÁ 'îÁÓÔŇĎÉÔŘ'"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "îÁÓÔŇĎĘËÁ ĚĎËÁĚŘÎĎĘ ÓĹÔÉ"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "áÄÁĐÔĹŇ %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "đŇĎÔËĎĚ ÚÁÇŇŐÚËÉ"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "úÁĐŐÝĹÎĎ ĐŇÉ ÚÁÇŇŐÚËĹ"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "ëĚÉĹÎÔ DHCP"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "activate now"
+msgstr "áËÔÉ×ÎŮĘ"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "deactivate now"
+msgstr "áËÔÉ×ÎŮĘ"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"ő ×ÁÓ ÎĹÔ ÎÉ ĎÄÎĎÇĎ ÓĎĹÄÉÎĹÎÉŃ Ó ÉÎÔĹŇÎĹÔ.\n"
+"óÎÁŢÁĚÁ ÓĎÚÄÁĘÔĹ ÓĎĹÄÉÎĹÎÉĹ, ÎÁÖÁ× 'îÁÓÔŇĎÉÔŘ'"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "îÁÓÔŇĎĘËÁ ÓĎĹÄÉÎĹÎÉŃ Ó ÉÎÔĹŇÎĹÔ"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "îÁÓÔŇĎĘËÁ ÓĎĹÄÉÎĹÎÉŃ Ó ÉÎÔĹŇÎĹÔ"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "ôÉĐ ÓĎĹÄÉÎĹÎÉŃ: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "đÁŇÁÍĹÔŇŮ"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "űĚŔÚ"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "óĹÔĹ×ÁŃ ËÁŇÔÁ"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "ëĚÉĹÎÔ DHCP"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "ÉÓĐĎĚŘÚĎ×ÁÎÉĹ: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-cronyx-fixed-medium-r-*-*-*-140-*-*-*-koi8-r-*,*-r-*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "éÍŃ ÍĎÄŐĚŃ"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "ňÁÚÍĹŇ"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "ÓĎÚÄÁÎÉĹ ÚÁÇŇŐÚĎŢÎĎÇĎ ÄÉÓËÁ"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "ĐĎ ŐÍĎĚŢÁÎÉŔ"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "ďŰÉÂËÁ DrakFloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "×ĹŇÓÉŃ ŃÄŇÁ"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "ďÂŮŢÎŮĘ"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "ďÂĚÁÓÔŘ ÜËÓĐĹŇÔÁ"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "ÎĹĎÂŃÚÁÔĹĚŘÎŮĹ ÁŇÇŐÍĹÎÔŮ mkinitrd"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "äĎÂÁ×ÉÔŘ ÍĎÄŐĚŘ"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "ĐŇÉÎŐÄÉÔĹĚŘÎĎ"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "ĐŇÉ ÎĹĎÂČĎÄÉÍĎÓÔÉ"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "ĎĐŐÓÔÉÔŘ ÍĎÄŐĚÉ scsi"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "ĎĐŐÓÔÉÔŘ ÍĎÄŐĚÉ raid"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "őÄÁĚÉÔŘ ÍĎÄŐĚŘ"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "÷Ů×ĎÄ"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "óĎÚÄÁÔŘ ÄÉÓË"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "őÂĹÄÉÔÓŘ, ŢÔĎ ÎĎÓÉÔĹĚŘ ÎÁČĎÄÉÔÓŃ × ŐÓÔŇĎĘÓÔ×Ĺ %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"÷ ŐÓÔŇĎĘÓÔ×Ĺ %s ĎÔÓŐÔÓÔ×ŐĹÔ ÎĎÓÉÔĹĚŘ.\n"
+"đĎÖÁĚŐĘÓÔÁ ×ÓÔÁ×ŘÔĹ ĹÇĎ."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "îĹ ŐÄÁĹÔÓŃ ÚÁ×ĹŇŰÉÔŘ ĎĐĹŇÁĂÉŔ Ó %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"îĹ ŐÄÁĹÔÓŃ ËĎŇŇĹËÔÎĎ ÚÁ×ĹŇŰÉÔŘ ŇÁÂĎÔŐ mkbootdisk: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "ÓĹÔĹ×ŮČ ËÁŇÔ ÎĹ ÎÁĘÄĹÎĎ"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr "çĎÔĎ×Ď"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr ""
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "đĎÄÇĎÔĎ×ËÁ ŐÓÔÁÎĎ×ËÉ"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
#, fuzzy
msgid "Restart XFS"
msgstr "ĎÇŇÁÎÉŢÉÔŘ"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "ĎÇŇÁÎÉŢÉÔŘ"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10076,122 +10957,121 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "ĆĎŇÍÁÔÉŇĎ×ÁÎÉĹ ŇÁÚÄĹĚĎ×"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "îÁÓÔŇĎĘËÁ ĚĎËÁĚŘÎĎĘ ÓĹÔÉ"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr "ôĎŢËÁ ÍĎÎÔÉŇĎ×ÁÎÉŃ"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "÷ŮÂĎŇ ŇÁÚÄĹĚĎ× ÄĚŃ ĆĎŇÍÁÔÉŇĎ×ÁÎÉŃ"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "ďĆÉÓ"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr "ďÔÍĹÎÉÔŘ"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr "đŇÉÎÔĹŇ"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "őÓÔÁÎĎ×ËÁ ÓÉÓÔĹÍŮ"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "÷ŮÂĹŇÉÔĹ ĆÁĘĚ"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "őÄÁĚĹÎÎŮĘ ĐŇÉÎÔĹŇ"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
#, fuzzy
msgid "Initials tests"
msgstr "îÁŢÁĚŘÎĎĹ ÓĎĎÂÝĹÎÉĹ"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr "îÁ ×ÁŰĹĘ ÍÁŰÉÎĹ ÎĹÔ ÓĹÔĹ×ĎÇĎ ÁÄÁĐÔĹŇÁ!"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "őÓÔÁÎĎ×ËÁ"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr "îÁ ×ÁŰĹĘ ÍÁŰÉÎĹ ÎĹÔ ÓĹÔĹ×ĎÇĎ ÁÄÁĐÔĹŇÁ!"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "÷ŮČĎÄ ÉÚ ĐŇĎĂĹÓÓÁ ŐÓÔÁÎĎ×ËÉ"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "ňÁÚÄĹĚĹÎÉĹ ÉÎÔĹŇÎĹÔ-ÓĎĹÄÉÎĹÎÉŃ"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "ňÁÚÄĹĚĹÎÉĹ ÉÎÔĹŇÎĹÔ-ÓĎĹÄÉÎĹÎÉŃ × ÄÁÎÎŮĘ ÍĎÍĹÎÔ ×ËĚŔŢĹÎĎ"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10203,31 +11083,31 @@ msgstr ""
"\n"
"ţÔĎ ×Ů ČĎÔÉÔĹ ÓÄĹĚÁÔŘ?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "×ŮËĚŔŢÉÔŘ"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "ŐÂŇÁÔŘ"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "ĐĹŇĹÎÁÓÔŇĎÉÔŘ"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "÷ŮËĚŔŢĹÎÉĹ ÓĹŇ×ĹŇĎ×..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "ňÁÚÄĹĚĹÎÉĹ ÓĎĹÄÉÎĹÎÉŃ Ó ÉÎÔĹŇÎĹÔ ÔĹĐĹŇŘ ×ŮËĚŔŢĹÎĎ."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "ňÁÚÄĹĚĹÎÉĹ ÉÎÔĹŇÎĹÔ-ÓĎĹÄÉÎĹÎÉŃ × ÄÁÎÎŮĘ ÍĎÍĹÎÔ ×ŮËĚŔŢĹÎĎ"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10239,19 +11119,19 @@ msgstr ""
"\n"
"ţÔĎ ×Ů ČĎÔÉÔĹ ÓÄĹĚÁÔŘ?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "×ËĚŔŢÉÔŘ"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "÷ËĚŔŢĹÎÉĹ ÓĹŇ×ĹŇĎ×..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "ňÁÚÄĹĚĹÎÉĹ ÓĎĹÄÉÎĹÎÉŃ Ó ÉÎÔĹŇÎĹÔ ÔĹĐĹŇŘ ×ËĚŔŢĹÎĎ."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10261,31 +11141,31 @@ msgid ""
"(LAN)."
msgstr ""
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr ""
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "éÎÔĹŇĆĹĘÓ %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "îÁ ×ÁŰĹĘ ÍÁŰÉÎĹ ÎĹÔ ÓĹÔĹ×ĎÇĎ ÁÄÁĐÔĹŇÁ!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "óĹÔĹ×ĎĘ ÉÎÔĹŇĆĹĘÓ"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10300,7 +11180,7 @@ msgstr ""
"\n"
"ń ÓĎÂÉŇÁŔÓŘ ÎÁÓÔŇĎÉÔŘ ĚĎËÁĚŘÎŐŔ ÓĹÔŘ, ÉÓĐĎĚŘÚŐŃ ÜÔĎÔ ÁÄÁĐÔĹŇ."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -10308,12 +11188,12 @@ msgstr ""
"đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ, ËÁËĎĘ ÓĹÔĹ×ĎĘ ÁÄÁĐÔĹŇ ÂŐÄĹÔ ĐĎÄËĚŔŢĹÎ Ë ×ÁŰĹĘ "
"ĚĎËÁĚŘÎĎĘ ÓĹÔÉ."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "íĎÎÉÔĎŇ ÎĹ ÎÁÓÔŇĎĹÎ"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10323,17 +11203,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "îÁÓÔŇĎĘËÁ ×ÉÄÁ ÚÁÇŇŐÚËÉ"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "îÁÓÔŇĎĘËÁ éÎÔĹŇÎĹÔ"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10344,7 +11224,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
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 C-Class Network that "
@@ -10356,34 +11236,34 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP ÓĹŇ×ĹŇÁ CUPS"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"đĎÔĹÎĂÉÁĚŘÎŮĘ ËĎÎĆĚÉËÔ ÁÄŇĹÓĎ× LAN ĎÂÎÁŇŐÖĹÎ × ÔĹËŐÝĹĘ ËĎÎĆÉÇŐŇÁĂÉÉ %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "ďÂÎÁŇŐÖĹÎÁ ÎÁÓÔŇĎĘËÁ ÓÉÓÔĹÍŮ ÚÁÝÉÔŮ ÓĹÔÉ (firewall)!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10391,20 +11271,20 @@ msgstr ""
"÷ÎÉÍÁÎÉĹ! ďÂÎÁŇŐÖĹÎŮ ÓŐÝĹÓÔ×ŐŔÝÉĹ ÎÁÓÔŇĎĘËÉ ÓÉÓÔĹÍŮ ÚÁÝÉÔŮ ÓĹÔĹĘ (firewall). "
"÷ÁÍ ÍĎÇŐÔ ĐĎÔŇĹÂĎ×ÁÔŘÓŃ ÎĹÂĎĚŘŰÉĹ ŇŐŢÎŮĹ ÉÓĐŇÁ×ĚĹÎÉŃ ĐĎÓĚĹ ŐÓÔÁÎĎ×ËÉ."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "îÁÓÔŇĎĘËÁ..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "îÁÓÔŇĎĘËÁ ÓËŇÉĐÔĎ×, ŐÓÔÁÎĎ×ËÁ ĐŇĎÇŇÁÍÍ, ÚÁĐŐÓË ÓĹŇ×ÉÓĎ×..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "đŇĎÂĚĹÍŮ Ó ŐÓÔÁÎĎ×ËĎĘ ĐÁËĹÔÁ %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10414,23 +11294,23 @@ msgstr ""
"ôĹĐĹŇŘ ×Ů ÍĎÖĹÔĹ ŇÁÚÄĹĚŃÔŘ ×ÁŰĹ ÉÎÔĹŇĹÎÔ ÓĎĹÄÉÎĹÎÉĹ Ó ÄŇŐÇÉÍÉ ËĎÍĐŘŔÔĹŇÁÍÉ × "
"×ÁŰĹĘ ĚĎËÁĚŘÎĎĘ ÓĹÔÉ, ÉÓĐĎĚŘÚŐŃ Á×ÔĎÍÁÔÉŢĹÓËŐŔ ÎÁÓÔŇĎĘËŐ ÓĹÔÉ (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "îÁÓÔŇĎĘËÁ ŐÖĹ ÂŮĚÁ ÓÄĹĚÁÎÁ, ÎĎ ÓĹĘŢÁÓ ĎÎÁ ×ŮËĚŔŢĹÎÁ."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "îÁÓÔŇĎĘËÁ ŐÖĹ ÂŮĚÁ ÓÄĹĚÁÎÁ É ÓĹĘŢÁÓ ĎÎÁ ×ËĚŔŢĹÎÁ."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "îÁÓÔŇĎĘËÁ ŇÁÚÄĹĚĹÎÉŃ ÓĎĹÄÉÎĹÎÉŃ Ó ÉÎÔĹŇÎĹÔ ÎÉËĎÇÄÁ ÎĹ ×ŮĐĎĚÎŃĚÁÓŘ."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "îÁÓÔŇĎĘËÁ ŇÁÚÄĹĚĹÎÉŃ ÓĎĹÄÉÎĹÎÉŃ Ó ÉÎÔĹŇÎĹÔ"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10445,213 +11325,6 @@ msgstr ""
"\n"
"îÁÖÍÉÔĹ ÎÁ îÁÓÔŇĎĘËÁ ÄĚŃ ÚÁĐŐÓËÁ ÍÁÓÔĹŇÁ ÎÁÓÔŇĎĘËÉ."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "ëĎÎĆÉÇŐŇÁĂÉŃ ÓĹÔÉ (%d ÁÄÁĐÔĹŇĎ×)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "đŇĎĆÉĚŘ: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "őÄÁĚÉÔŘ ĐŇĎĆÉĚŘ..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "őÄÁĚŃĹÍŮĘ ĐŇĎĆÉĚŘ:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "îĎ×ŮĘ ĐŇĎĆÉĚŘ..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "éÍŃ ËĎÍĐŘŔÔĹŇÁ:"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "äĎÓÔŐĐ × ÉÎÔĹŇÎĹÔ"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "ôÉĐ:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "űĚŔÚ:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "éÎÔĹŇĆĹĘÓ:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "óÔÁÔŐÓ:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "îÁÓÔŇĎĘËÁ ÄĎÓÔŐĐÁ × ÉÎÔĹŇÎĹÔ..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "îÁÓÔŇĎĘËÁ ĚĎËÁĚŘÎĎĘ ÓĹÔÉ"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "äŇÁĘ×ĹŇ"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "éÎÔĹŇĆĹĘÓ"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "đŇĎÔĎËĎĚ"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "óÔÁÔŐÓ:"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "îÁÓÔŇĎÉÔŘ ĚĎËÁĚŘÎŐŔ ÓĹÔŘ..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "íÁÓÔĹŇ..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "đŇÉÍĹÎÉÔŘ"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "đĎÖÁĚŐĘÓÔÁ, ĐĎÄĎÖÄÉÔĹ... ÷ÎĹÓĹÎÉĹ ÉÚÍĹÎĹÎÉĘ × ÎÁÓÔŇĎĘËŐ"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "óĎĹÄÉÎĹÎĎ"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "îĹ ÓĎĹÄÉÎĹÎĎ"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "óĎĹÄÉÎÉÔŘ..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "ďÔÓĎĹÄÉÎÉÔŘ..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"ő ×ÁÓ ÎĹÔ ÎÁÓÔŇĎĹÎÎŮČ ÉÎÔĹŇĆĹĘÓĎ×.\n"
-"óÎÁŢÁĚÁ ÎŐÖÎĎ ÉČ ÎÁÓÔŇĎÉÔŘ ÎÁÖÁ× ÎÁ 'îÁÓÔŇĎÉÔŘ'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "îÁÓÔŇĎĘËÁ ĚĎËÁĚŘÎĎĘ ÓĹÔÉ"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "áÄÁĐÔĹŇ %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "đŇĎÔËĎĚ ÚÁÇŇŐÚËÉ"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "úÁĐŐÝĹÎĎ ĐŇÉ ÚÁÇŇŐÚËĹ"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "ëĚÉĹÎÔ DHCP"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "áËÔÉ×ÎŮĘ"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "áËÔÉ×ÎŮĘ"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"ő ×ÁÓ ÎĹÔ ÎÉ ĎÄÎĎÇĎ ÓĎĹÄÉÎĹÎÉŃ Ó ÉÎÔĹŇÎĹÔ.\n"
-"óÎÁŢÁĚÁ ÓĎÚÄÁĘÔĹ ÓĎĹÄÉÎĹÎÉĹ, ÎÁÖÁ× 'îÁÓÔŇĎÉÔŘ'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "îÁÓÔŇĎĘËÁ ÓĎĹÄÉÎĹÎÉŃ Ó ÉÎÔĹŇÎĹÔ"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "îÁÓÔŇĎĘËÁ ÓĎĹÄÉÎĹÎÉŃ Ó ÉÎÔĹŇÎĹÔ"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "ôÉĐ ÓĎĹÄÉÎĹÎÉŃ: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "đÁŇÁÍĹÔŇŮ"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "űĚŔÚ"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "óĹÔĹ×ÁŃ ËÁŇÔÁ"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "ëĚÉĹÎÔ DHCP"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "îÁÓÔŇĎĘËÁ ŐŇĎ×ĹÎŘ ÂĹÚĎĐÁÓÎĎÓÔÉ"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "ăĹÎÔŇ őĐŇÁ×ĚĹÎÉŃ"
@@ -10660,94 +11333,130 @@ msgstr "ăĹÎÔŇ őĐŇÁ×ĚĹÎÉŃ"
msgid "Choose the tool you want to use"
msgstr "÷ŮÂĹŇÉÔĹ ĐŇĎÇŇÁÍÍŐ, ËĎÔĎŇŮĘ ×Ů ČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\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 ""
+
+#: ../../standalone/drakxtv_.c:72
#, fuzzy
msgid "Canada (cable)"
msgstr "ëÁÎÁÄÓËÉĘ (ë×ĹÂĹË)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "East Europe"
msgstr "ĺ×ŇĎĐÁ"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "ćŇÁÎĂŐÚÓËÉĘ"
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr "éÓĚÁÎÄÓËÉĘ"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "West Europe"
msgstr "ĺ×ŇĎĐÁ"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr "ĐĎÓĚĹÄĎ×ÁÔĹĚŘÎÁŃ"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "đŇÉ ŐÓÔÁÎĎ×ËĹ ĐÁËĹÔĎ× ĐŇĎÉÚĎŰĚÁ ĎŰÉÂËÁ:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10792,7 +11501,7 @@ msgstr "îĹ×ĎÚÍĎÖÎĎ ÎÁŢÁÔŘ ĎÂÎĎ×ĚĹÎÉĹ !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -10803,7 +11512,7 @@ msgstr "ďÔĎÂŇÁÖÁÔŘ ÔĎĚŘËĎ ÚÁ ÓĹÇĎÄÎŃ"
#: ../../standalone/logdrake_.c:102
msgid "/File/_New"
-msgstr "/ćÁĘĚ/_îĎ×ŮĘ"
+msgstr "/ćÁĘĚ/îĎ×ŮĘ"
#: ../../standalone/logdrake_.c:102
msgid "<control>N"
@@ -10811,7 +11520,7 @@ msgstr "<control>N"
#: ../../standalone/logdrake_.c:103
msgid "/File/_Open"
-msgstr "/ćÁĘĚ/_ďÔËŇŮÔŘ"
+msgstr "/ćÁĘĚ/ďÔËŇŮÔŘ"
#: ../../standalone/logdrake_.c:103
msgid "<control>O"
@@ -10819,7 +11528,7 @@ msgstr "<control>O"
#: ../../standalone/logdrake_.c:104
msgid "/File/_Save"
-msgstr "/ćÁĘĚ/_óĎČŇÁÎÉÔŘ"
+msgstr "/ćÁĘĚ/óĎČŇÁÎÉÔŘ"
#: ../../standalone/logdrake_.c:104
msgid "<control>S"
@@ -10827,7 +11536,7 @@ msgstr "<control>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
-msgstr "/ćÁĘĚ/óĎČŇÁÎÉÔŘ _ëÁË"
+msgstr "/ćÁĘĚ/óĎČŇÁÎÉÔŘ ËÁË"
#: ../../standalone/logdrake_.c:106
msgid "/File/-"
@@ -10835,19 +11544,15 @@ msgstr "/ćÁĘĚ/-"
#: ../../standalone/logdrake_.c:108
msgid "/_Options"
-msgstr "/_đÁŇÁÍĹÔŇŮ"
+msgstr "/đÁŇÁÍĹÔŇŮ"
#: ../../standalone/logdrake_.c:109
msgid "/Options/Test"
msgstr "/đÁŇÁÍĹÔŇŮ/đŇĎ×ĹŇËÁ"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/đĎÍĎÝŘ"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
-msgstr "/đĎÍĎÝŘ/_ď ĐŇĎÇŇÁÍÍĹ..."
+msgstr "/đĎÍĎÝŘ/ď ĐŇĎÇŇÁÍÍĹ..."
#: ../../standalone/logdrake_.c:118
msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
@@ -10910,7 +11615,7 @@ msgstr "ëÁĚĹÎÄÁŇŘ"
msgid "Content of the file"
msgstr "óĎÄĹŇÖÉÍĎĹ ćÁĘĚÁ"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -10919,80 +11624,111 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr "đĎÖÁĚŐĘÓÔÁ ĐĎÄĎÖÄÉÔĹ, ×ŮĐĎĚÎŃĹÔÓŃ: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "îÁÓÔŇĎĘËÁ ĚĎËÁĚŘÎĎĘ ÓĹÔÉ"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache, Pro-ftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
+msgid "Apache World Wide Web Server"
msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "éÍŃ ÄĎÍĹÎÁ"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "Ext2"
+msgid "Ftp Server"
+msgstr "NIS ÓĹŇ×ĹŇ"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "đĎŢÔĎ×ŮĘ ÓĹŇ×ĹŇ Postfix, ÓĹŇ×ĹŇ ÎĎ×ĎÓÔĹĘ Inn"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS ÓĹŇ×ĹŇ"
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "NIS ÓĹŇ×ĹŇ"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "ŐÓÔŇĎĘÓÔ×Ď"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "óĹŇ×ĹŇ ĐĹŢÁÔÉ"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "ŐÓÔŇĎĘÓÔ×Ď"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "ćĎŇÍÁÔÉŇĎ×ÁÎÉĹ"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "îÁÓÔŇĎĘËÁ"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "óĎČŇÁÎÉÔŘ ËÁË..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "đĎÖÁĚŐĘÓÔÁ, ŐËÁÖÉÔĹ ÔÉĐ ×ÁŰĹĘ ÍŮŰÉ"
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "serial_usb ÎĹ ÎÁĘÄĹÎ\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "üÍŐĚÉŇĎ×ÁÔŘ ÔŇĹÔŘŔ ËÎĎĐËŐ?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "ţÔĹÎÉĹ ÂÁÚŮ ÄŇÁĘ×ĹŇĎ× CUPS..."
+
+#: ../../standalone/scannerdrake_.c:42
+#, fuzzy
+msgid "Detecting devices ..."
+msgstr "ďĐŇĹÄĹĚĹÎÉĹ ŐÓÔŇĎĘÓÔ×..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -11036,6 +11772,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "îÁÓÔŇĎĘËÁ ÓÉÓÔĹÍŮ ÚÁÝÉÔŮ ÓĹÔĹĘ (firewall)"
@@ -11455,10 +12203,6 @@ msgid "Multimedia - Sound"
msgstr "íŐĚŘÔÉÍĹÄÉÁ - ú×ŐË"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "őÔÉĚÉÔŮ"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "äĎËŐÍĹÎÔÁĂÉŃ"
@@ -11563,10 +12307,6 @@ msgstr ""
"ĐŇĎÓÍĎÔŇÁ Web"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "áŇČÉ×ÉŇĎ×ÁÎÉĹ, ÜÍŐĚŃĂÉŃ, ĎÔÓĚĹÖÉ×ÁÎÉĹ"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "ěÉŢÎŮĹ ĆÉÎÁÎÓŮ"
@@ -11612,1438 +12352,154 @@ msgstr "íŐĚŘÔÉÍĹÄÉÁ - úÁĐÉÓŘ CD"
msgid "Scientific Workstation"
msgstr "îÁŐŢÎÁŃ ŇÁÂĎŢÁŃ ÓÔÁÎĂÉŃ"
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "ďÔÍĹÎÉÔŘ"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#, fuzzy
-#~ msgid "None"
-#~ msgstr "çĎÔĎ×Ď"
-
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "÷ŮÂĹŇÉÔĹ ĐĎĚŘÚĎ×ÁÔĹĚŃ ĐĎ ŐÍĎĚŢÁÎÉŔ:"
-
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "őÄÁĚĹÎÎŮĘ ĐŇÉÎÔĹŇ"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "ôĹĐĹŇŘ ×Ů ÍĎÖĹÔĹ ÚÁÄÁ×ÁÔŘ ĐÁŇÁÍĹÔŇŮ ÄĚŃ ÍĎÄŐĚŃ %s."
-
-#~ msgid "mount failed"
-#~ msgstr "ĎŰÉÂËÁ ÍĎÎÔÉŇĎ×ÁÎÉŃ"
-
-#~ msgid "Low"
-#~ msgstr "îÉÚËÉĘ"
-
-#~ msgid "Medium"
-#~ msgstr "óŇĹÄÎÉĘ"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "îÁ ÜÔĎÍ ŐŇĎ×ÎĹ ÂĹÚĎĐÁÓÎĎÓÔÉ ĹÓÔŘ ŇŃÄ ŐĚŐŢŰĹÎÉĘ, × ĐĹŇ×ŐŔ ĎŢĹŇĹÄŘ\n"
-#~ "Ő×ĹĚÉŢÉĚĎÓŘ ËĎĚÉŢĹÓÔ×Ď ĐŇĎ×ĹŇĎË É ĐŇĹÄŐĐŇĹÖÄĹÎÉĘ."
-
-#~ msgid "Boot mode"
-#~ msgstr "ňĹÖÉÍ ÚÁÇŇŐÚËÉ"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "üËÓĐĹŇÔ"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "GNU/Linux ĎÔÓŢÉÔŮ×ÁĹÔ ×ŇĹÍŃ × GMT (ĐĎ çŇÉÎ×ÉŢŐ) É ĐĹŇĹ×ĎÄÉÔ ĹÇĎ × "
-#~ "ÍĹÓÔÎĎĹ\n"
-#~ "×ŇĹÍŃ × ÓĎĎÔ×ĹÔÓÔ×ÉÉ Ó ×ŮÂŇÁÎÎŮÍ ŢÁÓĎ×ŮÍ ĐĎŃÓĎÍ."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "đĎÄÓĎĹÄÉÎÉÔŘÓŃ Ë éÎÔĹŇÎĹÔ"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "ďÔÓĎĹÄÉÎÉÔŘÓŃ ĎÔ éÎÔĹŇÎĹÔ"
-
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "îÁÓÔŇĎÉÔŘ ÓĹÔĹ×ĎĹ ÓĎĹÄÉÎĹÎÉĹ (ĚĎËÁĚŘÎÁŃ ÓĹÔŘ ÉĚÉ ÉÎÔĹŇÎĹÔ)"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "îÁ ËÁËĎĘ ÄÉÓË ČĎÔÉÔĹ ĐĹŇĹÍĹÓÔÉÔŘ?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ĐÁËĹÔŮ, ËĎÔĎŇŮĹ ×Ů ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ"
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "éÎĆĎŇÍÁĂÉŃ"
+#~ msgid "Choose options for server"
+#~ msgstr "÷ŮÂĹŇÉÔĹ ĎĐĂÉÉ ÄĚŃ ÓĹŇ×ĹŇÁ"
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "ňÁÂĎŢÁŃ ÓÔÁÎĂÉŃ Gnome"
+#~ msgid "Monitor not configured"
+#~ msgstr "íĎÎÉÔĎŇ ÎĹ ÎÁÓÔŇĎĹÎ"
-#~ msgid "authentification"
-#~ msgstr "áŐÔĹÎÔÉĆÉËÁĂÉŃ"
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "÷ÉÄĹĎËÁŇÔÁ ĹÝĹ ÎĹ ÎÁÓÔŇĎĹÎÁ"
-#, fuzzy
-#~ msgid "user"
-#~ msgstr "ĐĎĚŘÚĎ×ÁÔĹĚŘ"
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "ňÁÚŇĹŰĹÎÉĹ ĹÝĹ ÎĹ ×ŮÂŇÁÎĎ"
-#, fuzzy
#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
#~ "\n"
-#~ msgstr "đĎÖÁĚŐĘÓÔÁ, ŐËÁÖÉÔĹ ÔÉĐ ×ÁŰĹĘ ÍŮŰÉ"
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "÷ŮČĎÄ"
-
-#, fuzzy
-#~ msgid "Removable media"
-#~ msgstr "á×ÔĎÍĎÎÔÉŇĎ×ÁÎÉĹ ÓßĹÍÎŮČ ÎĎÓÉÔĹĚĹĘ"
-
-#~ msgid "Active"
-#~ msgstr "áËÔÉ×ÎŮĘ"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "îĹÔ"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "đŇÉÎÔĹŇ ÍĎÄĹĚÉ \"%s\" ĎÂÎÁŇŐÖĹÎ ÎÁ "
-
-#~ msgid "Local Printer Device"
-#~ msgstr "ěĎËÁĚŘÎŮĘ ĐŇÉÎÔĹŇ"
-
-#~ msgid "Printer Device"
-#~ msgstr "đŇÉÎÔĹŇ"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "őÄÁĚĹÎÎŮĘ CUPS ÓĹŇ×ĹŇ"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "őÄÁĚĹÎÎŮĘ CUPS ÓĹŇ×ĹŇ"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "óÉÓÔĹÍÎŮĘ ŇĹÖÉÍ"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "äŇŐÇÉĹ"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ŇÁÓËĚÁÄËŐ ×ÁŰĹĘ ËĚÁ×ÉÁÔŐŇŮ"
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "đĎÖÁĚŐĘÓÔÁ ÎÁÖÍÉÔĹ ÎÁ ŇÁÚÄĹĚ"
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "ôÉĐ: "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "đĚĎČĎĘ ĆÁĘĚ Ó ŇĹÚĹŇ×ÎĎĘ ËĎĐÉĹĘ"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "îÁÓÔŇĎĘËÁ X Window"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "đŇÉÎÔĹŇ"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "ďÔÍĹÎÁ"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "ďË"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "úÁËŇŮÔŘ"
-
-#~ msgid "Starting your connection..."
-#~ msgstr "úÁĐŐÓË ÷ÁŰĹÇĎ ÓĎĹÄÉÎĹÎÉŃ..."
-
-#~ msgid "Closing your connection..."
-#~ msgstr "úÁËŇŮÔÉĹ ×ÁŰĹÇĎ ÓĎĹÄÉÎĹÎÉŃ..."
-
-#~ msgid ""
-#~ "The connection is not closed.\n"
-#~ "Try to do it manually by running\n"
-#~ "/etc/sysconfig/network-scripts/net_cnx_down\n"
-#~ "in root."
-#~ msgstr ""
-#~ "óĎĹÄÉÎĹÎÉĹ ÎĹ ÚÁËŇŮÔĎ.\n"
-#~ "đĎĐŇĎÂŐĘÔĹ ÚÁËŇŮÔŘ ĹÇĎ ×ŇŐŢÎŐŔ\n"
-#~ "ÚÁĐŐÓÔÉ× /etc/sysconfig/network-scripts/net_cnx_down\n"
-#~ "ĐĎÄ root."
-
-#~ msgid "The system is now disconnected."
-#~ msgstr "ôĹĐĹŇŘ ÓÉÓÔĹÍÁ ĎÔÓĎĹÄÉÎĹÎÁ."
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "÷ŮÂĹŇÉÔĹ ÖĹĚÁÔĹĚŘÎŮĘ ŇÁÚÍĹŇ ŐÓÔÁÎĎ×ËÉ"
-
-#~ msgid "Total size: "
-#~ msgstr "ďÂÝÉĘ ŇÁÚÍĹŇ: "
-
-#~ msgid "Please wait, "
-#~ msgstr "đĎÄĎÖÄÉÔĹ, ĐĎÖÁĚŐĘÓÔÁ, "
-
-#~ msgid "Total time "
-#~ msgstr "ďÂÝĹĹ ×ŇĹÍŃ "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ ÓŐÝĹÓÔ×ŐŔÝŐŔ ÎÁÓÔŇĎĘËŐ ÄĚŃ X11?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
-#~ msgstr ""
-#~ "ë ËÁËĎÍŐ ŐÓÔŇĎĘÓÔ×Ő ĐĎÄËĚŔŢĹÎ ×ÁŰ ĐŇÉÎÔĹŇ \n"
-#~ "(ĐĎÍÎÉÔĹ? - /dev/lp0 ÜË×É×ÁĚĹÎÔĹÎ LPT1:)?\n"
-
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr "÷ÎÉÍÁÎÉĹ, ÓĹÔĹ×ĎĘ ÁÄÁĐÔĹŇ ŐÖĹ ÎÁÓÔŇĎĹÎ. ń ĹÇĎ ĐĹŇĹËĎÎĆÉÇŐŇÉŇŐŔ."
-
-#~ msgid "New"
-#~ msgstr "îĎ×ŮĘ"
-
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "őÄÁĚĹÎÎÁŃ ĎŢĹŇĹÄŘ"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "đĎÖÁĚŐĘÓÔÁ ÎÁÖÍÉÔĹ ÎÁ ŇÁÚÄĹĚ"
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "îĹĎĐŇĹÄĹĚĹÎÎĎÓÔŘ (%s), ÂŐÄŘÔĹ ĐĎÔĎŢÎĹĹ\n"
-
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (ŐÍĎĚŢÁÎÉĹ %s) "
-
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "÷ÁŰ ×ŮÂĎŇ? (ŐÍĎĚŢÁÎÉĹ %s ××ĹÄÉÔĹ 'none' ĐŇÉ ĎÔÓŐÔÓÔ×ÉÉ) "
-
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "ÎĹ×ĎÚÍĎÖÎĎ ĎÔËŇŮÔŘ ÄĚŃ ŢÔĹÎÉŃ /etc/sysconfig/autologin : %s"
-
-#~ msgid "Do you want to restart the network"
-#~ msgstr "÷Ů ČĎÔÉÔĹ ĐĹŇĹÚÁĐŐÓÔÉÔŘ ÓĹÔŘ"
-
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
+#~ "try to change some parameters"
#~ msgstr ""
#~ "\n"
-#~ "÷Ů ÓĎÇĚÁÓÎŮ?"
-
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "óĎÂÉŇÁŔÓŘ ĐĹŇĹÚÁĐŐÓÔÉÔŘ ÓĹÔĹ×ĎĹ ŐÓÔŇĎĘÓÔ×Ď:\n"
-
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "óĎÂÉŇÁŔÓŘ ĐĹŇĹÚÁĐŐÓÔÉÔŘ ÓĹÔĹ×ĎĹ ŐÓÔŇĎĘÓÔ×Ď %s. ÷Ů ÓĎÇĚÁÓÎŮ?"
-
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "ĺÓĚÉ ÎĹ ÚÎÁĹÔĹ ÔĎŢÎĎ ÄŇŐÇĎĘ ×ÁŇÉÁÎÔ, ÔĎ ĎÂŮŢÎŮÍ ×ŮÂĎŇĎÍ Ń×ĚŃĹÔÓŃ \"/dev/"
-#~ "hda\"\n"
-#~ "(IDE ÍÁÓÔĹŇ ÄÉÓË ÎÁ ĐĹŇ×ĎÍ ËÁÎÁĚĹ) ÉĚÉ \"/dev/sda\" (ĐĹŇ×ŮĘ SCSI ÄÉÓË)."
-
-#, fuzzy
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "ôÉĐ ÓĎĹÄÉÎĹÎÉŃ: "
+#~ "ĐĎĐŇĎÂŐĘÔĹ ÉÚÍĹÎÉÔŘ ÎĹËĎÔĎŇŮĹ ĐÁŇÁÍĹÔŇŮ"
-#, fuzzy
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "÷ŮÂĹŇÉÔĹ ĐĎĚŘÚĎ×ÁÔĹĚŃ ĐĎ ŐÍĎĚŢÁÎÉŔ:"
-
-#~ msgid "Test the mouse here."
-#~ msgstr "đŇĎ×ĹŇŘÔĹ ×ÁŰŐ ÍŮŰŘ ÚÄĹÓŘ."
-
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr ""
-#~ "÷ŮÂĹŇÉÔĹ ĐŇĹÄĐĎŢÔÉÔĹĚŘÎŮĘ ŃÚŮË ÄĚŃ ŐÓÔÁÎĎ×ËÉ É ÉÓĐĎĚŘÚĎ×ÁÎÉŃ ÓÉÓÔĹÍŮ."
+#~ msgid "An error occurred:"
+#~ msgstr "đŇĎÉÚĎŰĚÁ ĎŰÉÂËÁ:"
-#~ msgid ""
-#~ "You need to accept the terms of the above license to continue "
-#~ "installation.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Accept\" if you agree with its terms.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Refuse\" if you disagree with its terms. Installation "
-#~ "will end without modifying your current\n"
-#~ "configuration."
-#~ msgstr ""
-#~ "÷ÁÍ ÎĹĎÂČĎÄÉÍĎ ĐŇÉÎŃÔŘ ŐÓĚĎ×ÉŃ ĚÉĂĹÎÚÉÉ ÄĚŃ ĐŇĎÄĎĚÖĹÎÉŃ ŐÓÔÁÎĎ×ËÉ.\n"
-#~ "\n"
-#~ "\n"
-#~ "îÁÖÍÉÔĹ \"đŇÉÎŃÔŘ\" ĹÓĚÉ ×Ů ÓĎÇĚÁÓÎŮ Ó ŐÓĚĎ×ÉŃÍÉ ĚÉĂĹÎÚÉÉ.\n"
-#~ "\n"
-#~ "\n"
-#~ "îÁÖÍÉÔĹ \"ďÔËÁÚÁÔŘÓŃ\" ĹÓĚÉ ×Ů ÎĹ ÓĎÇĚÁÓÎŮ Ó ĹĹ ŐÓĚĎ×ÉŃÍÉ. őÓÔÁÎĎ×ËÁ "
-#~ "ÂŐÄĹÔ ĐŇĹŇ×ÁÎÁ ÂĹÚ ÉÚÍĹÎĹÎÉŃ ×ÁŰĹĘ ÔĹËŐÝĹĘ\n"
-#~ "ËĎÎĆÉÇŐŇÁĂÉÉ."
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "úÁ×ĹŇŰĹÎÉĹ ŢĹŇĹÚ %d ÓĹËŐÎÄ"
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr ""
-#~ "÷ŮÂĹŇÉÔĹ ÉÚ ĐŇÉ×ĹÄĹÎÎĎÇĎ ÓĐÉÓËÁ ŇÁÓËĚÁÄËŐ, ÓĎĎÔ×ĹÔÓÔ×ŐŔÝŐŔ ×ÁŰĹĘ "
-#~ "ËĚÁ×ÉÁÔŐŇĹ"
+#~ msgid "Is this the correct setting?"
+#~ msgstr "üÔÉ ŐÓÔÁÎĎ×ËÉ ×ĹŇÎŮ?"
-#~ msgid ""
-#~ "If you wish other languages (than the one you choose at\n"
-#~ "beginning of installation) will be available after installation, please "
-#~ "chose\n"
-#~ "them in list above. If you want select all, you just need to select \"All"
-#~ "\"."
-#~ msgstr ""
-#~ "ĺÓĚÉ ×Ů ČĎÔÉÔĹ, ŢÔĎÂŮ ÄŇŐÇÉĹ ŃÚŮËÉ (ËŇĎÍĹ ×ŮÂŇÁÎÎŮČ \n"
-#~ "× ÎÁŢÁĚĹ ŐÓÔÁÎĎ×ËÉ) ÂŮĚÉ ÄĎÓÔŐĐÎŮ ĐĎÓĚĹ ĎËĎÎŢÁÎÉŃ ŐÓÔÁÎĎ×ËÉ, ĐĎÖÁĚŐĘÓÔÁ "
-#~ "×ŮÂĹŇÉÔĹ\n"
-#~ "ÉČ ÉÚ ÓĐÉÓËÁ. ĺÓĚÉ ×Ů ČĎÔÉÔĹ ×ŮÂŇÁÔŘ ÉČ ×ÓĹ, ĐŇĎÓÔĎ ×ŮÂĹŇÉÔĹ \"÷ÓĹ\"."
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "đŇĎÉÚĎŰĚÁ ĎŰÉÂËÁ, ĐĎĐŇĎÂŐĘÔĹ ÉÚÍĹÎÉÔŘ ÎĹËĎÔĎŇŮĹ ĐÁŇÁÍĹÔŇŮ"
-#~ msgid ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!"
-#~ msgstr ""
-#~ "÷ŮÂĹŇÉÔĹ:\n"
-#~ "\n"
-#~ " - ÷ŮÂĎŇĎŢÎŮĘ: ĺÓĚÉ ×Ů ÚÎÁËĎÍŮ Ó GNU/Linux, ÔĎ ÍĎÖĹÔĹ ×ŮÂŇÁÔŘ ĂĹĚĹ×ĎĹ \n"
-#~ "ÎÁÚÎÁŢĹÎÉĹ ×ÁŰĹĘ ÓÉÓÔĹÍŮ. äĹÔÁĚÉ ĎĐÉÓÁÎŮ ÎÉÖĹ. \n"
-#~ "\n"
-#~ "\n"
-#~ " - üËÓĐĹŇÔ: đĎÄŇÁÚŐÍĹ×ÁĹÔÓŃ, ŢÔĎ Ő ×ÁÓ ĹÓÔŘ ĎĐŮÔ Ó GNU/Linux É ×Ů "
-#~ "ČĎÔÉÔĹ \n"
-#~ " ×ŮĐĎĚÎÉÔŘ ÔĎÎËŐŔ ÎÁÓÔŇĎĘËŐ ŐÓÔÁÎĎ×ËÉ. ëÁË É ÄĚŃ ŐŇĎ×ÎŃ \"÷ŮÂĎŇĎŢÎÁŃ"
-#~ "\" \n"
-#~ " ×Ů ÓÍĎÖĹÔĹ ŐËÁÚÁÔŘ ĂĹĚĹ×ĎĹ ÎÁÚÎÁŢĹÎÉĹ ×ÁŰĹĘ ÓÉÓÔĹÍŮ.\n"
-#~ " îĎ, ĐĎÖÁĚŐĘÓÔÁ, ÷ůâéňáęôĺ üôďô őňď÷ĺîř ôďěřëď ĺóěé ÷ů ô÷ĺňäď ő÷ĺňĺîů\n"
-#~ " ÷ ôďí ţôď ÷ů äĺěáĺôĺ"
-
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "ôĹĐĹŇŘ ×Ů ÄĎĚÖÎŮ ĎĐŇĹÄĹĚÉÔŘ ÉÓĐĎĚŘÚĎ×ÁÎÉĹ ×ÁŰĹĘ ÓÉÓÔĹÍŮ. ÷ÁŇÉÁÎÔŮ:\n"
-#~ "\n"
-#~ "* ňÁÂĎŢÁĘ ÓÔÁÎĂÉŃ: ÜÔĎ ÉÄĹÁĚŘÎŮĘ ×ŮÂĎŇ × ÔĎÍ ÓĚŐŢÁĹ, ĹÓĚÉ ×Ů ĐĚÁÎÉŇŐĹÔĹ "
-#~ "ÉÓĐĎĚŘÚĎ×ÁÔŘ ÓÉÓÔĹÍŐ × ĎÓÎĎ×ÎĎÍ ÄĚŃ ĎÂŮŢÎĎĘ ŇÁÂĎÔŮ × ĎĆÉÓĹ\n"
-#~ " ÉĚÉ ÄĎÍÁ.\n"
-#~ "\n"
-#~ "\n"
-#~ "* ňÁÚŇÁÂĎÔËÁ ĐŇĎÇŇÁÍÍt: ÜÔĎ ČĎŇĎŰÉĘ ×ŮÂĎŇ, ĹÓĚÉ ×Ů ĐĚÁÎÉŇŐĹÔĹ "
-#~ "ÉÓĐĎĚŘÚĎ×ÁÔŘ Ó×ĎŔ ÓÉÓÔĹÍŐ × ĎÓÎĎ×ÎĎÍ ÄĚŃ ŇÁÚŇÁÂĎÔËÉ ĐŇĎÇŇÁÍÍ. ő ×ÁÓ "
-#~ "ÂŐÄĹÔ\n"
-#~ " ĐĎĚÎŮĘ ÎÁÂĎŇ ŐÓÔÁÎĎ×ĚĹÎÎŮČ ĐŇĎÇŇÁÍÍ ÄĚŃ ËĎÍĐÉĚŃĂÉÉ, ĎÔĚÁÄËÉ, "
-#~ "ĆĎŇÍÁÔÉŇĎ×ÁÎÉŃ ÉÓČĎÄÎŮČ ÔĹËÓÔĎ× Á ÔÁËÖĹ ÄĚŃ ÓĎÚÄÁÎÉŃ ĐÁËĹÔĎ× ĐŇĎÇŇÁÍÍ.\n"
-#~ "\n"
-#~ "\n"
-#~ "\n"
-#~ "* óĹŇ×ĹŇ: ČĎŇĎŰÉĘ ×ŮÂĎŇ, ĹÓĚÉ ×Ů ĐĚÁÎÉŇŐĹÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ËĎÍĐŘŔÔĹŇ × "
-#~ "ËÁŢĹÓÔ×Ĺ ÓĹŇ×ĹŇÁ. ěÉÂĎ × ËÁŢĹÓÔ×Ĺ ĆÁĘĚ-ÓĹŇ×ĹŇÁ (NFS ÉĚÉ\n"
-#~ " SMB), ÓĹŇ×ĹŇÁ ĐĹŢÁÔÉ (ÄĚŃ Unix ÉĚÉ ÄĚŃ Microsoft Windows), ÓĹŇ×ĹŇÁ "
-#~ "ÁŐÔĹÎÔÉĆÉËÁĂÉÉ (NIS), ÓĹŇ×ĹŇÁ ÂÁÚ ÄÁÎÎŮČ\n"
-#~ " É ÔÁË ÄÁĚĹĹ. đĎÜÔĎÍŐ ÎĹ ĎÖÉÄÁĘÔĹ, ŢÔĎ ÂŐÄŐÔ ŐÓÔÁÎĎ×ĚĹÎŮ ĐÁËĹÔŮ ÔÉĐÁ "
-#~ "KDE, GNOME, É ĐĎÄĎÂÎŮĹ. "
-
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "ôĹĐĹŇŘ ×Ů ÍĎÖĹÔĹ ×ŮÂŇÁÔŘ ÇŇŐĐĐŐ ĐÁËĹÔĎ×, ËĎÔĎŇŮĹ ×Ů ČĎÔÉÔĹ\n"
-#~ "ŐÓÔÁÎĎ×ÉÔŘ ÉĚÉ ĎÂÎĎ×ÉÔŘ.\n"
-#~ "\n"
-#~ "\n"
-#~ "úÁÔĹÍ DrakX ĐŇĎ×ĹŇÉÔ, ÄĎÓÔÁÔĎŢÎĎ ĚÉ Ő ×ÁÓ ÍĹÓÔÁ ÄĚŃ ÉČ ŐÓÔÁÎĎ×ËÉ. ĺÓĚÉ "
-#~ "ÎĹÔ,\n"
-#~ "ÂŐÄĹÔ ×ŮÄÁÎĎ ĐŇĹÄŐĐŇĹÖÄĹÎÉĹ. ĺÓĚÉ ×Ů ×ÓĹ ŇÁ×ÎĎ ČĎÔÉÔĹ ĐŇĎÄĎĚÖÉÔŘ, "
-#~ "ŐÓÔÁÎĎ×ËÁ ÂŐÄĹÔ ×ŮÂŇÁÎÎŮČ\n"
-#~ "ÇŇŐĐĐ ÂŐÄĹÔ ×ŮĐĎĚÎĹÎÁ ÚÁ ÉÓËĚŔŢĹÎÉĹÍ ÍĹÎĹĹ ×ÁÖÎŮČ\n"
-#~ "ĐÁËĹÔĎ×. ÷ÎÉÚŐ ÓĐÉÓËÁ ×Ů ÍĎÖĹÔĹ ×ŮÂŇÁÔŘ ×ÁŇÉÁÎÔ \n"
-#~ "\"éÎÄÉ×ÉÄŐÁĚŘÎŮĘ ×ŮÂĎŇ ĐÁËĹÔĎ×\"; - × ÜÔĎÍ ÓĚŐŢÁĹ ×ÁÍ ĐŇÉÄĹÔÓŃ "
-#~ "ĐŇĎÓÍĎÔŇĹÔŘ ÓĐÉÓĎË\n"
-#~ "ÉÚ ÂĎĚĹĹ ŢĹÍ 1000 ĐÁËĹÔĎ×..."
-
-#~ msgid ""
-#~ "You can now choose individually all the packages you\n"
-#~ "wish to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can expand or collapse the tree by clicking on options in the left "
-#~ "corner of\n"
-#~ "the packages window.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you prefer to see packages sorted in alphabetic order, click on the "
-#~ "icon\n"
-#~ "\"Toggle flat and group sorted\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want not to be warned on dependencies, click on \"Automatic\n"
-#~ "dependencies\". If you do this, note that unselecting one package may "
-#~ "silently\n"
-#~ "unselect several other packages which depend on it."
-#~ msgstr ""
-#~ "óĹĘŢÁÓ ×Ů ÍĎÖĹÔĹ ÓÄĹĚÁÔŘ ÉÎÄÉ×ÉÄŐÁĚŘÎŮĘ ×ŮÂĎŇ ĐÁËĹÔĎ×, ËĎÔĎŇŮĹ\n"
-#~ "×Ů ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ.\n"
-#~ "\n"
-#~ "\n"
-#~ "÷Ů ÍĎÖĹÔĹ ŇÁÚ×ĎŇÁŢÉ×ÁÔŘ É Ó×ĎŇÁŢÉ×ÁÔŘ ÄĹŇĹ×Ď ÎÁÖÉÍÁŃ × ĚĹ×ĎÍ ŐÇĚŐ ĎËÎÁ\n"
-#~ "ĐÁËĹÔĎ×.\n"
-#~ "\n"
-#~ "\n"
-#~ "ĺÓĚÉ ×Ů ĐŇĹÄĐĎŢÉÔÁĹÔĹ ĎÔÓĎŇÔÉŇĎ×ÁÔŘ ĐÁËĹÔŮ × ÁĚĆÁ×ÉÔÎĎÍ ĐĎŇŃÄËĹ, ÎÁÖÍÉÔĹ "
-#~ "ÎÁ ÉËĎÎËŐ\n"
-#~ "\"đĹŇĹËĚŔŢÉÔŘ ĎÂÝÉĘ ÓĐÉÓĎË/ÓĎŇÔÉŇĎ×ËŐ ĐĎ ÇŇŐĐĐÁÍ\".\n"
-#~ "\n"
-#~ "\n"
-#~ "ĺÓĚÉ ×Ů ČĎÔÉÔĹ ĐĎĚŐŢÁÔŘ ĐŇĹÄŐĐŇĹÖÄĹÎÉŃ Ď ÚÁ×ÉÓÉÍĎÓÔŃČ ÍĹÖÄŐ ĐÁËĹÔÁÍÉ, "
-#~ "ÎÁÖÍÉÔĹ ÎÁ \"á×ÔĎÍÁÔÉŢĹÓËÉĹ\n"
-#~ "ÚÁ×ÉÓÉÍĎÓÔÉ\". ĺÓĚÉ ×Ů ÜÔĎ ÓÄĹĚÁĹÔĹ, ÉÍĹĘÔĹ ××ÉÄŐ, ŢÔĎ ĎÔÍĹÎÁ ×ŮÂĎŇÁ "
-#~ "ĎÄÎĎÇĎ ĐÁËĹÔÁ ÍĎÖĹÔ ÍĎĚŢÁ\n"
-#~ "ĎÔÍĹÎÉÔŘ ×ŮÂĎŇ ÎĹÓËĎĚŘËÉČ ÄŇŐÇÉČ ĐÁËĹÔĎ×, ÚÁ×ÉÓŃÝÉČ ĎÔ ÎĹÇĎ."
-
-#~ msgid ""
-#~ "If you have all the CDs in the list above, click Ok. If you have\n"
-#~ "none of those CDs, click Cancel. If only some CDs are missing, unselect "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "ĺÓĚÉ Ő ×ÁÓ ĹÓÔŘ ×ÓĹ CD ÉÚ ĐŇÉ×ĹÄĹÎÎĎÇĎ ×ŮŰĹ ÓĐÉÓËÁ, ÎÁÖÍÉÔĹ Ok.\n"
-#~ "ĺÓĚÉ Ő ×ÁÓ ÎĹÔ ÎÉ ĎÄÎĎÇĎ ÉÚ ÎÉČ, ÎÁÖÍÉÔĹ ďÔÍĹÎÉÔŘ.\n"
-#~ "ĺÓĚÉ ĎÔÓŐÔÓÔ×ŐŔÔ ÔĎĚŘËĎ ÎĹËĎÔĎŇŮĹ CD, ĎÔÍĹÎÉÔĹ ÉČ ×ŮÂĎŇ É ÎÁÖÍÉÔĹ Ok."
-
-#~ msgid ""
-#~ "If you wish to connect your computer to the Internet or\n"
-#~ "to a local network please choose the correct option. Please turn on your "
-#~ "device\n"
-#~ "before choosing the correct option to let DrakX detect it automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you do not have any connection to the Internet or a local network, "
-#~ "choose\n"
-#~ "\"Disable networking\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you wish to configure the network later after installation, or if you "
-#~ "have\n"
-#~ "finished to configure your network connection, choose \"Done\"."
-#~ msgstr ""
-#~ "ĺÓĚÉ ×Ů ČĎÔÉÔĹ ĐĎÄËĚŔŢÉÔŘ ×ÁŰ ËĎÍĐŘŔÔĹŇ Ë ÉÎÔĹŇÎĹÔŐ ÉĚÉ\n"
-#~ "Ë ĚĎËÁĚŘÎĎĘ ÓĹÔÉ ×ŮÂĹŇÉÔĹ ÎŐÖÎŮĘ ×ÁŇÉÁÎÔ. đĎÖÁĚŐĘÓÔÁ, ×ËĚŔŢÉÔĹ ×ÁŰĹ "
-#~ "ŐÓÔŇĎĘÓÔ×Ď\n"
-#~ "ĐĹŇĹÄ ×ŮÂĎŇĎÍ, ŢÔĎÂŮ DrakX ÓÍĎÇ ĹÇĎ Á×ÔĎÍÁÔÉŢĹÓËÉ ĎĐŇĹÄĹĚÉÔŘ.\n"
-#~ "\n"
-#~ "\n"
-#~ "ĺÓĚÉ Ő ×ÁÓ ÎĹÔ ÓĎĹÄÉÎĹÎÉŃ Ó ÉÎÔĹŇÎĹÔ ÉĚÉ Ó ĚĎËÁĚŘÎĎĘ ÓĹÔŘŔ, ×ŮÂĹŇÉÔĹ\n"
-#~ "\"ďÔËĚŔŢÉÔŘ ÓĹÔŘ\".\n"
-#~ "\n"
-#~ "\n"
-#~ "ĺÓĚÉ ×Ů ČĎÔÉÔĹ ÎÁÓÔŇĎÉÔŘ ÓĹÔŘ ĐĎÓĚĹ ŐÓÔÁÎĎ×ËÉ, ĚÉÂĎ ĹÓĚÉ ×Ů ŐÖĹ\n"
-#~ "ÚÁËĎÎŢÉĚÉ ÎÁÓÔŇĎĘËŐ ÓĹÔĹ×ĎÇĎ ÓĎĹÄÉÎĹÎÉŃ, ×ŮÂĹŇÉÔĹ \"÷ŮĐĎĚÎĹÎĎ\"."
-
-#~ msgid ""
-#~ "No modem has been detected. Please select the serial port on which it is "
-#~ "plugged.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, the first serial port (called \"COM1\" under Microsoft\n"
-#~ "Windows) is called \"ttyS0\" under Linux."
-#~ msgstr ""
-#~ "îÉ ĎÄÎĎÇĎ ÍĎÄĹÍÁ ÎĹ ĎÂÎÁŇŐÖĹÎĎ. đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ĐĎÓĚĹÄĎ×ÁÔĹĚŘÎŮĘ "
-#~ "ĐĎŇÔ, Ë ËĎÔĎŇĎÍŐ ĎÎ ĐĎÄËĚŔŢĹÎ.\n"
-#~ "\n"
-#~ "\n"
-#~ "äĚŃ ÓĐŇÁ×ËÉ - ĐĹŇ×ŮĘ ĐĎÓĚĹÄĎ×ÁÔĹĚŘÎŮĘ ĐĎŇÔ (ÎÁÚŮ×ÁĹÍŮĘ \"COM1\" × "
-#~ "Microsoft\n"
-#~ "Windows) × Linux ÎÁÚŮ×ÁĹÔÓŃ \"ttyS0\"."
+#~ msgid "XFree86 server: %s"
+#~ msgstr "óĹŇ×ĹŇ XFree86: %s"
-#~ msgid ""
-#~ "You may now enter dialup options. If you don't know\n"
-#~ "or are not sure what to enter, the correct informations can be obtained "
-#~ "from\n"
-#~ "your Internet Service Provider. If you do not enter the DNS (name "
-#~ "server)\n"
-#~ "information here, this information will be obtained from your Internet "
-#~ "Service\n"
-#~ "Provider at connection time."
-#~ msgstr ""
-#~ "óĹĘŢÁÓ ×Ů ÍĎÖĹÔĹ ÎÁÓÔŇĎÉÔŘ ĐÁŇÁÍĹÔŇŮ ÄĎÚ×ĎÎÁ. ĺÓĚÉ ×Ů ÎĹ ÚÎÁĹÔĹ\n"
-#~ "ÉĚÉ ÎĹ Ő×ĹŇĹÎŮ × ÔĎÍ, ŢÔĎ ÎŐÖÎĎ ××ĹÓÔÉ, ĐŇÁ×ÉĚŘÎÁŃ ÉÎĆĎŇÍÁĂÉŃ ÍĎÖĹÔ ÂŮÔŘ "
-#~ "ĐĎĚŐŢĹÎÁ ĎÔ\n"
-#~ "×ÁŰĹÇĎ ÉÎÔĹŇÎĹÔ-ĐŇĎ×ÁĘÄĹŇÁ. ĺÓĚÉ ×Ů ÎĹ ××ĹÄĹÔĹ ÉÎĆĎŇÍÁĂÉŔ Ď DNS (ÓĹŇ×ĹŇ "
-#~ "ÉÍĹÎ)\n"
-#~ "ÓĹĘŢÁÓ, ÔĎ ÜÔÁ ÉÎĆĎŇÍÁĂÉŃ ÂŐÄĹÔ ĐĎĚŐŢĹÎÁ ĎÔ ×ÁŰĹÇĎ ÉÎÔĹŇÎĹÔ-ĐŇĎ×ÁĘÄĹŇÁ ×Ď "
-#~ "×ŇĹÍŃ\n"
-#~ "ÓĎĹÄÉÎĹÎÉŃ."
+#~ msgid "Show all"
+#~ msgstr "đĎËÁÚÁÔŘ ×ÓĹ"
-#~ msgid ""
-#~ "If your modem is an external modem, please turn on it now to let DrakX "
-#~ "detect it automatically."
-#~ msgstr ""
-#~ "ĺÓĚÉ Ő ×ÁÓ ×ÎĹŰÎÉĘ ÍĎÄĹÍ, ×ËĚŔŢÉÔĹ ĹÇĎ ÓĹĘŢÁÓ, ŢÔĎÂŮ DrakX ÓÍĎÇ ĹÇĎ "
-#~ "Á×ÔĎÍÁÔÉŢĹÓËÉ ĎĐŇĹÄĹĚÉÔŘ."
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "đĎÄÇĎÔĎ×ËÁ ÎÁÓÔŇĎĹË X-Window"
-#~ msgid "Please turn on your modem and choose the correct one."
-#~ msgstr "đĎÖÁĚŐĘÓÔÁ, ×ËĚŔŢÉÔĹ ×ÁŰ ÍĎÄĹÍ É ×ŮÂĹŇÉÔĹ ĐŇÁ×ÉĚŘÎŮĘ."
+#~ msgid "What do you want to do?"
+#~ msgstr "ţÔĎ ×Ů ČĎÔÉÔĹ ÓÄĹĚÁÔŘ?"
-#~ msgid ""
-#~ "If you are not sure if informations above are\n"
-#~ "correct or if you don't know or are not sure what to enter, the correct\n"
-#~ "informations can be obtained from your Internet Service Provider. If you "
-#~ "do not\n"
-#~ "enter the DNS (name server) information here, this information will be "
-#~ "obtained\n"
-#~ "from your Internet Service Provider at connection time."
-#~ msgstr ""
-#~ "ĺÓĚÉ ×Ů ÎĹ Ő×ĹŇĹÎŮ × ĐŇÁ×ÉĚŘÎĎÓÔÉ ×ŮŰĹŐËÁÚÁÎÎĎĘ ÉÎĆĎŇÍÁĂÉÉ\n"
-#~ "ÉĚÉ ×Ů ÎĹ ÚÎÁĹÔĹ, ŢÔĎ ××ĎÄÉÔŘ, ĐŇÁ×ÉĚŘÎÁŃ ÉÎĆĎŇÍÁĂÉŃ\n"
-#~ "ÍĎÖĹÔ ÂŮÔŘ ĐĎĚŐŢĹÎÁ ĎÔ ÉÎÔĹŇÎĹÔ-ĐŇĎ×ÁĘÄĹŇÁ. ĺÓĚÉ ×Ů ÎĹ ××ĹÄĹÔĹ ÓĹĘŢÁÓ\n"
-#~ "ÉÎĆĎŇÍÁĂÉŔ Ď DNS (ÓĹŇ×ĹŇĹ ÉÍĹÎ), ÜÔÁ ÉÎĆĎŇÍÁĂÉŃ ÂŐÄĹÔ ĐĎĚŐŢĹÎÁ ĐĎÚÖĹ\n"
-#~ "ĎÔ ×ÁŰĹÇĎ ÉÎÔĹŇÎĹÔ-ĐŇĎ×ÁĘÄĹŇÁ ×Ď ×ŇĹÍŃ ÓĎĹÄÉÎĹÎÉŃ."
+#~ msgid "Change Monitor"
+#~ msgstr "óÍĹÎÉÔĹ ÍĎÎÉÔĎŇ"
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, the correct informations can "
-#~ "be\n"
-#~ "obtained from your Internet Service Provider."
-#~ msgstr ""
-#~ "óĹĘŢÁÓ ÷Ů ÍĎÖĹÔĹ ÚÁÄÁÔŘ ÎÁÚ×ÁÎÉĹ (ÉÍŃ) ÄĚŃ ×ÁŰĹĘ ÍÁŰÉÎŮ, ĹÓĚÉ ČĎÔÉÔĹ. "
-#~ "ĺÓĚÉ\n"
-#~ "×Ů ÎĹ ÚÎÁĹÔĹ ÉĚÉ ÎĹ Ő×ĹŇĹÎŮ, ŢÔĎ ÎŐÖÎĎ ××ĹÓÔÉ, ĐŇÁ×ÉĚŘÎÁŃ ÉÎĆĎŇÍÁĂÉŃ "
-#~ "ÍĎÖĹÔ ÂŮÔŘ\n"
-#~ "ĐĎĚŐŢĹÎÁ ĎÔ ×ÁŰĹÇĎ ÉÎÔĹŇÎĹÔ-ĐŇĎ×ÁĘÄĹŇÁ."
+#~ msgid "Change Graphics card"
+#~ msgstr "óÍĹÎÉÔĹ ×ÉÄĹĎËÁŇÔŐ"
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "óĹĘŢÁÓ ×Ů ÍĎÖĹÔĹ ÎÁÓÔŇĎĘÉÔŘ ×ÁŰĹ ŐÓÔŇĎĘÓÔ×Ď ĐĎÄËĚŔŢĹÎÉŃ Ë ÓĹÔÉ.\n"
-#~ "\n"
-#~ " * IP ÁÄŇĹÓ: ĹÓĚÉ ×Ů ÎĹ ÚÎÁĹÔĹ ÉĚÉ ÎĹ Ő×ĹŇĹÎŮ × ÔĎÍ, ŢÔĎ ÎŐÖÎĎ ××ĹÓÔÉ, "
-#~ "ÓĐŇĎÓÉÔĹ ÁÄÍÉÎÉÓÔŇÁÔĎŇÁ ×ÁŰĹĘ ÓĹÔÉ.\n"
-#~ " ÷Ů ÎĹ ÄĎĚÖÎŮ ××ĎÄÉÔŘ IP ÁÄŇĹÓ, ĹÓĚÉ ×ŮÂĹŇÉÔĹ ×ÁŇÉÁÎÔ "
-#~ "\"á×ÔĎÍÁÔÉŢĹÓËÉĘ IP\" ×ÎÉÚŐ.\n"
-#~ "\n"
-#~ " * íÁÓËÁ ÓĹÔÉ: \"255.255.255.0\" - ĎÂŮŢÎĎ ČĎŇĎŰÉĘ ×ŮÂĎŇ. ĺÓĚÉ ×Ů ÎĹ "
-#~ "ÚÎÁĹÔĹ ÉĚÉ ÎĹ Ő×ĹŇĹÎŮ, ŢÔĎ ÎŐÖÎĎ ××ĹÓÔÉ,\n"
-#~ " ÓĐŇĎÓÉÔĹ ÁÄÍÉÎÉÓÔŇÁÔĎŇÁ ×ÁŰĹĘ ÓĹÔÉ.\n"
-#~ "\n"
-#~ " * á×ÔĎÍÁÔÉŢĹÓËÉĘ IP: ĹÓĚÉ × ×ÁŰĹĘ ÓĹÔÉ ÉÓĐĎĚŘÚŐŔÔÓŃ ĐŇĎÔĎËĎĚŮ BOOTP "
-#~ "ÉĚÉ DHCP, ×ŮÂĹŇÉÔĹ ÜÔĎÔ ×ÁŇÉÁÎÔ. ĺÓĚÉ ĎÎ ×ŮÂŇÁÎ, ÚÎÁŢĹÎÉĹ, ŐËÁÚÁÎÎĎĹ ×\n"
-#~ " \"IP ÁÄŇĹÓ\" ÂŐÄĹÔ ĐŇĎÉÇÎĎŇÉŇĎ×ÁÎĎ. ĺÓĚÉ ×Ů ÎĹ ÚÎÁĹÔĹ ÉĚÉ ÎĹ Ő×ĹŇĹÎŮ "
-#~ "× ÎĹĎÂČĎÄÉÍĎÓÔÉ ×ŮÂĎŇÁ ÜÔĎÇĎ ×ÁŇÉÁÎÔÁ, ÓĐŇĎÓÉÔĹ ÁÄÍÉÎÉÓÔŇÁÔĎŇÁ ×ÁŰĹĘ ÓĹÔÉ."
+#~ msgid "Change Server options"
+#~ msgstr "óÍĹÎÉÔĹ ĎĐĂÉÉ óĹŇ×ĹŇÁ"
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, ask your network administrator."
-#~ msgstr ""
-#~ "óĹĘŢÁÓ ×Ů ÍĎÖĹÔĹ ××ĹÓÔÉ ÉÍŃ ×ÁŰĹÇĎ ËĎÍĐŘŔÔĹŇÁ, ĹÓĚÉ ÎŐÖÎĎ. ĺÓĚÉ ×Ů ÎĹ "
-#~ "ÚÎÁĹÔĹ ÉĚÉ \n"
-#~ "ÎĹ Ő×ĹŇĹÎŮ × ÔĎÍ, ŢÔĎ ÎŐÖÎĎ ××ĹÓÔÉ, ÓĐŇĎÓÉÔĹ ÁÄÍÉÎÉÓÔŇÁÔĎŇÁ ×ÁŰĹĘ ÓĹÔÉ."
+#~ msgid "Change Resolution"
+#~ msgstr "óÍĹÎÉÔĹ ŇÁÚŇĹŰĹÎÉĹ"
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, leave blank."
-#~ msgstr ""
-#~ "óĹĘŢÁÓ ×Ů ÍĎÖĹÔĹ ××ĹÓÔÉ ÉÍŃ ×ÁŰĹÇĎ ËĎÍĐŘŔÔĹŇÁ, ĹÓĚÉ ÎŐÖÎĎ. ĺÓĚÉ ×Ů ÎĹ "
-#~ "ÚÎÁĹÔĹ\n"
-#~ "ÉĚÉ ÎĹ Ő×ĹŇĹÎŮ × ÔĎÍ, ŢÔĎ ÎŐÖÎĎ ××ĹÓÔÉ, ĎÓÔÁ×ŘÔĹ ĐĎĚĹ ÎĹÚÁĐĎĚÎĹÎÎŮÍ."
+#~ msgid "Show information"
+#~ msgstr "đĎËÁÚÁÔŘ ÉÎĆĎŇÍÁĂÉŔ"
-#~ msgid ""
-#~ "You may now enter dialup options. If you're not sure what to enter, the\n"
-#~ "correct information can be obtained from your ISP."
-#~ msgstr ""
-#~ "ôĹĐĹŇŘ ÍĎÖÎĎ ××ĹÓÔÉ ĐÁŇÁÍĹÔŇŮ ÄĎÚ×ĎÎÁ (dialup). ĺÓĚÉ ×Ů ÎĹ ÚÎÁĹÔĹ, ŢÔĎ "
-#~ "××ĹÓÔÉ, \n"
-#~ "ĐŇÁ×ÉĚŘÎŐŔ ÉÎĆĎŇÍÁĂÉŔ ÍĎÖÎĎ ĐĎĚŐŢÉÔŘ Ő Ó×ĎĹÇĎ ĐŇĎ×ÁĘÄĹŇÁ ÉÎÔĹŇÎĹÔ (ISP)."
+#~ msgid "Test again"
+#~ msgstr "đŇĎ×ĹŇÉÔŘ ÓÎĎ×Á"
-#~ msgid ""
-#~ "If you will use proxies, please configure them now. If you don't know if\n"
-#~ "you should use proxies, ask your network administrator or your ISP."
-#~ msgstr ""
-#~ "ĺÓĚÉ ÂŐÄĹÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ÓĹŇ×ĹŇÁ proxy, ÎÁÓÔŇĎĘÔĹ ÉČ ÓĹĘŢÁÓ. ĺÓĚÉ ÎĹ "
-#~ "ÚÎÁĹÔĹ,\n"
-#~ "ÎŐÖÎĎ ĚÉ ÜÔĎ, ĎÂŇÁÔÉÔĹÓŘ Ë ÁÄÍÉÎÉÓÔŇÁÔĎŇŐ ÓĹÔÉ ÉĚÉ ÉÎÔĹŇÎĹÔ ĐŇĎ×ÁĘÄĹŇŐ."
+#~ msgid "Setting security level"
+#~ msgstr "îÁÓÔŇĎĘËÁ ŐŇĎ×ĹÎŘ ÂĹÚĎĐÁÓÎĎÓÔÉ"
-#~ msgid ""
-#~ "You can install cryptographic package if your internet connection has "
-#~ "been\n"
-#~ "set up correctly. First choose a mirror where you wish to download "
-#~ "packages and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "÷Ů ÍĎÖĹÔĹ ŐÓÔÁÎĎ×ÉÔŘ ĐÁËĹÔ ŰÉĆŇĎ×ÁÎÉŃ, ĹÓĚÉ ×ÁŰĹ ÓĎĹÄÉÎĹÎÉĹ c ÉÎÔĹŇÎĹÔ "
-#~ "ŐÖĹ\n"
-#~ "ĐŇÁ×ÉĚŘÎĎ ÎÁÓÔŇĎĹÎĎ. óÎÁŢÁĚÁ ×ŮÂĹŇÉÔĹ ÓĹŇ×ĹŇ, ĎÔËŐÄÁ ×Ů ČĎÔÉÔĹ ÓËÁŢÁÔŘ "
-#~ "ĐÁËĹÔŮ É \n"
-#~ "ĐĎÔĎÍ ×ŮÂĹŇÉÔĹ ĐÁËĹÔŮ, ËĎÔĎŇŮĹ ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ.\n"
-#~ "\n"
-#~ "\n"
-#~ "éÍĹĘÔĹ ××ÉÄŐ, ŢÔĎ ×ÁÍ ÎŐÖÎĎ ×ŮÂÉŇÁÔŘ ÓĹŇ×ĹŇ É ĐÁËĹÔŮ ŰÉĆŇĎ×ÁÎÉŃ × "
-#~ "ÓĎĎÔ×ĹÔÓÔ×ÉÉ Ó ÚÁËĎÎĎÄÁÔĹĚŘÓÔ×ĎÍ,\n"
-#~ "ÄĹĘÓÔ×ŐŔÝÉÍ × ×ÁŰĹĘ ÓÔŇÁÎĹ."
+#~ msgid "Graphics card"
+#~ msgstr "÷ÉÄĹĎËÁŇÔÁ"
-#~ msgid "You can now select your timezone according to where you live."
-#~ msgstr "óĹĘŢÁÓ ×Ů ÍĎÖĹÔĹ ×ŮÂŇÁÔŘ ŢÁÓĎ×ĎĘ ĐĎŃÓ, × ËĎÔĎŇĎÍ ×Ů ÖÉ×ĹÔĹ."
+#~ msgid "Select a graphics card"
+#~ msgstr "÷ŮÂĹŇÉÔĹ ×ÉÄĹĎËÁŇÔŐ"
-#~ msgid ""
-#~ "You can configure a local printer (connected to your computer) or remote\n"
-#~ "printer (accessible via a Unix, Netware or Microsoft Windows network)."
+#~ msgid "Warning: testing this graphics card may freeze your computer"
#~ msgstr ""
-#~ "óĹĘŢÁÓ ×Ů ÍĎÖĹÔĹ ÎÁÓÔŇĎĘÔŘ ĚĎËÁĚŘÎŮĘ ĐŇÉÎÔĹŇ (ĐĎÄËĚŔŢĹÎÎŮĘ Ë ×ÁŰĹÍŐ "
-#~ "ËĎÍĐŘŔÔĹŇŐ) ÉĚÉ ŐÄÁĚĹÎÎŮĘ ĐŇÉÎÔĹŇ\n"
-#~ " (ÄĎÓÔŐĐÎŮĘ ĐĎ ÓĹÔÉ Unix, Netware ÉĚÉ Microsoft Windows)."
+#~ "đŇĹÄŐĐŇĹÖÄĹÎÉĹ: ÔĹÓÔÉŇĎ×ÁÎÉĹ ÜÔĎĘ ×ÉÄĹĎËÁŇÔŮ ÍĎÖĹÔ ĐŇÉ×ĹÓÔÉ Ë ÚÁ×ÉÓÁÎÉŔ "
+#~ "ËĎÍĐŘŔÔĹŇÁ"
-#~ msgid ""
-#~ "If you wish to be able to print, please choose one printing system "
-#~ "between\n"
-#~ "CUPS and LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS is a new, powerful and flexible printing system for Unix systems "
-#~ "(CUPS\n"
-#~ "means \"Common Unix Printing System\"). It is the default printing system "
-#~ "in\n"
-#~ "Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR is the old printing system used in previous Mandrake Linux "
-#~ "distributions.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you don't have printer, click on \"None\"."
-#~ msgstr ""
-#~ "ĺÓĚÉ ×Ů ČĎÔÉÔĹ ×ŮĐĎĚÎŃÔŘ ĐĹŢÁÔŘ, ×ŮÂĹŇÉÔĹ ÓÉÔĹÍŐ ĐĹŢÁÔÉ - \n"
-#~ "CUPS ÉĚÉ LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS - ÎĎ×ÁŃ, ÍĎÝÎÁŃ É ÇÉÂËÁŃ ÓÉÓÔĹÍÁ ĐĹŢÁÔÉ ÄĚŃ Unix ÓÉÓÔĹÍ (CUPS\n"
-#~ "ĎÚÎÁŢÁĹÔ \"ďÂŮŢÎÁŃ óÉÓÔĹÍÁ đĹŢÁÔÉ Unix\"). üÔÁ ÓÉÓÔĹÍÁ ÉÓĐĎĚŘÚŐĹÔÓŃ ×\n"
-#~ "Mandrake Linux ĐĎ ŐÍĎĚŢÁÎÉŔ.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR - ÓÔÁŇÁŃ ÓÉÓÔĹÍÁ ĐĹŢÁÔÉ, ÉÓĐĎĚŘÚĎ×Á×ŰÁŃÓŃ × ĐŇĹÄŮÄŐÝÉČ ÄÉÓÔŇÉÂŐÔÉ×ÁČ "
-#~ "Mandrake Linux .\n"
-#~ "\n"
-#~ "\n"
-#~ "ĺÓĚÉ Ő ×ÁÓ ÎĹÔ ĐŇÉÎÔĹŇÁ, ×ŮÂĹŇÉÔĹ \"ďÔÓŐÔÓÔ×ŐĹÔ\"."
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "óÔÁÎÄÁŇÔÎŮĘ VGA, 640x480 ĐŇÉ 60 Hz"
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these types "
-#~ "requires\n"
-#~ "a different setup.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select \"Local\n"
-#~ "printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine, select\n"
-#~ "\"Remote printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Microsoft Windows "
-#~ "machine\n"
-#~ "(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
-#~ msgstr ""
-#~ "÷ GNU/Linux ÍĎÖĹÔ ÉÓĐĎĚŘÚĎ×ÁÔŘÓŃ ÍÎĎÇĎ ÔÉĐĎ× ĐŇÉÎÔĹŇĎ×. ëÁÖÄŮĘ ÔÉĐ "
-#~ "ÔŇĹÂŐĹÔ\n"
-#~ "ŇÁÚÎĎĘ ÎÁÓÔŇĎĘËÉ.\n"
-#~ "\n"
-#~ "\n"
-#~ "ĺÓĚÉ ×ÁŰ ĐŇÉÎÔĹŇ ĆÉÚÉŢĹÓËÉ ĐĎÄËĚŔŢĹÎ Ë ×ÁŰĹÍŐ ËĎÍĐŘŔÔĹŇŐ, ×ŮÂĹŇÉÔĹ "
-#~ "\"ěĎËÁĚŘÎŮĘ\n"
-#~ "ĐŇÉÎÔĹŇ\".\n"
-#~ "\n"
-#~ "\n"
-#~ "ĺÓĚÉ ×Ů ČĎÔÉÔĹ ĐĎĚŐŢÉÔŘ ÄĎÓÔŐĐ Ë ĐŇÉÎÔĹŇŐ ÎÁ ŐÄÁĚĹÎÎĎĘ Unix ÍÁŰÉÎĹ, "
-#~ "×ŮÂĹŇÉÔĹ\n"
-#~ "\"őÄÁĚĹÎÎŮĘ ĐŇÉÎÔĹŇ\".\n"
-#~ "\n"
-#~ "\n"
-#~ "ĺÓĚÉ ×Ů ČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ĐŇÉÎÔĹŇ, ĐĎÄËĚŔŢĹÎÎŮĘ Ë ŐÄÁĚĹÎÎĎĘ ÍÁŰÉÎĹ Ó "
-#~ "Microsoft Windows \n"
-#~ "(ÉĚÉ ÍÁŰÉÎĹ Ó Unix, ÉÓĐĎĚŘÚŐŃ SMB ĐŇĎÔĎËĎĚ), ×ŮÂĹŇÉÔĹ \"SMB/Windows 95/98/"
-#~ "NT\"."
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 ĐŇÉ 56 Hz"
-#~ msgid ""
-#~ "Please turn on your printer before continuing to let DrakX detect it.\n"
-#~ "\n"
-#~ "You have to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of printer: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you must have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer a more meaningful name, you "
-#~ "have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Description: this is optional but can be useful if several printers "
-#~ "are connected to your computer or if you allow\n"
-#~ " other computers to access to this printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Location: if you want to put some information on your\n"
-#~ " printer location, put it here (you are free to write what\n"
-#~ " you want, for example \"2nd floor\").\n"
-#~ msgstr ""
-#~ "đĎÖÁĚŐĘÓÔÁ, ĐĹŇĹÄ ĐŇĎÄĎĚÖĹÎÉĹÍ ÎÁÓÔŇĎĘËÉ ×ËĚŔŢÉÔĹ ×ÁŰ ĐŇÉÎÔĹŇ, ŢÔĎÂŮ "
-#~ "DrakX ÓÍĎÇ ĹÇĎ ĎĐŇĹÄĹĚÉÔŘ.\n"
-#~ "\n"
-#~ "óĹĘŢÁÓ ÷ÁÍ ĐĎÔŇĹÂŐĹÔÓŃ ××ĹÓÔÉ ÎĹËĎÔĎŇŐŔ ÉÎĆĎŇÍÁĂÉŔ.\n"
-#~ "\n"
-#~ "\n"
-#~ " * éÍŃ ĐŇÉÎÔĹŇÁ: ÍĹÎĹÄÖĹŇ ĐĹŢÁÔÉ (spooler) \"lp\" ËÁË ÉÍŃ ĐŇÉÎÔĹŇÁ ĐĎ "
-#~ "ŐÍĎĚŢÁÎÉŔ. đĎÜÔĎÍŐ, Ő ×ÁÓ ÄĎĚÖĹÎ ÂŮÔŘ ĐŇÉÎÔĹŇ Ó ÉÍĹÎĹÍ \"lp\".\n"
-#~ " ĺÓĚÉ Ő ×ÁÓ ÔĎĚŘËĎ ĎÄÉÎ ĐŇÉÎÔĹŇ, ×Ů ÍĎÖĹÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ÎĹÓËĎĚŘËĎ "
-#~ "ÉÍĹÎ ÄĚŃ ÎĹÇĎ. ÷Ů ĐŇĎÓÔĎ ÄĎĚÖÎŮ ŇÁÚÄĹĚÉÔŘ ÉČ ÓÉÍ×ĎĚĎÍ\n"
-#~ " \"|\". đĎÜÔĎÍŐ, ĹÓĚÉ ×Ů ĐŇĹÄĐĎŢÉÔÁĹÔĹ ÓÍŮÓĚĎ×ĎĹ ÉÍŃ, ĹÇĎ ÎŐÖÎĎ "
-#~ "ĐĎÍĹÓÔÉÔŘ ĐĹŇ×ŮÍ, ÎÁĐŇÉÍĹŇ: \"íĎĘ ĐŇÉÎÔĹŇ|lp\".\n"
-#~ " đŇÉÎÔĹŇ, ÓĎÄĹŇÖÁÝÉĘ \"lp\" × ÓĎ×ĹÍ ÉÍĹÎÉ ÉĚÉ ÉÍĹÎÁČ, ÂŐÄĹÔ ĐŇÉÎÔĹŇĎÍ "
-#~ "ĐĎ ŐÍĎĚŢÁÎÉŔ.\n"
-#~ "\n"
-#~ "\n"
-#~ " * ďĐÉÓÁÎÉĹ: ÜÔĎ ŐËÁÚŮ×ÁÔŘ ÎĹĎÂŃÚÁÔĹĚŘÎĎ, ÎĎ ÍĎÖĹÔ ĎËÁÚÁÔŘÓŃ ĐĎĚĹÚÎŮÍ "
-#~ "ĹÓĚÉ ÎĹÓËĎĚŘËĎ ĐŇÉÎÔŇĎ× ĐĎÄËĚŔŢĹÎŮ Ë ×ÁŰĹÍŐ ËĎÍĐŘŔÔĹŇŐ ÉĚÉ ĹÓĚÉ ×Ů "
-#~ "ŇÁÚŇĹŰÁĹÔĹ\n"
-#~ " ÄŇŐÇÉÍ ËĎÍĐŘŔÔĹŇÁÍ ÉÓĐĎĚŘÚĎ×ÁÔŘ ×ÁŰ ĐŇÉÎÔĹŇ.\n"
-#~ "\n"
-#~ "\n"
-#~ " * ňÁÓĐĎĚĎÖĹÎÉĹ: ĹÓĚÉ ×Ů ČĎÔÉÔĹ ŐËÁÚÁÔŘ ËÁËŐŔ-ĚÉÂĎ ÉÎĆĎŇÍÁĂÉŔ Ď "
-#~ "ŇÁÓĐĎĚĎÖĹÎÉÉ\n"
-#~ " ×ÁŰĹÇĎ ĐŇÉÎÔĹŇÁ, ÎÁĐÉŰÉÔĹ ĹĹ ÚÄĹÓŘ (ĐÉÓÁÔŘ ÍĎÖĹÔĹ ×ÓĹ, ŢÔĎ ŐÇĎÄÎĎ\n"
-#~ " , ÎÁĐŇÉÍĹŇ \"2ĎĘ ÜÔÁÖ\").\n"
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "óĎ×ÍĹÓÔÉÍÁ Ó 8514, 1024x768 ĐŇÉ 87 Hz ŢŇĹÚ-ÓÔŇĎŢÎŮĘ (ÎĹÔ 800x600)"
-#~ msgid ""
-#~ "You need to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of queue: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you need have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer to have a more meaningful "
-#~ "name, you have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ " \n"
-#~ " * Spool directory: it is in this directory that printing jobs are "
-#~ "stored. Keep the default choice\n"
-#~ " if you don't know what to use\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printer Connection: If your printer is physically connected to your "
-#~ "computer, select \"Local printer\".\n"
-#~ " If you want to access a printer located on a remote Unix machine, "
-#~ "select \"Remote lpd printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to access a printer located on a remote Microsoft "
-#~ "Windows machine (or on Unix machine using SMB\n"
-#~ " protocol), select \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to acces a printer located on NetWare network, select "
-#~ "\"NetWare\".\n"
-#~ msgstr ""
-#~ "óĹĘŢÁÓ ×ÁÍ ĐĎÔŇĹÂŐĹÔÓŃ ××ĹÓÔÉ ÎĹËĎÔĎŇŐŔ ÉÎĆĎŇÍÁĂÉŔ.\n"
-#~ "\n"
-#~ "\n"
-#~ " * éÍŃ ĎŢĹŇĹÄÉ ĐĹŢÁÔÉ: ÍĹÎĹÄÖĹŇ ĐĹŢÁÔÉ ÉÓĐĎĚŘÚŐĹÔ \"lp\" × ËÁŢĹÓÔ×Ĺ "
-#~ "ÉÍĹÎÉ ĐĎ ŐÍĎĚŢÁÎÉŔ. đĎÜÔĎÍŐ Ő ×ÁÓ ÄĎĚÖĹÎ ÂŮÔŘ ĐŇÉÎÔĹŇ Ó ÉÍĹÎÍ \"lp\".\n"
-#~ " ĺÓĚÉ Ő ×ÁÓ ÔĎĚŘËĎ ĎÄÉÎ ĐŇÉÎÔĹŇ, ×Ů ÍĎÖĹÔĹ ÚÁÄÁÔŘ ÄĚŃ ÎĹÇĎ ÎĹÓËĎĚŘËĎ "
-#~ "ÉÍĹÎ. đŇĎÓÔĎ ŇÁÚÄĹĚÉÔĹ ÉÍĹÎÁ ÓÉÍ×ĎĚĎÍ\n"
-#~ " \"|\". ôÁË, ĹÓĚÉ ×Ů ĐŇĹÄĐĎŢÉÔÁĹÔĹ ÂĎĚĹĹ ĎÓÍŮÓĚĹÎÎĎĹ ÉÍŃ, ÔĎ ĐĎÍĹÓÔÉÔĹ "
-#~ "ĹÇĎ ĐĹŇ×ŮÍ, ÎÁĐŇÉÍĹŇ: \"íĎĘ ĐŇÉÎÔĹŇ|lp\".\n"
-#~ " đŇÉÎÔĹŇ, ÓĎÄĹŇÖÁÝÉĘ × ÉÍĹÎÉ ĚÉÂĎ ÉÍĹÎÁČ \"lp\" ÂŐÄĹÔ ĐŇÉÎÔĹŇĎÍ ĐĎ "
-#~ "ŐÍĎĚŢÁÎÉŔ.\n"
-#~ "\n"
-#~ " \n"
-#~ " * ëÁÔÁĚĎÇ ĎŢĹŇĹÄÉ: × ÜÔĎÍ ËÁÔÁĚĎÇĹ ÂŐÄŐÔ ČŇÁÎÉÔŘÓŃ ×ÓĹ ÚÁÄÁÎÉŃ ÎÁ "
-#~ "ĐĹŢÁÔŘ. ďÓÔÁ×ŘÔĹ ×ŮÂĎŇ ĐĎ ŐÍĎĚŢÁÎÉŔ,\n"
-#~ " ĹÓĚÉ ×Ů ÎĹ ÚÎÁĹÔĹ, ËÁËĎĘ ËÁÔÁĚĎÇ ŐËÁÚÁÔŘ\n"
-#~ "\n"
-#~ "\n"
-#~ " * ôÉĐ ĐĎÄËĚŔŢĹÎÉŃ: ĺÓĚÉ ×ÁŰ ĐŇÉÎÔĹŇ ĆÉÚÉŢĹÓËÉ ĐŇÉÓĎĹÄÉÎĹÎ Ë ×ÁŰĹÍŐ "
-#~ "ËĎÍĐŘŔÔĹŇŐ, ×ŮÂĹŇÉÔĹ \"ěĎËÁĚŘÎŮĘ ĐŇÉÎÔĹŇ\".\n"
-#~ " ĺÓĚÉ ×Ů ČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ĐŇÉÎÔĹŇ, ĐĎÄËĚŔŢĹÎÎŮĘ Ë ŐÄÁĚĹÎÎĎĘ Unix "
-#~ "ÍÁŰÉÎĹ, ×ŮÂĹŇÉÔĹ \"őÄÁĚĹÎÎŮĘ lpd ĐŇÉÎÔĹŇ\".\n"
-#~ "\n"
-#~ "\n"
-#~ " ĺÓĚÉ ×Ů ČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ĐŇÉÎÔĹŇ, ĐĎÄËĚŔŢĹÎÎŮĘ Ë ŐÄÁĚĹÎÎĎĘ "
-#~ "Microsoft Windows ÍÁŰÉÎĹ (ÉĚÉ Ë ÍÁŰÉÎĹ Unix ÉÓĐĎĚŘÚŐŔŃ SMB\n"
-#~ " ĐŇĎÔĎËĎĚ), ×ŮÂĹŇÉÔĹ \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " ĺÓĚÉ ×Ů ČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ĐŇÉÎÔĹŇ, ŇÁÓĐĎĚĎÖĹÎÎŮĘ × ĚĎËÁĚŘÎĎĘ ÓĹÔÉ "
-#~ "NetWare, ×ŮÂĹŇÉÔĹ \"NetWare\".\n"
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 ĐŇÉ 87 Hz ŢŇĹÚ-ÓÔŇĎŢÎŮĘ, 800x600 ĐŇÉ 56 Hz"
-#~ msgid ""
-#~ "Your printer has not been detected. Please enter the name of the device "
-#~ "on\n"
-#~ "which it is connected.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, most printers are connected on the first parallel port. "
-#~ "This\n"
-#~ "one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
-#~ "Windows."
-#~ msgstr ""
-#~ "÷ÁŰ ĐŇÉÎÔĹŇ ÎĹ ĎÂÎÁŇŐÖĹÎ. ÷×ĹÄÉÔĹ ÉÍŃ ŐÓÔŇĎĘÓÔ×Á, Ë ËĎÔĎŇĎÍŐ ĎÎ "
-#~ "ĐĎÄËĚŔŢĹÎ\n"
-#~ ".\n"
-#~ "\n"
-#~ "\n"
-#~ "äĚŃ ÓĐŇÁ×ËÉ - ÂĎĚŘŰÉÎÓÔ×Ď ĐŇÉÎÔĹŇĎ× ĐĎÄËĚŔŢÁŔÔÓŃ Ë ĐĹŇ×ĎÍŐ ĐÁŇÁĚĚĹĚŘÎĎÍŐ "
-#~ "ĐĎŇÔŐ. ÷ GNU/Linux\n"
-#~ "ĎÎ ÎÁÚŮ×ÁĹÔÓŃ \"/dev/lp0\", × Microsoft Windows - \"LPT1\" ."
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Extended Super VGA, 800x600 ĐŇÉ 60 Hz, 640x480 ĐŇÉ 72 Hz"
-#~ msgid "You must now select your printer in the above list."
-#~ msgstr "óĹĘŢÁÓ ×ÁÍ ÎŐÖÎĎ ×ŮÂŇÁÔŘ ×ÁŰ ĐŇÉÎÔĹŇ ÉÚ ĐŇÉ×ĹÄĹÎÎĎÇĎ ÓĐÉÓËÁ."
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Non-Interlaced SVGA, 1024x768 ĐŇÉ 60 Hz, 800x600 ĐŇÉ 72 Hz"
-#~ msgid ""
-#~ "Please select the right options according to your printer.\n"
-#~ "Please see its documentation if you don't know what choose here.\n"
-#~ "\n"
-#~ "\n"
-#~ "You will be able to test your configuration in next step and you will be "
-#~ "able to modify it if it doesn't work as you want."
-#~ msgstr ""
-#~ "đĎÖÁĚŐĘÓÔÁ ×ŮÂĹŇÉÔĹ ĐŇÁ×ÉĚŘÎŮĹ ÎÁÓÔŇĎĘËÉ, ÓĎĎÔ×ĹÔÓ×ŐŔÝÉĹ ×ÁŰĹÍŐ "
-#~ "ĐŇÉÎÔĹŇŐ.\n"
-#~ "đĎÖÁĚŐĘÓÔÁ ĐŇĎŢÉÔÁĘÔĹ ÄĎËŐÍĹÎÔÁĂÉŔ ÎÁ ĐŇÉÎÔĹŇ, ĹÓĚÉ ×Ů ÎĹ ÚÁÎĹÔĹ, ŢÔĎ "
-#~ "ŐËÁÚÁÔŘ.\n"
-#~ "\n"
-#~ "\n"
-#~ "ő ×ÁÓ ÂŐÄĹÔ ×ĎÚÍĎÖÎĎÓÔŘ ĐŇĎÔĹÓÔÉŇĎ×ÁÔŘ ×ÁŰÉ ÎÁÓÔŇĎĘËÉ ÎÁ ÓĚĹÄŐŔÝĹÍ ÜÔÁĐĹ "
-#~ "É ×Ů ÓÍĎÖĹÔĹ ÉÚÍĹÎÉÔŘ ÉČ, ĹÓĚÉ ĐŇÉÎÔĹŇ ÂŐÄĹÔ ŇÁÂĎÔÁÔŘ ÎĹËĎŇŇĹËÔÎĎ."
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "SVGA ÷ŮÓĎËĎĘ ţÁÓÔĎÔŮ, 1024x768 ĐŇÉ 70 Hz"
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "óĹĘŢÁÓ ×Ů ÍĎÖĹÔĹ ××ĹÓÔÉ ĐÁŇĎĚŘ ĐĎĚŘÚĎ×ÁÔĹĚŃ root ÄĚŃ ×ÁŰĹĘ Mandrake Linux "
-#~ "ÓÉÓÔĹÍŮ.\n"
-#~ "đÁŇĎĚŘ ÎŐÖÎĎ ××ĹÓÔÉ Ä×ÁÖÄŮ, ŢÔĎÂŮ ŐÂĹÄÉÔŘÓŃ, ŢÔĎ ĎÂÁ ĐÁŇĎĚŃ ÓĎ×ĐÁÄÁŔÔ .\n"
-#~ "\n"
-#~ "\n"
-#~ "đĎĚŘÚĎ×ÁÔĹĚŘ root - ÜÔĎ ÓÉÓÔĹÍÎŮĘ ÁÄÍÉÎÉÓÔŇÁÔĎŇ É ĹÄÉÎÓÔ×ĹÎÎŮĘ "
-#~ "ĐĎĚŘÚĎ×ÁÔĹĚŘ, ËÔĎŇĎÍŐ\n"
-#~ "ŇÁÚŇĹŰĹÎĎ ÉÚÍĹÎŃÔŘ ËĎÎĆÉÇŐŇÁĂÉŔ ÓÉÓÔĹÍŮ. óĚĹÄĎ×ÁÔĹĚŘÎĎ, ×ÎÉÍÁÔĹĚŘÎĎ "
-#~ "×ŮÂÉŇÁĘÔĹ ĐÁŇĎĚŘ. \n"
-#~ "éÓĐĎĚŘÚĎ×ÁÎÉĹ ŐŢĹÔÎĎĘ ÚÁĐÉÓÉ root ĐĎÓÔĎŇĎÎÎÉÍÉ ĚÉĂÁÍÉ ÍĎÖĹÔ ÂŮÔŘ "
-#~ "Ó×ĹŇČĎĐÁÓÎŮÍ ÄĚŃ ĂĹĚĎÓÔÎĎÓÔÉ\n"
-#~ "ÓÉÓÔĹÍŮ, ĹĹ ÄÁÎÎŮČ É ÄŇŐÇÉČ ÓÉÓÔĹÍ, ÓĎĹÄÉÎĹÎÎŮČ Ó ÎĹĘ.\n"
-#~ "\n"
-#~ "\n"
-#~ "đÁŇĎĚŘ ÄĎĚÖĹÎ ÓĎÓÔĎŃÔŘ ÉÚ ÂŐË× É ĂÉĆŇ É ÂŮÔŘ ËÁË ÍÉÎÉÍŐÍ 8\n"
-#~ "ÓÉÍ×ĎĚĎ× ÄĚÉÎÎĎĘ. ĺÇĎ ÎÉËĎÇÄÁ É ÎÉËŐÄÁ ÎĹĚŘÚŃ ÚÁĐÉÓŮ×ÁÔŘ.\n"
-#~ "\n"
-#~ "\n"
-#~ "îĹ ÓÔĎÉÔ ÄĹĚÁÔŘ ĹÇĎ ÓĚÉŰËĎÍ ÄĚÉÎÎŮÍ ÉĚÉ ÓĚĎÖÎŮÍ: ×Ů ÄĎĚÖÎŮ ×ÓĐĎÍÉÎÁÔŘ ĹÇĎ "
-#~ "ÂĹÚ\n"
-#~ "ĎÓĎÂŮČ ŐÓÉĚÉĘ."
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Multi-frequency ÓĐĎÓĎÂÎŮĘ ĐĎÄÄĹŇÖÉ×ÁÔŘ 1280x1024 ĐŇÉ 60 Hz"
-#~ msgid ""
-#~ "You may now create one or more \"regular\" user account(s), as\n"
-#~ "opposed to the \"privileged\" user account, root. You can create\n"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "ôĹĐĹŇŘ ×Ů ÍĎÖĹÔĹ ÓĎÚÄÁÔŘ ĎÄÎŐ ÉĚÉ ÎĹÓËĎĚŘËĎ \"ĎÂŮŢÎŮČ\" ŐŢĹÔÎŮČ ÚÁĐÉÓĹĘ "
-#~ "ÄĚŃ ĐĎĚŘÚĎ×ÁÔĹĚĹĘ\n"
-#~ ", × ĎÔĚÉŢÉĹ ĎÔ \"ĐŇÉ×ÉĚĹÇÉŇĎ×ÁÎÎĎĘ\" ŐŢĹÔÎĎĘ ÚÁĐÉÓÉ root. íĎÖÎĎ\n"
-#~ "ÓĎÚÄÁÔŘ ĎÄÎŐ ÉĚÉ ÎĹÓËĎĚŘËĎ ŐŢĹÔÎŮČ ÚÁĐÉÓĹĘ ÄĚŃ ËÁÖÄĎÇĎ ĐĎĚŘÚĎ×ÁÔĹĚŃ,\n"
-#~ "ËĎÔĎŇŮĘ ÂŐÄĹÔ ŇÁÂĎÔÁÔŘ ÎÁ ËĎÍĐŘŔÔĹŇĹ. äĚŃ ËÁÖÄĎĘ ŐŢĹÔÎĎĘ ÚÁĐÉÓÉ "
-#~ "ĐĎĚŘÚĎ×ÁÔĹĚŃ\n"
-#~ "ÓĎÚÄÁŔÔÓŃ Ó×ĎÉ ÎÁÓÔŇĎĘËÉ (ÇŇÁĆÉŢĹÓËĎĹ ĎËŇŐÖĹÎÉĹ, ÎÁÓÔŇĎĘËÉ ĐŇĎÇŇÁÍÍ, É Ô."
-#~ "Ä.)\n"
-#~ "É Ó×ĎĘ \"ÄĎÍÁŰÎÉĘ ËÁÔÁĚĎÇ\", × ËĎÔĎŇĎÍ ČŇÁÎŃÔÓŃ ÜÔÉ \n"
-#~ "ÎÁÓÔŇĎĘËÉ.\n"
-#~ "\n"
-#~ "\n"
-#~ "đŇĹÖÄĹ ×ÓĹÇĎ ÓĎÚÄÁĘÔĹ ŐŢĹÔÎŐŔ ÚÁĐÉÓŘ ÄĚŃ ÓĹÂŃ! äÁÖĹ ĹÓĚÉ ×Ů ÂŐÄĹÔĹ "
-#~ "ĹÄÉÎÓÔ×ĹÎÎŮÍ\n"
-#~ "ĐĎĚŘÚĎ×ÁÔĹĚĹÍ ÎÁ ÍÁŰÉÎĹ, ÎĹ ÓĚĹÄŐĹÔ ×ČĎÄÉÔŘ ĐĎÄ ÉÍĹÎĹÍ root\n"
-#~ "ÄĚŃ ĐĎ×ÓĹÄÎĹ×ÎĎĘ ŇÁÂĎÔŮ: ÜÔĎ ÓĚÉŰËĎÍ ÂĎĚŘŰÁŃ ŐÇŇĎÚÁ ÂĹÚĎĐÁÓÎĎÓÔÉ. \n"
-#~ "íĎÖÎĎ ŇÁÚŇŐŰÉÔŘ ÓÉÓÔĹÍŐ ĎÂŮŢÎĎĘ ĎĐĹŢÁÔËĎĘ.\n"
-#~ "\n"
-#~ "\n"
-#~ "đĎÜÔĎÍŐ ×ČĎÄÉÔŘ × ÓÉÓÔĹÍŐ ÎÁÄĎ, ÉÓĐĎĚŘÚŐŃ ŐŢĹÔÎŐŔ ÚÁĐÉÓŘ ĎÂŮŢÎĎÇĎ "
-#~ "ĐĎĚŘÚĎ×ÁÔĹĚŃ,\n"
-#~ "ËĎÔĎŇĎÇĎ ×Ů ÓĹĘŢÁÓ É ÓĎÚÄÁÄÉÔĹ, Á ×ČĎÄÉÔŘ ËÁË root ÎÁÄĎ ÔĎĚŘËĎ\n"
-#~ "× ĂĹĚŃČ ÁÄÍÉÎÉÓÔŇÉŇĎ×ÁÎÉŃ É ĎÂÓĚŐÖÉ×ÁÎÉŃ ÓÉÓÔĹÍŮ."
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Multi-frequency ÓĐĎÓĎÂÎŮĘ ĐĎÄÄĹŇÖÉ×ÁÔŘ 1280x1024 ĐŇÉ 74 Hz"
-#~ msgid ""
-#~ "Creating a boot disk is strongly recommended. If you can't\n"
-#~ "boot your computer, it's the only way to rescue your system without\n"
-#~ "reinstalling it."
-#~ msgstr ""
-#~ "îÁÓÔĎŃÔĹĚŘÎĎ ŇĹËĎÍĹÎÄŐĹÔÓŃ ÓĎÚÄÁÔŘ ÚÁÇŇŐÚĎŢÎŐŔ ÄÉÓËĹÔŐ. ĺÓĚÉ ×Ů ÎĹ ÓÍĎÖĹÔ "
-#~ "ÚÁÇŇŐÚÉÔŘ\n"
-#~ "ËĎÍĐŘŔÔĹŇ, ÜÔĎ ÂŐÄĹÔ ĹÄÉÎÓÔ×ĹÎÎŮĘ ÓĐĎÓĎÂĎ ×ĎÓÓÔÁÎĎ×ÉÔŘ ÓÉÓÔĹÍŐ ÂĹÚ "
-#~ "ĐĹŇĹŐÓÔÁÎĎ×ËÉ\n"
-#~ "."
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Multi-frequency ÓĐĎÓĎÂÎŮĘ ĐĎÄÄĹŇÖÉ×ÁÔŘ 1280x1024 ĐŇÉ 76 Hz"
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <number>: use the corresponding text mode.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories\n"
-#~ "stored in \"/tmp\" when you boot your system, select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the\n"
-#~ "BIOS about the amount of RAM present in your computer. As consequence, "
-#~ "Linux may\n"
-#~ "fail to detect your amount of RAM correctly. If this is the case, you "
-#~ "can\n"
-#~ "specify the correct amount or RAM here. Please note that a difference of "
-#~ "2 or 4\n"
-#~ "MB between detected memory and memory present in your system is normal."
-#~ msgstr ""
-#~ "ĎÓÎĎ×ÎŮĹ ĐÁŇÁÍĹÔŇŮ LILO É grub:\n"
-#~ " - úÁÇŇŐÚĎŢÎĎĹ ŐÓÔŇĎĘÓÔ×Ď: őËÁÚŮ×ÁĹÔÓŃ ÉÍŃ ŐÓÔŇĎĘÓÔ×Á (ÎÁĐŇÉÍĹŇ, ŇÁÚÄĹĚ "
-#~ "ÖĹÓÔËĎÇĎ ÄÉÓËÁ,\n"
-#~ "ËĎÔĎŇĎĹ ÓĎÄĹŇÖÉÔ ÚÁÇŇŐÚĎŢÎŮĘ ÓĹËÔĎŇ. ĺÓĚÉ ×Ů ÎĹ ÄĹĚÁĹÔĹ ĎÓĎÚÎÁÎÎĎ ÄŇŐÇĎĘ "
-#~ "×ŮÂĎŇ, ÔĎ\n"
-#~ "×ŮÂÉŇÁĘÔĹ \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - úÁÄĹŇÖËÁ ĐĹŇĹÄ ÚÁÇŇŐÚËĎĘ ĎÂŇÁÚÁ ĐĎ ŐÍĎĚŢÁÎÉŔ: úÁÄÁĹÔ ŢÉÓĚĎ × ÄĹÓŃÔŮČ\n"
-#~ "ÄĎĚŃČ ÓĹËŐÎÄŮ × ÔĹŢĹÎÉĹ ËĎÔĎŇŮČ ÎÁŢÁĚŘÎŮĘ ÚÁÇŇŐÚŢÉË ÖÄĹÔ ĐĹŇĹÄ ÚÁÇŇŐÚËĎĘ "
-#~ "ĐĹŇ×ĎÇĎ ĎÂŇÁÚÁ.\n"
-#~ "üÔĎ ĐĎĚĹÚÎĎ ÄĚŃ ÓÉÓÔĹÍ, ÓŇÁÚŐ ÚÁÇŇŐÖÁĹÍŮČ Ó ÖĹÓÔËĎÇĎ ÄÉÓËÁ ÓŇÁÚŐ ĐĎÓĚĹ\n"
-#~ "×ËĚŔŢĹÎÉŃ ËĚÁ×ÉÁÔŐŇŮ. úÁÇŇŐÚŢÉË ÎĹ ÖÄĹÔ, ĹÓĚÉ \"ÚÁÄĹŇÖËÁ\" \n"
-#~ "ÎĹ ŐÓÔÁÎĎ×ĚĹÎÁ, ÉĚÉ ŇÁ×ÎÁ ÎŐĚŔ."
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Monitor ÓĐĎÓĎÂÎŮĘ ĐĎÄÄĹŇÖÉ×ÁÔŘ 1600x1200 ĐŇÉ 70 Hz"
-#~ msgid ""
-#~ "SILO is a bootloader for SPARC: it is able to boot\n"
-#~ "either GNU/Linux or any other operating system present on your computer.\n"
-#~ "Normally, these other operating systems are correctly detected and\n"
-#~ "installed. If this is not the case, you can add an entry by hand in this\n"
-#~ "screen. Be careful as to choose the correct parameters.\n"
-#~ "\n"
-#~ "\n"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "anyone, in which case you can delete the corresponding entries. But\n"
-#~ "in this case, you will need a boot disk in order to boot them!"
-#~ msgstr ""
-#~ "SILO - ÜÔĎ ÄÉÓĐĹÔŢĹŇ ÚÁÇŇŐÚËÉ ÄĚŃ SPARC: \n"
-#~ "ĎÎ ÓĐĎÓĎÂĹÎ ÚÁÇŇŐÚÉÔŘ GNU/Linux ÉĚÉ ĚŔÂŐŔ ÄŇŐÇŐŔ ďó, ŐÓÔÁÎĎ×ĚĹÎÎŐŔ ÎÁ "
-#~ "ÍÁŰÉÎĹ.\n"
-#~ "ďÂŮŢÎĎ ÜÔÉ ÄŇŐÇÉĹ ĎĐĹŇÁĂÉĎÎÎŮĹ ÓÉÓÔĹÍŮ ËĎŇŇĹËÔÎĎ ŇÁÓĐĎÚÎÁŔÔÓŃ É "
-#~ "ŐÓÔÁÎÁ×ĚÉ×ÁŔÔÓŃ.\n"
-#~ "ĺÓĚÉ ÜÔĎÇĎ ÎĹ ĐŇĎÉÚĎŰĚĎ, ×Ů ÍĎÖĹÔĹ ÄĎÂÁ×ÉÔŘ ĐŐÎËÔ ×ŇŐŢÎŐŔ ÎÁ ÜÔĎÍ "
-#~ "ÜËŇÁÎĹ.\n"
-#~ "âŐÄŘÔĹ ×ÎÉÍÁÔĹĚŘÎŮ ĐŇÉ ÚÁÄÁÎÉÉ ĐÁŇÁÍĹÔŇĎ×.\n"
-#~ "\n"
-#~ "\n"
-#~ "÷ĎÚÍĎÖÎĎ ÔÁËÖĹ, ŢÔĎ ×Ů ÎĹ ČĎÔÉÔĹ ÎÉËĎÍŐ ÄÁ×ÁÔŘ ÄĎÓÔŐĐ Ë ÜÔÉÍ ďó, × ÔÁËĎÍ "
-#~ "ÓĚŐŢÁĹ ÍĎÖÎĎ ŐÄÁĚÉÔŘ ÓĎĎÔ×ĹÔÓÔ×ŐŔÝÉĹ ĐŐÎËÔŮ. îĎ × ÜÔĎÍ ÓĚŐŢÁĹ ÄĚŃ ÉČ "
-#~ "ÚÁÇŇŐÚËÉ ĐĎÔŇĹÂŐĹÔÓŃ ÚÁÇŇŐÚĎŢÎÁŃ ÄÉÓËĹÔÁ!"
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Monitor ÓĐĎÓĎÂÎŮĘ ĐĎÄÄĹŇÖÉ×ÁÔŘ 1600x1200 ĐŇÉ 76 Hz"
#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ "ĎÓÎĎ×ÎŮĹ ĐÁŇÁÍĹÔŇŮ SILO:\n"
-#~ " - őÓÔÁÎĎ×ËÁ ÚÁÇŇŐÚŢÉËÁ: őËÁÖÉÔĹ, ÇÄĹ ×Ů ČĎÔÉÔĹ ŇÁÚÍĹÓÔÉÔŘ ÉÎĆĎŇÍÁĂÉŔ,\n"
-#~ "ÎĹĎÂČĎÄÉÍŐŔ ÄĚŃ ÚÁÇŇŐÚËÉ GNU/Linux. ĺÓĚÉ ÎĹ ÚÎÁĹÔĹ ÔĎŢÎĎ, ŢÔĎ ÄĹĚÁĹÔĹ,\n"
-#~ "×ŮÂÉŇÁĘÔĹ \"đĹŇ×ŮĘ ÓĹËÔĎŇ ŐÓÔŇĎĘÓÔ×Á (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - úÁÄĹŇÖËÁ ĐĹŇĹÄ ÚÁÇŇŐÚËĎĘ ĎÂŇÁÚÁ ĐĎ ŐÍĎĚŢÁÎÉŔ: úÁÄÁĹÔ ŢÉÓĚĎ × ÄĹÓŃÔŮČ\n"
-#~ "ÄĎĚŃČ ÓĹËŐÎÄŮ × ÔĹŢĹÎÉĹ ËĎÔĎŇŮČ ÚÁÇŇŐÚŢÉË ÖÄĹÔ ĐĹŇĹÄ ÚÁÇŇŐÚËĎĘ ĐĹŇ×ĎÇĎ "
-#~ "ĎÂŇÁÚÁ.\n"
-#~ "üÔĎ ĐĎĚĹÚÎĎ ÄĚŃ ÓÉÓÔĹÍ, ÚÁÇŇŐÖÁĹÍŮČ Ó ÖĹÓÔËĎÇĎ ÄÉÓËÁ ÓŇÁÚŐ ĐĎÓĚĹ\n"
-#~ "×ËĚŔŢĹÎÉŃ ËĚÁ×ÉÁÔŐŇŮ. úÁÇŇŐÚŢÉË ÎĹ ÖÄĹÔ, ĹÓĚÉ \"ÚÁÄĹŇÖËÁ\" \n"
-#~ "ÎĹ ŐËÁÚÁÎÁ ÉĚÉ ŇÁ×ÎÁ ÎŐĚŔ."
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "ďÂÝÉĘ ĎÂßĹÍ ÄĚŃ ×ŮÂŇÁÎÎŮČ ×ÁÍÉ ÇŇŐĐĐ ÓĎÓÔÁ×ĚŃĹÔ ĐŇÉÍĹŇÎĎ %d MB.\n"
#~ msgid ""
-#~ "Now it's time to configure the X Window System, which is the\n"
-#~ "core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
-#~ "ôĹĐĹŇŘ ÎŐÖÎĎ ÎÁÓÔŇĎÉÔŘ X Window System, ËĎÔĎŇÁŃ Ń×ĚŃĹÔÓŃ\n"
-#~ "ĎÓÎĎ×ĎĘ GNU/Linux GUI (çŇÁĆÉŢĹÓËÉĘ đĎĚŘÚĎ×ÁÔĹĚŘÓËÉĘ éÎÔĹŇĆĹĘÓ). äĚŃ ÜÔĎĘ\n"
-#~ "ĂĹĚÉ ÎÁÄĎ ÎÁÓÔŇĎÉÔŘ ×ÉÄĹĎËÁŇÔŐ É ÍĎÎÉÔĎŇ. âĎĚŘŰÁŃ ŢÁÓÔŘ ÜÔÉČ ŰÁÇĎ×\n"
-#~ "Á×ÔĎÍÁÔÉÚÉŇĎ×ÁÎÁ, ÔÁË ŢÔĎ ×ÁŰÁ ŇÁÂĎÔÁ ÍĎÖĹÔ Ó×ĹÓÔÉÓŘ Ë ĐŇĎ×ĹŇËĹ\n"
-#~ "ŇĹÚŐĚŘÔÁÔĎ× ÎÁÓÔŇĎĘËÉ É ĐĎÄÔ×ĹŇÖÄĹÎÉŔ ×ŮÂŇÁÎÎŮČ ŐÓÔÁÎĎ×ĎË :)\n"
-#~ "\n"
+#~ "ĺÓĚÉ ×Ů ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ ĎÂßĹÍ, ÍĹÎŘŰÉĘ ŢĹÍ ÜÔĎÔ, ŐËÁÖÉÔĹ ĐŇĎĂĹÎÔ \n"
+#~ "ĐÁËĹÔĎ×, ËĎÔĎŇŮĹ ×Ů ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ.\n"
#~ "\n"
-#~ "ëĎÇÄÁ ËĎÎĆÉÇŐŇÉŇĎ×ÁÎÉĹ ÚÁ×ĹŇŰÉÔÓŃ, ÂŐÄĹÔ ÚÁĐŐÝĹÎ X (ĹÓĚÉ ×Ů ÎĹ\n"
-#~ "ĐĎĐŇĎÓÉÔĹ DrakX ÎĹ ÄĹĚÁÔŘ ÜÔĎÇĎ) ŢÔĎÂŮ ×Ů ÍĎÇĚÉ ĐŇĎ×ĹŇÉÔŘ, ŐÓÔŇÁÉ×ÁŔÔ\n"
-#~ "ĚÉ ×ÁÓ ŐÓÔÁÎĎ×ËÉ. ĺÓĚÉ ÎĹÔ, ×Ů ÍĎÖĹÔĹ ×ĹŇÎŐÔŘÓŃ É ÉÚÍĹÎŃÔŘ ÉČ\n"
-#~ "ÓËĎĚŘËĎ ×ÁÍ ŐÇĎÄÎĎ."
+#~ "đŇÉ ÎÉÚËÉČ ĐŇĎĂĹÎÔÁČ ŐÓÔÁÎĎ×ŃÔÓŃ ÔĎĚŘËĎ ÎÁÉÂĎĚĹĹ ×ÁÖÎŮĹ ĐÁËĹÔŮ;\n"
+#~ "ŐËÁÚÁÎÉĹ 100%% ĐŇÉ×ĹÄĹÔ Ë ŐÓÔÁÎĎ×ËĹ ×ÓĹČ ×ŮÂŇÁÎÎŮČ ĐÁËĹÔĎ×."
#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ "ĺÓĚÉ ŢÔĎ ÔĎ ÎĹ × ĐĎŇŃÄËĹ Ó ÎÁÓÔŇĎĘËĎĘ X, ÉÓĐĎĚŘÚŐĘÔĹ ÜÔÉ ĐÁŇÁÍĹÔŇŮ ÄĚŃ\n"
-#~ "ËĎŇŇĹËÔÎĎĘ ÎÁÓÔŇĎĘËÉ X Window System."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "ĺÓĚÉ ×Ů ĐŇĹÄĐĎŢÉÔÁĹÔĹ ÇŇÁĆÉŢĹÓËÉĘ ×ČĎÄ (login), ÷ŮÂĹŇÉÔĹ \"äÁ\". éÎÁŢĹ "
-#~ "- \n"
-#~ "\"îĹÔ\"."
-
-#~ msgid ""
-#~ "You can choose a security level for your system. Please refer to the "
-#~ "manual for complete\n"
-#~ " information. Basically, if you don't know what to choose, keep the "
-#~ "default option.\n"
-#~ msgstr ""
-#~ "÷Ů ÍĎÖĹÔĹ ×ŮÂŇÁÔŘ ŐŇĎ×ĹÎŘ ÂĹÚĎĐÁÓÎĎÓÔÉ ÄĚŃ ×ÁŰĹĘ ÓÉÓÔĹÍŮ. đĎÄŇĎÂÎŐŔ "
-#~ "ÉÎĆĎŇÍÁĂÉŔ ÍĎÖÎĎ\n"
-#~ " ÎÁĘÔÉ × ŇŐËĎ×ĎÄÓÔ×Ĺ. ëÁË ĎÂŮŢÎĎ, ĹÓĚÉ ×Ů ÎĹ ÚÎÁĹÔĹ, ŢÔĎ ×ŮÂŇÁÔŘ, "
-#~ "ĎÓÔÁ×ŘÔĹ ŐÓÔÁÎĎ×ËÉ ĐĎ ŐÍĎĚŢÁÎÉŔ.\n"
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
+#~ "You have space on your disk for only %d%% of these packages.\n"
#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
#~ msgstr ""
-#~ "óÉÓÔĹÍÁ ÓĎÂÉŇÁĹÔÓŃ ĐĹŇĹÚÁÇŇŐÚÉÔŘÓŃ.\n"
+#~ "ő ×ÁÓ ĹÓÔŘ ÍĹÓÔĎ ÎÁ ÄÉÓËĹ ÔĎĚŘËĎ ÄĚŃ %d%% ÉÚ ÜÔÉČ ĐÁËĹÔĎ×.\n"
#~ "\n"
-#~ "đĎÓĚĹ ĐĹŇĹÚÁÇŇŐÚËÉ, ×ÁŰÁ ÎĎ×ÁŃ ÓÉÓÔĹÍÁ Mandrake Linux ÚÁÇŇŐÚÉÔÓŃ "
-#~ "Á×ÔĎÍÁÔÉŢĹÓËÉ.\n"
-#~ "ĺÓĚÉ ČĎÔÉÔĹ ÚÁÇŇŐÚÉÔŘ ÄŇŐÇŐŔ ĎĐĹŇÁĂÉĎÎÎŐŔ ÓÉÓÔĹÍŐ, ŢÉÔÁĘÔĹ \n"
-#~ "ÄĎĐĎĚÎÉÔĹĚŘÎŮĹ ÉÎÓÔŇŐËĂÉÉ."
-
-#~ msgid "Czech (Programmers)"
-#~ msgstr "ţĹŰÓËÉĘ (đŇĎÇŇÁÍÍÉÓÔŮ)"
-
-#~ msgid "Slovakian (Programmers)"
-#~ msgstr "óĚĎ×ÁĂËÉĘ (đŇĎÇŇÁÍÍÉÓÔŮ)"
-
-#~ msgid "Name of the profile to create:"
-#~ msgstr "éÍŃ ÓĎÚÄÁ×ÁĹÍĎÇĎ ĐŇĎĆÉĚŃ:"
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "úÁĐÉÓÁÔŘ /etc/fstab"
-
-#~ msgid "Format all"
-#~ msgstr "ćĎŇÍÁÔÉŇĎ×ÁÔŘ ×ÓĹ"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "đĎÓĚĹ ĆĎŇÍÁÔÉŇĎ×ÁÎÉŃ ×ÓĹČ ŇÁÚÄĹĚĎ×,"
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "×ÓĹ ÄÁÎÎŮĹ × ÜÔÉČ ŇÁÚÄĹĚÁČ ÂŐÄŐÔ ĐĎÔĹŇŃÎŮ"
-
-#~ msgid "Reload"
-#~ msgstr "đĹŇĹÚÁÇŇŐÚÉÔŘ"
-
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr ""
-#~ "čĎÔÉÔĹ ÓÇĹÎĹŇÉŇĎ×ÁÔŘ ÓÁÍĎ-ŐÓÔÁÎÁ×ĚÉ×ÁŔÝŐŔÓŃ ÄÉÓËĹÔŐ ÄĚŃ ËĚĎÎÉŇĎ×ÁÎÉŃ "
-#~ "linux?"
-
-#~ msgid "ADSL configuration"
-#~ msgstr "îÁÓÔŇĎĘËÁ ADSL"
-
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ "ó ŐÄÁĚĹÎÎŮÍ ÓĹŇ×ĹŇĎÍ ĐĹŢÁÔÉ CUPS, ×ÁÍ ÎĹ ÎŐÖÎĎ ÚÄĹÓŘ ÎÁÓÔŇÁÉ×ÁÔŘ\n"
-#~ "ÎÉËÁËÉČ ĐŇÉÎÔĹŇĎ×; ĐŇÉÎÔĹŇŮ ÂŐÄŐÔ ĎÂÎÁŇŐÖĹÎŮ Á×ÔĎÍÁÔÉŢĹÓËÉ,\n"
-#~ "ĹÓĚÉ ÔĎĚŘËĎ ×ÁŰ ÓĹŇ×ĹŇ ÎĹ ÎÁČĎÄÉÔÓŃ × ÄŇŐÇĎĘ ÓĹÔÉ; × ĐĎÓĚĹÄÎĹÍ ÓĚŐŢÁĹ\n"
-#~ ", ×ÁÍ ÎŐÖÎĎ ŐËÁÚÁÔŘ IP ÁÄŇĹÓ ÓĹŇ×ĹŇÁ CUPS \n"
-#~ "É, ×ĎÚÍĎÖÎĎ, ÎĎÍĹŇ ĐĎŇÔÁ."
-
-#, fuzzy
-#~ msgid "Remote queue name missing!"
-#~ msgstr "őÄÁĚĹÎÎÁŃ ĎŢĹŇĹÄŘ"
-
-#, fuzzy
-#~ msgid "Command line"
-#~ msgstr "éÍŃ ÄĎÍĹÎÁ"
-
-#, fuzzy
-#~ msgid "Modify printer"
-#~ msgstr "îĹÔ ĐŇÉÎÔĹŇÁ"
-
-#~ msgid "Network Monitoring"
-#~ msgstr "íĎÎÉÔĎŇÉÎÇ ÓĹÔÉ"
-
-#~ msgid "Profile "
-#~ msgstr "đŇĎĆÉĚŘ "
-
-#~ msgid "Statistics"
-#~ msgstr "óÔÁÔÉÓÔÉËÁ"
-
-#~ msgid "Sending Speed:"
-#~ msgstr "óËĎŇĎÓÔŘ ĎÔĐŇÁ×ËÉ: "
-
-#~ msgid "Receiving Speed:"
-#~ msgstr "óËĎŇĎÓÔŘ ĐĎĚŐŢĹÎÉŃ: "
-
-#, fuzzy
-#~ msgid "Connection Time: "
-#~ msgstr "ôÉĐ ÓĎĹÄÉÎĹÎÉŃ: "
-
-#~ msgid "Connecting to Internet "
-#~ msgstr "óĎĹÄÉÎŃĹÍÓŃ Ó ÉÎÔĹŇÎĹÔ "
-
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "ďÔÓĎĹÄÉÎŃĹÍÓŃ ĎÔ ÉÎÔĹŇÎĹÔ "
-
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "ďŰÉÂËÁ ĎÔÓĎĹÄÉÎÉÎĹÎÉŃ ĎÔ ÉÎÔĹŇÎĹÔ."
-
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "ďÔÓĎĹÄÉÎĹÎÉĹ ĎÔ ÉÎÔĹŇÎĹÔ ÚÁ×ĹŇŰĹÎĎ."
-
-#~ msgid "Connection complete."
-#~ msgstr "óĎĹÄÉÎĹÎÉĹ ÚÁ×ĹŇŰĹÎĎ."
-
-#~ msgid ""
-#~ "Connection failed.\n"
-#~ "Verify your configuration in the Mandrake Control Center."
-#~ msgstr ""
-#~ "ďŰÉÂËÁ ÓĎĹÄÉĹÎÉŃ.\n"
-#~ "đŇĎ×ĹŇŘÔĹ ×ÁŰÉ ÎÁÓÔŇĎĘËÉ × ĐÁÎĹĚÉ ŐĐŇÁ×ĚĹÎÉŃ Mandrake."
-
-#~ msgid "sent: "
-#~ msgstr "ĎÔĐŇÁ×ĚĹÎĎ: "
-
-#~ msgid "received: "
-#~ msgstr "ĐĎĚŐŢĹÎĎ: "
-
-#~ msgid "Default Runlevel"
-#~ msgstr "RunLevel ĐĎ ŐÍĎĚŢÁÎÉŔ"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "îĹ ŐÄÁĹÔÓŃ ĎÂŇÁÂĎÔÁÔŘ ÓĎÄĹŇÖÉÍĎĹ ĆÁĘĚÁ ÎÁÓÔŇĎĹË."
-
-#~ msgid "Unrecognized config file"
-#~ msgstr "îĹŇÁÓĐĎÚÎÁÎÎŮĘ ĆÁĘĚ ÎÁÓÔŇĎĹË"
-
-#~ msgid "Adapter"
-#~ msgstr "áÄÁĐÔĹŇ"
-
-#, fuzzy
-#~ msgid "Disable network"
-#~ msgstr "÷ŮËĚŔŢÉÔŘ"
-
-#, fuzzy
-#~ msgid "Enable network"
-#~ msgstr "÷ËĚŔŢÉÔŘ"
-
-#~ msgid ""
-#~ "You can now test your mouse. Use buttons and wheel to verify\n"
-#~ "if settings are good. If not, you can click on \"Cancel\" to choose "
-#~ "another\n"
-#~ "driver."
-#~ msgstr ""
-#~ "óĹĘŢÁÓ ×Ů ÍĎÖĹÔĹ ĐŇĎ×ĹŇÉÔŘ ×ÁŰŐ ÍŮŰŘ. éÓĐĎĚŘÚŐĘÔĹ ËÎĎĐËÉ É ËĎĚĹÓÉËĎ ÄĚŃ "
-#~ "ĐŇĎ×ĹŇËÉ\n"
-#~ "ĐŇÁ×ÉĚŘÎĎÓÔÉ ÎÁÓÔŇĎĹË. ĺÓĚÉ ĎÎÉ ÎĹ ×ĹŇÎŮ, ÎÁÖÍÉÔĹ ÎÁ \"ďÔÍĹÎÁ\" ÄĚŃ "
-#~ "×ŮÂĎŇÁ\n"
-#~ "ÄŇŐÇĎÇĎ ÄŇÁĘ×ĹŇÁ."
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "DSL (ÉĚÉ ADSL) ÓĎĹÄÉÎĹÎÉĹ"
-
-#, fuzzy
-#~ msgid "Choose"
-#~ msgstr "úÁËŇŮÔŘ"
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr "÷Ů ÍĎÖĹÔĹ ÎÁĐŇŃÍŐŔ ŐËÁÚÁÔŘ ÁÄŇĹÓ ÄĚŃ ÉÓĐĎĚŘÚĎ×ÁÎÉŃ ĐŇÉÎÔĹŇÁ × CUPS."
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "äÁ, ÎÁĐĹŢÁÔÁÔŘ ĐŇĎÂÎŐŔ ÓÔŇÁÎÉĂŐ ÔĹËÓÔÁ ASCII"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "äÁ, ÎÁĐĹŢÁÔÁÔŘ ĐŇĎÂÎŐŔ ÓÔŇÁÎÉĂŐ ÔĹËÓÔÁ PostScript"
-
-#~ msgid "Paper Size"
-#~ msgstr "ňÁÚÍĹŇ ÂŐÍÁÇÉ"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "őÄÁĚŃÔŘ ÂŐÍÁÇŐ ĐĎÓĚĹ ĐĹŢÁÔÉ?"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "đÁŇÁÍĹÔŇŮ ÄŇÁĘ×ĹŇÁ Uniprint"
-
-#~ msgid "Color depth options"
-#~ msgstr "đÁŇÁÍĹÔŇŮ ÇĚŐÂÉÎŮ Ă×ĹÔÁ"
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "đĹŢÁÔÁÔŘ ÔĹËÓÔ ËÁË PostScript"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "éÓĐŇÁ×ĚŃÔŘ \"ÓÔŐĐĹÎŢÁÔŐŔ ĐĹŢÁÔŘ\"?"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "ëĎĚÉŢĹÓÔ×Ď ÓÔŇÁÎÉĂ ÎÁ ĚÉÓÔĹ"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "đŇÁ×ĎĹ/ěĹ×ĎĹ ĐĎĚĹ × ĐŐÎËÔÁČ (1/72 ÄŔĘÍÁ)"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "÷ĹŇČÎĹĹ/îÉÖÎĹĹ ĐĎĚĹ × ĐŐÎËÔÁČ (1/72 ÄŔĘÍÁ)"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "äĎĐĎĚÎÉÔĹĚŘÎŮĹ ĐÁŇÁÍĹÔŇŮ ÄĚŃ GhostScript"
-
-#~ msgid "Extra Text options"
-#~ msgstr "äĎĐĎĚÎÉÔĹĚŘÎŮĹ ĐÁŇÁÍĹÔŇŮ ÄĚŃ ÔĹËÓÔÁ"
-
-#~ msgid "Reverse page order"
-#~ msgstr "ďÂŇÁÔÎŮĘ ĐĎŇŃÄĎË ÓÔŇÁÎÉĂ"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "÷ŮÂĎŇ ÔÉĐÁ ŐÄÁĚĹÎÎĎÇĎ ĐĎÄËĚŔŢĹÎÉŃ ĐŇÉÎÔĹŇÁ"
-
-#~ msgid ""
-#~ "Every printer need a name (for example lp).\n"
-#~ "Other parameters such as the description of the printer or its location\n"
-#~ "can be defined. What name should be used for this printer and\n"
-#~ "how is the printer connected?"
-#~ msgstr ""
-#~ "ëÁÖÄĎÍŐ ĐŇÉÎÔĹŇŐ ÔŇĹÂŐĹÔÓŃ ÉÍŃ (ÎÁĐŇÉÍĹŇ, lp).\n"
-#~ "äĎĐĎĚÎÉÔĹĚŘÎŮĹ ĐÁŇÁÍĹÔŇŮ, ÔÁËÉĹ ËÁË ĎĐÉÓÁÎÉĹ ĐŇÉÎÔĹŇÁ É ĹÇĎ "
-#~ "ÍĹÓÔĎÎÁČĎÖÄĹÎÉŃ\n"
-#~ "ÔÁË ÖĹ ÍĎÇŐÔ ÂŮÔŘ ÚÁÄÁÎŮ. ëÁËĎĹ ÉÍŃ ÂŐÄĹÔ ÉÓĐĎĚŘÚĎ×ÁÎĎ ÄĚŃ ÄÁÎÎĎÇĎ "
-#~ "ĐŇÉÎÔĹŇÁ É\n"
-#~ "ËÁË ĎÎ ĐĎÄÓĎĹÄÉÎĹÎ?"
-
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a\n"
-#~ "name (often lp) and a spool directory associated with it. What\n"
-#~ "name and directory should be used for this queue and how is the printer "
-#~ "connected?"
-#~ msgstr ""
-#~ "ëÁÖÄÁŃ ĎŢĹŇĹÄŘ ĐĹŢÁÔÉ, × ËĎÔĎŇŐŔ ĐĎÍĹÝÁŔÔÓŃ ÚÁÄÁÎÉŃ ÄĚŃ ĐĹŢÁÔÉ, ÔŇĹÂŐĹÔ "
-#~ "ŐËÁÚÁÎÉŃ ÉÍĹÎÉ (ĎÂŮŢÎĎ lp) É Ó×ŃÚÁÎÎĎÇĎ Ó ÎĹĘ ËÁÔÁĚĎÇÁ ĎŢĹŇĹÄÉ ĐĹŢÁÔÉ. "
-#~ "őËÁÖÉÔĹ ÉÍŃ É ËÁÔÁĚĎÇ ĎŢĹŇĹÄÉ ĐĹŢÁÔÉ, Á ÔÁËÖĹ ÓĐĎÓĎÂ, ËĎÔĎŇŮÍ ĐĎÄÓĎĹÄÉĹÎ "
-#~ "ĐŇÉÎÔĹŇ?"
-
-#~ msgid "Name of queue"
-#~ msgstr "éÍŃ ĎŢĹŇĹÄÉ"
-
-#~ msgid "Spool directory"
-#~ msgstr "ëÁÔÁĚĎÇ spool"
-
-#, fuzzy
-#~ msgid "fsck failed: "
-#~ msgstr "ĎŰÉÂËÁ ÍĎÎÔÉŇĎ×ÁÎÉŃ: "
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ msgstr ""
-#~ "ţÔĎÂŮ ĐĎ×ŮÓÉÔŘ ÂĹÚĎĐÁÓÎĎÓÔŘ ÓÉÓÔĹÍŮ, ÎÁÄĎ ×ŮÂŇÁÔŘ \"éÓĐĎĚŘÚĎ×ÁÔŘ ÓËŇŮÔŮĘ "
-#~ "ĆÁĘĚ\" \n"
-#~ "É \"éÓĐĎĚŘÚĎ×ÁÔŘ ĐÁŇĎĚÉ MD5\"."
-
-#~ msgid ""
-#~ "If your network uses NIS, select \"Use NIS\". If you don't know, ask "
-#~ "your\n"
-#~ "network administrator."
-#~ msgstr ""
-#~ "ĺÓĚÉ × ×ÁŰĹĘ ÓĹÔÉ ÉÓĐĎĚŘÚŐĹÔÓŃ NIS, ×ŮÂĹŇÉÔĹ \"éÓĐĎĚŘÚĎ×ÁÔŘ NIS\". ĺÓĚÉ \n"
-#~ "ÎĹ ÚÎÁĹÔĹ, ÓĐŇĎÓÉÔĹ ÁÄÍÉÎÉÓÔŇÁÔĎŇÁ ÓĹÔÉ."
-
-#~ msgid "yellow pages"
-#~ msgstr "ÖĹĚÔŮĹ ÓÔŇÁÎÉĂŮ"
+#~ "ĺÓĚÉ ×Ů ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ ÍĹÎŘŰĹ, ŢĹÍ ÜÔĎ, ŐËÁÖÉÔĹ × ĐŇĎĂĹÎÔÁČ ÄĎĚŔ,\n"
+#~ "ĐÁËĹÔĎ×, ËĎÔĎŇŮĹ ×Ů ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ.\n"
+#~ "đŇÉ ÎÉÚËÉČ ĐŇĎĂĹÎÔÁČ ŐÓÔÁÎĎ×ŃÔÓŃ ÔĎĚŘËĎ ÎÁÉÂĎĚĹĹ ×ÁÖÎŮĹ ĐÁËĹÔŮ;\n"
+#~ "ŐËÁÚÁÎÉĹ %d%% ĐŇÉ×ĹÄĹÔ Ë ŐÓÔÁÎĎ×ËĹ ÎÁÉÂĎĚŘŰĹÇĎ ×ĎÚÍĎÖÎĎÇĎ ŢÉÓĚÁ ĐÁËĹÔĎ×."
-#~ msgid "Provider dns 1"
-#~ msgstr "áÄŇĹÓ ĐĹŇ×ĎÇĎ DNS ÓĹŇ×ĹŇÁ ĐŇĎ×ÁĘÄĹŇÁ"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "âĎĚĹĹ ÔĎŢÎŮĘ ÉČ ×ŮÂĎŇ ÍĎÖÎĎ ÂŐÄĹÔ ÓÄĹĚÁÔŘ ÎÁ ÓĚĹÄŐŔÝĹÍ ŰÁÇĹ."
-#~ msgid "Provider dns 2"
-#~ msgstr "áÄŇĹÓ ×ÔĎŇĎÇĎ DNS ÓĹŇ×ĹŇÁ ĐŇĎ×ÁĘÄĹŇÁ"
+#~ msgid "Percentage of packages to install"
+#~ msgstr "đŇĎĂĹÎÔ ĐÁËĹÔĎ× ÄĚŃ ŐÓÔÁÎĎ×ËÉ"
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr "ëÁË ×Ů ČĎÔÉÔĹ ĐĎÄÓĎĹÄÉÎÉÔŘÓŃ Ë éÎÔĹŇÎĹÔ?"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "őŇĎ×ĹÎŘ ÂĹÚĎĐÁÓÎĎÓÔÉ"
diff --git a/perl-install/share/po/sk.po b/perl-install/share/po/sk.po
index 62d13d0af..fa76f3cd8 100644
--- a/perl-install/share/po/sk.po
+++ b/perl-install/share/po/sk.po
@@ -2,36 +2,67 @@
# Copyright (C) 1999 Mandrakesoft
# Jan Matis <damned@hq.alert.sk>, 2000
# Pavol Cvengros <orpheus@hq.alert.sk>, 2000
-#
+#
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-02-17 23:14+0100\n"
-"Last-Translator: Jan Matis <matis@hq.alert.sk>\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2002-07-24 10:56+0100\n"
+"Last-Translator: Pavol Cvengros <orpheus@hq.alert.sk>\n"
"Language-Team: sk <i18n@hq.alert.sk>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Nastaviť všetky hlavy osobitne"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Použiť Xinerama rozšírenie"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Nastaviť iba kartu \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB a viac"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Zvoľte X server"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X server"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Nastavenie \"viac-hláv\""
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -39,43 +70,44 @@ msgstr ""
"Váš systém podporuje nastevenie pre \"viac hláv\".\n"
"Čo chcete spraviť?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Grafická karta"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Zvoľte veľkosť pamäti na grafickej karte"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Zvoľte grafickú kartu"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "XFree konfigurácia"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Zvoľte X server"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Akú konfiguráciu XFree chcete mať?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X server"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Nastaviť všetky hlavy osobitne"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Zvoľte X server"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Použiť Xinerama rozšírenie"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X server"
+#: ../../Xconfig/card.pm_.c:379
+#, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Nastaviť iba kartu \"%s\"%s"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree86 %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Akú konfiguráciu XFree chcete mať?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s s 3D hardwerovou akceleráciou"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -84,33 +116,17 @@ msgstr ""
"Vaša karta má podporu hardwarovej 3D akcelerácie ale iba v XFree %s.\n"
"Vaša karta je podporovaná XFree %s, ktoré majú lepšiu podporuj v 2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Vaša karta má podporu hardwarovej 3D akcelerácie v XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s s 3D hardwerovou akceleráciou"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Vaša karta má podporu hardwarovej 3D akcelerácie ale iba v XFree %s.\n"
-"POZOR, TÁTO PODPORA JE IBA EXPERIMENTÁLNA A MOŽE SPOSOBIŤ ZAMRZNUTIE "
-"POČÍTAČA."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s s EXPERIMENTÁLNOU 3D akceleráciou"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -122,31 +138,58 @@ msgstr ""
"POČÍTAČA.\n"
"Vaša karta je podporovaná XFree %s, ktoré majú lepšiu podporuj v 2D."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Vaša karta má podporu hardwarovej 3D akcelerácie ale iba v XFree %s.\n"
+"POZOR, TÁTO PODPORA JE IBA EXPERIMENTÁLNA A MOŽE SPOSOBIŤ ZAMRZNUTIE "
+"POČÍTAČA."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (ovládač obrazovky pre inštaláciu)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree konfigurácia"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Zvoľte veľkosť grafickej pamäti"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Zvoľte parametre servra"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Zachovať zmeny?\n"
+"Aktuálna konfigurácia je:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Zvoľte monitor"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Vlastný výber"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Všeobecné"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+msgid "Vendor"
+msgstr "Vendor"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -166,512 +209,327 @@ msgstr ""
"schopnosti vášho monitora. Mohol by sa poškodiť.\n"
"Ak ste si nie celkom istý, zvoľte radšej slabšie nastavenie."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Horizontálna frekvencia"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Vertikálna frekvencia"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Nie je nastavený monitor"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Nie je nastavená grafická karta"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Nie sú nastavené grafické rozlíšenia"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Otestovať konfiguráciu?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-"Varovanie: Testovanie tejto grafickej karty môže spôsobiť zamrznutie systému"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Test konfigurácie"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 farieb (8 bit)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"skúste zmeniť niektoré parametre"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 tisíc farieb (15 bit)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Vyskytla sa chyba"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 tisíc farieb (16 bit)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Návrat za %d sekúnd"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 miliónov farieb (24 bit)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Je toto správne nastavenie?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 miliardy farieb (32 bit)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Vyskytla sa chyba, skúste zmeniť niektoré parametre"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Rozlíšenia"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Rozlíšenie"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Zvoľte rozlíšenie a farebnú hĺbku"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Grafická karta: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 server: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Viac"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Zruš"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Expertný mód"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Zobraz všetko"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Otestovať konfiguráciu?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Rozlíšenia"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Test konfigurácie"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Nastavenie klávesnice: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Typ myši: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Port myši: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Horizontálna frekvencia monitoru: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Vertikálna frekvencia monitoru: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Grafická karta: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Identifikácia Grafickej karty: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Grafická pamäť: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Farebná hĺbka: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Rozlíšenie: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 server: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 ovládač: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Pripravujem konfiguráciu X-Windows"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Čo chcete robiť?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Zmeň monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Zmeň grafickú kartu"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Zmeň parametre servra"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Zmeň rozlíšenie"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Zobraz informácie"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Skús znova"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Koniec"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Zachovať zmeny?\n"
-"Aktuálna konfigurácia je:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X pri štarte"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
+#, fuzzy
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Môžem nastaviť váš počítač aby po reštarte automaticky spúšťal X.\n"
"Chcete mať spustené X-Windows po reštarte počítača?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Prosím, prihláste sa znova do %s aby ste aktivovali zmeny"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Prosím, odhláste sa a potom stlačte Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 farieb (8 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 tisíc farieb (15 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 tisíc farieb (16 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 miliónov farieb (24 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 miliardy farieb (32 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB a viac"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Štandardná VGA, 640×480 @ 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800×600 @ 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 kompatibilná, 1024×768 @ 87 Hz prekladane (nie je 800×600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024×768 @ 87 Hz prekladane, 800×600 @ 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Rozšírená Super VGA, 800×600 @ 60 Hz, 640×480 @ 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Neprekladaná SVGA, 1024×768 @ 60 Hz, 800×600 @ 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Vysoko frekvenčná SVGA, 1024×768 @ 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Monitor, ktorý dokáže 1280×1024 @ 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Monitor, ktorý dokáže 1280×1024 @ 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Monitor, ktorý dokáže 1280×1024 @ 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor, ktorý dokáže 1600×1200 @ 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor, ktorý dokáže 1600×1200 @ 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Prvý sektor zavádzacieho oddielu"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Prvý sektor disku (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "Inštalácia SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Kam si želáte nainštalovať zavádzač?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "Inštalácia lilo/grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO s textovym menu"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO s grafickým menu"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Štart z DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Hlavné parametre zavádzača"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Použiť zavádzač"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Inštalácia zavádzača"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Boot zariadenie"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (nepracuje správne so staršími BIOSmi)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Kompaktná"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "kompaktná"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Video mód"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Pauza pred štartom predvoleného jadra"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Heslo"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Heslo (znovu)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Obmedz voľby príkazového riadku"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "obmedz"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Vyčistiť /tmp pri každom štarte"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Presná veľkosť pamäti (našiel som %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Dovoliť multi profily"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Zadajte veľkosť pamäti v Mb"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Parameter ``Restrict command line options'' je bez použitia hesla vypnutý"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Prosím skúste znovu"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Heslo nesúhlasí"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Inicializačná správa"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Open Firmware Delay"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Oneskorenie pre štart kernelu"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Povoliť štart z CD?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Povoliť štart z OF?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Predvolený OS?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -680,83 +538,84 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
+#, fuzzy
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Momentálne sa tu nachádzajú tieto záznamy.\n"
"Môžete pridávať ďalšie, alebo meniť existujúce."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Pridaj"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Hotovo"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Modifikovať"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Aký typ záznamu chcete pridať"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Iný OS (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Iný OS (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Iný OS (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Obraz"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Pridaj"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Čítanie/Zápis"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabuľka"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Nie celkom bezpečný"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Záznam"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Predvoľba"
@@ -788,53 +647,75 @@ msgstr "Musíte nastaviť koreňový oddiel"
msgid "This label is already used"
msgstr "Tento záznam je už použitý"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Našiel som %s %s rozhranie"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Máte ešte nejaké ďalšie?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Máte nejaké %s rozhranie?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Nie"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Áno"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Prezrite si informácie o technických prostriedkoch"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Inštalujem ovládač pre %s kartu %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, fuzzy, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Teraz môžete zadať parametre pre modul %s.\n"
+"Parametre sú vo formáte ``meno=hodnota meno2=hodnota2 ...''.\n"
+"Napríklad: ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Parametre modulu:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Ktorý %s ovládač mám skúsiť?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -851,37 +732,15 @@ msgstr ""
"stane, že toto testovanie počítač zablokuje, ale nemalo by spôsobiť žiadnu "
"škodu."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Automatické zistenie"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Zadajte voľby"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Teraz môžete zadať parametre pre modul %s.\n"
-"Parametre sú vo formáte ``meno=hodnota meno2=hodnota2 ...''.\n"
-"Napríklad: ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Parametre modulu:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -890,49 +749,53 @@ msgstr ""
"Nahrávanie modulu %s zlyhalo.\n"
"Chcete sa o to pokúsiť znova s inými parametrami?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "prístup ku X programom"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "prístup ku rpm nástrojom"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "dovoliť \"su\""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "prístup ku konfiguračným súborom"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(už pridaný %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Toto heslo je príliš jednoduché"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Prosím zadajte užívateľské meno"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Užívateľské meno môže obsahovať len malé písmená, číslice, `-' a `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+msgid "The user name is too long"
+msgstr "Uživateľské meno je prísliš dlhé"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Takýto užívateľ je už pridaný"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Pridaj užívateľa"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -941,32 +804,32 @@ msgstr ""
"Zadajte užívateľa\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Akceptuj užívateľa"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Reálne meno"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Užívateľské meno"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Ikona"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -974,118 +837,98 @@ msgstr ""
"Môžem nastaviť váš počítač, aby sa po reštarte automaticky prihlásil\n"
"jeden užívateľ. Želáte si túto možnosť?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Zvoľte predvoleného uživateľa:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Vyberte si window manažéra:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Prosím, zvoľte jazyk, ktorý chcete používať."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr "Môžete zvoliť ďalšie jazyky použiteľné po inštalácii"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Všetko"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Dovoľ všetkým užívateľom"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Vlastný výber"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "Bez zdielania"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Je potrebné inštalovať balík %s. Súhlasíte ?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+#, fuzzy
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Zdielanie môže byť cez Sambu alebo NFS. Ktoré si želáte ?"
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Chýba povinný balík %s"
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Zruš"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
-msgstr ""
+msgstr "Sousti userdrake"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Žiadna"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Veľmi slabá"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Štandardné"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Vysoká"
-#: ../../any.pm_.c:1039
-#, fuzzy
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
-msgstr "Vysoká"
+msgstr "Vyššia"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoidná"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1095,7 +938,7 @@ msgstr ""
"ale nemal by byť pripojený k iným počítačom, alebo k internetu. Nie sú\n"
"totiž používané žiadne heslá."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1103,7 +946,7 @@ msgstr ""
"Je nastavené používanie hesiel, ale použitie tohoto počítača v sieti nemôžem "
"doporučiť."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1112,52 +955,53 @@ msgstr ""
"Toto je štandardná úroveň bezpečnosti pre počítač, ktorý je používaný\n"
"pre pripojenie k internetu ako klient."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"S touto úrovňou bezpečnosti sa stáva systém použiteľný ako sieťový server."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Založené na predošlej úrovni, ale systém je úplne uzavretý.\n"
"Bezpečnosť je na najvyššej možnej úrovni."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Voľba bezpečnostnej úrovne"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Úroveň bezpečnosti"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Použi libsafe pre servre"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Knižnica, ktorá bráni proti útokom typu buffer overflow a format string."
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr "Bezpečnostný administrátor (prihlasovacie meno alebo email)"
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1174,52 +1018,52 @@ 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_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Vitajte v zavadzaci operacneho systemu GRUB"
#. -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_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Pouzite klavesy %c a %c pre oznacenie zaznamu zviraznenim"
#. -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_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Stlacte enter pre zavedenie oznaceneho OS, 'e' pre upravu"
#. -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_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "prikazov pred zavedenim, alebo 'c' pre prikazovy riadok"
#. -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_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Oznaceny OS bude zavedeny za %d sekund."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "nie je dosť miesta v /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Štart menu"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Na oddiel %s nemôžete nainštalovať zavádzač\n"
@@ -1232,15 +1076,19 @@ msgstr "pomoc zatiaľ nebola implementovaná.\n"
msgid "Boot Style Configuration"
msgstr "Konfigurácia štýlu štartovania"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Súbory"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Súbor/_Koniec"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>K"
@@ -1273,16 +1121,16 @@ msgid "Yaboot mode"
msgstr "Yaboot mód"
#: ../../bootlook.pm_.c:104
-#, c-format
+#, fuzzy, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Momentálne používate %s ako štartovací manažér.\n"
"Kliknite na Konfigurácia pre spustenie sprievodcu nastavením."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Konfigurácia"
@@ -1292,7 +1140,8 @@ msgid "System mode"
msgstr "Mód systému"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+#, fuzzy
+msgid "Launch the graphical environment when your system starts"
msgstr "Spustiť X-Window systém pri štarte"
#: ../../bootlook.pm_.c:148
@@ -1303,14 +1152,16 @@ msgstr "Nie, nechcem automatické prihlásenie"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Áno, chcem automatické prihlásenie s (uživateľ, desktop)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "OK"
@@ -1358,7 +1209,7 @@ msgstr "Nemôžem robiť kópie obrazovky pred rozdelením disku"
msgid "Screenshots will be available after install in %s"
msgstr "Kópie obrazovky budú po inštalácii dostupné v %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Francúzsko"
@@ -1366,7 +1217,7 @@ msgstr "Francúzsko"
msgid "Costa Rica"
msgstr "Kostarika"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Belgicko"
@@ -1390,11 +1241,12 @@ msgstr "Nórsko"
msgid "Sweden"
msgstr "Švédsko"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Holandsko"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "Taliansko"
@@ -1402,7 +1254,7 @@ msgstr "Taliansko"
msgid "Austria"
msgstr "Rakúsko"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "Spojené štáty"
@@ -1410,8 +1262,8 @@ msgstr "Spojené štáty"
msgid "Please make a backup of your data first"
msgstr "Prosím, najprv si za zálohujte vaše dáta"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Čítajte pozorne!"
@@ -1425,11 +1277,12 @@ msgstr ""
"miesta.\n"
"(2048 sektorov bude stačiť)"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Chyba"
@@ -1437,11 +1290,11 @@ msgstr "Chyba"
msgid "Wizard"
msgstr "Sprievodca"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Zvoľ akciu"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1453,77 +1306,77 @@ msgstr ""
"Navrhujem zmeniť jeho veľkosť\n"
"(kliknite naň, potom kliknite na \"Zmeň veľkosť\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Prosím kliknite na oddiel"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Detaily"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "Žurnálovací súborový systém"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Prázdna"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Iná"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Typ súborového systému:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Vytvor"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Typ"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Namiesto toho použite `%s''"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Zruš"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Najprv spravte `Unmount''"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1531,67 +1384,72 @@ msgstr ""
"Po zmene diskovej oblasti %s budú všetky dáta na tejto oblasti nenávratne "
"stratené"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Zvoľte oddiel"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Zvoľte iný oddiel"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Koniec"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Prepni do expert módu"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Prepni do normálneho módu"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Späť"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Pokračovať?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Koniec bez uloženia"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Koniec bez zmeny partition tabuľky?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "Želáte si uložiť zmeny do /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Automaticky prerozdeľ"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Zmaž všetko"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Viac"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "Informácie o pevnom disku"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Všetky primárne oddiely sú už použité"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Nemôžem pridať ďalší oddiel"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1599,31 +1457,31 @@ msgstr ""
"Ak chcete mať viac diskových oddielov, tak zmažte jeden z nich, aby sa dal "
"vytvoriť rozšírený oddiel disku"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "Ulož tabuľku rozdelenia disku"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "Obnov tabuľku rozdelenia disku"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Obnoviť tabuľku rozdelenia disku"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "Znovunačítať tabuľku rozdelenia disku"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "Automatické pripojenie vymeniteľného média"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Vyber súbor"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1631,11 +1489,11 @@ msgstr ""
"Záložná tabuľka rozdelenia disku nemá rovnakú veľkosť\n"
"Naozaj pokračovať?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Varovanie"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1643,122 +1501,129 @@ msgstr ""
"Vložte disketu do mechaniky\n"
"Všetky dáta na tejto diskete budú nenávratne stratené"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Pokúšam sa obnoviť partition tabuľku"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Detailné informácie"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Bod pripojenia"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Parametre"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Zmeň veľkosť"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Presuň"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formát"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Pripoj"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Pridaj do RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Pridaj do LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Odpoj"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Odober z RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Odober z LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Modifikuj RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Použi loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Vytvor nový oddiel"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Počiatočný sektor:"
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Veľkosť v MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Typ súborového systému: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Bod pripojenia: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Preferencia: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+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/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "Odstrániť loopback súbor?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Zvoľte typ oddielu"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Aký typ súborového systému chcete??"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Prepínam z ext2 na ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Kam si želáte pripojiť loopback súbor %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Kam si želáte pripojiť zariadenie %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1766,125 +1631,130 @@ msgstr ""
"Nemôžem odpojiť oddiel kým je používaný nejakou spätnou slučkou.\n"
"Odstráňte najskôr spätnú slučku"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Počítam hranice FAT súborového systému"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Mením veľkosť"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Tomuto oddielu sa nedá meniť veľkosť?"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Všetky dáta na tejto oblasti by sa mali zazálohovať"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Po zmene veľkosti oddielu %s budú všetky dáta nenávratne stratené"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Zvolte novú veľkosť"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Nová veľkosť v MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Ktorý disk si želáte posunúť?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Ktorý sektor si želáte posunúť?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Presúvam"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Presúvam oddiel..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Vyberte existujúci RAID pre pridanie"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "nový"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Vyberte existujúci LVM pre pridanie"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "LVM meno?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Tento oddiel nemôže byť použitý pre spätnú slučku"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Spätná slučka"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Meno súboru spätnej slučky: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Zadajte meno súboru"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Súbor je už používaný inou spätnou slučkou, skúste iný súbor"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Súbor existuje. Použiť?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Parametre pripojenia"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Rozdielne"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "zariadenie"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "úroveň"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "veľkosť"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Buďte opatrní: táto operácia je nebezpečná."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Aký typ rozdelenia oddielov?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Je potrebný balík %s. Mám ho nainštalovať?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1896,7 +1766,7 @@ msgstr ""
")Používate LILO a tým pádom to nebude pracovať, alebo ho nepoužívate a tým "
"pádom nepotrebujete /boot"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1907,7 +1777,7 @@ msgstr ""
"valcom 1024, a nemáte zadefinovaný oddiel /boot. \n"
"Ak plánujete použiť LILO, prosím pridajte najprv oddiel /boot"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1917,129 +1787,129 @@ msgstr ""
"Žiaden zavádzač systému nedokáže zaviesť systém bez /boot oddielu.\n"
"Preto dbajte na pridanie /boot oddielu"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Partition tabuľka zariadenia %s sa zapíše na disk!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Aby sa úpravy prejavili, musíte reštartovať počítač"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Ak naformátujete oddiel %s,všetky predošlé dáta sa na ňom stratia"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Formátuje sa"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formátuje sa loopback súbor %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Formátuje sa oddiel %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Skryté súbory"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Prenes súbory na nový oddiel"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"Adresár %s už obsahuje nejaké dáta\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "Prenos súborov na nový oddiel"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Kopírujem %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Odstraňujem %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "oddiel %s sa teraz volá %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Zariadenie:"
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Označenie v DOSe: %s (asi)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Typ: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Meno: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Začiatok: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Veľkosť: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sektorov"
-#: ../../diskdrake/interactive.pm_.c:1057
-#, fuzzy, c-format
+#: ../../diskdrake/interactive.pm_.c:1100
+#, c-format
msgid "Cylinder %d to %d\n"
-msgstr "Od cylindra %d po cylinder %d\n"
+msgstr "Cylinder %d po %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Naformátované\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Nenaformátované\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Pripojené\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2048,7 +1918,7 @@ msgstr ""
"Loopback súbor(y):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2056,27 +1926,27 @@ msgstr ""
"Predvolený oddiel pre štart\n"
" (MS-DOS boot, nie pre lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Hladina %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Veľkosť kúsku %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-disky %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Meno loopback súboru: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2088,7 +1958,7 @@ msgstr ""
"ovládaci oddiel, mali by ste\n"
"ho nechcať samotný.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2100,64 +1970,64 @@ msgstr ""
"oddiel je pre\n"
"duálne štartovanie systému.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Veľkosť: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometria: %s cylindrov, %s hlavičiek, %s sektorov\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Info:"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-disky %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Typ partition tabuľky: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
-msgid "on bus %d id %d\n"
-msgstr "na zbernici %d id %d\n"
+msgid "on channel %d id %d\n"
+msgstr "na kanály %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Možnosti: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "Kryptovací kľúč súborového systému"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "Zvoľte kryptovací kľúč súborového systému"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Tento kryptovací kľúč je príliš jednoduchý (musí byť minimálne %d znakov "
"dlhé)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "kryptovacie kľúče nesúhlasia"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "Kryptovací kľúč"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "Kryptovací kľúč (znovu)"
@@ -2166,36 +2036,60 @@ msgid "Change type"
msgstr "Zmeňte typ"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Prosím kliknite na médium"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-#, fuzzy
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+msgid "Domain Authentication Required"
+msgstr "Požadovaná doménova autentifikácia"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Another one"
+msgstr "Iný"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Which username"
+msgstr "Ktoré užívateľské meno"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+msgid "Username"
+msgstr "Užívateľské meno"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+msgid "Domain"
+msgstr "Doména"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
-msgstr "DNS server"
+msgstr "Vyhľadaj servre"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formátovanie %s zlyhalo"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Nedokážem formátovať %s na typ %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck zlyhalo s exit kódom %d alebo signálom %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "chyba odpojenia %s: %s"
@@ -2206,75 +2100,315 @@ msgstr "jednoduché"
#: ../../fsedit.pm_.c:25
msgid "with /usr"
-msgstr ""
+msgstr "s /usr"
#: ../../fsedit.pm_.c:30
msgid "server"
msgstr "server"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Na oddiely menšie ako 16MB nemôžete použiť JFS"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Na oddiely menšie ako 32MB nemôžete použiť ReiserFS"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Body pripojenia musia začínať /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Oddiel s bodom pripojenia %s už existuje\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Nemôžete použiť logický zväzok LVM pre bod pripojenia %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Tento adresár by mal ostať na rootovskom súborovom systéme"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Pre tento bod pripojenia potrebujete ozajstný súborový systém(ext2, "
"reiserfs)\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Nemôžete použiť kryptovaný súborový systém pre bod pripojenia %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "Nedostatok miesta pre automatickú alokáciu"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr "Nerobiť nič"
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Chyba otvárania %s pre zápis: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
+#, fuzzy
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Vyskytla sa chyba - neboli nájdené žiadne platné zariadenia, na ktorých je "
"možné vytvoriť nové súborové systémy. Skontrolujte váš hardvér pre zistenie "
"príčiny problému."
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Nemáte žiadny oddiel disku!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+msgid "Auto-detect"
+msgstr "Auto-detekcia"
+
+#: ../../harddrake/bttv.pm_.c:64
+msgid "Unknown|Generic"
+msgstr "Neznáme|Všeobecné"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+msgid "Card model :"
+msgstr "Model karty :"
+
+#: ../../harddrake/bttv.pm_.c:197
+msgid "PLL setting :"
+msgstr "PLL nastavenie :"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+msgid "Tuner type :"
+msgstr "Typ tuneru :"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr "Podpora pre rádia:"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr "povoliť podporu pre rádia"
+
+#: ../../harddrake/ui.pm_.c:12
+msgid "/_Quit"
+msgstr "/_Koniec"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Pomoc"
+
+#: ../../harddrake/ui.pm_.c:14
+msgid "/_Help..."
+msgstr "/_Pomoc..."
+
+#: ../../harddrake/ui.pm_.c:15
+msgid "/_About..."
+msgstr "/_O aplikácii..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Modul"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Model karty :"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Zruš"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr "Zbernica"
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "Module"
+msgstr "Modul"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Popis"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+msgid "Bus identification"
+msgstr "Identifikácia zbernice"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr "Pozícia na zbernici"
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Vyber súbor"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Zariadenie smerujúce k bráne"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 tlačidlá"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+msgid "Harddrake2 version "
+msgstr "Harddrake2 verzia"
+
+#: ../../harddrake/ui.pm_.c:122
+msgid "Detected hardware"
+msgstr "Nájdeny hardware"
+
+#: ../../harddrake/ui.pm_.c:136
+msgid "Informations"
+msgstr "Informácie"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr "Spustiť konfiguráciu"
+
+#: ../../harddrake/ui.pm_.c:158
+msgid "Configure module"
+msgstr "Konfigurácia modulu"
+
+#: ../../harddrake/ui.pm_.c:168
+msgid "Detection in progress"
+msgstr "Prebieha detekcia"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Prosím čakajte"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr "primárne"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "secondary"
+msgstr "sekundárny"
+
+#: ../../harddrake/ui.pm_.c:260
+#, c-format
+msgid "Running \"%s\" ..."
+msgstr "Spúšťam \"%s\" ..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr "O Harddrake"
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+"Toto je HardDrake, konfiguračný nástroj pre hardware od Mandrake.\n"
+"Verzia:"
+
+#: ../../harddrake/ui.pm_.c:281
+msgid "Author:"
+msgstr "Autor:"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr "Harddrake pomoc"
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2288,7 +2422,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2359,9 +2493,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2550,7 +2683,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2562,9 +2695,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2611,21 +2743,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2641,9 +2772,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Teraz môžete zvoliť, kam si želáte inštalovať Linux Mandrake.\n"
"Ak je pevný disk prázdny, alebo ak iný operačný systém zaberá\n"
@@ -2676,9 +2807,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -2778,6 +2908,7 @@ msgid ""
msgstr ""
#: ../../help.pm_.c:425
+#, fuzzy
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -2825,38 +2956,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -2931,11 +3056,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -2992,7 +3117,7 @@ msgstr ""
"úroveň inštalácie pokiaľ sa v \n"
" GNU/Linux-e naozaj nevyznáte."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3007,7 +3132,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3022,7 +3147,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3038,7 +3163,7 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3046,23 +3171,23 @@ msgstr ""
"Prosím zvoľte správny port. Napríklad COM1 pod MS Windows sa v\n"
"GNU/Linux nazýva ttyS0."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3084,7 +3209,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3106,7 +3231,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3114,7 +3239,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3135,7 +3260,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3148,7 +3273,7 @@ msgid ""
"you will need a boot disk in order to boot those other operating systems!"
msgstr ""
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3160,29 +3285,28 @@ msgstr ""
"systému.\n"
"Pokiaľ presne neviete čo robiť zvoľte \"Prvý sektor disku (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3191,7 +3315,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
#, fuzzy
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
@@ -3217,7 +3341,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"DrakX sa pokúsi vyhľadať PCI SCSI radiče. Ak DrakX nájde SCSI\n"
@@ -3234,7 +3358,7 @@ msgstr ""
"špecifikovať jeho parametre. Taktiež budete musieť dovoliť test hardvéru\n"
"na funkčnosť ovládača a jeho parametrov."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3244,9 +3368,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3258,7 +3381,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" 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"
@@ -3284,7 +3407,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3311,18 +3434,17 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3330,12 +3452,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3351,14 +3472,14 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3369,7 +3490,7 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3377,12 +3498,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr "Taktiež musíte naformátovať %s"
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3408,20 +3529,20 @@ msgstr ""
"\n"
"Naozaj si želáte inštalovať tieto služby?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "Nemôžem použiť broadcast bez NIS domény"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Vložte disketu s FAT formátom do mechaniky %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Táto disketa nemá FAT format"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3429,7 +3550,7 @@ msgstr ""
"Pre použitie tohto uloženého výberu balíčkov, naštartujte inštaláciu s "
"``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "chyba pri čítaní zo súboru %s"
@@ -3458,8 +3579,9 @@ msgid "You must have a swap partition"
msgstr "Musíte nastaviť swap oddiel"
#: ../../install_interactive.pm_.c:64
+#, fuzzy
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -3467,59 +3589,59 @@ msgstr ""
"\n"
"Napriek tomu pokračovať?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Musíte mať FAT oddiel pripojený na /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Použi voľné miesto"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Nedostatok voľného miesta pre vytvorenie nového oddielu"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
-msgstr "Použi existujúci oddiel"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
+msgstr "Použiť existujúce oddiely"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Tu nieje žiadny použiteľný oddiel"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Použi oddiel s Windows pre loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Ktorý oddiel chcete použiť pre Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Zvoľte veľkosti"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Veľkosť koreňového oddielu v MB: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Veľkosť oddielu v MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Použi voľné miesto na Windows oddiele"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Ktorému oddielu chcete zmeniť veľkosť?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
-msgstr "Počítam hranice súborového systému pre Windows"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
+msgstr "Zmeniť veľkosť Windows oddielu"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -3528,13 +3650,16 @@ msgstr ""
"Menič veľkosti FAT nebol schopny pracovať s oddielom, \n"
"nastala chyba: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"Vaš oddiel s Windows je veľmi fragmentovaný, prosím spustite najprv "
"``defrag''"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -3553,54 +3678,56 @@ msgstr ""
"Bolo by tiež vhodné zazálohovať vaše dáta. \n"
"Ak viete čo robíte, stlačte Ok."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+#, fuzzy
+msgid "Which size do you want to keep for Windows on"
msgstr "Koľko chcete nechať pre windows"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "oddiel %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Neúspešná zmena veľkosti FAT: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
+#, fuzzy
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Nieje tu oddiel FAT, ktorému by sa dala zmeniť veľkosť alebo použiť ho pre "
"loopback (alebo tam nieje dostatok voľného miesta)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Vymaž celý disk"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Odstrániť Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Máte viac ako jeden disk, na ktorý chcete inštalovať linux ?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Všetky oddiely a dáta na nich budu stratené na disku %s"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Vlastné rozdelenie disku"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Použiť fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -3609,11 +3736,11 @@ msgstr ""
"Teraz môžete rozdeliť váš pevný disk %s.\n"
"Keď skončíte, nezabudnite uložiť zmeny pomocou `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Nemáte dostatok voľného miesta na oddiele s Windows"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Nemôžem nájsť miesto pre inštaláciu"
@@ -3621,16 +3748,16 @@ msgstr "Nemôžem nájsť miesto pre inštaláciu"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX sprievodca rozdelením disku našiel tieto riešenia:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Neúspešne rozdeľovanie: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Spúšťam prácu so sieťou"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Ukončujem prácu so sieťou"
@@ -3642,12 +3769,12 @@ msgstr ""
"Vyskytla sa chyba a neviem ju úplne vyriešiť.\n"
"Pokračujte na vlastnú zodpovednosť."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Dvojnásobný bod pripojenia %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3658,12 +3785,12 @@ msgstr ""
"Je možné, že sú poškodené váš CD disk alebo mechanika.\n"
"Skontrolujte to napríklad použitím \"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Vitajte v %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Nie je dostupná žiadna floppy mechanika"
@@ -3673,9 +3800,10 @@ msgstr "Nie je dostupná žiadna floppy mechanika"
msgid "Entering step `%s'\n"
msgstr "Spúšťam krok %s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
+#, fuzzy
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -3685,198 +3813,154 @@ msgstr ""
"jej\n"
"spustenie stlačte `F1' po naštartovaní z CDROMky a zadajte `text'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Trieda inštalácie"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr "Prosím, zvoľte jednu z nasledujúcich tried inštalácie: "
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Celková veľkosť skupín, ktoré ste označili je približne %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Ak si želáte inštalovať menej ako je dané číslo,\n"
-"zvoľte toľko percent balíkov, koľko uznáte za vhodné.\n"
-"\n"
-"Pri malých percentách sa budú inštalovať iba naozaj dôležité balíky\n"
-"a ak zvolíte 100%% nainštaluje sa všetko."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Na disku máte priestor iba pre %d%% z označených balíkov.\n"
-"\n"
-"Ak si želáte nainštalovať menej,\n"
-"zvoľte toľko percent balíkov, koľko uznáte za vhodné.\n"
-"Pri malých percentách sa budú inštalovať iba naozaj dôležité balíky\n"
-"Ak necháte %d%% nainštaluje sa toľko balíkov, koľko bude možné."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "V ďalšom kroku budete mať možnosť nastaviť presnejšie"
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Percentuálny počet balíkov pre inštaláciu"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Výber skupín balíkov"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Osobitná voľba balíkov"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Celková veľkosť: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Chybný balík"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Meno: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Verzia: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Veľkosť: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Dôležité: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Nemôžete označiť tento balík pretože na jeho inštaláciu nie je dosť miesta."
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Budú nainštalované nasledujúce balíky"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Nasledujúce balíky budú odstránené"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Môžete označiť/odznačiť tento balík"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Toto je jeden zo základných balíkov, nemôže byť odznačený"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Nemôžete odznačiť tento balík. Je už nainštalovaný"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
+#, fuzzy
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Tento balík potrebuje novšiu verziu\n"
"Ste si istý, že ho chcete odznačiť?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Nemôžete odznačiť tento balík. Musíte pridať novú verziu"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Zobraz automaticky zvolené balíčky"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Inštalácia"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Nahrať/Uložiť na disketu"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "Aktualizácia voľby balíčkov"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "Minimálna inštalácia"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Zvoľte balíky, ktoré chcete nainštalovať"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Inštalujem"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Odhadujem"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Zvyšný čas "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
-msgstr "Prosím čakajte, pripravujem inštaláciu"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
+msgstr "Prosím čakajte, pripravujem inštaláciu..."
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d balíky"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Inštalujem balík %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Akceptuj"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Odmietni"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -3890,17 +3974,17 @@ msgstr ""
"Prosím, vložte CD-ROM nazvané \"%s\" do vašej mechaniky a zvoľte OK.\n"
"Ak taký CD disk nemáte, zvoľte Zruš pre zrušenie inštalácie z tohoto disku."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Napriek tomu pokračovať?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Chyba pri zoraďovaní zoznamu balíkov:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Počas inštalácie balíkov sa vyskytla chyba:"
@@ -3944,11 +4028,12 @@ msgstr "Vyskytla sa chyba"
msgid "Do you really want to leave the installation?"
msgstr "Naozaj chcete ukončiť inštaláciu?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Súhlas s licenciou"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
+#, fuzzy
msgid ""
"Introduction\n"
"\n"
@@ -3963,7 +4048,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"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 "
@@ -4186,109 +4271,113 @@ msgstr ""
"Paris - France.\n"
"For any question on this document, please contact MandrakeSoft S.A. \n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr "Ste si istý že nesúhlasíte s licenciou?"
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Klávesnica"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "Prosím, zvoľte typ vašej klávesnice."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Tu je zoznam dostupných klávesnic"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Akú inštalačnú triedu chcete použiť?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Inštalácia/Aktualizácia"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Toto je inštalácia alebo aktualizácia?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Odporúčane"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Expert"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "Aktualizácia"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "Jedine aktualizácia balíčkov"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Prosím, zvoľte typ vašej myši."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Port myši"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Prosím zvoľte, ktorému sériovému portu je vaša myš pripojená."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Emulácia tlačidiel"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Emulácia druhého tlačidla"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Emulácia tretieho tlačidla"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Konfigurujem PCMCIA karty..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Konfigurujem IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
-msgstr "nie sú dostupné žiadne oddiely"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
+msgstr "Particia nieje dostupná"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Prehľadávam oddiely na body pripojenia"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Zvoľte body pripojenia"
-#: ../../install_steps_interactive.pm_.c:357
-#, c-format
+#: ../../install_steps_interactive.pm_.c:367
+#, fuzzy, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4300,7 +4389,7 @@ msgstr ""
"\n"
"Povolite strátu oddielu?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4308,7 +4397,7 @@ msgstr ""
"DiskDrake nedokázal korektne načítať tabuľku rozdelenia disku.\n"
"Pokračujte na vlastné riziko!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -4316,73 +4405,79 @@ msgstr ""
"Nieje dostatok miesta pre 1MB veľký bootstrap! Inštalácia môže pokračovať, "
"ale pre spustenie systému musíte vytvoriť oddiel pomocou DiskDrake"
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr "Nenašiel som koreňový oddiel pre upgrade"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Koreňový oddiel"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Ktorý je koreňový oddiel vašej inštalácie?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Aby sa prejavily úpravy partition tabuľky, musíte reštartovať"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Výber oddielov pre formátovanie"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Kontrola chybných blokov?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Formátuje sa"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Vytváram a formátujem súbor %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+#, fuzzy
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Nedostatočne veľký swap pre dokončenie inštalácie, prosím zväčšiť"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Hľadám dostupné balíky"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:491
+#, fuzzy
+msgid "Looking for available packages..."
+msgstr "Hľadám dostupné balíky"
+
+#: ../../install_steps_interactive.pm_.c:495
+#, fuzzy
+msgid "Finding packages to upgrade..."
msgstr "Hľadám balíky pre aktualizáciu"
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Nemôžete odznačiť tento balík. Je už nainštalovaný"
+
+#: ../../install_steps_interactive.pm_.c:516
+#, fuzzy, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr "Váš systém nemá dosť miesta pre inštaláciu alebo upgrade (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Úplna (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimum (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Odporučené (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -4391,35 +4486,36 @@ msgstr ""
"Formát je taký istý ako diskety generované automatickou\n"
"inštaláciou."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Nahrať z diskety"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Nahrávam z diskety"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Výber balíčkov"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "Vložte do mechaniky disketu s zoznamom balíčkov"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Ulož na disketu"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Zvolená veľkosť je väčšia ako dostupné miesto"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr "Typ inštalácie"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
+#, fuzzy
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -4427,19 +4523,19 @@ msgstr ""
"Nebola vybratá žiadna skupina balíčkov\n"
"Prosím, zvoľte minimálnu inštaláciu, ktorú si želáte"
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "S X"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr "So základnou dokumentáciou (doporučené!)"
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr "Naozaj minimálna inštalácia (bez urpmi)"
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4449,16 +4545,16 @@ msgstr ""
"Ak nemáte žiadne, stlačte Zruš.\n"
"Ak vám chýbajú iba niektoré, odznačte ich a potom stlačte OK."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom označené \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Pripravujem inštaláciu"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4467,23 +4563,24 @@ msgstr ""
"Inštalujem balík %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Poinštalačná konfigurácia"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Vložte štartovaciu disketu do mechaniky %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Vložte Update Modules disketu do mechaniky %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
+#, fuzzy
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -4540,13 +4637,15 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
+#, fuzzy
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
@@ -4558,148 +4657,175 @@ msgstr ""
"\n"
"Želáte si nainštalovať aktualizácie balíčkov ?"
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+#, fuzzy
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Pripájam sa k www stránke Mandrake Linuxu pre stiahnutie zoznamu zrkadiel"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Vyberte miror, z ktorého chcete stiahnuť balík"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+#, fuzzy
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Pripájam sa k miroru a sťahujem zoznam možných balíkov"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Ktoré je vaše časové pásmo?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Hardvérove hodiny nastavené na GMT"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatická synchronizácia času (pomocou NTP)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "NTP server"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Vzdialený CUPS server"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Bez tlačiarne"
-#: ../../install_steps_interactive.pm_.c:1032
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
-msgstr "Máte ešte nejaké ďalšie?"
+msgstr "Máte nejakú ISA zvukovú kartu?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
+msgstr "Po inštalácii spustite \"sndconfig\" ak chcete nastaviť zvukovú kartu"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
+msgstr "Zvuková karta nebola nájdena. Skúste \"harddrake\" po inštalácii"
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Zhrnutie"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Myš"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Časová zóna"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Tlačiarne"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "ISDN karta"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Zvuková karta"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV karta"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+msgid "Windows PDC"
+msgstr "Windows PDC"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Lokálne súbory"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Nastavenie root hesla"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Bez hesla"
-#: ../../install_steps_interactive.pm_.c:1112
-#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+#: ../../install_steps_interactive.pm_.c:1107
+#, fuzzy, c-format
+msgid "This password is too short (it must be at least %d characters long)"
msgstr "Toto heslo je príliš jednoduché(musí byť minimálne %d znakov dlhé)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autentifikácia"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "Autentifikácia LDAP"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "LDAP server"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "NIS autentifikácia"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS doména"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS server"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+msgid "Authentication Windows PDC"
+msgstr "Autentifikácia Windows PDC"
+
+#: ../../install_steps_interactive.pm_.c:1139
+msgid "Windows Domain"
+msgstr "Windows doména"
+
+#: ../../install_steps_interactive.pm_.c:1140
+msgid "PDC Server Name"
+msgstr "Meno PDC servera"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -4726,20 +4852,20 @@ msgstr ""
"Ak si želáte vytvoriť zavádzaciu disketu pre váš systém, vložte disketu do\n"
"prvej mechaniky a stlačte \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Prvá floppy mechanika"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Druhá floppy mechanika"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Vynechaj"
-#: ../../install_steps_interactive.pm_.c:1194
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1199
+#, fuzzy, 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 "
@@ -4760,10 +4886,9 @@ msgstr ""
"môže byť tiež použitá spolu s Mandrake Linux záchrannou disketou, čo \n"
"podstatne uľahčí zotavenie sa z vážnych chýb systému.\n"
"\n"
-"Želáte si vytvoriť zavádzaciu disketu pre váš systém?\n"
-"%s"
+"Želáte si vytvoriť zavádzaciu disketu pre váš systém?"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -4772,28 +4897,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Prepáčte, nenašiel som žiadnu disketovú mechaniku"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Zvoľte floppy mechaniku v ktorej chcete vytvoriť boot disketu"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
msgstr "Vložte disketu do mechaniky %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr "Vytváram bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
+msgstr "Vytváram bootdisk..."
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr "Pripravuje sa zavádzač"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
+msgstr "Pripravuje sa zavádzač..."
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4801,11 +4926,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Chcete použiť aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -4813,15 +4938,15 @@ msgstr ""
"Chyba inštalácie aboot.\n"
"Skúsiť silovú inštaláciu s možnosťou zničenia prvého oddielu?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Inštalujem zavádzač"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Inštalácia zavádzača zlýhala. Vyskytla sa nasledujúca chyba:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4832,18 +4957,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Vložte čistú disketu do mechaniky %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
-msgstr "Pripravujem auto inštalačnú disketu"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
+msgstr "Pripravujem autoinštalačnú disketu..."
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -4853,7 +4977,8 @@ msgstr ""
"\n"
"Naozaj chcete teraz skončiť?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, fuzzy, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -4864,7 +4989,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -4873,19 +4998,19 @@ msgstr ""
"Gratulujeme! Inštalácia je kompletná.\n"
"Vyberte zavádzacie médium (disketa, CD) a stačte enter\n"
"pre reštart počítača.\n"
-"\n"
-"\n"
-"Informácie o opravách tejto verzie Mandrake Linux-u môžete nájst na\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-" "
+"Informácie o opravách tejto verzie Mandrake Linux-u môžete nájst nahttp://"
+"www.mandrakelinux.com/."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+#, fuzzy
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakesoft.com/sales/contact"
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Príprava auto inštalačnej diskety"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4896,15 +5021,15 @@ msgstr ""
"Automatická inštalácia môže byť plne automatizovaná\n"
"v tom prípade však inštalácia zaberie celý pevný disk.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automatická"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Prehrať"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Uložiť voľbu balíkov"
@@ -4925,50 +5050,30 @@ msgstr "chýba kdesu"
#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
msgid "consolehelper missing"
-msgstr ""
+msgstr "chýba consolehelper"
#: ../../interactive.pm_.c:152
msgid "Choose a file"
msgstr "Zvoľte súbor"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Rozšírene"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr "Základná"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Prosím čakajte"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Ukáž strom"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Skri strom"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Priame, alebo skupinové triedenie"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Chybná voľba, skúste znovu\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Vaša voľba? (predvolené %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -4977,368 +5082,372 @@ msgstr ""
"Záznamy, ktoré musíte vyplniť:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Vaša voľba? (0/1, predvolené `%s') "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "Tlačítko `%s': %s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+#, fuzzy
+msgid "Do you want to click on this button?"
msgstr "Želáte si kliknúť na toto tlačítko?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Vaša voľba? (predvolené `%s'%s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
-msgstr ""
+msgstr "Opätovne odoslať"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Česká (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Nemecká"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Španielska"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Fínska"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Francúzska"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Nórska"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Polská"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Ruská"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Švédska"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "UK klávesnica"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "US klávesnica"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Albánska"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Arménska (stará)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Arménska (písací stroj)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Arménska (fonetická)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbajdžan (latin)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgická"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr "Bulharská (fonetická)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "Bulharská (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brazílska"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Bieloruská"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Švajčiarska (Nemecké rozloženie kláves)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Švajčiarska (Francúzske rozloženie kláves)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Česká (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Nemecká (bez mŕtvych kláves)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Dánska"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Nórska)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Swedish)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estónska"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Gruzínska (\"Ruské\" rozloženie kláves)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Gruzínska (\"Latin\" rozloženie kláves)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Grécka"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Maďarská"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Chorvátska"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Izraelská"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Izraelská (fonetická)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iránska"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islandská"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Talianska"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Japonská 106 kláves"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Kórejska klávesnica"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latinsko Americká"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Litovská AZERTY (stará)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Litovská AZERTY (nová)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litovská QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litovská \"fonetická\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
-msgstr ""
+msgstr "Lotišsky"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Macedónska"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Holandský"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Poľská (qwerty rozloženie kláves)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Poľská (qwertz rozloženie kláves)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugalská"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Kanadská (Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Románska (Yawerty)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Románska (Yawerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Ruská (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slovinská"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovenská (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovenská (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "Srbská (cyrillic)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr "Tamilská"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thaiská klávesnica"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Tajik klávesnica"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turecká (tradičný \"F\" model)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turecká (moderný \"Q\" model)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukrainská"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US klávesnica (medzinárodná)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamská \"numerická\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Juhoslovanská (latin)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
-msgstr ""
+msgstr "pravý Alt kláves"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
-msgstr ""
+msgstr "oba Shift klávesy naraz"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
-msgstr ""
+msgstr "Ctrl a Shift klávesy naraz"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
-msgstr ""
+msgstr "CapsLock kláves"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
+msgstr "Ctrl a Alt klávesy naraz"
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
-msgstr ""
+msgstr "Alt a Shift klávesy naraz"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
-msgstr ""
+msgstr "\"Menu\" kláves"
-#: ../../keyboard.pm_.c:285
-#, fuzzy
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
-msgstr "Prevziať fonty z Windows"
+msgstr "Ľavý \"Windows\" kláves"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
-msgstr ""
+msgstr "Pravý \"Windows\" kláves"
#: ../../loopback.pm_.c:32
#, c-format
@@ -5349,7 +5458,30 @@ msgstr "Kruhové pripojenia %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Odstraňte najprv logické zväzky\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+msgid "a number"
+msgstr "číslo"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Formátovanie oddielov"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5391,10 +5523,6 @@ msgstr "1 tlačidlo"
msgid "Generic 2 Button Mouse"
msgstr "štandardná myš s 2 tlačidlami"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Všeobecné"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Koliesko"
@@ -5459,38 +5587,54 @@ msgstr "nič"
msgid "No mouse"
msgstr "Žiadna myš"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Prosím otestujte myš."
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Pre aktiváciu myši,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "POHNITE KOLIESKOM!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Dokončiť"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Ďalší ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Predchádzajúce"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Je to správne?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Info"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Ukáž strom"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Skri strom"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Priame, alebo skupinové triedenie"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Pripojenie k internetu"
@@ -5537,7 +5681,7 @@ msgstr ""
"Vo vašom systéme nebol nájdený sieťovy ethernet adaptér.\n"
"Nemôžem nastaviť požadovaný typ pripojenia."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Zvoľte sieťove rozhranie"
@@ -5552,7 +5696,7 @@ msgstr ""
msgid "no network card found"
msgstr "nenašiel som sieťovú kartu"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Konfigurujem sieť"
@@ -5568,15 +5712,15 @@ msgstr ""
"Meno vášho počítača by malo byt plne kvalifikované host name,\n"
"ako napríklad ``hq.alert.sk''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Názov počítača"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Sprievodca konfiguráciou siete"
@@ -5629,9 +5773,10 @@ msgid "ISDN Configuration"
msgstr "Konfigurácia ISDN"
#: ../../network/isdn.pm_.c:170
+#, fuzzy
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Zvoľte si poskytovateľa.\n"
"Ak nieje v zozname, zvoľte Unlisted"
@@ -5649,15 +5794,17 @@ msgid "Protocol for the rest of the world"
msgstr "Protokol pre zvyšok sveta"
#: ../../network/isdn.pm_.c:185
+#, fuzzy
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Protokol pre zvyšok sveta \n"
" bez D-Channel (prenajaté linky)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+#, fuzzy
+msgid "Which protocol do you want to use?"
msgstr "Aký typ protokolu chcete používať ?"
#: ../../network/isdn.pm_.c:199
@@ -5677,11 +5824,13 @@ msgid "PCI"
msgstr "PCI"
#: ../../network/isdn.pm_.c:206
+#, fuzzy
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"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Ak máte ISA kartu, tak hodnoty na ďalšej obrazovke by mali byť správne.\n"
@@ -5697,13 +5846,15 @@ msgid "Continue"
msgstr "Pokračovať"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+#, fuzzy
+msgid "Which is your ISDN card?"
msgstr "Ktorá je vaša ISDN karta ?"
#: ../../network/isdn.pm_.c:235
+#, fuzzy
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Našiel som PCI ISDN kartu, ale nepoznám tento typ. Prosím zvoľte si jednu z "
"PCI kariet na ďalšej obrazovke."
@@ -5720,47 +5871,47 @@ msgstr "Prosím zvoľte na ktorý sériový port je pripojený váš modem."
msgid "Dialup options"
msgstr "Voľby dialupu"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Meno pripojenia"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Telefónne číslo"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Prihlasovacie ID"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Založené na skriptoch"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Založené na terminály"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Meno domény"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Prvý DNS server (nepovinné)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Druhý DNS server (nepovinné)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -5768,7 +5919,7 @@ msgstr ""
"\n"
"Môžete vaše pripojenie prekonfigurovať alebo sa odpojiť."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -5776,11 +5927,11 @@ msgstr ""
"\n"
"Môžete prekonfigurovať vaše pripojenie."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Momentálne ste pripojený k internetu."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -5788,32 +5939,32 @@ msgstr ""
"\n"
"Môžete prekonfigurovať vaše pripojenie, alebo sa pripojit k internetu."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Momentálne nieste pripojený k internetu."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Pripojenie"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Odpojenie"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr "Nastaviť pripojenie"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Pripojenie a konfigurácia internetu"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Teraz nastavíme Vaše pripojenie %s."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -5831,12 +5982,12 @@ msgstr ""
"\n"
"Stlačte OK pre pokračovanie."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Konfigurácia siete"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -5848,9 +5999,10 @@ msgstr ""
"nastavenia, alebo Cancel pre opätovné nastavenie pripojenia na internet a "
"sieť.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
+#, fuzzy
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"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"
@@ -5860,66 +6012,72 @@ msgstr ""
"Chcete nastaviť vaše pripojenie k sieti/internetu.\n"
"Ak nechcete použiť automatickú detekciu odškrtnite políčko.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Zvoľte profil na konfiguráciu"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Použiť auto-detekciu"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Expertný mód"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Zisťujem zariadenia..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Normálne modémove pripojenie"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "detekovaný na porte %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN pripojenie"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "nájdene %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "ADSL pripojenie"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "detekovaný na rozhraní %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Pripojenie káblom"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "detekované pripojenie káblom"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "Pripojenie LAN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "nájdená ethernet karta(y)"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Vyberte pripojenie, ktoré chcete nastaviť"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -5929,23 +6087,23 @@ msgstr ""
"Zvoľte jednu, ktorú chcete používať.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Pripojenie k internetu"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Chcete sa pripojiť hneď pri štarte?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Konfigurácia siete"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr "Sieť potrebuje reštart."
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -5956,7 +6114,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -5966,7 +6124,7 @@ msgstr ""
"Nastavenie bude teraz aplikované na váš systém.\n"
"\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -5974,19 +6132,21 @@ msgstr ""
"Po zmene doporučujeme reštartovat X windows, aby ste\n"
"predišli problémom pri zmene mena hostu."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
+#, fuzzy
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"
+"work, you might want to relaunch the configuration."
msgstr ""
"Počas konfigurácie sa vyskytli problémy.\n"
"Vyskúšajte Vaše pripojenie s nástrojom net_monitor, alebo mcc. Ak pripojenie "
"nepracuje, mali by ste opätovne spustiť konfiguráciu"
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
+#, fuzzy
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"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."
@@ -5995,7 +6155,7 @@ msgstr ""
"Jednoducho nechajte pôvodné nastavenie.\n"
"Modifikácia parametrov môže zmeniť nastavenie."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6005,38 +6165,42 @@ msgstr ""
"Každý záznam by mal byť zadaný ako IP adresa v dekadickom tvare\n"
"oddelenom bodkami (napr. 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Konfigurácia sieťového zariadenia %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (ovladač %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP adresa"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Maska siete"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Automatická IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+msgid "Start at boot"
+msgstr "Spustiť pri štarte"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP adresa musí byť vo formáte 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6048,64 +6212,66 @@ msgstr ""
"ako napríklad ``hq.alert.sk''.\n"
"Tiež môžete zadať IP adresu brány ak ju viete"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS server"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (napr. %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Zariadenie smerujúce k bráne"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Nastavenie proxy"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
-msgstr ""
+#: ../../network/network.pm_.c:388
+#, fuzzy
+msgid "Track network card id (useful for laptops)"
+msgstr "Hľadaj id sieťovej karty (použiteľné pre laptopy)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Proxy má byť http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Proxy má byť ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Konfigurácia internetu"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Chcete sa skúsiť pripojiť teraz k internetu?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Testovanie pripojenia..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Systém je teraz pripojený k internetu."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+#, fuzzy
+msgid "For security reason, it will be disconnected now."
msgstr "Z bezpečnostných dôvodov bude teraz odpojený."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6113,112 +6279,118 @@ msgstr ""
"Systém prevdepodobne nieje pripojený k internetu.\n"
"Skúste prekonfigurovať pripojenie."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Konfigurácia pripojenia"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Prosím vyplňte alebo zaškrtnite políčka"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ karty"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "DMA karty"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "IO karty"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "IO_0 karty"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "IO_1 karty"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Vaše osobné telefónne číslo"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Meno poskytovateľa (napr. provider.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Telefónne číslo poskytovateľa"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "DNS 1 poskytovateľa (voliteľné)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "DNS 2 poskytovateľa (voliteľné)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Vyberte si vašu krajinu"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Mód vytáčania"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Rýchlosť pripojenia"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "Timeout pripojenia (v sekundách)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Meno účtu (uživateľské meno)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Heslo účtu"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr "Veľka Británia"
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "nepodarilo sa pripojiť: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Na tejto platforme njeje podporovaný rozšírený oddiel"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
+#, fuzzy
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"V tabuľke rozdelenia disku sa nachádza záznam o voľnom priestore,\n"
"ktorý nedokážem využiť. Jediné riešenie je presunúť primárny oddiel tak,\n"
"aby sa voľné miesto nachádzalo za ním a bolo použiteľné pre rozšírený\n"
"oddiel."
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Obnovenie zo súboru %s zlyhalo: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Chybný zálohovací súbor"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "chyba pri zápise do súboru %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6228,186 +6400,186 @@ msgstr ""
"Zlyhal test integrity dát. Akýkoľvek zápis dát može skončiť\n"
"neúspechom a stratou dát."
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "musí mať"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "dôležité"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "veľmi pekné"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "pekné"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "možno"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Common Unix Printing System"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR New Generation"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Line Printer Daemon"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Tlač, neukladaj do fronty."
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "USB"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Lokálna tlačiareň"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Vzdialená tlačiareň"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Tlačiareň na vzdialenom CUPS serveri"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Tlačiareň na vzdialenom lpd serveri"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Sieťová tlačiareň (TCP/Soket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Tlačiareň na vzdialenom SMB/Windows 95/98/NT serveri"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Tlačiareň na vzdialenom NetWare serveri"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Vložte URI zariadenia tlačiarne"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "Presmeruj výstup do príkazu"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Neznámy model"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "Lokálne tlačiarne"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "Vzdialené tlačiarne"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr " na paralelnom porte \\/*%s"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", USB tlačiareň \\/*%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", multifunkčné zariadenie na paralelnom porte \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ", multifunkčné zariadenie na USB"
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ", multifunkčné zariadenie HP JetDirect"
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ", multifunkčné zariadenie "
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, c-format
msgid ", printing to %s"
msgstr ", tlač na %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr "na LPD serveri \"%s\", tlačiareň \"%s\""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", TCP/IP host \"%s\", port %s"
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr "na Windows serveri \"%s\", zložka \"%s\""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr "na Novell serveri \"%s\", tlačiareň \"%s\""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ", použitím príkazu %s"
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr "Základná tlačiareň (bez ovládača)"
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(nal %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(na tomto stroji)"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Na CUPS server \"%s\""
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Predvoľba)"
@@ -6429,15 +6601,13 @@ msgstr ""
"Tlačiarne na vzdialenom CUPS serveri nemusíte konfigurovať lokálne; "
"tlačiarne budú rozpoznané automaticky."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-#, fuzzy
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
msgid "CUPS configuration"
-msgstr "Konfigurácia"
+msgstr "Konfigurácia CUPS"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-#, fuzzy
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
msgid "Specify CUPS server"
-msgstr "Vzdialený CUPS server"
+msgstr "Zadajte CUPS server"
#: ../../printerdrake.pm_.c:71
msgid ""
@@ -6464,7 +6634,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP adresa vyzerá napríklad takto: 192.168.1.4"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "Čislo portu má byť celé kladné číslo!"
@@ -6472,7 +6642,7 @@ msgstr "Čislo portu má byť celé kladné číslo!"
msgid "CUPS server IP"
msgstr "IP CUPS servera"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Port"
@@ -6480,20 +6650,12 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Automatické nastavenie CUPS"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Zisťujem zariadenia..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Test portov"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr "Pridaj novú tlačiareň"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6506,13 +6668,13 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Lokálna tlačiareň"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6530,11 +6692,11 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr "Automatická detekcia tlačiarní"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6548,11 +6710,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr "Automatická detekcia tlačiarní"
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6562,153 +6724,196 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-#, fuzzy
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "Použiť auto-detekciu"
-#: ../../printerdrake.pm_.c:228
-#, fuzzy
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
-msgstr "Vybrať užívateľov manuálne"
+msgstr "Manuálne nastavenie tlačiarne"
+
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Test portov"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
msgstr "Nájdené %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Tlačiareň na paralelnom porte \\/*%s"
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr "USB tlačiareň \\/*%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
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 ""
+"Nebola nájdená žiadna lokálna tlačiareň. Pre ručnú inštaláciu zadajte meno "
+"zariadenia (Paralelné porty: /dev/lp0, /dev/lp1,... je ekvivalentné LPT1:, "
+"LPT2:, ..., Prvá USB tlačiareň: /dev/usb/lp0,druhá USB tlačiareň: /dev/usb/"
+"lp1, ...)."
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
msgstr "Musíte vložiť zariadenie alebo meno súboru!"
-#: ../../printerdrake.pm_.c:394
-#, fuzzy
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
-msgstr "Nebola nájdená lokálna tlačiareň!"
+msgstr ""
+"Nebola nájdená lokálna tlačiareň!\n"
+"\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
+"Sieťové tlačiarne môžu byť inštalované až po inštalácii systému. Zvoľte "
+"\"Hardvér\" a potom \"Tlačiareň\" v kontrolnom centre Mandrake."
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
+"Pre inštaláciu sieťových tlačiarní kliknite na \"Zruš\", prepnite sa do "
+"\"Expertného módu\" a opäť zvoľte \"Pridaj novú tlačiareň\"."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
+"Automaticky bola rozpoznaná táto tlačiareň. Ak si ju neželáte nastaviť, "
+"zadajte meno zariadenia tlačiarne, ktorú si nastaviť želáte."
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
+"Tu je zoznam automaticky nájdených tlačiarní. Prosím zvoľte tlačiareň, ktorú "
+"chcete nastaviť, alebo zadajte meno zariadenia."
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
"if you prefer a customized printer configuration, turn on \"Manual "
"configuration\"."
msgstr ""
+"Automaticky bola rozpoznaná táto tlačiareň. Nastavenie tlačiarne prebehne "
+"plne automaticky. Ak nebola Vaša tlačiareň rozpoznaná správne, alebo ak "
+"preferujete ručné nastavenie spustite \"Ručné nastavenie\"."
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
"automatically. If your printer was not correctly detected or if you prefer a "
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
+"Tu sa nachádza zoznam automaticky rozpoznaných tlačiarní. Prosím zvoľte "
+"tlačiareň, ktorú si želáte nastaviť. Nastavenie tlačiarne prebehne plne "
+"automaticky. Ak nebola Vaša tlačiareň rozpoznaná správne, alebo ak "
+"preferujete ručné nastavenie spustite \"Ručné nastavenie\"."
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
+"Prosím zvoľte port, ku ktorému je tlačiareň pripojená, alebo zadajte meno "
+"zariadenia tlačiarne."
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
msgstr "Prosím, zvoľte, na ktorý port je pripojená váša tlačiareň."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
+"(Paralelné porty: /dev/lp0, /dev/lp1,... je ekvivalentné LPT1:, LPT2:, ..., "
+"Prvá USB tlačiareň: /dev/usb/lp0,druhá USB tlačiareň: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
msgstr "Musíte vložiť zariadenie tlačiarne"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
msgstr "Ručné nastavenie"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
+#, fuzzy
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
+"Je Vaša tlačiareň multifunkčné zariadenie od HP (OfficeJet, PSC, PhotoSmart "
+"LaserJet 1100/1200/1220/3200 so skenerom)?"
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
msgstr "Inštalujem balíček HPOJ ..."
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+#, fuzzy
+msgid "Checking device and configuring HPOJ..."
msgstr "Kontrolujem zariadenia a konfigurujem HPOJ ..."
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
msgstr "Inštalujem balíček SANE ..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Inštalujem balíčky"
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr "Vyhľadávam na multi-funkčnom HP zariadení"
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+#, fuzzy
+msgid "Photo memory card access on your HP multi-function device"
+msgstr "Vyhľadávam na multi-funkčnom HP zariadení"
+
+#: ../../printerdrake.pm_.c:558
+#, fuzzy
+msgid "Making printer port available for CUPS..."
msgstr "Nastavujem rozhranie tlačiarne pre prístup z CUPS ..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
-msgstr "Načítavam databázu tlačiarní ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
+msgstr "Načítavam databázu tlačiarní..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Voľby vzdialenej lpd tlačiarne"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -6716,27 +6921,27 @@ msgstr ""
"Pre použitie vzdialenej lpd tlačiarne je potrebné zadať názov tlačového "
"servera a názov tlačiarne na tomto serveri."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Názov vzdialeného počítača"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Meno vzdialenej tlačiarne"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "Chýba názov vzdialeného počítača"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "Chýba názov vzdialenej tlačiarne!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Voľby tlačiarne SMB/Windows 9x/NT"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -6749,35 +6954,35 @@ msgstr ""
"aj názov zdieľaného zariadenia pre tlačiareň a vhodné meno používateľa,\n"
"heslo a pracovnú skupinu."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "Názov SMB servra"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP adresa SMB servra"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Názov zdieľaného zariadenia"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Pracovná skupina"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "Musíte zadať meno, alebo IP adresu servera!"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "Chýba meno samba zložky!"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
-msgstr ""
+msgstr "BEZPEČNOSTNÉ UPOZORNENIE!"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -6801,7 +7006,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -6810,7 +7015,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -6818,11 +7023,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Voľby tlačiarne pre NetWare"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
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 "
@@ -6833,27 +7038,27 @@ msgstr ""
"servera (nebýva vždy zhodný s TCP/IP názvom počítača), ako aj názov fronty\n"
"tlačiarne, ku ktorej chcete pristupovať a vhodné meno používateľa s heslom."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Tlačový server"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Názov tlačovej fronty"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "Chýba meno NCP servera!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "Chýba meno NCP fronty!"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
msgstr "TCP/Soket nastavenia tlačiarne"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -6864,19 +7069,19 @@ msgstr ""
"tlačiarne a prípadne číslo portu. Na HP JetDirect serveroch je číslo portu "
"väčšinou 9100, na iných serveroch to môže byť odlišné. Pozrite si manuál."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Hostiteľské meno tlačiarne"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "Chýba hostiteľské meno tlačiarne"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "URI tlačiarne"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
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 "
@@ -6885,11 +7090,11 @@ msgstr ""
"Pre prístup k tlačiarni zadajte jej URI. URI musí spĺňať CUPS alebo Foomatic "
"špecifikácie."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "Musíte zadať správne URI!"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -6897,28 +7102,23 @@ msgstr ""
"Každá tlačiareň potrebuje meno (napríklad \"print\"). Položky Popis a Poloha "
"nie je potrebné vyplňovať. Sú to iba komentáre pre užívateľov."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Meno tlačiarne"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Popis"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Umiestnenie"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
-msgstr "Pripravujem databázu tlačiarní ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
+msgstr "Pripravujem databázu tlačiarní..."
-#: ../../printerdrake.pm_.c:1112
-#, fuzzy
+#: ../../printerdrake.pm_.c:1136
msgid "Your printer model"
-msgstr "Meno vzdialenej tlačiarne"
+msgstr "Model Vašej tlačiarne"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -6933,26 +7133,24 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-#, fuzzy
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
msgid "The model is correct"
-msgstr "Je to správne?"
+msgstr "Model je správny"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-#, fuzzy
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
msgid "Select model manually"
-msgstr "Vybrať užívateľov manuálne"
+msgstr "Vybrať model manuálne"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Výber modelu tlačiarne"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Aký model tlačiarne máte?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -6960,18 +7158,23 @@ msgid ""
"model correctly. Search the correct model in the list when the cursor is "
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
+"\n"
+"\n"
+"Prosím skontrolujte, či Printerdrake rozpoznal tlačiareň správne. V prípade, "
+"že kurzor neukazuje na správny model, alebo ukazuje na \"Základná tlačiareňr"
+"\", vyberte model zo zoznamu."
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "Nastavenie OKI winprinter"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -6981,11 +7184,11 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "Nastavenie Lexmark inkjet"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -6993,7 +7196,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7006,7 +7209,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7022,22 +7225,22 @@ msgstr ""
"nastavené správne. Príliš vysoká kvalita, či rozlíšenie tlače spôsobuje "
"spomalenie."
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Parameter %s musí byť celé číslo!"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "Parameter %s musí byť číslo!"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "Parameter %s je mimo rozsahu!"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7046,11 +7249,11 @@ msgstr ""
"Želáte si nastaviť túto tlačiateň (\"%s\")\n"
"ako predvolenú?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "Testovacie stránky"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7062,39 +7265,39 @@ msgstr ""
"tlačiarni s nedostatkom pamäte sa nemusí vytlačiť vôbec. Vo večšine "
"prípadoch postačuje vyskúšať štandartnú testovaciu stránku."
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "Žiadne testovacie stránky"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Tlač"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "Štandardné testovacie stránky"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr "Alternatívna testovacia stránka (Letter)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "Alternatívna testovacia stránka (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "Fotografická testovacia stránka"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
msgstr "Bez tlače testovacích stránok"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Prebieha tlač testovacej stránky..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7109,7 +7312,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -7117,15 +7320,15 @@ msgstr ""
"Testovacia stránka bola zaslaná tlačiarni.\n"
"Kým začne tlačiareň tlačiť, môže to chvíľku trvať.\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr "Pracuje správne?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr "Základná tlačiareň"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7134,15 +7337,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
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 ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7151,49 +7354,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, 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\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7203,7 +7406,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7212,29 +7415,40 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Zatvoriť"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Tlač/Skenovanie na \"%s\""
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Tlač/Skenovanie na \"%s\""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Tlač/Skenovanie na \"%s\""
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Tlačím na tlačiareň \"%s\""
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Zatvoriť"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "Zobraz zoznam parametrov"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7242,36 +7456,36 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
-msgstr "Načítavam dáta tlačiarne ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
+msgstr "Načítavam dáta tlačiarne..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "Prenes nastavenie tlačiarne"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7281,7 +7495,7 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -7289,31 +7503,31 @@ msgstr ""
"CUPS nepodporuje tlačiarne na Novell serveroch, alebo tlačiarne, ktoré "
"posielajú dáta vo free-formed command.\n"
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
"PDQ podporuje iba lokálne tlačiarne, vzdialené LPD a Socket/TCP tlačiarne.\n"
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD a LPRng nepodporujú IPP tlačiarne.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -7323,15 +7537,15 @@ msgstr ""
"Označte tlačiareň ktorú si želáte preniesť a stlačte \n"
"\"Prenos\"."
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr "Neprenášaj tlačiarne"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr "Prenos"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7343,11 +7557,11 @@ msgstr ""
"Môžete tiež napísať nové meno alebo preskočiť\n"
"túto tlačiareň."
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Meno tlačiarne môže obsahovať iba písmená, čísla a podčiarkovník"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -7356,45 +7570,45 @@ msgstr ""
"Tlačiareň \"%s\" už existuje.\n"
"Želáte si prepísať nastavenie ?"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Nové meno tlačiarne"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
-msgstr "Prenášam %s ..."
+msgid "Transferring %s..."
+msgstr "Prenášam %s..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, 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 ""
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
-msgstr "Obnova dát tlačiarne ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
+msgstr "Obnova dát tlačiarne..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr "Nastavenie vzdialenej tlačiarne"
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "Spúšťam sieť..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr "Teraz nastaviť pripojenie siete"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "Sieťové pripojenie nieje nastavené"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7402,11 +7616,11 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr "Pokračuj bez nastavenia siete."
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7416,31 +7630,31 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
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 ""
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
-msgstr "Reštartujem tlačový systém ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
+msgstr "Reštartujem tlačový systém..."
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "vysoká"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr "paranoidná"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
-msgstr ""
+msgstr "Inštalácia tlačového systému v úrovni zabezpečenia %s"
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7455,11 +7669,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr "Spúšťať tlačový systém pri spustení systému"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7473,65 +7687,63 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr "Kontrolujem inštalovaný softvér..."
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr "Odstraňujem PLRng..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr "Odstraňujem LPD..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "Zvoľte tlačovú frontu"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "Aký typ tlačového systému chcete používať?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Konfigurujem tlačiareň \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
+msgstr "Konfigurujem tlačiareň \"%s\"..."
-#: ../../printerdrake.pm_.c:2252
-#, fuzzy
-msgid "Installing Foomatic ..."
-msgstr "Inštalujem balíčky"
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
+msgstr "Inštalujem Foomatic..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Voľby tlačiarne"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
-msgstr "Pripravujem PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
+msgstr "Pripravujem PrinterDrake..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-#, fuzzy
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
msgid "Configuring applications..."
-msgstr "Konfigurujem tlačiareň \"%s\" ..."
+msgstr "Konfigurácia aplikácii..."
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "Želáte si nastaviť tlačiareň?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr "Tlačový systém:"
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7542,7 +7754,7 @@ msgstr ""
"Momentálne sú nastavené tieto tlačiarne. Spravte dvojklik na meno tlačiarne "
"ak si želáte zmenit jej nastavenia, alebo prezrieť informácie."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -7551,29 +7763,35 @@ msgstr ""
"Momentálne sú nastavené tieto tlačiarne. Spravte dvojklik na meno tlačiarne "
"ak si želáte zmenit jej nastavenia, alebo prezrieť informácie."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
+"Občerstviť zoznam tlačiarní (pre zobrazenie všetkých prístupných CUPS "
+"tlačiarní)"
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Nastavenie tlačového systému"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Normálny mód"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Koniec"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr "Želáte si nastaviť inú tlačiareň ?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "Zmena nastavenia tlačiarne"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, c-format
msgid ""
"Printer %s\n"
@@ -7582,103 +7800,103 @@ msgstr ""
"Tlačiareň %s\n"
"čo si želáte zmeniť na tejto tlačiarni?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr "Urob to!"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "Typ pripojenia tlačiarne"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "Meno, popis a poloha tlačiarne"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr "Výrobca tlačiarne, model, ovládač"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr "Výrobca tlačiarne, model"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr "Nastaviť tlačiaren ako predvolenú"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr ""
+msgstr "Pridať túto tlačiareň do Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr ""
+msgstr "Odstrániť túto tlačiareň z Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr "Tlač testovacích stránok"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
msgstr "Viem, ako používať túto tlačiareň"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "Odstrániť tlačiareň"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "Odstraňujem starú tlačiareň \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
+msgstr "Odstraňujem starú tlačiareň \"%s\"..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Predvolená tlačiareň"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Tlačiareň \"%s\" je teraz nastavená ako predvolená."
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr ""
+msgstr "Pridávam tlačiareň do Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr ""
+msgstr "Nemôžem pridať tlačiareň \"%s\" do Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr ""
+msgstr "Odstraňujem tlačiareň z Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr ""
+msgstr "Nemôžem odstrániť tlačiareň \"%s\" z Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Naozaj chcete odstrániť tlačiateň \"%s\"?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Odstraňujem tlačiareň \"%s\" ..."
+msgid "Removing printer \"%s\"..."
+msgstr "Odstraňujem tlačiareň \"%s\"..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
#: ../../proxy.pm_.c:78
@@ -7764,24 +7982,57 @@ msgstr "Hesla nesúhlasia. Skúste znova!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Nemôžem pridať oddiel do _naformátovaného_ RAID poľa md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Nemôžem zapísať súbor %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid zlyhal"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid zlyhal (možno nie sú nainštalované raidtools)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nie je dosť oddielov pre RAID úrovne %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Táto úroveň by mala byť používaná opatrne. Zjednodušuje prácu so systémom,\n"
+"ale nemal by byť pripojený k iným počítačom, alebo k internetu. Nie sú\n"
+"totiž používané žiadne heslá."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+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 ""
+"S touto úrovňou bezpečnosti sa stáva systém použiteľný ako sieťový server."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "Pokročilé nastavenia"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Parametre"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Spustenie ALSA (Advanced Linux Sound Architecture) zvukového systému"
@@ -7833,7 +8084,7 @@ msgstr ""
"HardDrake vyhľadáva nový harvér a nastavuje parametre\n"
"nového alebo zmeneného hardvéru."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr "Apache je WWW server. Je používaný na poskytovanie HTML stránok a CGI."
@@ -7903,7 +8154,7 @@ msgid ""
"available server."
msgstr "Linux Virtual Server sa používa na vysoko výkonné a HA riešenia."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -7978,7 +8229,7 @@ msgstr ""
"NFS a NIS. Portmap server musí byť spustený na počítačoch, ktoré sú \n"
"servrami pre protokoly používajúce RPC mechanizmus."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -8072,7 +8323,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Zdielanie súborov"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "Systém"
@@ -8131,7 +8382,7 @@ msgstr ""
#: ../../share/advertising/00-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
-msgstr ""
+msgstr "Vitajte v Open Source svete"
#: ../../share/advertising/00-thanks.pl_.c:11
msgid ""
@@ -8141,9 +8392,8 @@ msgid ""
msgstr ""
#: ../../share/advertising/01-gnu.pl_.c:9
-#, fuzzy
msgid "Join the Free Software world"
-msgstr "Protokol pre zvyšok sveta"
+msgstr "Vitajte vo svete voľného softvéru"
#: ../../share/advertising/01-gnu.pl_.c:10
msgid ""
@@ -8153,9 +8403,8 @@ msgid ""
msgstr ""
#: ../../share/advertising/02-internet.pl_.c:9
-#, fuzzy
msgid "Internet and Messaging"
-msgstr "Prístup k internetu"
+msgstr "Internet a Messaging"
#: ../../share/advertising/02-internet.pl_.c:10
msgid ""
@@ -8166,9 +8415,8 @@ msgid ""
msgstr ""
#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
msgid "Multimedia and Graphics"
-msgstr "Multimédia - Grafika"
+msgstr "Multimédia a grafika"
#: ../../share/advertising/03-graphic.pl_.c:10
msgid ""
@@ -8189,9 +8437,9 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
-#, fuzzy
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
-msgstr "Kontrolné centrum"
+msgstr "Kontrolné centrum Mandrake"
#: ../../share/advertising/05-contcenter.pl_.c:10
msgid ""
@@ -8200,9 +8448,8 @@ msgid ""
msgstr ""
#: ../../share/advertising/06-user.pl_.c:9
-#, fuzzy
msgid "User interfaces"
-msgstr "Sieťove rozhranie"
+msgstr "Užívaťeľské rozhrania"
#: ../../share/advertising/06-user.pl_.c:10
msgid ""
@@ -8212,15 +8459,17 @@ msgid ""
msgstr ""
#: ../../share/advertising/07-server.pl_.c:9
-#, fuzzy
msgid "Server Software"
-msgstr "Názov SMB servra"
+msgstr "Serverový softvér"
#: ../../share/advertising/07-server.pl_.c:10
+#, fuzzy
msgid ""
"Transform your machine into a powerful server with just a few clicks of the "
"mouse: Web server, email, firewall, router, file and print server, ..."
msgstr ""
+"Prevod Vášho stroja na silný server len niekoľkými klikmi myšou: Web server, "
+"mail, firewall, router, file a print server, ..."
#: ../../share/advertising/08-games.pl_.c:9
msgid "Games"
@@ -8234,7 +8483,7 @@ msgstr ""
#: ../../share/advertising/09-MDKcampus.pl_.c:9
msgid "MandrakeCampus"
-msgstr ""
+msgstr "MandrakeCampus"
#: ../../share/advertising/09-MDKcampus.pl_.c:10
msgid ""
@@ -8244,9 +8493,8 @@ msgid ""
msgstr ""
#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
msgid "MandrakeExpert"
-msgstr "Expert"
+msgstr "MandrakeExpert"
#: ../../share/advertising/10-MDKexpert.pl_.c:10
msgid ""
@@ -8256,9 +8504,8 @@ msgid ""
msgstr ""
#: ../../share/advertising/11-consul.pl_.c:9
-#, fuzzy
msgid "MandrakeConsulting"
-msgstr "Popis Mandrake Nástrojov"
+msgstr "MandrakeConsulting"
#: ../../share/advertising/11-consul.pl_.c:10
msgid ""
@@ -8270,7 +8517,7 @@ msgstr ""
#: ../../share/advertising/12-MDKstore.pl_.c:9
msgid "MandrakeStore"
-msgstr ""
+msgstr "MandrakeStore"
#: ../../share/advertising/12-MDKstore.pl_.c:10
msgid ""
@@ -8286,12 +8533,21 @@ msgstr ""
#: ../../share/advertising/13-Nvert.pl_.c:11
msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr ""
+msgstr "http://www.mandrakesoft.com/sales/contact"
#: ../../standalone.pm_.c:25
msgid "Installing packages..."
msgstr "Inštalujem balíčky"
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Prosím, odhláste sa a potom stlačte Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Prosím, prihláste sa znova do %s aby ste aktivovali zmeny"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8300,6 +8556,152 @@ msgstr ""
"Nedokážem prečítať tabuľku rozdelenia disku, je príliš poškodená\n"
"Skúsim odstrániť chybné oddiely"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Prenes nastavenie tlačiarne"
+
+#: ../../standalone/drakTermServ_.c:204
+msgid "Enable Server"
+msgstr "Povoliť server"
+
+#: ../../standalone/drakTermServ_.c:211
+msgid "Disable Server"
+msgstr "Zakázať server"
+
+#: ../../standalone/drakTermServ_.c:219
+msgid "Start Server"
+msgstr "Štart servera"
+
+#: ../../standalone/drakTermServ_.c:226
+msgid "Stop Server"
+msgstr "Zastaviť server"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr "Etherboot disketa/ISO"
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr "Net Boot obrazy"
+
+#: ../../standalone/drakTermServ_.c:240
+msgid "Add/Del Users"
+msgstr "Pridať/Odobrať užívateľov"
+
+#: ../../standalone/drakTermServ_.c:242
+msgid "Add/Del Clients"
+msgstr "Pridať/Odobrať klientov"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Pomoc"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr "Štart z diskety"
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr "Štart z ISO"
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr "Vyrobiť celý kernel -->"
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr "Toto bude pár minut trvať."
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr "Nebol zvolený kernel!"
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr "Vyrobiť s jednou NIC -->"
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Nepripojený"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr "Vyrobiť všetky kernely -->"
+
+#: ../../standalone/drakTermServ_.c:550
+msgid "<-- Delete"
+msgstr "<-- Zmazať"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Vyber všetko"
+
+#: ../../standalone/drakTermServ_.c:619
+msgid "Add User -->"
+msgstr "Pridať uživateľa -->"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr "<-- Zmazať uživateľa"
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr "Pridať klienta -->"
+
+#: ../../standalone/drakTermServ_.c:733
+msgid "<-- Del Client"
+msgstr "<-- Zmazať klienta"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Konfigurácia..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "prekonfigurovať"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Vložte štartovaciu disketu do mechaniky %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr "Nemôžem pristúpiť k diskete!"
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr "Disketa môže byť teraz vybrata"
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Nie je dostupná žiadna floppy mechanika"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr "Etherboot ISO obraz je %s"
+
+#: ../../standalone/drakTermServ_.c:964
+#, fuzzy
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr "Niečo prebehlo zle!"
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr "Najprv potrebujem vytvoriť /etc/dhcpd.conf!"
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "Chyba!"
@@ -8311,7 +8713,7 @@ msgstr "Nemôžem nájst potrebný image file `%s'."
#: ../../standalone/drakautoinst_.c:48
msgid "Auto Install Configurator"
-msgstr ""
+msgstr "Konfigurátor automatickej inštalácie"
#: ../../standalone/drakautoinst_.c:49
msgid ""
@@ -8350,6 +8752,10 @@ msgstr ""
"Prosím pre každý krok zvoľte či sa má zopakovať ako pri vašej inštalácii "
"alebo znovu nastaviť"
+#: ../../standalone/drakautoinst_.c:83
+msgid "Creating auto install floppy"
+msgstr "Pripravujem auto inštalačnú disketu"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -8362,12 +8768,12 @@ msgstr ""
"\n"
"Parametre automatickej inštalácie sú dosiahnuteľné na lište vľavo"
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Gratulujeme!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -8375,28 +8781,19 @@ msgstr ""
"Disketa bola úspešne vytvorená.\n"
"Teraz môžete zopakovať inštaláciu."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr "Automatická inštalácia"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr "Pridaj položku"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr "Odstráň poslednú položku"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
@@ -8406,7 +8803,7 @@ msgstr ""
" DrakBackup report \n"
"\n"
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8418,19 +8815,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8442,62 +8827,86 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr "celkový postup"
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr "Záloha systémových súborov..."
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
msgstr "Záloha na pevný disk. Súbory..."
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
msgstr "Zálohovať užívateľské súbory..."
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr "Stav zálohy na pevný disk..."
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
msgstr "Zálohovať iné súbory..."
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, fuzzy, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
"Zoznam súborov odoslaných cez FTP : %s\n"
" "
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
+#, fuzzy
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
"\n"
"(!) Chzba FTP pripojenia: Nebolo možné odoslať zálohovacie súbory cez FTP.\n"
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
msgstr "(!) Chzba počas odosielania e-mailu. \n"
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
msgstr "Výber súborov"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr "Zvoľte súbory a adresáre a kliknite na 'Pridaj'"
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -8505,25 +8914,25 @@ msgstr ""
"\n"
"Zvoľte prosím všetky volby, ktoré potrebujete.\n"
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Tieto nastavenia môžu zálohovať a obnovovať všetky súbory v adresári /etc.\n"
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr "Záloha systémových súborov. (adresár /etc )"
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr "Použi prírastkové zálohovanie (bez prepisovania starých záloh)"
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Nezahrnovať kritické súbory (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -8531,83 +8940,77 @@ msgstr ""
"S týmto nastavením budete schopný obnoviť ktorúkoľvek\n"
" verziu vášho /etc adresára."
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
msgstr "Prosím, zadajte všetkých užívateľov, ktorých chcete zálohovať."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr "Nezahrnovať vyrovnávaciu pamäť prehliadača"
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Použi prírastkové zálohovanie (bez prepisovania starých záloh)"
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
msgstr "Odstráň zvolené"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr " Windows (FAT32) "
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr " Užívatelia"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
msgstr "Pre zálohovanie použiť FTP"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
msgstr "Prosím vložte meno hostu alebo IP."
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
"Prosím zadajte adresár, kam sa\n"
" budú ukladať zálohy na tomto hoste."
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
msgstr "Prosím vložte váš login"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
msgstr "Prosím vložte vaše heslo"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
msgstr "Zapamätajte si toto heslo"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr " FTP spojenie"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Bezpečné pripojenie"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr "Pre zálohovanie použiť CD/DVDROM"
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
msgstr "Prosím, zvoľte veľkosť CD"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
msgstr "Prosím skontrolujte, či používate CDRW médium"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr "Prosím zaškrtnite, aks i želáte CDRW médium najskôr vymazať"
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
@@ -8615,7 +9018,7 @@ msgstr ""
"Ak si želáte spustiteľné CD,\n"
" vyberte túto voľbu."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -8623,16 +9026,21 @@ msgstr ""
"Prosím, zadajte meno zariadenia CD Zapisovačky\n"
" napr. 0,1,0"
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
msgstr "Pre zálohovanie použiť pásku"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr "Prosím, zadajte meno zálohovacieho zariadenia"
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Prosím zaškrtnite, aks i želáte CDRW médium najskôr vymazať"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -8640,51 +9048,57 @@ msgstr ""
"Prosím, zadajte maximálnu veľkosť\n"
" pre Drakbackup"
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
+#: ../../standalone/drakbackup_.c:1497
+#, fuzzy
+msgid "Please enter the directory to save to:"
msgstr "Prosím, zadajte adresár:"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
msgstr "Pre zálohovanie použiť quotu."
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
msgstr "Sieť"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
-msgstr "CDROM / DVDROM "
+msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr "Pevný disk / NFS"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Typ"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr "každú hodinu"
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr "denne"
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr "týždenne"
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr "mesačne"
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
msgstr "Použi démnona"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -8692,7 +9106,7 @@ msgstr ""
"Prosím, zvoľte časový interval\n"
"medzi jednotlivými zálohami"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
@@ -8700,71 +9114,67 @@ msgstr ""
"Prosím, zálohovacie \n"
"médium."
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Použitie pevného disku s démonom"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "Použitie FTP s démonom"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+#, fuzzy
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr "Prosím skontrolujte či je cron démon súčasťou spusťených služieb."
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr "Odoslať e-mailovú správu po každej zálohe:"
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "Čo"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "Kde"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "Kedy"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
msgstr "Viac možností"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
msgstr "Drakbackup nastavenia"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
msgstr "Prosím zvoľte kam chcete zálohovať"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr "na pevný disk"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr "cez sieť"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
msgstr "Prosím zvoľte čo chcete zálohovať"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
msgstr "Zálohovací systém"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr "Záloha Užívateľov"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr "Vybrať užívateľov manuálne"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
@@ -8772,7 +9182,7 @@ msgstr ""
"\n"
"Zdroje zálohy: \n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
@@ -8780,7 +9190,7 @@ msgstr ""
"\n"
"- Systémové súbory:\n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
@@ -8788,7 +9198,7 @@ msgstr ""
"\n"
"- Súbory používateľov:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
@@ -8796,7 +9206,7 @@ msgstr ""
"\n"
"- Ostatné súbory:\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
@@ -8805,16 +9215,45 @@ msgstr ""
"\n"
"- Uložiť na pevný disk na cestu : %s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Port myši: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"- Uložiť na FTP na host : %s\n"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
"\n"
"- Uložiť na FTP na host : %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -8823,7 +9262,7 @@ msgstr ""
"\t\t Meno užívateľa: %s\n"
"\t\t na cestu: %s \n"
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
@@ -8831,19 +9270,19 @@ msgstr ""
"\n"
"- Parametre:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr "\tNezahŕnať systémové súbory\n"
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr "\tZálohovanie používa tar a bzip2\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr "\tZálohovanie používa tar a gzip\n"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
@@ -8852,27 +9291,41 @@ msgstr ""
"\n"
"- Démon (%s) zahŕňa :\n"
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr "\t-Pevný disk.\n"
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr "\t-Sieť cez FTP.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr "\t-Sieť cez SSH.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t-Sieť cez FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t-Sieť cez FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Ešte nenastavené, prosím použite Pomocníka alebo Rozšírené.\n"
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
@@ -8880,7 +9333,7 @@ msgstr ""
"Zoznam dát pre obnovu:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
@@ -8888,130 +9341,133 @@ msgstr ""
"Zoznam porušených dát:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
msgid "Please uncheck or remove it on next time."
msgstr "Prosím odznačte alebo odstráňte to nabudúce."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr "Súbory zálohy boli porušené"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr " Všetky Vami vybrané dáta boli "
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr " Úspešne obnovené na %s "
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
msgid " Restore Configuration "
msgstr " Obnoviť nastavenie"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr "OK pre obnovu ostatných súborov."
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr "Zoznam užívateľov prew obnovu (je dôležitá iba posledná záloha)"
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
msgstr "Najskôr zálohuj systémové súbory:"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
msgid "please choose the date to restore"
msgstr "prosím, zvoľte dáta, ktoré chcete obnoviť"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
msgstr "Pre zálohovanie použiť pevný disk"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+msgid "Please enter the directory to save:"
+msgstr "Prosím, zadajte adresár:"
+
+#: ../../standalone/drakbackup_.c:2416
+msgid "FTP Connection"
+msgstr " FTP spojenie"
+
+#: ../../standalone/drakbackup_.c:2424
+msgid "Secure Connection"
+msgstr "Bezpečné pripojenie"
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
msgstr "Obnova z pevného disku"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr "Prosím, zadajte, kde sú uložené zálohy"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
msgstr "Vyberte iné médium pre obnovu"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
msgid "Other Media"
msgstr "Iné médium"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
msgid "Restore system"
msgstr "Obnoviť systém"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
msgstr "Obnov Uźívateľov"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
msgstr "Obnov ostatné"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr "vyberte cestu pre obnovu (okrem /)"
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Pred obnovou urobiť novú zálohu (iba pre prírastkové zálohovanie)"
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr "Pred obnovou odstráň užívateľské adresáre."
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr "Obnov všetky zálohy"
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
msgid "Custom Restore"
msgstr "Vlastná obnova"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Pomoc"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "Predchádzajúce"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "Ulož"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
msgstr "Vytvor zálohu"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
msgstr "Obnova"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "Ďalší"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -9019,7 +9475,7 @@ msgstr ""
"Skôr než sa pokúsite obnoviť, vytvorte zálohu..\n"
" alebo skontrolujte, či je zadaná cesta správna."
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
@@ -9029,31 +9485,35 @@ msgstr ""
" Váš report nebol odoslaný\n"
" Prosím nastavte sendmail"
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Zoznam balíčkov pre inštaláciu"
+#: ../../standalone/drakbackup_.c:2933
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Budú nainštalované nasledujúce balíky"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
+#, fuzzy
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
"Počas posielania súboru cez FTP sa vyskytla chyba.\n"
" Prosím skontrolujte správnosť FTP nastavenia."
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
msgstr "Prosím, skontrolujte dáta ktoré chcete obnoviť..."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
msgstr "Prosím, zvoľte médium pre zálohovanie..."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
msgstr "Prosím, zvoľte médium pre zálohovanie..."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -9061,75 +9521,75 @@ msgstr ""
"Nebol nájdený konfiguračný súbor.\n"
"Prosím vyberte Pomocník, alebo Rozšírené."
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr "Vo vývoji ... prosím vydržte."
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
msgid "Backup system files"
msgstr "Zálohuj systémové súbory"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
msgid "Backup user files"
msgstr "Zálohuj užívateľské súbory"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
msgid "Backup other files"
msgstr "Zálohuj iné súbory"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr "Celkový priebeh"
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr "súbory odosielané cez FTP"
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
msgid "Sending files..."
msgstr "Odosielam súbory..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr "Zoznam dát, ktoré budú na CDROM."
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
msgid "Please enter the cd writer speed"
msgstr "Prosím, zadajte rýchlosť vašej CD mechaniky"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr "Zadajte prosím meno zariadenia zapisovacej CD mechaniky (napr. 0,1,0)"
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
msgstr "Zvoľte, ak si želáte mať inštalačné CD spustiteľné."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
msgid "Backup Now from configuration file"
msgstr "Zálohuj podľa konfiguračného súbora"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
msgid "View Backup Configuration."
msgstr "Zobraz nastavenie zálohovania."
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
msgid "Wizard Configuration"
msgstr "Pomocník nastavenia"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
msgid "Advanced Configuration"
msgstr "Pokročilá konfigurácia"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
msgstr "Zálohuj"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9161,7 +9621,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9170,7 +9630,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9211,7 +9671,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9239,13 +9699,18 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -9262,7 +9727,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9302,7 +9767,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9313,7 +9778,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9326,7 +9791,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9366,103 +9831,537 @@ msgid ""
msgstr ""
#: ../../standalone/drakboot_.c:58
-#, c-format
+#, fuzzy, c-format
msgid "Installation of %s failed. The following error occured:"
-msgstr "Inštalácia %s zlyhala. Vyskytla sa nasledujúca chyba:"
+msgstr "Inštalácia LILA zlyhala. Vyskytla sa nasledujúca chyba:"
+
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr "Nástroj pre oznámenie chýb Mandrake"
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr "Sprievodca prvým spustením"
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr "Synchronizačný nástroj"
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Konzolové nástroje"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr "HardDrake"
+
+#: ../../standalone/drakbug_.c:54
+msgid "Mandrake Online"
+msgstr "Mandrake Online"
+
+#: ../../standalone/drakbug_.c:55
+msgid "Menudrake"
+msgstr "Menudrake"
+
+#: ../../standalone/drakbug_.c:56
+msgid "Msec"
+msgstr "Msec"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Vzdialená tlačiareň"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Názov zdieľaného zariadenia"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr "Urpmi"
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr "Nástroj pre migráciu Windows"
+
+#: ../../standalone/drakbug_.c:61
+msgid "Userdrake"
+msgstr "Userdrake"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Sprievodca konfiguráciou siete"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Autentifikácia"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Výber balíčkov"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr "Kernel:"
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Prosím čakajte"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Po odinštalácii"
+
+#: ../../standalone/drakbug_.c:110
+msgid "Report"
+msgstr "Report"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr "pripájanie k Bugzilla sprievodcovy ..."
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Nieje dostupný prehliadač! Prosím nainštalujte nejaký"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Konfigurácia siete (%d rozhraní)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profil: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Zmaž profil..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Zmena profilu:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Nový profil..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr "Meno nového profilu (nový profil bude vytvorený ako kópia aktuálneho)"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Meno počítača: "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Prístup k internetu"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Typ:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Brána:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Rozhranie:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Status:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "Čakajte prosím"
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Konfigurácia prístupu k internetu..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "Konfigurácia LAN"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Ovládač"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Rozhranie"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protokol"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Status"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Konfigurácia lokálnej siete..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "Pre spustenie Pomocníka kliknite sem ->"
+
+#: ../../standalone/drakconnect_.c:257
+#, fuzzy
+msgid "Wizard..."
+msgstr "Sprievodca"
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Aplikovať"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Prosím čakajte... Aplikujem konfiguráciu"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Pripojený."
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Nepripojený"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Pripojenie..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Odpojenie..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+"Varovanie. Bolo rozpoznané iné pripojenie na internet, možno používa vašu "
+"sieť."
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Nemáte nastavené žiadne rozhranie.\n"
+"Nastavte ho kliknutím na Konfiguruj"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "Konfigurácia LAN"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Adaptér %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Štartovací protokol"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Spustené pri štarte"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP klient"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "aktivuj teraz"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "deaktivuj"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Toto rozhranie ešte nebolo nastavené.\n"
+"Spustite Pomocníka nastavenia v hlavnom okne"
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Nemáte nastavené pripojenie na internet.\n"
+"Vytvorte ho zakliknutím tlačítka konfiguruj"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Konfigurácia pripojenia internetu"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Konfigurácia pripojenia internetu"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Typ pripojenia: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parametre"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Brána"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Ethernet karta"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP klient"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "použitie: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+#, fuzzy
+msgid "Module name"
+msgstr "Parametre modulu:"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Veľkosť"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+#, fuzzy
+msgid "boot disk creation"
+msgstr "Vzdialená správa"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+#, fuzzy
+msgid "default"
+msgstr "Predvoľba"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Chyba : %s"
+
+#: ../../standalone/drakfloppy_.c:126
+#, fuzzy
+msgid "kernel version"
+msgstr "Internetová stanica"
+
+#: ../../standalone/drakfloppy_.c:132
+#, fuzzy
+msgid "General"
+msgstr "Všeobecné"
+
+#: ../../standalone/drakfloppy_.c:137
+#, fuzzy
+msgid "Expert Area"
+msgstr "Expertný mód"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "voliteľné argumenty pre mkinitrd"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakfloppy_.c:141
+#, fuzzy
+msgid "Add a module"
+msgstr "Vytváranie užívateľov"
+
+#: ../../standalone/drakfloppy_.c:161
+#, fuzzy
+msgid "force"
+msgstr "Viac"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "ak je potrebné"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "vynechať scsi moduly"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "vynechať raid moduly"
+
+#: ../../standalone/drakfloppy_.c:200
+#, fuzzy
+msgid "Remove a module"
+msgstr "Odstráň zvolené"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Výstup"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Vytvor disk"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Uistite sa, že médium pre zariaďenie %s sa nachádza v mechanike"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"médium pre zariaďenie %s sa nenachádza v mechanike\n"
+"Prosím vložte médium."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Nemožný fork: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Nemožné správne uzavrieť mkbootdisk: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr "Hladať nainštalované fonty"
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr "Odznačiť nainštalované fonty"
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr "zpracovať všetky fonty"
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
msgid "no fonts found"
msgstr "nenašiel som žiadne fonty"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "hotovo"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr "Na pripojených oddieloch nieje možné nájsť fonty"
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr "Znovu vybrať správne fonty"
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr "nemôžem nájsť žiaden font.\n"
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr "Vyhľadávam fonty v zozname nainštalovaných"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr "Kópia fontu"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
msgid "True Type fonts installation"
msgstr "Inštalácia True Type fontov"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr "Prosím čakajte počas tmkfdir..."
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr "Inštalácia True Type fontov hotová."
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr "Konverzia fontov"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr "vytváram type1inst"
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr "Odkazy na Ghostscript"
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr "prevod ttf fontov"
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr "prevod pfm fontov"
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr "Ignorovať pracovné súbory"
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr "Reštart XFS"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr "Ignorovať súbory s fontami"
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
msgid "xfs restart"
msgstr "xfs restart"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -9476,107 +10375,107 @@ msgstr ""
"-Pre pridávanie fontov môžete použiť štandartný spôsob. V špeciálnych "
"prípadoch však chybné fonty môžu spôsobiť vytuhnutie X servera."
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
msgid "Fonts Importation"
msgstr "Import fontov"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr "Prevziať fonty z Windows"
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr "Odstránenie fontov"
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Pokročilé nastavenia"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
msgstr "Zoznam fontov"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
msgid "Choose the applications that will support the fonts :"
msgstr "Zvoľte aplikácie ktoré budú podporovať fonty:"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
msgstr "Tlačiarne pre všeobecné použitie"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr "Zvoľte adresár fontov a kliknite na 'Pridaj'"
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
msgstr "Nainštaluj zoznam"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr "Kliknite sem, ak ste si istý."
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr "sem ak nie"
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr "Odznačiť všetky"
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
msgid "Selected All"
msgstr "Vyber všetko"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
msgstr "Odstrániť zoznam"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr "Počiatočné testy"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
msgstr "Kopírovať fonty na váš systém"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr "Inštalácia a konverzia fontov"
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
msgid "Post Install"
-msgstr ""
+msgstr "Po inštalácii"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
msgstr "Odstrániť fonty zo systému"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
msgid "Post Uninstall"
-msgstr ""
+msgstr "Po odinštalácii"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Zdieľanie pripojenia k internetu"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr "Prepáčte, ale podporujeme len 2.4 kernely."
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Zdieľanie internetového pripojenia je momentálne povolené"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -9588,31 +10487,31 @@ msgstr ""
"\n"
"Čo chcete urobiť?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "zakázať"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "odmietnuť"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "prekonfigurovať"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Zakazujem servre..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Zdieľanie internetového pripojenia je teraz zakázane."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Zdieľanie internetového pripojenia je momentálne zakázane"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -9624,19 +10523,19 @@ msgstr ""
"\n"
"Čo chcete urobiť?\""
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "povoliť"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Povoľujem servre..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Zdieľanie internetového pripojenia je teraz povolené."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -9651,21 +10550,21 @@ msgstr ""
"\n"
"Poznámka: Potrebujete samostatnú sieťovú kartu na pripojenie lokálnej siete."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Rozhranie %s (používa modul %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Rozhranie %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Vo vašom systéme nieje sieťovy adaptér!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -9673,11 +10572,11 @@ msgstr ""
"Vo vašom systéme nebol nájdený sieťovy ethernet adaptér. Prosím spustite "
"konfiguráciu hardweru."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Sieťove rozhranie"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -9692,7 +10591,7 @@ msgstr ""
"\n"
"Lokálna sieť bude nastavená práve s týmto adaptérom."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -9700,11 +10599,11 @@ msgstr ""
"Prosím vyberte si sieťovy adaptér, ktorý bude pripojený k vašej lokálnej "
"sieti."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr "Sieťové rozhranie je už nastavené"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -9719,15 +10618,15 @@ msgstr ""
"\n"
"Môžete to urobiť manuálne, ale musíte vedieť, čo robíte."
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr "Automatická zmena konfigurácie"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr "Zobraz aktuálne nastavenie rozhrania"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -9744,7 +10643,7 @@ msgstr ""
"IP attribution: %s\n"
"Ovládač: %s"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
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 C-Class Network that "
@@ -9763,32 +10662,32 @@ msgstr ""
"nastavenie DHCP serveru.\n"
"\n"
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr "Lokálna sieť triedy C"
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr "IP tohoto DHCP servera"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr "Opätovné nastavenie DHCP servera"
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Číslo lokálnej siete nekončí na .0, zkúšam znovu."
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Potenciálny konflik LAN adries v aktuálnej konfigurácii %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Bola nájdená kofigurácia firewalu!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -9796,20 +10695,20 @@ msgstr ""
"Pozor! Bola nájdená existujúca konfigurácia firewallu. Možno budete musiet "
"urobiť zopár ručnych zásahov po inštalácii."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Konfigurácia..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Konfigurácia skriptov, inštalovanie programov, štart serverov..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Problémy pri inštalácii balíčka %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -9819,23 +10718,23 @@ msgstr ""
"Teraz môžete zdieľať vaše pripojenie na internet s ostatnými počítačmi na "
"vašej lokálnej sieti použitím automatickéhonastavenia siete (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "Nastavenie už bolo urobené a je momentálne zakázané."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Nastavenie už bolo urobené a je momentálne povolené."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Zdieľanie internetového pripojenia ešte nebolo nastavené."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Konfigurácia zdiaľania pripojenia k internetu"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -9850,214 +10749,6 @@ msgstr ""
"\n"
"Kliknite na Nastaviť ak chcete spustiť sprievodcu nastavením."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Konfigurácia siete (%d rozhraní)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Zmaž profil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Zmena profilu:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Nový profil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr "Meno nového profilu (nový profil bude vytvorený ako kópia aktuálneho)"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Meno počítača: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Prístup k internetu"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Typ:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Brána:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Rozhranie:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Čakajte prosím"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Konfigurácia prístupu k internetu..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Konfigurácia LAN"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Ovládač"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Rozhranie"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokol"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Status"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Konfigurácia lokálnej siete..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Pre spustenie Pomocníka kliknite sem ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Sprievodca..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Aplikovať"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Prosím čakajte... Aplikujem konfiguráciu"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Pripojený."
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Nepripojený"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Pripojenie..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Odpojenie..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Varovanie. Bolo rozpoznané iné pripojenie na internet, možno používa vašu "
-"sieť."
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Nemáte nastavené žiadne rozhranie.\n"
-"Nastavte ho kliknutím na Konfiguruj"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Konfigurácia LAN"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adaptér %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Štartovací protokol"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Spustené pri štarte"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP klient"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "aktivuj teraz"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "deaktivuj"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Toto rozhranie ešte nebolo nastavené.\n"
-"Spustite Pomocníka nastavenia v hlavnom okne"
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Nemáte nastavené pripojenie na internet.\n"
-"Vytvorte ho zakliknutím tlačítka konfiguruj"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Konfigurácia pripojenia internetu"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Konfigurácia pripojenia internetu"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Typ pripojenia: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametre"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Brána"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernet karta"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP klient"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Nastavujem úroveň bezpečnosti"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Kontrolné centrum"
@@ -10066,63 +10757,85 @@ msgstr "Kontrolné centrum"
msgid "Choose the tool you want to use"
msgstr "Vyberte nástroj, ktorý chcete použiť"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\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 ""
+
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
msgstr "Kanadská (cable)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+#, fuzzy
+msgid "USA (broadcast)"
msgstr "USA"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr "USA (kábel)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr "USA (kábel - hrc)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "China (broadcast)"
msgstr "Čína"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "Japan (broadcast)"
msgstr "Japonsko"
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr "Japonsko (kábel)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
msgstr "Východná európa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Francúzsko"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
msgstr "Írsko"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
msgstr "Západná Európa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
msgstr "Austrália"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr "Nový Zéland"
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr "Južná Afrika"
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr "Argentína"
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
@@ -10130,27 +10843,44 @@ msgstr ""
"Prosím,\n"
"zadajte vašu TV normu a krajinu"
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr "TV norma:"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr "Oblasť :"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr "Prebieha vyhľadávanie TV programov..."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr "Vyhladávanie TV programov"
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Počas inštalácie balíkov sa vyskytla chyba:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr "XawTV nieje nainštalované!"
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr "Prajem pekný deň!"
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr "Teraz môžete spustiť xawtv (pod X Windows!) !\n"
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
-msgstr ""
+msgstr "TV karta nebola nájdená!"
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10161,6 +10891,14 @@ msgid ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+"Vo Vašom stroji nebola nájdena TV karta. Prosím overte si či máte Video/TV "
+"kartu podporovanú Linuxom a či je správne zapojená.\n"
+"\n"
+"\n"
+"Môžete sa pozrieť do našej databázy hardware:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
@@ -10194,7 +10932,7 @@ msgstr "Nemôžem spustiť priamu aktualizáciu !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -10242,10 +10980,6 @@ msgstr "/_Parametre"
msgid "/Options/Test"
msgstr "/Parametre/Test"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Pomoc"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr "/Pomoc/_O aplikácii..."
@@ -10306,7 +11040,7 @@ msgstr "Kalendár"
msgid "Content of the file"
msgstr "Obsah súboru"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr "Výstraha cez Mail/SMS"
@@ -10315,11 +11049,11 @@ msgstr "Výstraha cez Mail/SMS"
msgid "please wait, parsing file: %s"
msgstr "prosím čakajte, analyzujem súbor: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
msgstr "Nastavenie výstrahy cez SMS alebo e-mail"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
@@ -10329,63 +11063,94 @@ msgstr ""
"\n"
"Tu budete môcť nastavit výstrahy systému.\n"
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Meno domény"
#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
+#, fuzzy
+msgid "Ftp Server"
+msgstr "Zastaviť server"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Postfix mail server, Inn news server"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "Štart servera"
#: ../../standalone/logdrake_.c:422
+#, fuzzy
+msgid "SSH Server"
+msgstr "NIS server"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Služby"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Tlačový server"
+
+#: ../../standalone/logdrake_.c:431
msgid "service setting"
msgstr "nastavenie služieb"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr "Ak nebude funkčná vyznačená služba, budete upozornený"
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
msgstr "načítať nastavenie"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr "Ak load prekročí túto hodnotu, budete upozornený"
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
msgstr "Konfigurácia upozornení"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr "Nastavte cestu, akou Vás má systém upozorniť"
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Ulož ako.."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Prosím, zvoľte typ vašej myši."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "nebolo nájdené serial_usb\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Emulovať 3 tlačítka?"
+#: ../../standalone/printerdrake_.c:49
+msgid "Reading printer data ..."
+msgstr "Načítavam dáta tlačiarne ..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "Zisťujem zariadenia..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -10428,6 +11193,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "Konfigurácia firewalu"
@@ -10691,28 +11468,28 @@ msgstr "Nemôžem otvoriť %s pre zápis: %s\n"
#: ../../tinyfirewall.pm_.c:180
msgid "No I don't need DHCP"
-msgstr ""
+msgstr "Nie, nepotrebujem DHCP"
#: ../../tinyfirewall.pm_.c:180
msgid "Yes I need DHCP"
-msgstr ""
+msgstr "Áno, potrebujem DHCP"
#: ../../tinyfirewall.pm_.c:181
msgid "No I don't need NTP"
-msgstr ""
+msgstr "Nie, nepotrebujem NTP"
#: ../../tinyfirewall.pm_.c:181
msgid "Yes I need NTP"
-msgstr ""
+msgstr "Áno, potrebujem NTP"
#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
msgid "Don't Save"
-msgstr ""
+msgstr "Neuložiť"
#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
#: ../../tinyfirewall.pm_.c:206
msgid "Save & Quit"
-msgstr ""
+msgstr "Uložiť a ukončiť"
#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
#, fuzzy
@@ -10824,10 +11601,6 @@ msgid "Multimedia - Sound"
msgstr "Multimédia - Zvuk"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Pomôcky"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Dokumentácia"
@@ -10931,10 +11704,6 @@ msgstr ""
"prehliadanie www"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Archivácia, emulátory, monitorovanie"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Osobné financie"
@@ -10980,173 +11749,93 @@ msgstr "Multimédia - CD napaľovanie"
msgid "Scientific Workstation"
msgstr "Vedecká stanica"
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-
-#~ msgid "About"
-#~ msgstr "O "
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "fsck zlyhalo s exit kódom %d alebo signálom %d"
-#~ msgid " Help "
-#~ msgstr " Pomoc"
-
-#~ msgid ""
-#~ "Can't access kernel modules corresponding to your kernel (file %s is "
-#~ "missing)"
-#~ msgstr ""
-#~ "Nemôžem pristupovať k modulom jadra, ktoré patria k Vášmu jadru (chýba "
-#~ "súbor %s)"
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Identifikácia grafickej karty: %s\n"
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
+#~ msgid "Choose options for server"
+#~ msgstr "Zvoľte parametre servra"
-#~ msgid "Choose a default printer!"
-#~ msgstr "Zvoľte predvolenú tlačiareň"
+#~ msgid "Monitor not configured"
+#~ msgstr "Nie je nastavený monitor"
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Aplikuj/Znovu načítaj"
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Grafická karta nie je nastavená"
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Teraz môžete zadať parametre pre modul %s."
-
-#~ msgid "mount failed"
-#~ msgstr "pripojenie zlyhalo "
-
-#~ msgid "Low"
-#~ msgstr "Slabá"
-
-#~ msgid "Medium"
-#~ msgstr "Stredná"
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Nie sú nastavené grafické rozlíšenia"
#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr "V tejto úrovni je viac varovaní a kontroly."
-
-#~ msgid "Boot mode"
-#~ msgstr "Mód štartu"
-
-#~ msgid "Export"
-#~ msgstr "Export"
-
-#~ msgid "click here"
-#~ msgstr "kliknite sem"
-
-#~ msgid ""
-#~ "This %s scanner uses parallel port, which is unsupported for the moment"
-#~ msgstr ""
-#~ "Tento %s skener používa paralelný port, ktorý ešte nieje podporovaný."
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
+#~ "\n"
+#~ "try to change some parameters"
#~ msgstr ""
-#~ "GNU/Linux spravuje čas v GMT a prekladá ho na lokálny\n"
-#~ "čas s ohladom na časovú zónu, ktorú ste zvolili."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "Pripojiť k internetu"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Odpojiť od internetu"
-
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Konfigurácia sieťového pripojenia (LAN alebo internet)"
-
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Rozpoznané %s, želáte si ho nastaviť?"
-
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Prosím zvoľte tlačiareň, ktorú chcete nastaviť"
-
-#~ msgid "Infos"
-#~ msgstr "Informácie"
-
-#~ msgid "Scanning available nfs shared resource"
-#~ msgstr "Hľadám možné nfs zdroje"
-
-#~ msgid "Scanning available nfs shared resource of server %s"
-#~ msgstr "Hľadám možné nfs zdroje na serveri %s"
-
-#~ msgid "Scanning available samba shared resource"
-#~ msgstr "Hľadám možné samba zdroje"
-
-#~ msgid "Scanning available samba shared resource of server %s"
-#~ msgstr "Hľadám možné samba zdroje na serveri %s"
-
-#~ msgid "Removable media"
-#~ msgstr "Vymeniteľné médium"
-
-#~ msgid "Active"
-#~ msgstr "Aktívny"
-
-#~ msgid "No X"
-#~ msgstr "Nie X"
-
-#~ msgid "Base system only"
-#~ msgstr "Iba základný systém"
+#~ "\n"
+#~ "skúste zmeniť niektoré parametre"
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "Bola zistená tlačiareň, model \"%s\" na "
+#~ msgid "An error occurred:"
+#~ msgstr "Vyskytla sa chyba:"
-#~ msgid "Local Printer Device"
-#~ msgstr "Lokálne zariadenie tlačiarne"
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Návrat za %d sekúnd"
-#~ msgid "Printer Device"
-#~ msgstr "Zariadenie tlačiarne"
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Je toto správne nastavenie?"
-#~ msgid "Device/file name missing!"
-#~ msgstr "Chýba zariadenie alebo meno súboru."
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Vyskytla sa chyba, skúste zmeniť niektoré parametre"
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Tlačiareň na vzdialenom CUPS serveri"
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 server: %s"
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "Tlačiareň na vzdialenom serveri"
+#~ msgid "Show all"
+#~ msgstr "Zobraz všetko"
-#~ msgid " Linux "
-#~ msgstr " Linux"
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Pripravujem konfiguráciu X-Windows"
-#~ msgid " System "
-#~ msgstr " Systém"
+#~ msgid "What do you want to do?"
+#~ msgstr "Čo chcete robiť?"
-#~ msgid " Other "
-#~ msgstr " Iná"
+#~ msgid "Change Monitor"
+#~ msgstr "Zmeň monitor"
-#~ msgid " A Entire System "
-#~ msgstr " Celý Systém"
+#~ msgid "Change Graphics card"
+#~ msgstr "Zmeň grafickú kartu"
-#~ msgid "please choose your CD space"
-#~ msgstr "Prosím zvoľte priestor na CD"
+#~ msgid "Change Server options"
+#~ msgstr "Zmeň parametre servra"
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr " Prosím skontrolujte či používate CDRW médium"
+#~ msgid "Change Resolution"
+#~ msgstr "Zmeň rozlíšenie"
-#~ msgid " Tape "
-#~ msgstr " Páska"
+#~ msgid "Show information"
+#~ msgstr "Zobraz informácie"
-#~ msgid " Use .backupignore files"
-#~ msgstr "Použi súbory .backupignore"
+#~ msgid "Test again"
+#~ msgstr "Skús znova"
-#~ msgid "Configure it"
-#~ msgstr "Nastav to"
+#~ msgid "Setting security level"
+#~ msgstr "Nastavujem úroveň bezpečnosti"
-#~ msgid "on CDROM"
-#~ msgstr "na CDROM"
+#~ msgid "Use Hard Drive with daemon"
+#~ msgstr "Použitie pevného disku s démonom"
-#~ msgid "on Tape Device"
-#~ msgstr "na Páskové zariadenie"
+#~ msgid "Use FTP with daemon"
+#~ msgstr "Použitie FTP s démonom"
-#~ msgid " Cancel "
-#~ msgstr " Zruš"
+#~ msgid "Package List to Install"
+#~ msgstr "Zoznam balíčkov pre inštaláciu"
-#~ msgid " Help "
-#~ msgstr " Pomoc"
+#~ msgid "proftpd"
+#~ msgstr "proftpd"
-#~ msgid " Ok "
-#~ msgstr " Ok"
+#~ msgid "sshd"
+#~ msgstr "sshd"
-#~ msgid " Next "
-#~ msgstr " Nasledujúci"
+#~ msgid "webmin"
+#~ msgstr "webmin"
-#~ msgid "close"
-#~ msgstr "zatvoriť"
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
diff --git a/perl-install/share/po/sl.po b/perl-install/share/po/sl.po
index f27bc3b16..b38c627d6 100644
--- a/perl-install/share/po/sl.po
+++ b/perl-install/share/po/sl.po
@@ -1,79 +1,112 @@
-# Translation file of Mandrake graphic install
-# Copyright (C) 1999 Mandrakesoft
-# Alen Salamun <alien@alienworld.org>, 2000.
-# (1938)
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR Free Software Foundation, Inc.
+# Gregor Pirnaver <gregor.pirnaver@email.si>, 2002
+#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2000-09-05 20:49+0200\n"
-"Last-Translator: Alen Salamun <alien@alienworld.org>\n"
-"Language-Team: Slovenian\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2002-01-21 11:03GMT\n"
+"Last-Translator: Gregor Pirnaver <gregor.pirnaver@email.si>\n"
+"Language-Team: Slovenščina <lugos-slo@lugos.si>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 0.9.5\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB ali več"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Izberite strežnik X"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "Strežnik X"
+
+#: ../../Xconfig/card.pm_.c:225
#, fuzzy
msgid "Multi-head configuration"
msgstr "Nastavitev zaslona"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Grafična kartica"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Izberite velikost pomnilnika grafične kartice"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Izberite grafično kartico"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "Nastavitev XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Izberite strežnik X"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Katero nastavitev strežnika XFree želite?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "Strežnik X"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Izberite strežnik X"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "Strežnik X"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Nastavitev zaslona"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Katero nastavitev strežnika XFree želite?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s s strojnim 3D pospeševanjem"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -83,32 +116,17 @@ msgstr ""
"s.\n"
"Vaša kartica je podprta s strani XFree %s, kjer je lahko boljša 2D podpora."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Vaša kartica lahko uporablja strojno 3D pospeševanje z XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s s strojnim 3D pospeševanjem"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Vaša kartica lahko uporablja strojno 3D pospeševanje z XFree %s,\n"
-"PODPORA JE ŠE V RAZVOJU, RAČUNALNIK SE LAHKO PRENEHA ODZIVATI."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s z RAZVOJNO strojno 3D pospešitvijo"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -120,31 +138,59 @@ msgstr ""
"PODPORA JE ŠE V RAZVOJU, RAČUNALNIK SE LAHKO PRENEHA ODZIVATI.Vaša kartica "
"je podprta s strani XFree %s, kjer je lahko boljša 2D podpora."
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
+"Vaša kartica lahko uporablja strojno 3D pospeševanje z XFree %s,\n"
+"PODPORA JE ŠE V RAZVOJU, RAČUNALNIK SE LAHKO PRENEHA ODZIVATI."
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Nastavitev XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Izberite velikost pomnilnika grafične kartice"
+#: ../../Xconfig/card.pm_.c:445
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Izberite nastavitve strežnika"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Ohrani spremembe?\n"
+"Trenutna nastavitev:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Izberite monitor"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+#, fuzzy
+msgid "Custom"
+msgstr "Prilagojeno"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Splošno"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Razveljavi"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -165,519 +211,328 @@ msgstr ""
"sposobnosti vašega monitorja. S tem lahko poškodujete monitor!\n"
"Če ste v dvomih, izberite konservativno nastavitev."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Horizontalna sinhronizacija"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Vertikalna sinhronizacija"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor ni nastavljen"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Grafična kartica še ni nastavljena"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Ločljivost še ni izbrana"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Želite preizkusiti nastavitev?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-"Pozor: testiranje te grafične kartice lahko povzroči neodzivanje računalnika"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Preizkus nastavitev"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 barv (8 bitov)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"poskusite spremeniti nekatere parametre"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 tisoč barv (15 bitov)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Prišlo je do napake:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 tisoč barv (16 bitov)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Zapuščam v %d sekundah"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 milijonov barv (24 bitov)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Je to pravilna nastavitev?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 milijarde barv (32 bitov)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Prišlo je do napake, poskusite spremeniti nekatere parametre"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Ločljivosti"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Ločljivost"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Izberite ločljivost in barvno globino"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Grafična kartica: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Strežnik XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-#, fuzzy
-msgid "More"
-msgstr "Premakni"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Prekliči"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "V redu"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-#, fuzzy
-msgid "Expert Mode"
-msgstr "Napredni način"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Pokaži vse"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Želite preizkusiti nastavitev?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Ločljivosti"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Preizkus nastavitev"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Razpored tipkovnice: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Tip miške: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Naprava miške: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Horizontalna frekvenca monitorja: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Vertikalna frekvenca monitorja: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Grafična kartica: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Grafična kartica: %s\n"
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Grafični pomnilnik: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Barvna globina: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Ločljivost: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Strežnik XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Gonilnik XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Priprava nastavitev X-Windows"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Kaj želite narediti?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Spremeni monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Spremeni grafično kartico"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Spremeni nastavitve strežnika"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Spremeni ločljivost"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Pokaži informacije"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Testiraj ponovno"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Izhod"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Ohrani spremembe?\n"
-"Trenutna nastavitev:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X v zagonu"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Računalnik lahko samodejno pri zagonu sistema zažene strežnik X.\n"
"Želite zagnati strežnik X pri zagonu?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Za uveljavitev sprememb, se ponovno prijavite v %s"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Odjavite se in nato pritisnite Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 barv (8 bitov)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 tisoč barv (15 bitov)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 tisoč barv (16 bitov)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milijonov barv (24 bitov)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 milijarde barv (32 bitov)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-#, fuzzy
-msgid "16 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-#, fuzzy
-msgid "32 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-#, fuzzy
-msgid "64 MB or more"
-msgstr "16 MB ali več"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standardni VGA, 640×480 @ 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800×600 @ 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Združljiv z 8514, 1024×768 @ 87 Hz prepleteno (brez 800×600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024×768 @ 87 Hz prepleteno, 800×600 @ 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Razširjen Super VGA, 800×600 @ 60 Hz, 640×480 @ 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Neprepleten SVGA, 1024×768 @ 60 Hz, 800×600 @ 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Visoko frekvenčen SVGA, 1024×768 @ 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Monitor, ki zmore 1280×1024 @ 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Monitor, ki zmore 1280×1024 @ 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Monitor, ki zmore 1280×1024 @ 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor, ki zmore 1600×1200 @ 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor, ki zmore 1600×1200 @ 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Prvi sektor zagonskega razdelka"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Prvi sektor pogona (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "Namestitev SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Kam želite namestiti zagonski nalagalnik?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "Namestitev LILO/grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr ""
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr ""
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr ""
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr ""
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr ""
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
#, fuzzy
msgid "Yaboot"
msgstr "Korenski"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Glavne možnosti zagonskega nalagalnika"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
#, fuzzy
msgid "Bootloader to use"
msgstr "Glavne možnosti zagonskega nalagalnika"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Namestitev zagonskega nalagalnika"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Zagonska naprava"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ne deluje z starejšimi BIOS-i)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Kompaktno"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "kompaktno"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Grafični način"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Pavza pred zaganjanjem privzete slike"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Geslo"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Geslo (ponovno)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Omejitev možnosti ukazne vrstice"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "omeji"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Pri zagonu počisti /tmp"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Natanšna velikost pomnilnika RAM, če je potrebno (najdenih %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Omogoči več profilov"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Podajte velikost pomnilnika v MB"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Možnost ``Omejitev možnosti ukazne vrstice'' ni uporabna brez gesla"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Poskusite ponovno"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Gesla se ne ujemata"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr ""
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr ""
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr ""
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr ""
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr ""
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
#, fuzzy
msgid "Default OS?"
msgstr "Privzeto"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -686,84 +541,84 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Tukaj so različni vnosi.\n"
"Lahko dodate še kakšnega ali spremenite obstoječega"
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Dodaj"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Končano"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
#, fuzzy
msgid "Modify"
msgstr "Spremeni RAID"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Kakšen tip vnosa želite dodati?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Ostali OS (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Ostali OS (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Ostali OS (Okna...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Slika"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Korenski"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Pripni"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Branje-pisanje"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabela"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Tvegano"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Labela"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Privzeto"
@@ -797,53 +652,75 @@ msgstr "Potrebujete razdelek swap"
msgid "This label is already used"
msgstr "Ta labela je že uporabljena"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Najdenih %s %s vmesnikov"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Imate še kakšnega?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Imate vmesnike %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Ne"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Da"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Glejte informacije o strojni opremi"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Namestitev gonilnika za %s kartico %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Sedaj lahko posredujete nastavitve za modul %s.\n"
+"Nastavitve so oblike ``ime=vrednost ime2=vrednost2 ...''.\n"
+"Na primer: ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Nastavitve modula:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Kateri %s gonilnik naj poizkusim?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -862,37 +739,15 @@ msgstr ""
"ustavi,\n"
"kar pa naj ne bi povzročilo nobene škode."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Samodejna zaznava"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Navedite nastavitve"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Sedaj lahko posredujete nastavitve za modul %s.\n"
-"Nastavitve so oblike ``ime=vrednost ime2=vrednost2 ...''.\n"
-"Na primer: ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Nastavitve modula:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -901,49 +756,54 @@ msgstr ""
"Nalaganje modula %s je bilo neuspešno.\n"
"Želite poskusiti znova z drugimi parametri?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(že dodano %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Geslo je preveč preprosto"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Vnesite uporabniško ime"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Uporabniško ime mora vsebovati samo male črke, številke, `-' in `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "To uporabniško ime je že dodano"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "To uporabniško ime je že dodano"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Dodaj uporabnika"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -952,32 +812,32 @@ msgstr ""
"Vnesite uporabnika\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Sprejmi uporabnika"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Pravo ime"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Uporabniško ime"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Lupina"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Ikona"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Samodejna prijava"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -986,186 +846,166 @@ msgstr ""
"Računalnik lahko samodejno, po zagonu, v sistem prijavi uporabnika.\n"
"Če tega ne želite, pritisnite gumb prekliči."
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Izberite privzetega uporabnika:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Izberite okenskega upravitelja, ki naj bo pognan:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr "Ali želite sedaj zagnati ,X -probeonly`?"
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr ""
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr ""
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr "Dodaj uporabnika"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-#, fuzzy
-msgid "Custom"
-msgstr "Prilagojeno"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr "Zaganjam X"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Izberite pakete, ki jih želite namestiti"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Prekliči"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr ""
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr ""
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr ""
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr ""
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
msgstr ""
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr ""
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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 ""
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
msgstr ""
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
-msgstr ""
-
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
#, fuzzy
msgid "Security level"
msgstr "Privzeto"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Izberite nastavitve strežnika"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""